diff --git a/CHANGELOG.md b/CHANGELOG.md index bf582f1..b647817 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v1.0.0-beta.38](https://github.com/fastly/fastly-go/releases/tag/release/v1.0.0-beta.38) (2024-12-17) + +**Breaking Changes:** + +- fix(domain-inspector-realtime, origin-inspector-realtime, historical, realtime): Stats fields widened to 64 bits. + ## [v1.0.0-beta.37](https://github.com/fastly/fastly-go/releases/tag/release/v1.0.0-beta.37) (2024-12-05) **Breaking Changes:** diff --git a/README.md b/README.md index edb6764..85b5916 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add the following to your project's `go.mod`: ```go.mod require ( - github.com/fastly/fastly-go 1.0.0-beta.37 + github.com/fastly/fastly-go 1.0.0-beta.38 ) ``` diff --git a/docs/DomainInspectorMeasurements.md b/docs/DomainInspectorMeasurements.md index c44b8bd..906bcec 100644 --- a/docs/DomainInspectorMeasurements.md +++ b/docs/DomainInspectorMeasurements.md @@ -4,68 +4,68 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**EdgeRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly. | [optional] -**EdgeRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from Fastly to the end user. | [optional] -**EdgeRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from Fastly to the end user. | [optional] -**Status1xx** | Pointer to **int32** | Number of 1xx \"Informational\" category status codes delivered. | [optional] -**Status2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes delivered. | [optional] -**Status3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes delivered. | [optional] -**Status4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes delivered. | [optional] -**Status5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes delivered. | [optional] -**Status200** | Pointer to **int32** | Number of responses delivered with status code 200 (Success). | [optional] -**Status204** | Pointer to **int32** | Number of responses delivered with status code 204 (No Content). | [optional] -**Status206** | Pointer to **int32** | Number of responses delivered with status code 206 (Partial Content). | [optional] -**Status301** | Pointer to **int32** | Number of responses delivered with status code 301 (Moved Permanently). | [optional] -**Status302** | Pointer to **int32** | Number of responses delivered with status code 302 (Found). | [optional] -**Status304** | Pointer to **int32** | Number of responses delivered with status code 304 (Not Modified). | [optional] -**Status400** | Pointer to **int32** | Number of responses delivered with status code 400 (Bad Request). | [optional] -**Status401** | Pointer to **int32** | Number of responses delivered with status code 401 (Unauthorized). | [optional] -**Status403** | Pointer to **int32** | Number of responses delivered with status code 403 (Forbidden). | [optional] -**Status404** | Pointer to **int32** | Number of responses delivered with status code 404 (Not Found). | [optional] -**Status416** | Pointer to **int32** | Number of responses delivered with status code 416 (Range Not Satisfiable). | [optional] -**Status429** | Pointer to **int32** | Number of responses delivered with status code 429 (Too Many Requests). | [optional] -**Status500** | Pointer to **int32** | Number of responses delivered with status code 500 (Internal Server Error). | [optional] -**Status501** | Pointer to **int32** | Number of responses delivered with status code 501 (Not Implemented). | [optional] -**Status502** | Pointer to **int32** | Number of responses delivered with status code 502 (Bad Gateway). | [optional] -**Status503** | Pointer to **int32** | Number of responses delivered with status code 503 (Service Unavailable). | [optional] -**Status504** | Pointer to **int32** | Number of responses delivered with status code 504 (Gateway Timeout). | [optional] -**Status505** | Pointer to **int32** | Number of responses delivered with status code 505 (HTTP Version Not Supported). | [optional] -**Requests** | Pointer to **int32** | Number of requests processed. | [optional] -**RespHeaderBytes** | Pointer to **int32** | Total header bytes delivered. | [optional] -**RespBodyBytes** | Pointer to **int32** | Total body bytes delivered. | [optional] -**BereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to origin. | [optional] -**BereqBodyBytes** | Pointer to **int32** | Total body bytes sent to origin. | [optional] -**EdgeHitRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] -**EdgeMissRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] -**OriginFetches** | Pointer to **int32** | Number of requests sent to origin. | [optional] -**OriginFetchRespHeaderBytes** | Pointer to **int32** | Total header bytes received from origin. | [optional] -**OriginFetchRespBodyBytes** | Pointer to **int32** | Total body bytes received from origin. | [optional] -**Bandwidth** | Pointer to **int32** | Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes`). | [optional] +**EdgeRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly. | [optional] +**EdgeRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from Fastly to the end user. | [optional] +**EdgeRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from Fastly to the end user. | [optional] +**Status1xx** | Pointer to **int64** | Number of 1xx \"Informational\" category status codes delivered. | [optional] +**Status2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes delivered. | [optional] +**Status3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes delivered. | [optional] +**Status4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes delivered. | [optional] +**Status5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes delivered. | [optional] +**Status200** | Pointer to **int64** | Number of responses delivered with status code 200 (Success). | [optional] +**Status204** | Pointer to **int64** | Number of responses delivered with status code 204 (No Content). | [optional] +**Status206** | Pointer to **int64** | Number of responses delivered with status code 206 (Partial Content). | [optional] +**Status301** | Pointer to **int64** | Number of responses delivered with status code 301 (Moved Permanently). | [optional] +**Status302** | Pointer to **int64** | Number of responses delivered with status code 302 (Found). | [optional] +**Status304** | Pointer to **int64** | Number of responses delivered with status code 304 (Not Modified). | [optional] +**Status400** | Pointer to **int64** | Number of responses delivered with status code 400 (Bad Request). | [optional] +**Status401** | Pointer to **int64** | Number of responses delivered with status code 401 (Unauthorized). | [optional] +**Status403** | Pointer to **int64** | Number of responses delivered with status code 403 (Forbidden). | [optional] +**Status404** | Pointer to **int64** | Number of responses delivered with status code 404 (Not Found). | [optional] +**Status416** | Pointer to **int64** | Number of responses delivered with status code 416 (Range Not Satisfiable). | [optional] +**Status429** | Pointer to **int64** | Number of responses delivered with status code 429 (Too Many Requests). | [optional] +**Status500** | Pointer to **int64** | Number of responses delivered with status code 500 (Internal Server Error). | [optional] +**Status501** | Pointer to **int64** | Number of responses delivered with status code 501 (Not Implemented). | [optional] +**Status502** | Pointer to **int64** | Number of responses delivered with status code 502 (Bad Gateway). | [optional] +**Status503** | Pointer to **int64** | Number of responses delivered with status code 503 (Service Unavailable). | [optional] +**Status504** | Pointer to **int64** | Number of responses delivered with status code 504 (Gateway Timeout). | [optional] +**Status505** | Pointer to **int64** | Number of responses delivered with status code 505 (HTTP Version Not Supported). | [optional] +**Requests** | Pointer to **int64** | Number of requests processed. | [optional] +**RespHeaderBytes** | Pointer to **int64** | Total header bytes delivered. | [optional] +**RespBodyBytes** | Pointer to **int64** | Total body bytes delivered. | [optional] +**BereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to origin. | [optional] +**BereqBodyBytes** | Pointer to **int64** | Total body bytes sent to origin. | [optional] +**EdgeHitRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] +**EdgeMissRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] +**OriginFetches** | Pointer to **int64** | Number of requests sent to origin. | [optional] +**OriginFetchRespHeaderBytes** | Pointer to **int64** | Total header bytes received from origin. | [optional] +**OriginFetchRespBodyBytes** | Pointer to **int64** | Total body bytes received from origin. | [optional] +**Bandwidth** | Pointer to **int64** | Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes`). | [optional] **EdgeHitRatio** | Pointer to **float32** | Ratio of cache hits to cache misses at the edge, between 0 and 1 (`edge_hit_requests` / (`edge_hit_requests` + `edge_miss_requests`)). | [optional] **OriginOffload** | Pointer to **float32** | Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). Previously, Origin Offload used a different formula. [Learn more](https://www.fastly.com/documentation/reference/changes/2024/06/add-origin_offload-metric). | [optional] -**OriginStatus200** | Pointer to **int32** | Number of responses received from origin with status code 200 (Success). | [optional] -**OriginStatus204** | Pointer to **int32** | Number of responses received from origin with status code 204 (No Content). | [optional] -**OriginStatus206** | Pointer to **int32** | Number of responses received from origin with status code 206 (Partial Content). | [optional] -**OriginStatus301** | Pointer to **int32** | Number of responses received from origin with status code 301 (Moved Permanently). | [optional] -**OriginStatus302** | Pointer to **int32** | Number of responses received from origin with status code 302 (Found). | [optional] -**OriginStatus304** | Pointer to **int32** | Number of responses received from origin with status code 304 (Not Modified). | [optional] -**OriginStatus400** | Pointer to **int32** | Number of responses received from origin with status code 400 (Bad Request). | [optional] -**OriginStatus401** | Pointer to **int32** | Number of responses received from origin with status code 401 (Unauthorized). | [optional] -**OriginStatus403** | Pointer to **int32** | Number of responses received from origin with status code 403 (Forbidden). | [optional] -**OriginStatus404** | Pointer to **int32** | Number of responses received from origin with status code 404 (Not Found). | [optional] -**OriginStatus416** | Pointer to **int32** | Number of responses received from origin with status code 416 (Range Not Satisfiable). | [optional] -**OriginStatus429** | Pointer to **int32** | Number of responses received from origin with status code 429 (Too Many Requests). | [optional] -**OriginStatus500** | Pointer to **int32** | Number of responses received from origin with status code 500 (Internal Server Error). | [optional] -**OriginStatus501** | Pointer to **int32** | Number of responses received from origin with status code 501 (Not Implemented). | [optional] -**OriginStatus502** | Pointer to **int32** | Number of responses received from origin with status code 502 (Bad Gateway). | [optional] -**OriginStatus503** | Pointer to **int32** | Number of responses received from origin with status code 503 (Service Unavailable). | [optional] -**OriginStatus504** | Pointer to **int32** | Number of responses received from origin with status code 504 (Gateway Timeout). | [optional] -**OriginStatus505** | Pointer to **int32** | Number of responses received from origin with status code 505 (HTTP Version Not Supported). | [optional] -**OriginStatus1xx** | Pointer to **int32** | Number of \"Informational\" category status codes received from origin. | [optional] -**OriginStatus2xx** | Pointer to **int32** | Number of \"Success\" status codes received from origin. | [optional] -**OriginStatus3xx** | Pointer to **int32** | Number of \"Redirection\" codes received from origin. | [optional] -**OriginStatus4xx** | Pointer to **int32** | Number of \"Client Error\" codes received from origin. | [optional] -**OriginStatus5xx** | Pointer to **int32** | Number of \"Server Error\" codes received from origin. | [optional] +**OriginStatus200** | Pointer to **int64** | Number of responses received from origin with status code 200 (Success). | [optional] +**OriginStatus204** | Pointer to **int64** | Number of responses received from origin with status code 204 (No Content). | [optional] +**OriginStatus206** | Pointer to **int64** | Number of responses received from origin with status code 206 (Partial Content). | [optional] +**OriginStatus301** | Pointer to **int64** | Number of responses received from origin with status code 301 (Moved Permanently). | [optional] +**OriginStatus302** | Pointer to **int64** | Number of responses received from origin with status code 302 (Found). | [optional] +**OriginStatus304** | Pointer to **int64** | Number of responses received from origin with status code 304 (Not Modified). | [optional] +**OriginStatus400** | Pointer to **int64** | Number of responses received from origin with status code 400 (Bad Request). | [optional] +**OriginStatus401** | Pointer to **int64** | Number of responses received from origin with status code 401 (Unauthorized). | [optional] +**OriginStatus403** | Pointer to **int64** | Number of responses received from origin with status code 403 (Forbidden). | [optional] +**OriginStatus404** | Pointer to **int64** | Number of responses received from origin with status code 404 (Not Found). | [optional] +**OriginStatus416** | Pointer to **int64** | Number of responses received from origin with status code 416 (Range Not Satisfiable). | [optional] +**OriginStatus429** | Pointer to **int64** | Number of responses received from origin with status code 429 (Too Many Requests). | [optional] +**OriginStatus500** | Pointer to **int64** | Number of responses received from origin with status code 500 (Internal Server Error). | [optional] +**OriginStatus501** | Pointer to **int64** | Number of responses received from origin with status code 501 (Not Implemented). | [optional] +**OriginStatus502** | Pointer to **int64** | Number of responses received from origin with status code 502 (Bad Gateway). | [optional] +**OriginStatus503** | Pointer to **int64** | Number of responses received from origin with status code 503 (Service Unavailable). | [optional] +**OriginStatus504** | Pointer to **int64** | Number of responses received from origin with status code 504 (Gateway Timeout). | [optional] +**OriginStatus505** | Pointer to **int64** | Number of responses received from origin with status code 505 (HTTP Version Not Supported). | [optional] +**OriginStatus1xx** | Pointer to **int64** | Number of \"Informational\" category status codes received from origin. | [optional] +**OriginStatus2xx** | Pointer to **int64** | Number of \"Success\" status codes received from origin. | [optional] +**OriginStatus3xx** | Pointer to **int64** | Number of \"Redirection\" codes received from origin. | [optional] +**OriginStatus4xx** | Pointer to **int64** | Number of \"Client Error\" codes received from origin. | [optional] +**OriginStatus5xx** | Pointer to **int64** | Number of \"Server Error\" codes received from origin. | [optional] ## Methods @@ -88,20 +88,20 @@ but it doesn't guarantee that properties required by API are set ### GetEdgeRequests -`func (o *DomainInspectorMeasurements) GetEdgeRequests() int32` +`func (o *DomainInspectorMeasurements) GetEdgeRequests() int64` GetEdgeRequests returns the EdgeRequests field if non-nil, zero value otherwise. ### GetEdgeRequestsOk -`func (o *DomainInspectorMeasurements) GetEdgeRequestsOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetEdgeRequestsOk() (*int64, bool)` GetEdgeRequestsOk returns a tuple with the EdgeRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRequests -`func (o *DomainInspectorMeasurements) SetEdgeRequests(v int32)` +`func (o *DomainInspectorMeasurements) SetEdgeRequests(v int64)` SetEdgeRequests sets EdgeRequests field to given value. @@ -113,20 +113,20 @@ HasEdgeRequests returns a boolean if a field has been set. ### GetEdgeRespHeaderBytes -`func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytes() int32` +`func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytes() int64` GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeRespHeaderBytesOk -`func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytesOk() (*int64, bool)` GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespHeaderBytes -`func (o *DomainInspectorMeasurements) SetEdgeRespHeaderBytes(v int32)` +`func (o *DomainInspectorMeasurements) SetEdgeRespHeaderBytes(v int64)` SetEdgeRespHeaderBytes sets EdgeRespHeaderBytes field to given value. @@ -138,20 +138,20 @@ HasEdgeRespHeaderBytes returns a boolean if a field has been set. ### GetEdgeRespBodyBytes -`func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytes() int32` +`func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytes() int64` GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeRespBodyBytesOk -`func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytesOk() (*int64, bool)` GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespBodyBytes -`func (o *DomainInspectorMeasurements) SetEdgeRespBodyBytes(v int32)` +`func (o *DomainInspectorMeasurements) SetEdgeRespBodyBytes(v int64)` SetEdgeRespBodyBytes sets EdgeRespBodyBytes field to given value. @@ -163,20 +163,20 @@ HasEdgeRespBodyBytes returns a boolean if a field has been set. ### GetStatus1xx -`func (o *DomainInspectorMeasurements) GetStatus1xx() int32` +`func (o *DomainInspectorMeasurements) GetStatus1xx() int64` GetStatus1xx returns the Status1xx field if non-nil, zero value otherwise. ### GetStatus1xxOk -`func (o *DomainInspectorMeasurements) GetStatus1xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus1xxOk() (*int64, bool)` GetStatus1xxOk returns a tuple with the Status1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus1xx -`func (o *DomainInspectorMeasurements) SetStatus1xx(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus1xx(v int64)` SetStatus1xx sets Status1xx field to given value. @@ -188,20 +188,20 @@ HasStatus1xx returns a boolean if a field has been set. ### GetStatus2xx -`func (o *DomainInspectorMeasurements) GetStatus2xx() int32` +`func (o *DomainInspectorMeasurements) GetStatus2xx() int64` GetStatus2xx returns the Status2xx field if non-nil, zero value otherwise. ### GetStatus2xxOk -`func (o *DomainInspectorMeasurements) GetStatus2xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus2xxOk() (*int64, bool)` GetStatus2xxOk returns a tuple with the Status2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus2xx -`func (o *DomainInspectorMeasurements) SetStatus2xx(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus2xx(v int64)` SetStatus2xx sets Status2xx field to given value. @@ -213,20 +213,20 @@ HasStatus2xx returns a boolean if a field has been set. ### GetStatus3xx -`func (o *DomainInspectorMeasurements) GetStatus3xx() int32` +`func (o *DomainInspectorMeasurements) GetStatus3xx() int64` GetStatus3xx returns the Status3xx field if non-nil, zero value otherwise. ### GetStatus3xxOk -`func (o *DomainInspectorMeasurements) GetStatus3xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus3xxOk() (*int64, bool)` GetStatus3xxOk returns a tuple with the Status3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus3xx -`func (o *DomainInspectorMeasurements) SetStatus3xx(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus3xx(v int64)` SetStatus3xx sets Status3xx field to given value. @@ -238,20 +238,20 @@ HasStatus3xx returns a boolean if a field has been set. ### GetStatus4xx -`func (o *DomainInspectorMeasurements) GetStatus4xx() int32` +`func (o *DomainInspectorMeasurements) GetStatus4xx() int64` GetStatus4xx returns the Status4xx field if non-nil, zero value otherwise. ### GetStatus4xxOk -`func (o *DomainInspectorMeasurements) GetStatus4xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus4xxOk() (*int64, bool)` GetStatus4xxOk returns a tuple with the Status4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus4xx -`func (o *DomainInspectorMeasurements) SetStatus4xx(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus4xx(v int64)` SetStatus4xx sets Status4xx field to given value. @@ -263,20 +263,20 @@ HasStatus4xx returns a boolean if a field has been set. ### GetStatus5xx -`func (o *DomainInspectorMeasurements) GetStatus5xx() int32` +`func (o *DomainInspectorMeasurements) GetStatus5xx() int64` GetStatus5xx returns the Status5xx field if non-nil, zero value otherwise. ### GetStatus5xxOk -`func (o *DomainInspectorMeasurements) GetStatus5xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus5xxOk() (*int64, bool)` GetStatus5xxOk returns a tuple with the Status5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus5xx -`func (o *DomainInspectorMeasurements) SetStatus5xx(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus5xx(v int64)` SetStatus5xx sets Status5xx field to given value. @@ -288,20 +288,20 @@ HasStatus5xx returns a boolean if a field has been set. ### GetStatus200 -`func (o *DomainInspectorMeasurements) GetStatus200() int32` +`func (o *DomainInspectorMeasurements) GetStatus200() int64` GetStatus200 returns the Status200 field if non-nil, zero value otherwise. ### GetStatus200Ok -`func (o *DomainInspectorMeasurements) GetStatus200Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus200Ok() (*int64, bool)` GetStatus200Ok returns a tuple with the Status200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus200 -`func (o *DomainInspectorMeasurements) SetStatus200(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus200(v int64)` SetStatus200 sets Status200 field to given value. @@ -313,20 +313,20 @@ HasStatus200 returns a boolean if a field has been set. ### GetStatus204 -`func (o *DomainInspectorMeasurements) GetStatus204() int32` +`func (o *DomainInspectorMeasurements) GetStatus204() int64` GetStatus204 returns the Status204 field if non-nil, zero value otherwise. ### GetStatus204Ok -`func (o *DomainInspectorMeasurements) GetStatus204Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus204Ok() (*int64, bool)` GetStatus204Ok returns a tuple with the Status204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus204 -`func (o *DomainInspectorMeasurements) SetStatus204(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus204(v int64)` SetStatus204 sets Status204 field to given value. @@ -338,20 +338,20 @@ HasStatus204 returns a boolean if a field has been set. ### GetStatus206 -`func (o *DomainInspectorMeasurements) GetStatus206() int32` +`func (o *DomainInspectorMeasurements) GetStatus206() int64` GetStatus206 returns the Status206 field if non-nil, zero value otherwise. ### GetStatus206Ok -`func (o *DomainInspectorMeasurements) GetStatus206Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus206Ok() (*int64, bool)` GetStatus206Ok returns a tuple with the Status206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus206 -`func (o *DomainInspectorMeasurements) SetStatus206(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus206(v int64)` SetStatus206 sets Status206 field to given value. @@ -363,20 +363,20 @@ HasStatus206 returns a boolean if a field has been set. ### GetStatus301 -`func (o *DomainInspectorMeasurements) GetStatus301() int32` +`func (o *DomainInspectorMeasurements) GetStatus301() int64` GetStatus301 returns the Status301 field if non-nil, zero value otherwise. ### GetStatus301Ok -`func (o *DomainInspectorMeasurements) GetStatus301Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus301Ok() (*int64, bool)` GetStatus301Ok returns a tuple with the Status301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus301 -`func (o *DomainInspectorMeasurements) SetStatus301(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus301(v int64)` SetStatus301 sets Status301 field to given value. @@ -388,20 +388,20 @@ HasStatus301 returns a boolean if a field has been set. ### GetStatus302 -`func (o *DomainInspectorMeasurements) GetStatus302() int32` +`func (o *DomainInspectorMeasurements) GetStatus302() int64` GetStatus302 returns the Status302 field if non-nil, zero value otherwise. ### GetStatus302Ok -`func (o *DomainInspectorMeasurements) GetStatus302Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus302Ok() (*int64, bool)` GetStatus302Ok returns a tuple with the Status302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus302 -`func (o *DomainInspectorMeasurements) SetStatus302(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus302(v int64)` SetStatus302 sets Status302 field to given value. @@ -413,20 +413,20 @@ HasStatus302 returns a boolean if a field has been set. ### GetStatus304 -`func (o *DomainInspectorMeasurements) GetStatus304() int32` +`func (o *DomainInspectorMeasurements) GetStatus304() int64` GetStatus304 returns the Status304 field if non-nil, zero value otherwise. ### GetStatus304Ok -`func (o *DomainInspectorMeasurements) GetStatus304Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus304Ok() (*int64, bool)` GetStatus304Ok returns a tuple with the Status304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus304 -`func (o *DomainInspectorMeasurements) SetStatus304(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus304(v int64)` SetStatus304 sets Status304 field to given value. @@ -438,20 +438,20 @@ HasStatus304 returns a boolean if a field has been set. ### GetStatus400 -`func (o *DomainInspectorMeasurements) GetStatus400() int32` +`func (o *DomainInspectorMeasurements) GetStatus400() int64` GetStatus400 returns the Status400 field if non-nil, zero value otherwise. ### GetStatus400Ok -`func (o *DomainInspectorMeasurements) GetStatus400Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus400Ok() (*int64, bool)` GetStatus400Ok returns a tuple with the Status400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus400 -`func (o *DomainInspectorMeasurements) SetStatus400(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus400(v int64)` SetStatus400 sets Status400 field to given value. @@ -463,20 +463,20 @@ HasStatus400 returns a boolean if a field has been set. ### GetStatus401 -`func (o *DomainInspectorMeasurements) GetStatus401() int32` +`func (o *DomainInspectorMeasurements) GetStatus401() int64` GetStatus401 returns the Status401 field if non-nil, zero value otherwise. ### GetStatus401Ok -`func (o *DomainInspectorMeasurements) GetStatus401Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus401Ok() (*int64, bool)` GetStatus401Ok returns a tuple with the Status401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus401 -`func (o *DomainInspectorMeasurements) SetStatus401(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus401(v int64)` SetStatus401 sets Status401 field to given value. @@ -488,20 +488,20 @@ HasStatus401 returns a boolean if a field has been set. ### GetStatus403 -`func (o *DomainInspectorMeasurements) GetStatus403() int32` +`func (o *DomainInspectorMeasurements) GetStatus403() int64` GetStatus403 returns the Status403 field if non-nil, zero value otherwise. ### GetStatus403Ok -`func (o *DomainInspectorMeasurements) GetStatus403Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus403Ok() (*int64, bool)` GetStatus403Ok returns a tuple with the Status403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus403 -`func (o *DomainInspectorMeasurements) SetStatus403(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus403(v int64)` SetStatus403 sets Status403 field to given value. @@ -513,20 +513,20 @@ HasStatus403 returns a boolean if a field has been set. ### GetStatus404 -`func (o *DomainInspectorMeasurements) GetStatus404() int32` +`func (o *DomainInspectorMeasurements) GetStatus404() int64` GetStatus404 returns the Status404 field if non-nil, zero value otherwise. ### GetStatus404Ok -`func (o *DomainInspectorMeasurements) GetStatus404Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus404Ok() (*int64, bool)` GetStatus404Ok returns a tuple with the Status404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus404 -`func (o *DomainInspectorMeasurements) SetStatus404(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus404(v int64)` SetStatus404 sets Status404 field to given value. @@ -538,20 +538,20 @@ HasStatus404 returns a boolean if a field has been set. ### GetStatus416 -`func (o *DomainInspectorMeasurements) GetStatus416() int32` +`func (o *DomainInspectorMeasurements) GetStatus416() int64` GetStatus416 returns the Status416 field if non-nil, zero value otherwise. ### GetStatus416Ok -`func (o *DomainInspectorMeasurements) GetStatus416Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus416Ok() (*int64, bool)` GetStatus416Ok returns a tuple with the Status416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus416 -`func (o *DomainInspectorMeasurements) SetStatus416(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus416(v int64)` SetStatus416 sets Status416 field to given value. @@ -563,20 +563,20 @@ HasStatus416 returns a boolean if a field has been set. ### GetStatus429 -`func (o *DomainInspectorMeasurements) GetStatus429() int32` +`func (o *DomainInspectorMeasurements) GetStatus429() int64` GetStatus429 returns the Status429 field if non-nil, zero value otherwise. ### GetStatus429Ok -`func (o *DomainInspectorMeasurements) GetStatus429Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus429Ok() (*int64, bool)` GetStatus429Ok returns a tuple with the Status429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus429 -`func (o *DomainInspectorMeasurements) SetStatus429(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus429(v int64)` SetStatus429 sets Status429 field to given value. @@ -588,20 +588,20 @@ HasStatus429 returns a boolean if a field has been set. ### GetStatus500 -`func (o *DomainInspectorMeasurements) GetStatus500() int32` +`func (o *DomainInspectorMeasurements) GetStatus500() int64` GetStatus500 returns the Status500 field if non-nil, zero value otherwise. ### GetStatus500Ok -`func (o *DomainInspectorMeasurements) GetStatus500Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus500Ok() (*int64, bool)` GetStatus500Ok returns a tuple with the Status500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus500 -`func (o *DomainInspectorMeasurements) SetStatus500(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus500(v int64)` SetStatus500 sets Status500 field to given value. @@ -613,20 +613,20 @@ HasStatus500 returns a boolean if a field has been set. ### GetStatus501 -`func (o *DomainInspectorMeasurements) GetStatus501() int32` +`func (o *DomainInspectorMeasurements) GetStatus501() int64` GetStatus501 returns the Status501 field if non-nil, zero value otherwise. ### GetStatus501Ok -`func (o *DomainInspectorMeasurements) GetStatus501Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus501Ok() (*int64, bool)` GetStatus501Ok returns a tuple with the Status501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus501 -`func (o *DomainInspectorMeasurements) SetStatus501(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus501(v int64)` SetStatus501 sets Status501 field to given value. @@ -638,20 +638,20 @@ HasStatus501 returns a boolean if a field has been set. ### GetStatus502 -`func (o *DomainInspectorMeasurements) GetStatus502() int32` +`func (o *DomainInspectorMeasurements) GetStatus502() int64` GetStatus502 returns the Status502 field if non-nil, zero value otherwise. ### GetStatus502Ok -`func (o *DomainInspectorMeasurements) GetStatus502Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus502Ok() (*int64, bool)` GetStatus502Ok returns a tuple with the Status502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus502 -`func (o *DomainInspectorMeasurements) SetStatus502(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus502(v int64)` SetStatus502 sets Status502 field to given value. @@ -663,20 +663,20 @@ HasStatus502 returns a boolean if a field has been set. ### GetStatus503 -`func (o *DomainInspectorMeasurements) GetStatus503() int32` +`func (o *DomainInspectorMeasurements) GetStatus503() int64` GetStatus503 returns the Status503 field if non-nil, zero value otherwise. ### GetStatus503Ok -`func (o *DomainInspectorMeasurements) GetStatus503Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus503Ok() (*int64, bool)` GetStatus503Ok returns a tuple with the Status503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus503 -`func (o *DomainInspectorMeasurements) SetStatus503(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus503(v int64)` SetStatus503 sets Status503 field to given value. @@ -688,20 +688,20 @@ HasStatus503 returns a boolean if a field has been set. ### GetStatus504 -`func (o *DomainInspectorMeasurements) GetStatus504() int32` +`func (o *DomainInspectorMeasurements) GetStatus504() int64` GetStatus504 returns the Status504 field if non-nil, zero value otherwise. ### GetStatus504Ok -`func (o *DomainInspectorMeasurements) GetStatus504Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus504Ok() (*int64, bool)` GetStatus504Ok returns a tuple with the Status504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus504 -`func (o *DomainInspectorMeasurements) SetStatus504(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus504(v int64)` SetStatus504 sets Status504 field to given value. @@ -713,20 +713,20 @@ HasStatus504 returns a boolean if a field has been set. ### GetStatus505 -`func (o *DomainInspectorMeasurements) GetStatus505() int32` +`func (o *DomainInspectorMeasurements) GetStatus505() int64` GetStatus505 returns the Status505 field if non-nil, zero value otherwise. ### GetStatus505Ok -`func (o *DomainInspectorMeasurements) GetStatus505Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetStatus505Ok() (*int64, bool)` GetStatus505Ok returns a tuple with the Status505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus505 -`func (o *DomainInspectorMeasurements) SetStatus505(v int32)` +`func (o *DomainInspectorMeasurements) SetStatus505(v int64)` SetStatus505 sets Status505 field to given value. @@ -738,20 +738,20 @@ HasStatus505 returns a boolean if a field has been set. ### GetRequests -`func (o *DomainInspectorMeasurements) GetRequests() int32` +`func (o *DomainInspectorMeasurements) GetRequests() int64` GetRequests returns the Requests field if non-nil, zero value otherwise. ### GetRequestsOk -`func (o *DomainInspectorMeasurements) GetRequestsOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetRequestsOk() (*int64, bool)` GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRequests -`func (o *DomainInspectorMeasurements) SetRequests(v int32)` +`func (o *DomainInspectorMeasurements) SetRequests(v int64)` SetRequests sets Requests field to given value. @@ -763,20 +763,20 @@ HasRequests returns a boolean if a field has been set. ### GetRespHeaderBytes -`func (o *DomainInspectorMeasurements) GetRespHeaderBytes() int32` +`func (o *DomainInspectorMeasurements) GetRespHeaderBytes() int64` GetRespHeaderBytes returns the RespHeaderBytes field if non-nil, zero value otherwise. ### GetRespHeaderBytesOk -`func (o *DomainInspectorMeasurements) GetRespHeaderBytesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetRespHeaderBytesOk() (*int64, bool)` GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespHeaderBytes -`func (o *DomainInspectorMeasurements) SetRespHeaderBytes(v int32)` +`func (o *DomainInspectorMeasurements) SetRespHeaderBytes(v int64)` SetRespHeaderBytes sets RespHeaderBytes field to given value. @@ -788,20 +788,20 @@ HasRespHeaderBytes returns a boolean if a field has been set. ### GetRespBodyBytes -`func (o *DomainInspectorMeasurements) GetRespBodyBytes() int32` +`func (o *DomainInspectorMeasurements) GetRespBodyBytes() int64` GetRespBodyBytes returns the RespBodyBytes field if non-nil, zero value otherwise. ### GetRespBodyBytesOk -`func (o *DomainInspectorMeasurements) GetRespBodyBytesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetRespBodyBytesOk() (*int64, bool)` GetRespBodyBytesOk returns a tuple with the RespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespBodyBytes -`func (o *DomainInspectorMeasurements) SetRespBodyBytes(v int32)` +`func (o *DomainInspectorMeasurements) SetRespBodyBytes(v int64)` SetRespBodyBytes sets RespBodyBytes field to given value. @@ -813,20 +813,20 @@ HasRespBodyBytes returns a boolean if a field has been set. ### GetBereqHeaderBytes -`func (o *DomainInspectorMeasurements) GetBereqHeaderBytes() int32` +`func (o *DomainInspectorMeasurements) GetBereqHeaderBytes() int64` GetBereqHeaderBytes returns the BereqHeaderBytes field if non-nil, zero value otherwise. ### GetBereqHeaderBytesOk -`func (o *DomainInspectorMeasurements) GetBereqHeaderBytesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetBereqHeaderBytesOk() (*int64, bool)` GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqHeaderBytes -`func (o *DomainInspectorMeasurements) SetBereqHeaderBytes(v int32)` +`func (o *DomainInspectorMeasurements) SetBereqHeaderBytes(v int64)` SetBereqHeaderBytes sets BereqHeaderBytes field to given value. @@ -838,20 +838,20 @@ HasBereqHeaderBytes returns a boolean if a field has been set. ### GetBereqBodyBytes -`func (o *DomainInspectorMeasurements) GetBereqBodyBytes() int32` +`func (o *DomainInspectorMeasurements) GetBereqBodyBytes() int64` GetBereqBodyBytes returns the BereqBodyBytes field if non-nil, zero value otherwise. ### GetBereqBodyBytesOk -`func (o *DomainInspectorMeasurements) GetBereqBodyBytesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetBereqBodyBytesOk() (*int64, bool)` GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqBodyBytes -`func (o *DomainInspectorMeasurements) SetBereqBodyBytes(v int32)` +`func (o *DomainInspectorMeasurements) SetBereqBodyBytes(v int64)` SetBereqBodyBytes sets BereqBodyBytes field to given value. @@ -863,20 +863,20 @@ HasBereqBodyBytes returns a boolean if a field has been set. ### GetEdgeHitRequests -`func (o *DomainInspectorMeasurements) GetEdgeHitRequests() int32` +`func (o *DomainInspectorMeasurements) GetEdgeHitRequests() int64` GetEdgeHitRequests returns the EdgeHitRequests field if non-nil, zero value otherwise. ### GetEdgeHitRequestsOk -`func (o *DomainInspectorMeasurements) GetEdgeHitRequestsOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetEdgeHitRequestsOk() (*int64, bool)` GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRequests -`func (o *DomainInspectorMeasurements) SetEdgeHitRequests(v int32)` +`func (o *DomainInspectorMeasurements) SetEdgeHitRequests(v int64)` SetEdgeHitRequests sets EdgeHitRequests field to given value. @@ -888,20 +888,20 @@ HasEdgeHitRequests returns a boolean if a field has been set. ### GetEdgeMissRequests -`func (o *DomainInspectorMeasurements) GetEdgeMissRequests() int32` +`func (o *DomainInspectorMeasurements) GetEdgeMissRequests() int64` GetEdgeMissRequests returns the EdgeMissRequests field if non-nil, zero value otherwise. ### GetEdgeMissRequestsOk -`func (o *DomainInspectorMeasurements) GetEdgeMissRequestsOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetEdgeMissRequestsOk() (*int64, bool)` GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRequests -`func (o *DomainInspectorMeasurements) SetEdgeMissRequests(v int32)` +`func (o *DomainInspectorMeasurements) SetEdgeMissRequests(v int64)` SetEdgeMissRequests sets EdgeMissRequests field to given value. @@ -913,20 +913,20 @@ HasEdgeMissRequests returns a boolean if a field has been set. ### GetOriginFetches -`func (o *DomainInspectorMeasurements) GetOriginFetches() int32` +`func (o *DomainInspectorMeasurements) GetOriginFetches() int64` GetOriginFetches returns the OriginFetches field if non-nil, zero value otherwise. ### GetOriginFetchesOk -`func (o *DomainInspectorMeasurements) GetOriginFetchesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginFetchesOk() (*int64, bool)` GetOriginFetchesOk returns a tuple with the OriginFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetches -`func (o *DomainInspectorMeasurements) SetOriginFetches(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginFetches(v int64)` SetOriginFetches sets OriginFetches field to given value. @@ -938,20 +938,20 @@ HasOriginFetches returns a boolean if a field has been set. ### GetOriginFetchRespHeaderBytes -`func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytes() int32` +`func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytes() int64` GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespHeaderBytesOk -`func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytesOk() (*int64, bool)` GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespHeaderBytes -`func (o *DomainInspectorMeasurements) SetOriginFetchRespHeaderBytes(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginFetchRespHeaderBytes(v int64)` SetOriginFetchRespHeaderBytes sets OriginFetchRespHeaderBytes field to given value. @@ -963,20 +963,20 @@ HasOriginFetchRespHeaderBytes returns a boolean if a field has been set. ### GetOriginFetchRespBodyBytes -`func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytes() int32` +`func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytes() int64` GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespBodyBytesOk -`func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytesOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytesOk() (*int64, bool)` GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespBodyBytes -`func (o *DomainInspectorMeasurements) SetOriginFetchRespBodyBytes(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginFetchRespBodyBytes(v int64)` SetOriginFetchRespBodyBytes sets OriginFetchRespBodyBytes field to given value. @@ -988,20 +988,20 @@ HasOriginFetchRespBodyBytes returns a boolean if a field has been set. ### GetBandwidth -`func (o *DomainInspectorMeasurements) GetBandwidth() int32` +`func (o *DomainInspectorMeasurements) GetBandwidth() int64` GetBandwidth returns the Bandwidth field if non-nil, zero value otherwise. ### GetBandwidthOk -`func (o *DomainInspectorMeasurements) GetBandwidthOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetBandwidthOk() (*int64, bool)` GetBandwidthOk returns a tuple with the Bandwidth field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBandwidth -`func (o *DomainInspectorMeasurements) SetBandwidth(v int32)` +`func (o *DomainInspectorMeasurements) SetBandwidth(v int64)` SetBandwidth sets Bandwidth field to given value. @@ -1063,20 +1063,20 @@ HasOriginOffload returns a boolean if a field has been set. ### GetOriginStatus200 -`func (o *DomainInspectorMeasurements) GetOriginStatus200() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus200() int64` GetOriginStatus200 returns the OriginStatus200 field if non-nil, zero value otherwise. ### GetOriginStatus200Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus200Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus200Ok() (*int64, bool)` GetOriginStatus200Ok returns a tuple with the OriginStatus200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus200 -`func (o *DomainInspectorMeasurements) SetOriginStatus200(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus200(v int64)` SetOriginStatus200 sets OriginStatus200 field to given value. @@ -1088,20 +1088,20 @@ HasOriginStatus200 returns a boolean if a field has been set. ### GetOriginStatus204 -`func (o *DomainInspectorMeasurements) GetOriginStatus204() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus204() int64` GetOriginStatus204 returns the OriginStatus204 field if non-nil, zero value otherwise. ### GetOriginStatus204Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus204Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus204Ok() (*int64, bool)` GetOriginStatus204Ok returns a tuple with the OriginStatus204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus204 -`func (o *DomainInspectorMeasurements) SetOriginStatus204(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus204(v int64)` SetOriginStatus204 sets OriginStatus204 field to given value. @@ -1113,20 +1113,20 @@ HasOriginStatus204 returns a boolean if a field has been set. ### GetOriginStatus206 -`func (o *DomainInspectorMeasurements) GetOriginStatus206() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus206() int64` GetOriginStatus206 returns the OriginStatus206 field if non-nil, zero value otherwise. ### GetOriginStatus206Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus206Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus206Ok() (*int64, bool)` GetOriginStatus206Ok returns a tuple with the OriginStatus206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus206 -`func (o *DomainInspectorMeasurements) SetOriginStatus206(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus206(v int64)` SetOriginStatus206 sets OriginStatus206 field to given value. @@ -1138,20 +1138,20 @@ HasOriginStatus206 returns a boolean if a field has been set. ### GetOriginStatus301 -`func (o *DomainInspectorMeasurements) GetOriginStatus301() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus301() int64` GetOriginStatus301 returns the OriginStatus301 field if non-nil, zero value otherwise. ### GetOriginStatus301Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus301Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus301Ok() (*int64, bool)` GetOriginStatus301Ok returns a tuple with the OriginStatus301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus301 -`func (o *DomainInspectorMeasurements) SetOriginStatus301(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus301(v int64)` SetOriginStatus301 sets OriginStatus301 field to given value. @@ -1163,20 +1163,20 @@ HasOriginStatus301 returns a boolean if a field has been set. ### GetOriginStatus302 -`func (o *DomainInspectorMeasurements) GetOriginStatus302() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus302() int64` GetOriginStatus302 returns the OriginStatus302 field if non-nil, zero value otherwise. ### GetOriginStatus302Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus302Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus302Ok() (*int64, bool)` GetOriginStatus302Ok returns a tuple with the OriginStatus302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus302 -`func (o *DomainInspectorMeasurements) SetOriginStatus302(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus302(v int64)` SetOriginStatus302 sets OriginStatus302 field to given value. @@ -1188,20 +1188,20 @@ HasOriginStatus302 returns a boolean if a field has been set. ### GetOriginStatus304 -`func (o *DomainInspectorMeasurements) GetOriginStatus304() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus304() int64` GetOriginStatus304 returns the OriginStatus304 field if non-nil, zero value otherwise. ### GetOriginStatus304Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus304Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus304Ok() (*int64, bool)` GetOriginStatus304Ok returns a tuple with the OriginStatus304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus304 -`func (o *DomainInspectorMeasurements) SetOriginStatus304(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus304(v int64)` SetOriginStatus304 sets OriginStatus304 field to given value. @@ -1213,20 +1213,20 @@ HasOriginStatus304 returns a boolean if a field has been set. ### GetOriginStatus400 -`func (o *DomainInspectorMeasurements) GetOriginStatus400() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus400() int64` GetOriginStatus400 returns the OriginStatus400 field if non-nil, zero value otherwise. ### GetOriginStatus400Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus400Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus400Ok() (*int64, bool)` GetOriginStatus400Ok returns a tuple with the OriginStatus400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus400 -`func (o *DomainInspectorMeasurements) SetOriginStatus400(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus400(v int64)` SetOriginStatus400 sets OriginStatus400 field to given value. @@ -1238,20 +1238,20 @@ HasOriginStatus400 returns a boolean if a field has been set. ### GetOriginStatus401 -`func (o *DomainInspectorMeasurements) GetOriginStatus401() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus401() int64` GetOriginStatus401 returns the OriginStatus401 field if non-nil, zero value otherwise. ### GetOriginStatus401Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus401Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus401Ok() (*int64, bool)` GetOriginStatus401Ok returns a tuple with the OriginStatus401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus401 -`func (o *DomainInspectorMeasurements) SetOriginStatus401(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus401(v int64)` SetOriginStatus401 sets OriginStatus401 field to given value. @@ -1263,20 +1263,20 @@ HasOriginStatus401 returns a boolean if a field has been set. ### GetOriginStatus403 -`func (o *DomainInspectorMeasurements) GetOriginStatus403() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus403() int64` GetOriginStatus403 returns the OriginStatus403 field if non-nil, zero value otherwise. ### GetOriginStatus403Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus403Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus403Ok() (*int64, bool)` GetOriginStatus403Ok returns a tuple with the OriginStatus403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus403 -`func (o *DomainInspectorMeasurements) SetOriginStatus403(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus403(v int64)` SetOriginStatus403 sets OriginStatus403 field to given value. @@ -1288,20 +1288,20 @@ HasOriginStatus403 returns a boolean if a field has been set. ### GetOriginStatus404 -`func (o *DomainInspectorMeasurements) GetOriginStatus404() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus404() int64` GetOriginStatus404 returns the OriginStatus404 field if non-nil, zero value otherwise. ### GetOriginStatus404Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus404Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus404Ok() (*int64, bool)` GetOriginStatus404Ok returns a tuple with the OriginStatus404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus404 -`func (o *DomainInspectorMeasurements) SetOriginStatus404(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus404(v int64)` SetOriginStatus404 sets OriginStatus404 field to given value. @@ -1313,20 +1313,20 @@ HasOriginStatus404 returns a boolean if a field has been set. ### GetOriginStatus416 -`func (o *DomainInspectorMeasurements) GetOriginStatus416() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus416() int64` GetOriginStatus416 returns the OriginStatus416 field if non-nil, zero value otherwise. ### GetOriginStatus416Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus416Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus416Ok() (*int64, bool)` GetOriginStatus416Ok returns a tuple with the OriginStatus416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus416 -`func (o *DomainInspectorMeasurements) SetOriginStatus416(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus416(v int64)` SetOriginStatus416 sets OriginStatus416 field to given value. @@ -1338,20 +1338,20 @@ HasOriginStatus416 returns a boolean if a field has been set. ### GetOriginStatus429 -`func (o *DomainInspectorMeasurements) GetOriginStatus429() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus429() int64` GetOriginStatus429 returns the OriginStatus429 field if non-nil, zero value otherwise. ### GetOriginStatus429Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus429Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus429Ok() (*int64, bool)` GetOriginStatus429Ok returns a tuple with the OriginStatus429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus429 -`func (o *DomainInspectorMeasurements) SetOriginStatus429(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus429(v int64)` SetOriginStatus429 sets OriginStatus429 field to given value. @@ -1363,20 +1363,20 @@ HasOriginStatus429 returns a boolean if a field has been set. ### GetOriginStatus500 -`func (o *DomainInspectorMeasurements) GetOriginStatus500() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus500() int64` GetOriginStatus500 returns the OriginStatus500 field if non-nil, zero value otherwise. ### GetOriginStatus500Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus500Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus500Ok() (*int64, bool)` GetOriginStatus500Ok returns a tuple with the OriginStatus500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus500 -`func (o *DomainInspectorMeasurements) SetOriginStatus500(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus500(v int64)` SetOriginStatus500 sets OriginStatus500 field to given value. @@ -1388,20 +1388,20 @@ HasOriginStatus500 returns a boolean if a field has been set. ### GetOriginStatus501 -`func (o *DomainInspectorMeasurements) GetOriginStatus501() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus501() int64` GetOriginStatus501 returns the OriginStatus501 field if non-nil, zero value otherwise. ### GetOriginStatus501Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus501Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus501Ok() (*int64, bool)` GetOriginStatus501Ok returns a tuple with the OriginStatus501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus501 -`func (o *DomainInspectorMeasurements) SetOriginStatus501(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus501(v int64)` SetOriginStatus501 sets OriginStatus501 field to given value. @@ -1413,20 +1413,20 @@ HasOriginStatus501 returns a boolean if a field has been set. ### GetOriginStatus502 -`func (o *DomainInspectorMeasurements) GetOriginStatus502() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus502() int64` GetOriginStatus502 returns the OriginStatus502 field if non-nil, zero value otherwise. ### GetOriginStatus502Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus502Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus502Ok() (*int64, bool)` GetOriginStatus502Ok returns a tuple with the OriginStatus502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus502 -`func (o *DomainInspectorMeasurements) SetOriginStatus502(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus502(v int64)` SetOriginStatus502 sets OriginStatus502 field to given value. @@ -1438,20 +1438,20 @@ HasOriginStatus502 returns a boolean if a field has been set. ### GetOriginStatus503 -`func (o *DomainInspectorMeasurements) GetOriginStatus503() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus503() int64` GetOriginStatus503 returns the OriginStatus503 field if non-nil, zero value otherwise. ### GetOriginStatus503Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus503Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus503Ok() (*int64, bool)` GetOriginStatus503Ok returns a tuple with the OriginStatus503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus503 -`func (o *DomainInspectorMeasurements) SetOriginStatus503(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus503(v int64)` SetOriginStatus503 sets OriginStatus503 field to given value. @@ -1463,20 +1463,20 @@ HasOriginStatus503 returns a boolean if a field has been set. ### GetOriginStatus504 -`func (o *DomainInspectorMeasurements) GetOriginStatus504() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus504() int64` GetOriginStatus504 returns the OriginStatus504 field if non-nil, zero value otherwise. ### GetOriginStatus504Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus504Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus504Ok() (*int64, bool)` GetOriginStatus504Ok returns a tuple with the OriginStatus504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus504 -`func (o *DomainInspectorMeasurements) SetOriginStatus504(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus504(v int64)` SetOriginStatus504 sets OriginStatus504 field to given value. @@ -1488,20 +1488,20 @@ HasOriginStatus504 returns a boolean if a field has been set. ### GetOriginStatus505 -`func (o *DomainInspectorMeasurements) GetOriginStatus505() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus505() int64` GetOriginStatus505 returns the OriginStatus505 field if non-nil, zero value otherwise. ### GetOriginStatus505Ok -`func (o *DomainInspectorMeasurements) GetOriginStatus505Ok() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus505Ok() (*int64, bool)` GetOriginStatus505Ok returns a tuple with the OriginStatus505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus505 -`func (o *DomainInspectorMeasurements) SetOriginStatus505(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus505(v int64)` SetOriginStatus505 sets OriginStatus505 field to given value. @@ -1513,20 +1513,20 @@ HasOriginStatus505 returns a boolean if a field has been set. ### GetOriginStatus1xx -`func (o *DomainInspectorMeasurements) GetOriginStatus1xx() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus1xx() int64` GetOriginStatus1xx returns the OriginStatus1xx field if non-nil, zero value otherwise. ### GetOriginStatus1xxOk -`func (o *DomainInspectorMeasurements) GetOriginStatus1xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus1xxOk() (*int64, bool)` GetOriginStatus1xxOk returns a tuple with the OriginStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus1xx -`func (o *DomainInspectorMeasurements) SetOriginStatus1xx(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus1xx(v int64)` SetOriginStatus1xx sets OriginStatus1xx field to given value. @@ -1538,20 +1538,20 @@ HasOriginStatus1xx returns a boolean if a field has been set. ### GetOriginStatus2xx -`func (o *DomainInspectorMeasurements) GetOriginStatus2xx() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus2xx() int64` GetOriginStatus2xx returns the OriginStatus2xx field if non-nil, zero value otherwise. ### GetOriginStatus2xxOk -`func (o *DomainInspectorMeasurements) GetOriginStatus2xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus2xxOk() (*int64, bool)` GetOriginStatus2xxOk returns a tuple with the OriginStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus2xx -`func (o *DomainInspectorMeasurements) SetOriginStatus2xx(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus2xx(v int64)` SetOriginStatus2xx sets OriginStatus2xx field to given value. @@ -1563,20 +1563,20 @@ HasOriginStatus2xx returns a boolean if a field has been set. ### GetOriginStatus3xx -`func (o *DomainInspectorMeasurements) GetOriginStatus3xx() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus3xx() int64` GetOriginStatus3xx returns the OriginStatus3xx field if non-nil, zero value otherwise. ### GetOriginStatus3xxOk -`func (o *DomainInspectorMeasurements) GetOriginStatus3xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus3xxOk() (*int64, bool)` GetOriginStatus3xxOk returns a tuple with the OriginStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus3xx -`func (o *DomainInspectorMeasurements) SetOriginStatus3xx(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus3xx(v int64)` SetOriginStatus3xx sets OriginStatus3xx field to given value. @@ -1588,20 +1588,20 @@ HasOriginStatus3xx returns a boolean if a field has been set. ### GetOriginStatus4xx -`func (o *DomainInspectorMeasurements) GetOriginStatus4xx() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus4xx() int64` GetOriginStatus4xx returns the OriginStatus4xx field if non-nil, zero value otherwise. ### GetOriginStatus4xxOk -`func (o *DomainInspectorMeasurements) GetOriginStatus4xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus4xxOk() (*int64, bool)` GetOriginStatus4xxOk returns a tuple with the OriginStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus4xx -`func (o *DomainInspectorMeasurements) SetOriginStatus4xx(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus4xx(v int64)` SetOriginStatus4xx sets OriginStatus4xx field to given value. @@ -1613,20 +1613,20 @@ HasOriginStatus4xx returns a boolean if a field has been set. ### GetOriginStatus5xx -`func (o *DomainInspectorMeasurements) GetOriginStatus5xx() int32` +`func (o *DomainInspectorMeasurements) GetOriginStatus5xx() int64` GetOriginStatus5xx returns the OriginStatus5xx field if non-nil, zero value otherwise. ### GetOriginStatus5xxOk -`func (o *DomainInspectorMeasurements) GetOriginStatus5xxOk() (*int32, bool)` +`func (o *DomainInspectorMeasurements) GetOriginStatus5xxOk() (*int64, bool)` GetOriginStatus5xxOk returns a tuple with the OriginStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus5xx -`func (o *DomainInspectorMeasurements) SetOriginStatus5xx(v int32)` +`func (o *DomainInspectorMeasurements) SetOriginStatus5xx(v int64)` SetOriginStatus5xx sets OriginStatus5xx field to given value. diff --git a/docs/OriginInspectorMeasurements.md b/docs/OriginInspectorMeasurements.md index 8db7096..9fed150 100644 --- a/docs/OriginInspectorMeasurements.md +++ b/docs/OriginInspectorMeasurements.md @@ -4,158 +4,158 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**Responses** | Pointer to **int32** | Number of responses from origin. | [optional] -**RespHeaderBytes** | Pointer to **int32** | Number of header bytes from origin. | [optional] -**RespBodyBytes** | Pointer to **int32** | Number of body bytes from origin. | [optional] -**Status1xx** | Pointer to **int32** | Number of 1xx \"Informational\" status codes delivered from origin. | [optional] -**Status2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes delivered from origin. | [optional] -**Status3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes delivered from origin. | [optional] -**Status4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes delivered from origin. | [optional] -**Status5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes delivered from origin. | [optional] -**Status200** | Pointer to **int32** | Number of responses received with status code 200 (Success) from origin. | [optional] -**Status204** | Pointer to **int32** | Number of responses received with status code 204 (No Content) from origin. | [optional] -**Status206** | Pointer to **int32** | Number of responses received with status code 206 (Partial Content) from origin. | [optional] -**Status301** | Pointer to **int32** | Number of responses received with status code 301 (Moved Permanently) from origin. | [optional] -**Status302** | Pointer to **int32** | Number of responses received with status code 302 (Found) from origin. | [optional] -**Status304** | Pointer to **int32** | Number of responses received with status code 304 (Not Modified) from origin. | [optional] -**Status400** | Pointer to **int32** | Number of responses received with status code 400 (Bad Request) from origin. | [optional] -**Status401** | Pointer to **int32** | Number of responses received with status code 401 (Unauthorized) from origin. | [optional] -**Status403** | Pointer to **int32** | Number of responses received with status code 403 (Forbidden) from origin. | [optional] -**Status404** | Pointer to **int32** | Number of responses received with status code 404 (Not Found) from origin. | [optional] -**Status416** | Pointer to **int32** | Number of responses received with status code 416 (Range Not Satisfiable) from origin. | [optional] -**Status429** | Pointer to **int32** | Number of responses received with status code 429 (Too Many Requests) from origin. | [optional] -**Status500** | Pointer to **int32** | Number of responses received with status code 500 (Internal Server Error) from origin. | [optional] -**Status501** | Pointer to **int32** | Number of responses received with status code 501 (Not Implemented) from origin. | [optional] -**Status502** | Pointer to **int32** | Number of responses received with status code 502 (Bad Gateway) from origin. | [optional] -**Status503** | Pointer to **int32** | Number of responses received with status code 503 (Service Unavailable) from origin. | [optional] -**Status504** | Pointer to **int32** | Number of responses received with status code 504 (Gateway Timeout) from origin. | [optional] -**Status505** | Pointer to **int32** | Number of responses received with status code 505 (HTTP Version Not Supported) from origin. | [optional] -**Latency0To1ms** | Pointer to **int32** | Number of responses from origin with latency between 0 and 1 millisecond. | [optional] -**Latency1To5ms** | Pointer to **int32** | Number of responses from origin with latency between 1 and 5 milliseconds. | [optional] -**Latency5To10ms** | Pointer to **int32** | Number of responses from origin with latency between 5 and 10 milliseconds. | [optional] -**Latency10To50ms** | Pointer to **int32** | Number of responses from origin with latency between 10 and 50 milliseconds. | [optional] -**Latency50To100ms** | Pointer to **int32** | Number of responses from origin with latency between 50 and 100 milliseconds. | [optional] -**Latency100To250ms** | Pointer to **int32** | Number of responses from origin with latency between 100 and 250 milliseconds. | [optional] -**Latency250To500ms** | Pointer to **int32** | Number of responses from origin with latency between 250 and 500 milliseconds. | [optional] -**Latency500To1000ms** | Pointer to **int32** | Number of responses from origin with latency between 500 and 1,000 milliseconds. | [optional] -**Latency1000To5000ms** | Pointer to **int32** | Number of responses from origin with latency between 1,000 and 5,000 milliseconds. | [optional] -**Latency5000To10000ms** | Pointer to **int32** | Number of responses from origin with latency between 5,000 and 10,000 milliseconds. | [optional] -**Latency10000To60000ms** | Pointer to **int32** | Number of responses from origin with latency between 10,000 and 60,000 milliseconds. | [optional] -**Latency60000ms** | Pointer to **int32** | Number of responses from origin with latency of 60,000 milliseconds and above. | [optional] -**WafResponses** | Pointer to **int32** | Number of responses received for origin requests made by the Fastly WAF. | [optional] -**WafRespHeaderBytes** | Pointer to **int32** | Number of header bytes received for origin requests made by the Fastly WAF. | [optional] -**WafRespBodyBytes** | Pointer to **int32** | Number of body bytes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus1xx** | Pointer to **int32** | Number of 1xx \"Informational\" status codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus200** | Pointer to **int32** | Number of responses received with status code 200 (Success) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus204** | Pointer to **int32** | Number of responses received with status code 204 (No Content) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus206** | Pointer to **int32** | Number of responses received with status code 206 (Partial Content) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus301** | Pointer to **int32** | Number of responses received with status code 301 (Moved Permanently) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus302** | Pointer to **int32** | Number of responses received with status code 302 (Found) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus304** | Pointer to **int32** | Number of responses received with status code 304 (Not Modified) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus400** | Pointer to **int32** | Number of responses received with status code 400 (Bad Request) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus401** | Pointer to **int32** | Number of responses received with status code 401 (Unauthorized) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus403** | Pointer to **int32** | Number of responses received with status code 403 (Forbidden) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus404** | Pointer to **int32** | Number of responses received with status code 404 (Not Found) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus416** | Pointer to **int32** | Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus429** | Pointer to **int32** | Number of responses received with status code 429 (Too Many Requests) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus500** | Pointer to **int32** | Number of responses received with status code 500 (Internal Server Error) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus501** | Pointer to **int32** | Number of responses received with status code 501 (Not Implemented) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus502** | Pointer to **int32** | Number of responses received with status code 502 (Bad Gateway) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus503** | Pointer to **int32** | Number of responses received with status code 503 (Service Unavailable) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus504** | Pointer to **int32** | Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus505** | Pointer to **int32** | Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by the Fastly WAF. | [optional] -**WafLatency0To1ms** | Pointer to **int32** | Number of responses with latency between 0 and 1 millisecond received for origin requests made by the Fastly WAF. | [optional] -**WafLatency1To5ms** | Pointer to **int32** | Number of responses with latency between 1 and 5 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency5To10ms** | Pointer to **int32** | Number of responses with latency between 5 and 10 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency10To50ms** | Pointer to **int32** | Number of responses with latency between 10 and 50 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency50To100ms** | Pointer to **int32** | Number of responses with latency between 50 and 100 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency100To250ms** | Pointer to **int32** | Number of responses with latency between 100 and 250 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency250To500ms** | Pointer to **int32** | Number of responses with latency between 250 and 500 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency500To1000ms** | Pointer to **int32** | Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency1000To5000ms** | Pointer to **int32** | Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency5000To10000ms** | Pointer to **int32** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency10000To60000ms** | Pointer to **int32** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency60000ms** | Pointer to **int32** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. | [optional] -**ComputeResponses** | Pointer to **int32** | Number of responses for origin received by the Compute platform. | [optional] -**ComputeRespHeaderBytes** | Pointer to **int32** | Number of header bytes for origin received by the Compute platform. | [optional] -**ComputeRespBodyBytes** | Pointer to **int32** | Number of body bytes for origin received by the Compute platform. | [optional] -**ComputeStatus1xx** | Pointer to **int32** | Number of 1xx \"Informational\" status codes for origin received by the Compute platform. | [optional] -**ComputeStatus2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes for origin received by the Compute platform. | [optional] -**ComputeStatus3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes for origin received by the Compute platform. | [optional] -**ComputeStatus4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes for origin received by the Compute platform. | [optional] -**ComputeStatus5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes for origin received by the Compute platform. | [optional] -**ComputeStatus200** | Pointer to **int32** | Number of responses received with status code 200 (Success) for origin received by the Compute platform. | [optional] -**ComputeStatus204** | Pointer to **int32** | Number of responses received with status code 204 (No Content) for origin received by the Compute platform. | [optional] -**ComputeStatus206** | Pointer to **int32** | Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. | [optional] -**ComputeStatus301** | Pointer to **int32** | Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. | [optional] -**ComputeStatus302** | Pointer to **int32** | Number of responses received with status code 302 (Found) for origin received by the Compute platform. | [optional] -**ComputeStatus304** | Pointer to **int32** | Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. | [optional] -**ComputeStatus400** | Pointer to **int32** | Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. | [optional] -**ComputeStatus401** | Pointer to **int32** | Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. | [optional] -**ComputeStatus403** | Pointer to **int32** | Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. | [optional] -**ComputeStatus404** | Pointer to **int32** | Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. | [optional] -**ComputeStatus416** | Pointer to **int32** | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. | [optional] -**ComputeStatus429** | Pointer to **int32** | Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. | [optional] -**ComputeStatus500** | Pointer to **int32** | Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. | [optional] -**ComputeStatus501** | Pointer to **int32** | Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. | [optional] -**ComputeStatus502** | Pointer to **int32** | Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. | [optional] -**ComputeStatus503** | Pointer to **int32** | Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. | [optional] -**ComputeStatus504** | Pointer to **int32** | Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. | [optional] -**ComputeStatus505** | Pointer to **int32** | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. | [optional] -**ComputeLatency0To1ms** | Pointer to **int32** | Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. | [optional] -**ComputeLatency1To5ms** | Pointer to **int32** | Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency5To10ms** | Pointer to **int32** | Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency10To50ms** | Pointer to **int32** | Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency50To100ms** | Pointer to **int32** | Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency100To250ms** | Pointer to **int32** | Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency250To500ms** | Pointer to **int32** | Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency500To1000ms** | Pointer to **int32** | Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency1000To5000ms** | Pointer to **int32** | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency5000To10000ms** | Pointer to **int32** | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency10000To60000ms** | Pointer to **int32** | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency60000ms** | Pointer to **int32** | Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. | [optional] -**AllResponses** | Pointer to **int32** | Number of responses received for origin requests made by all sources. | [optional] -**AllRespHeaderBytes** | Pointer to **int32** | Number of header bytes received for origin requests made by all sources. | [optional] -**AllRespBodyBytes** | Pointer to **int32** | Number of body bytes received for origin requests made by all sources. | [optional] -**AllStatus1xx** | Pointer to **int32** | Number of 1xx \"Informational\" category status codes delivered received for origin requests made by all sources. | [optional] -**AllStatus2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes received for origin requests made by all sources. | [optional] -**AllStatus3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes received for origin requests made by all sources. | [optional] -**AllStatus4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes received for origin requests made by all sources. | [optional] -**AllStatus5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes received for origin requests made by all sources. | [optional] -**AllStatus200** | Pointer to **int32** | Number of responses received with status code 200 (Success) received for origin requests made by all sources. | [optional] -**AllStatus204** | Pointer to **int32** | Number of responses received with status code 204 (No Content) received for origin requests made by all sources. | [optional] -**AllStatus206** | Pointer to **int32** | Number of responses received with status code 206 (Partial Content) received for origin requests made by all sources. | [optional] -**AllStatus301** | Pointer to **int32** | Number of responses received with status code 301 (Moved Permanently) received for origin requests made by all sources. | [optional] -**AllStatus302** | Pointer to **int32** | Number of responses received with status code 302 (Found) received for origin requests made by all sources. | [optional] -**AllStatus304** | Pointer to **int32** | Number of responses received with status code 304 (Not Modified) received for origin requests made by all sources. | [optional] -**AllStatus400** | Pointer to **int32** | Number of responses received with status code 400 (Bad Request) received for origin requests made by all sources. | [optional] -**AllStatus401** | Pointer to **int32** | Number of responses received with status code 401 (Unauthorized) received for origin requests made by all sources. | [optional] -**AllStatus403** | Pointer to **int32** | Number of responses received with status code 403 (Forbidden) received for origin requests made by all sources. | [optional] -**AllStatus404** | Pointer to **int32** | Number of responses received with status code 404 (Not Found) received for origin requests made by all sources. | [optional] -**AllStatus416** | Pointer to **int32** | Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by all sources. | [optional] -**AllStatus429** | Pointer to **int32** | Number of responses received with status code 429 (Too Many Requests) received for origin requests made by all sources. | [optional] -**AllStatus500** | Pointer to **int32** | Number of responses received with status code 500 (Internal Server Error) received for origin requests made by all sources. | [optional] -**AllStatus501** | Pointer to **int32** | Number of responses received with status code 501 (Not Implemented) received for origin requests made by all sources. | [optional] -**AllStatus502** | Pointer to **int32** | Number of responses received with status code 502 (Bad Gateway) received for origin requests made by all sources. | [optional] -**AllStatus503** | Pointer to **int32** | Number of responses received with status code 503 (Service Unavailable) received for origin requests made by all sources. | [optional] -**AllStatus504** | Pointer to **int32** | Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by all sources. | [optional] -**AllStatus505** | Pointer to **int32** | Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by all sources. | [optional] -**AllLatency0To1ms** | Pointer to **int32** | Number of responses with latency between 0 and 1 millisecond received for origin requests made by all sources. | [optional] -**AllLatency1To5ms** | Pointer to **int32** | Number of responses with latency between 1 and 5 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency5To10ms** | Pointer to **int32** | Number of responses with latency between 5 and 10 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency10To50ms** | Pointer to **int32** | Number of responses with latency between 10 and 50 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency50To100ms** | Pointer to **int32** | Number of responses with latency between 50 and 100 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency100To250ms** | Pointer to **int32** | Number of responses with latency between 100 and 250 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency250To500ms** | Pointer to **int32** | Number of responses with latency between 250 and 500 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency500To1000ms** | Pointer to **int32** | Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency1000To5000ms** | Pointer to **int32** | Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency5000To10000ms** | Pointer to **int32** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency10000To60000ms** | Pointer to **int32** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency60000ms** | Pointer to **int32** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by all sources. | [optional] +**Responses** | Pointer to **int64** | Number of responses from origin. | [optional] +**RespHeaderBytes** | Pointer to **int64** | Number of header bytes from origin. | [optional] +**RespBodyBytes** | Pointer to **int64** | Number of body bytes from origin. | [optional] +**Status1xx** | Pointer to **int64** | Number of 1xx \"Informational\" status codes delivered from origin. | [optional] +**Status2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes delivered from origin. | [optional] +**Status3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes delivered from origin. | [optional] +**Status4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes delivered from origin. | [optional] +**Status5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes delivered from origin. | [optional] +**Status200** | Pointer to **int64** | Number of responses received with status code 200 (Success) from origin. | [optional] +**Status204** | Pointer to **int64** | Number of responses received with status code 204 (No Content) from origin. | [optional] +**Status206** | Pointer to **int64** | Number of responses received with status code 206 (Partial Content) from origin. | [optional] +**Status301** | Pointer to **int64** | Number of responses received with status code 301 (Moved Permanently) from origin. | [optional] +**Status302** | Pointer to **int64** | Number of responses received with status code 302 (Found) from origin. | [optional] +**Status304** | Pointer to **int64** | Number of responses received with status code 304 (Not Modified) from origin. | [optional] +**Status400** | Pointer to **int64** | Number of responses received with status code 400 (Bad Request) from origin. | [optional] +**Status401** | Pointer to **int64** | Number of responses received with status code 401 (Unauthorized) from origin. | [optional] +**Status403** | Pointer to **int64** | Number of responses received with status code 403 (Forbidden) from origin. | [optional] +**Status404** | Pointer to **int64** | Number of responses received with status code 404 (Not Found) from origin. | [optional] +**Status416** | Pointer to **int64** | Number of responses received with status code 416 (Range Not Satisfiable) from origin. | [optional] +**Status429** | Pointer to **int64** | Number of responses received with status code 429 (Too Many Requests) from origin. | [optional] +**Status500** | Pointer to **int64** | Number of responses received with status code 500 (Internal Server Error) from origin. | [optional] +**Status501** | Pointer to **int64** | Number of responses received with status code 501 (Not Implemented) from origin. | [optional] +**Status502** | Pointer to **int64** | Number of responses received with status code 502 (Bad Gateway) from origin. | [optional] +**Status503** | Pointer to **int64** | Number of responses received with status code 503 (Service Unavailable) from origin. | [optional] +**Status504** | Pointer to **int64** | Number of responses received with status code 504 (Gateway Timeout) from origin. | [optional] +**Status505** | Pointer to **int64** | Number of responses received with status code 505 (HTTP Version Not Supported) from origin. | [optional] +**Latency0To1ms** | Pointer to **int64** | Number of responses from origin with latency between 0 and 1 millisecond. | [optional] +**Latency1To5ms** | Pointer to **int64** | Number of responses from origin with latency between 1 and 5 milliseconds. | [optional] +**Latency5To10ms** | Pointer to **int64** | Number of responses from origin with latency between 5 and 10 milliseconds. | [optional] +**Latency10To50ms** | Pointer to **int64** | Number of responses from origin with latency between 10 and 50 milliseconds. | [optional] +**Latency50To100ms** | Pointer to **int64** | Number of responses from origin with latency between 50 and 100 milliseconds. | [optional] +**Latency100To250ms** | Pointer to **int64** | Number of responses from origin with latency between 100 and 250 milliseconds. | [optional] +**Latency250To500ms** | Pointer to **int64** | Number of responses from origin with latency between 250 and 500 milliseconds. | [optional] +**Latency500To1000ms** | Pointer to **int64** | Number of responses from origin with latency between 500 and 1,000 milliseconds. | [optional] +**Latency1000To5000ms** | Pointer to **int64** | Number of responses from origin with latency between 1,000 and 5,000 milliseconds. | [optional] +**Latency5000To10000ms** | Pointer to **int64** | Number of responses from origin with latency between 5,000 and 10,000 milliseconds. | [optional] +**Latency10000To60000ms** | Pointer to **int64** | Number of responses from origin with latency between 10,000 and 60,000 milliseconds. | [optional] +**Latency60000ms** | Pointer to **int64** | Number of responses from origin with latency of 60,000 milliseconds and above. | [optional] +**WafResponses** | Pointer to **int64** | Number of responses received for origin requests made by the Fastly WAF. | [optional] +**WafRespHeaderBytes** | Pointer to **int64** | Number of header bytes received for origin requests made by the Fastly WAF. | [optional] +**WafRespBodyBytes** | Pointer to **int64** | Number of body bytes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus1xx** | Pointer to **int64** | Number of 1xx \"Informational\" status codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus200** | Pointer to **int64** | Number of responses received with status code 200 (Success) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus204** | Pointer to **int64** | Number of responses received with status code 204 (No Content) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus206** | Pointer to **int64** | Number of responses received with status code 206 (Partial Content) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus301** | Pointer to **int64** | Number of responses received with status code 301 (Moved Permanently) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus302** | Pointer to **int64** | Number of responses received with status code 302 (Found) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus304** | Pointer to **int64** | Number of responses received with status code 304 (Not Modified) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus400** | Pointer to **int64** | Number of responses received with status code 400 (Bad Request) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus401** | Pointer to **int64** | Number of responses received with status code 401 (Unauthorized) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus403** | Pointer to **int64** | Number of responses received with status code 403 (Forbidden) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus404** | Pointer to **int64** | Number of responses received with status code 404 (Not Found) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus416** | Pointer to **int64** | Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus429** | Pointer to **int64** | Number of responses received with status code 429 (Too Many Requests) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus500** | Pointer to **int64** | Number of responses received with status code 500 (Internal Server Error) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus501** | Pointer to **int64** | Number of responses received with status code 501 (Not Implemented) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus502** | Pointer to **int64** | Number of responses received with status code 502 (Bad Gateway) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus503** | Pointer to **int64** | Number of responses received with status code 503 (Service Unavailable) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus504** | Pointer to **int64** | Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus505** | Pointer to **int64** | Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by the Fastly WAF. | [optional] +**WafLatency0To1ms** | Pointer to **int64** | Number of responses with latency between 0 and 1 millisecond received for origin requests made by the Fastly WAF. | [optional] +**WafLatency1To5ms** | Pointer to **int64** | Number of responses with latency between 1 and 5 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency5To10ms** | Pointer to **int64** | Number of responses with latency between 5 and 10 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency10To50ms** | Pointer to **int64** | Number of responses with latency between 10 and 50 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency50To100ms** | Pointer to **int64** | Number of responses with latency between 50 and 100 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency100To250ms** | Pointer to **int64** | Number of responses with latency between 100 and 250 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency250To500ms** | Pointer to **int64** | Number of responses with latency between 250 and 500 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency500To1000ms** | Pointer to **int64** | Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency1000To5000ms** | Pointer to **int64** | Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency5000To10000ms** | Pointer to **int64** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency10000To60000ms** | Pointer to **int64** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency60000ms** | Pointer to **int64** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. | [optional] +**ComputeResponses** | Pointer to **int64** | Number of responses for origin received by the Compute platform. | [optional] +**ComputeRespHeaderBytes** | Pointer to **int64** | Number of header bytes for origin received by the Compute platform. | [optional] +**ComputeRespBodyBytes** | Pointer to **int64** | Number of body bytes for origin received by the Compute platform. | [optional] +**ComputeStatus1xx** | Pointer to **int64** | Number of 1xx \"Informational\" status codes for origin received by the Compute platform. | [optional] +**ComputeStatus2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes for origin received by the Compute platform. | [optional] +**ComputeStatus3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes for origin received by the Compute platform. | [optional] +**ComputeStatus4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes for origin received by the Compute platform. | [optional] +**ComputeStatus5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes for origin received by the Compute platform. | [optional] +**ComputeStatus200** | Pointer to **int64** | Number of responses received with status code 200 (Success) for origin received by the Compute platform. | [optional] +**ComputeStatus204** | Pointer to **int64** | Number of responses received with status code 204 (No Content) for origin received by the Compute platform. | [optional] +**ComputeStatus206** | Pointer to **int64** | Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. | [optional] +**ComputeStatus301** | Pointer to **int64** | Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. | [optional] +**ComputeStatus302** | Pointer to **int64** | Number of responses received with status code 302 (Found) for origin received by the Compute platform. | [optional] +**ComputeStatus304** | Pointer to **int64** | Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. | [optional] +**ComputeStatus400** | Pointer to **int64** | Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. | [optional] +**ComputeStatus401** | Pointer to **int64** | Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. | [optional] +**ComputeStatus403** | Pointer to **int64** | Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. | [optional] +**ComputeStatus404** | Pointer to **int64** | Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. | [optional] +**ComputeStatus416** | Pointer to **int64** | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. | [optional] +**ComputeStatus429** | Pointer to **int64** | Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. | [optional] +**ComputeStatus500** | Pointer to **int64** | Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. | [optional] +**ComputeStatus501** | Pointer to **int64** | Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. | [optional] +**ComputeStatus502** | Pointer to **int64** | Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. | [optional] +**ComputeStatus503** | Pointer to **int64** | Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. | [optional] +**ComputeStatus504** | Pointer to **int64** | Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. | [optional] +**ComputeStatus505** | Pointer to **int64** | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. | [optional] +**ComputeLatency0To1ms** | Pointer to **int64** | Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. | [optional] +**ComputeLatency1To5ms** | Pointer to **int64** | Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency5To10ms** | Pointer to **int64** | Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency10To50ms** | Pointer to **int64** | Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency50To100ms** | Pointer to **int64** | Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency100To250ms** | Pointer to **int64** | Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency250To500ms** | Pointer to **int64** | Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency500To1000ms** | Pointer to **int64** | Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency1000To5000ms** | Pointer to **int64** | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency5000To10000ms** | Pointer to **int64** | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency10000To60000ms** | Pointer to **int64** | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency60000ms** | Pointer to **int64** | Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. | [optional] +**AllResponses** | Pointer to **int64** | Number of responses received for origin requests made by all sources. | [optional] +**AllRespHeaderBytes** | Pointer to **int64** | Number of header bytes received for origin requests made by all sources. | [optional] +**AllRespBodyBytes** | Pointer to **int64** | Number of body bytes received for origin requests made by all sources. | [optional] +**AllStatus1xx** | Pointer to **int64** | Number of 1xx \"Informational\" category status codes delivered received for origin requests made by all sources. | [optional] +**AllStatus2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes received for origin requests made by all sources. | [optional] +**AllStatus3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes received for origin requests made by all sources. | [optional] +**AllStatus4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes received for origin requests made by all sources. | [optional] +**AllStatus5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes received for origin requests made by all sources. | [optional] +**AllStatus200** | Pointer to **int64** | Number of responses received with status code 200 (Success) received for origin requests made by all sources. | [optional] +**AllStatus204** | Pointer to **int64** | Number of responses received with status code 204 (No Content) received for origin requests made by all sources. | [optional] +**AllStatus206** | Pointer to **int64** | Number of responses received with status code 206 (Partial Content) received for origin requests made by all sources. | [optional] +**AllStatus301** | Pointer to **int64** | Number of responses received with status code 301 (Moved Permanently) received for origin requests made by all sources. | [optional] +**AllStatus302** | Pointer to **int64** | Number of responses received with status code 302 (Found) received for origin requests made by all sources. | [optional] +**AllStatus304** | Pointer to **int64** | Number of responses received with status code 304 (Not Modified) received for origin requests made by all sources. | [optional] +**AllStatus400** | Pointer to **int64** | Number of responses received with status code 400 (Bad Request) received for origin requests made by all sources. | [optional] +**AllStatus401** | Pointer to **int64** | Number of responses received with status code 401 (Unauthorized) received for origin requests made by all sources. | [optional] +**AllStatus403** | Pointer to **int64** | Number of responses received with status code 403 (Forbidden) received for origin requests made by all sources. | [optional] +**AllStatus404** | Pointer to **int64** | Number of responses received with status code 404 (Not Found) received for origin requests made by all sources. | [optional] +**AllStatus416** | Pointer to **int64** | Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by all sources. | [optional] +**AllStatus429** | Pointer to **int64** | Number of responses received with status code 429 (Too Many Requests) received for origin requests made by all sources. | [optional] +**AllStatus500** | Pointer to **int64** | Number of responses received with status code 500 (Internal Server Error) received for origin requests made by all sources. | [optional] +**AllStatus501** | Pointer to **int64** | Number of responses received with status code 501 (Not Implemented) received for origin requests made by all sources. | [optional] +**AllStatus502** | Pointer to **int64** | Number of responses received with status code 502 (Bad Gateway) received for origin requests made by all sources. | [optional] +**AllStatus503** | Pointer to **int64** | Number of responses received with status code 503 (Service Unavailable) received for origin requests made by all sources. | [optional] +**AllStatus504** | Pointer to **int64** | Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by all sources. | [optional] +**AllStatus505** | Pointer to **int64** | Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by all sources. | [optional] +**AllLatency0To1ms** | Pointer to **int64** | Number of responses with latency between 0 and 1 millisecond received for origin requests made by all sources. | [optional] +**AllLatency1To5ms** | Pointer to **int64** | Number of responses with latency between 1 and 5 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency5To10ms** | Pointer to **int64** | Number of responses with latency between 5 and 10 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency10To50ms** | Pointer to **int64** | Number of responses with latency between 10 and 50 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency50To100ms** | Pointer to **int64** | Number of responses with latency between 50 and 100 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency100To250ms** | Pointer to **int64** | Number of responses with latency between 100 and 250 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency250To500ms** | Pointer to **int64** | Number of responses with latency between 250 and 500 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency500To1000ms** | Pointer to **int64** | Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency1000To5000ms** | Pointer to **int64** | Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency5000To10000ms** | Pointer to **int64** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency10000To60000ms** | Pointer to **int64** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency60000ms** | Pointer to **int64** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by all sources. | [optional] ## Methods @@ -178,20 +178,20 @@ but it doesn't guarantee that properties required by API are set ### GetResponses -`func (o *OriginInspectorMeasurements) GetResponses() int32` +`func (o *OriginInspectorMeasurements) GetResponses() int64` GetResponses returns the Responses field if non-nil, zero value otherwise. ### GetResponsesOk -`func (o *OriginInspectorMeasurements) GetResponsesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetResponsesOk() (*int64, bool)` GetResponsesOk returns a tuple with the Responses field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetResponses -`func (o *OriginInspectorMeasurements) SetResponses(v int32)` +`func (o *OriginInspectorMeasurements) SetResponses(v int64)` SetResponses sets Responses field to given value. @@ -203,20 +203,20 @@ HasResponses returns a boolean if a field has been set. ### GetRespHeaderBytes -`func (o *OriginInspectorMeasurements) GetRespHeaderBytes() int32` +`func (o *OriginInspectorMeasurements) GetRespHeaderBytes() int64` GetRespHeaderBytes returns the RespHeaderBytes field if non-nil, zero value otherwise. ### GetRespHeaderBytesOk -`func (o *OriginInspectorMeasurements) GetRespHeaderBytesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetRespHeaderBytesOk() (*int64, bool)` GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespHeaderBytes -`func (o *OriginInspectorMeasurements) SetRespHeaderBytes(v int32)` +`func (o *OriginInspectorMeasurements) SetRespHeaderBytes(v int64)` SetRespHeaderBytes sets RespHeaderBytes field to given value. @@ -228,20 +228,20 @@ HasRespHeaderBytes returns a boolean if a field has been set. ### GetRespBodyBytes -`func (o *OriginInspectorMeasurements) GetRespBodyBytes() int32` +`func (o *OriginInspectorMeasurements) GetRespBodyBytes() int64` GetRespBodyBytes returns the RespBodyBytes field if non-nil, zero value otherwise. ### GetRespBodyBytesOk -`func (o *OriginInspectorMeasurements) GetRespBodyBytesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetRespBodyBytesOk() (*int64, bool)` GetRespBodyBytesOk returns a tuple with the RespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespBodyBytes -`func (o *OriginInspectorMeasurements) SetRespBodyBytes(v int32)` +`func (o *OriginInspectorMeasurements) SetRespBodyBytes(v int64)` SetRespBodyBytes sets RespBodyBytes field to given value. @@ -253,20 +253,20 @@ HasRespBodyBytes returns a boolean if a field has been set. ### GetStatus1xx -`func (o *OriginInspectorMeasurements) GetStatus1xx() int32` +`func (o *OriginInspectorMeasurements) GetStatus1xx() int64` GetStatus1xx returns the Status1xx field if non-nil, zero value otherwise. ### GetStatus1xxOk -`func (o *OriginInspectorMeasurements) GetStatus1xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus1xxOk() (*int64, bool)` GetStatus1xxOk returns a tuple with the Status1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus1xx -`func (o *OriginInspectorMeasurements) SetStatus1xx(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus1xx(v int64)` SetStatus1xx sets Status1xx field to given value. @@ -278,20 +278,20 @@ HasStatus1xx returns a boolean if a field has been set. ### GetStatus2xx -`func (o *OriginInspectorMeasurements) GetStatus2xx() int32` +`func (o *OriginInspectorMeasurements) GetStatus2xx() int64` GetStatus2xx returns the Status2xx field if non-nil, zero value otherwise. ### GetStatus2xxOk -`func (o *OriginInspectorMeasurements) GetStatus2xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus2xxOk() (*int64, bool)` GetStatus2xxOk returns a tuple with the Status2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus2xx -`func (o *OriginInspectorMeasurements) SetStatus2xx(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus2xx(v int64)` SetStatus2xx sets Status2xx field to given value. @@ -303,20 +303,20 @@ HasStatus2xx returns a boolean if a field has been set. ### GetStatus3xx -`func (o *OriginInspectorMeasurements) GetStatus3xx() int32` +`func (o *OriginInspectorMeasurements) GetStatus3xx() int64` GetStatus3xx returns the Status3xx field if non-nil, zero value otherwise. ### GetStatus3xxOk -`func (o *OriginInspectorMeasurements) GetStatus3xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus3xxOk() (*int64, bool)` GetStatus3xxOk returns a tuple with the Status3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus3xx -`func (o *OriginInspectorMeasurements) SetStatus3xx(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus3xx(v int64)` SetStatus3xx sets Status3xx field to given value. @@ -328,20 +328,20 @@ HasStatus3xx returns a boolean if a field has been set. ### GetStatus4xx -`func (o *OriginInspectorMeasurements) GetStatus4xx() int32` +`func (o *OriginInspectorMeasurements) GetStatus4xx() int64` GetStatus4xx returns the Status4xx field if non-nil, zero value otherwise. ### GetStatus4xxOk -`func (o *OriginInspectorMeasurements) GetStatus4xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus4xxOk() (*int64, bool)` GetStatus4xxOk returns a tuple with the Status4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus4xx -`func (o *OriginInspectorMeasurements) SetStatus4xx(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus4xx(v int64)` SetStatus4xx sets Status4xx field to given value. @@ -353,20 +353,20 @@ HasStatus4xx returns a boolean if a field has been set. ### GetStatus5xx -`func (o *OriginInspectorMeasurements) GetStatus5xx() int32` +`func (o *OriginInspectorMeasurements) GetStatus5xx() int64` GetStatus5xx returns the Status5xx field if non-nil, zero value otherwise. ### GetStatus5xxOk -`func (o *OriginInspectorMeasurements) GetStatus5xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus5xxOk() (*int64, bool)` GetStatus5xxOk returns a tuple with the Status5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus5xx -`func (o *OriginInspectorMeasurements) SetStatus5xx(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus5xx(v int64)` SetStatus5xx sets Status5xx field to given value. @@ -378,20 +378,20 @@ HasStatus5xx returns a boolean if a field has been set. ### GetStatus200 -`func (o *OriginInspectorMeasurements) GetStatus200() int32` +`func (o *OriginInspectorMeasurements) GetStatus200() int64` GetStatus200 returns the Status200 field if non-nil, zero value otherwise. ### GetStatus200Ok -`func (o *OriginInspectorMeasurements) GetStatus200Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus200Ok() (*int64, bool)` GetStatus200Ok returns a tuple with the Status200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus200 -`func (o *OriginInspectorMeasurements) SetStatus200(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus200(v int64)` SetStatus200 sets Status200 field to given value. @@ -403,20 +403,20 @@ HasStatus200 returns a boolean if a field has been set. ### GetStatus204 -`func (o *OriginInspectorMeasurements) GetStatus204() int32` +`func (o *OriginInspectorMeasurements) GetStatus204() int64` GetStatus204 returns the Status204 field if non-nil, zero value otherwise. ### GetStatus204Ok -`func (o *OriginInspectorMeasurements) GetStatus204Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus204Ok() (*int64, bool)` GetStatus204Ok returns a tuple with the Status204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus204 -`func (o *OriginInspectorMeasurements) SetStatus204(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus204(v int64)` SetStatus204 sets Status204 field to given value. @@ -428,20 +428,20 @@ HasStatus204 returns a boolean if a field has been set. ### GetStatus206 -`func (o *OriginInspectorMeasurements) GetStatus206() int32` +`func (o *OriginInspectorMeasurements) GetStatus206() int64` GetStatus206 returns the Status206 field if non-nil, zero value otherwise. ### GetStatus206Ok -`func (o *OriginInspectorMeasurements) GetStatus206Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus206Ok() (*int64, bool)` GetStatus206Ok returns a tuple with the Status206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus206 -`func (o *OriginInspectorMeasurements) SetStatus206(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus206(v int64)` SetStatus206 sets Status206 field to given value. @@ -453,20 +453,20 @@ HasStatus206 returns a boolean if a field has been set. ### GetStatus301 -`func (o *OriginInspectorMeasurements) GetStatus301() int32` +`func (o *OriginInspectorMeasurements) GetStatus301() int64` GetStatus301 returns the Status301 field if non-nil, zero value otherwise. ### GetStatus301Ok -`func (o *OriginInspectorMeasurements) GetStatus301Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus301Ok() (*int64, bool)` GetStatus301Ok returns a tuple with the Status301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus301 -`func (o *OriginInspectorMeasurements) SetStatus301(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus301(v int64)` SetStatus301 sets Status301 field to given value. @@ -478,20 +478,20 @@ HasStatus301 returns a boolean if a field has been set. ### GetStatus302 -`func (o *OriginInspectorMeasurements) GetStatus302() int32` +`func (o *OriginInspectorMeasurements) GetStatus302() int64` GetStatus302 returns the Status302 field if non-nil, zero value otherwise. ### GetStatus302Ok -`func (o *OriginInspectorMeasurements) GetStatus302Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus302Ok() (*int64, bool)` GetStatus302Ok returns a tuple with the Status302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus302 -`func (o *OriginInspectorMeasurements) SetStatus302(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus302(v int64)` SetStatus302 sets Status302 field to given value. @@ -503,20 +503,20 @@ HasStatus302 returns a boolean if a field has been set. ### GetStatus304 -`func (o *OriginInspectorMeasurements) GetStatus304() int32` +`func (o *OriginInspectorMeasurements) GetStatus304() int64` GetStatus304 returns the Status304 field if non-nil, zero value otherwise. ### GetStatus304Ok -`func (o *OriginInspectorMeasurements) GetStatus304Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus304Ok() (*int64, bool)` GetStatus304Ok returns a tuple with the Status304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus304 -`func (o *OriginInspectorMeasurements) SetStatus304(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus304(v int64)` SetStatus304 sets Status304 field to given value. @@ -528,20 +528,20 @@ HasStatus304 returns a boolean if a field has been set. ### GetStatus400 -`func (o *OriginInspectorMeasurements) GetStatus400() int32` +`func (o *OriginInspectorMeasurements) GetStatus400() int64` GetStatus400 returns the Status400 field if non-nil, zero value otherwise. ### GetStatus400Ok -`func (o *OriginInspectorMeasurements) GetStatus400Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus400Ok() (*int64, bool)` GetStatus400Ok returns a tuple with the Status400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus400 -`func (o *OriginInspectorMeasurements) SetStatus400(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus400(v int64)` SetStatus400 sets Status400 field to given value. @@ -553,20 +553,20 @@ HasStatus400 returns a boolean if a field has been set. ### GetStatus401 -`func (o *OriginInspectorMeasurements) GetStatus401() int32` +`func (o *OriginInspectorMeasurements) GetStatus401() int64` GetStatus401 returns the Status401 field if non-nil, zero value otherwise. ### GetStatus401Ok -`func (o *OriginInspectorMeasurements) GetStatus401Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus401Ok() (*int64, bool)` GetStatus401Ok returns a tuple with the Status401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus401 -`func (o *OriginInspectorMeasurements) SetStatus401(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus401(v int64)` SetStatus401 sets Status401 field to given value. @@ -578,20 +578,20 @@ HasStatus401 returns a boolean if a field has been set. ### GetStatus403 -`func (o *OriginInspectorMeasurements) GetStatus403() int32` +`func (o *OriginInspectorMeasurements) GetStatus403() int64` GetStatus403 returns the Status403 field if non-nil, zero value otherwise. ### GetStatus403Ok -`func (o *OriginInspectorMeasurements) GetStatus403Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus403Ok() (*int64, bool)` GetStatus403Ok returns a tuple with the Status403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus403 -`func (o *OriginInspectorMeasurements) SetStatus403(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus403(v int64)` SetStatus403 sets Status403 field to given value. @@ -603,20 +603,20 @@ HasStatus403 returns a boolean if a field has been set. ### GetStatus404 -`func (o *OriginInspectorMeasurements) GetStatus404() int32` +`func (o *OriginInspectorMeasurements) GetStatus404() int64` GetStatus404 returns the Status404 field if non-nil, zero value otherwise. ### GetStatus404Ok -`func (o *OriginInspectorMeasurements) GetStatus404Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus404Ok() (*int64, bool)` GetStatus404Ok returns a tuple with the Status404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus404 -`func (o *OriginInspectorMeasurements) SetStatus404(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus404(v int64)` SetStatus404 sets Status404 field to given value. @@ -628,20 +628,20 @@ HasStatus404 returns a boolean if a field has been set. ### GetStatus416 -`func (o *OriginInspectorMeasurements) GetStatus416() int32` +`func (o *OriginInspectorMeasurements) GetStatus416() int64` GetStatus416 returns the Status416 field if non-nil, zero value otherwise. ### GetStatus416Ok -`func (o *OriginInspectorMeasurements) GetStatus416Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus416Ok() (*int64, bool)` GetStatus416Ok returns a tuple with the Status416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus416 -`func (o *OriginInspectorMeasurements) SetStatus416(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus416(v int64)` SetStatus416 sets Status416 field to given value. @@ -653,20 +653,20 @@ HasStatus416 returns a boolean if a field has been set. ### GetStatus429 -`func (o *OriginInspectorMeasurements) GetStatus429() int32` +`func (o *OriginInspectorMeasurements) GetStatus429() int64` GetStatus429 returns the Status429 field if non-nil, zero value otherwise. ### GetStatus429Ok -`func (o *OriginInspectorMeasurements) GetStatus429Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus429Ok() (*int64, bool)` GetStatus429Ok returns a tuple with the Status429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus429 -`func (o *OriginInspectorMeasurements) SetStatus429(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus429(v int64)` SetStatus429 sets Status429 field to given value. @@ -678,20 +678,20 @@ HasStatus429 returns a boolean if a field has been set. ### GetStatus500 -`func (o *OriginInspectorMeasurements) GetStatus500() int32` +`func (o *OriginInspectorMeasurements) GetStatus500() int64` GetStatus500 returns the Status500 field if non-nil, zero value otherwise. ### GetStatus500Ok -`func (o *OriginInspectorMeasurements) GetStatus500Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus500Ok() (*int64, bool)` GetStatus500Ok returns a tuple with the Status500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus500 -`func (o *OriginInspectorMeasurements) SetStatus500(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus500(v int64)` SetStatus500 sets Status500 field to given value. @@ -703,20 +703,20 @@ HasStatus500 returns a boolean if a field has been set. ### GetStatus501 -`func (o *OriginInspectorMeasurements) GetStatus501() int32` +`func (o *OriginInspectorMeasurements) GetStatus501() int64` GetStatus501 returns the Status501 field if non-nil, zero value otherwise. ### GetStatus501Ok -`func (o *OriginInspectorMeasurements) GetStatus501Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus501Ok() (*int64, bool)` GetStatus501Ok returns a tuple with the Status501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus501 -`func (o *OriginInspectorMeasurements) SetStatus501(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus501(v int64)` SetStatus501 sets Status501 field to given value. @@ -728,20 +728,20 @@ HasStatus501 returns a boolean if a field has been set. ### GetStatus502 -`func (o *OriginInspectorMeasurements) GetStatus502() int32` +`func (o *OriginInspectorMeasurements) GetStatus502() int64` GetStatus502 returns the Status502 field if non-nil, zero value otherwise. ### GetStatus502Ok -`func (o *OriginInspectorMeasurements) GetStatus502Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus502Ok() (*int64, bool)` GetStatus502Ok returns a tuple with the Status502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus502 -`func (o *OriginInspectorMeasurements) SetStatus502(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus502(v int64)` SetStatus502 sets Status502 field to given value. @@ -753,20 +753,20 @@ HasStatus502 returns a boolean if a field has been set. ### GetStatus503 -`func (o *OriginInspectorMeasurements) GetStatus503() int32` +`func (o *OriginInspectorMeasurements) GetStatus503() int64` GetStatus503 returns the Status503 field if non-nil, zero value otherwise. ### GetStatus503Ok -`func (o *OriginInspectorMeasurements) GetStatus503Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus503Ok() (*int64, bool)` GetStatus503Ok returns a tuple with the Status503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus503 -`func (o *OriginInspectorMeasurements) SetStatus503(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus503(v int64)` SetStatus503 sets Status503 field to given value. @@ -778,20 +778,20 @@ HasStatus503 returns a boolean if a field has been set. ### GetStatus504 -`func (o *OriginInspectorMeasurements) GetStatus504() int32` +`func (o *OriginInspectorMeasurements) GetStatus504() int64` GetStatus504 returns the Status504 field if non-nil, zero value otherwise. ### GetStatus504Ok -`func (o *OriginInspectorMeasurements) GetStatus504Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus504Ok() (*int64, bool)` GetStatus504Ok returns a tuple with the Status504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus504 -`func (o *OriginInspectorMeasurements) SetStatus504(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus504(v int64)` SetStatus504 sets Status504 field to given value. @@ -803,20 +803,20 @@ HasStatus504 returns a boolean if a field has been set. ### GetStatus505 -`func (o *OriginInspectorMeasurements) GetStatus505() int32` +`func (o *OriginInspectorMeasurements) GetStatus505() int64` GetStatus505 returns the Status505 field if non-nil, zero value otherwise. ### GetStatus505Ok -`func (o *OriginInspectorMeasurements) GetStatus505Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetStatus505Ok() (*int64, bool)` GetStatus505Ok returns a tuple with the Status505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus505 -`func (o *OriginInspectorMeasurements) SetStatus505(v int32)` +`func (o *OriginInspectorMeasurements) SetStatus505(v int64)` SetStatus505 sets Status505 field to given value. @@ -828,20 +828,20 @@ HasStatus505 returns a boolean if a field has been set. ### GetLatency0To1ms -`func (o *OriginInspectorMeasurements) GetLatency0To1ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency0To1ms() int64` GetLatency0To1ms returns the Latency0To1ms field if non-nil, zero value otherwise. ### GetLatency0To1msOk -`func (o *OriginInspectorMeasurements) GetLatency0To1msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency0To1msOk() (*int64, bool)` GetLatency0To1msOk returns a tuple with the Latency0To1ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency0To1ms -`func (o *OriginInspectorMeasurements) SetLatency0To1ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency0To1ms(v int64)` SetLatency0To1ms sets Latency0To1ms field to given value. @@ -853,20 +853,20 @@ HasLatency0To1ms returns a boolean if a field has been set. ### GetLatency1To5ms -`func (o *OriginInspectorMeasurements) GetLatency1To5ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency1To5ms() int64` GetLatency1To5ms returns the Latency1To5ms field if non-nil, zero value otherwise. ### GetLatency1To5msOk -`func (o *OriginInspectorMeasurements) GetLatency1To5msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency1To5msOk() (*int64, bool)` GetLatency1To5msOk returns a tuple with the Latency1To5ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency1To5ms -`func (o *OriginInspectorMeasurements) SetLatency1To5ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency1To5ms(v int64)` SetLatency1To5ms sets Latency1To5ms field to given value. @@ -878,20 +878,20 @@ HasLatency1To5ms returns a boolean if a field has been set. ### GetLatency5To10ms -`func (o *OriginInspectorMeasurements) GetLatency5To10ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency5To10ms() int64` GetLatency5To10ms returns the Latency5To10ms field if non-nil, zero value otherwise. ### GetLatency5To10msOk -`func (o *OriginInspectorMeasurements) GetLatency5To10msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency5To10msOk() (*int64, bool)` GetLatency5To10msOk returns a tuple with the Latency5To10ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency5To10ms -`func (o *OriginInspectorMeasurements) SetLatency5To10ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency5To10ms(v int64)` SetLatency5To10ms sets Latency5To10ms field to given value. @@ -903,20 +903,20 @@ HasLatency5To10ms returns a boolean if a field has been set. ### GetLatency10To50ms -`func (o *OriginInspectorMeasurements) GetLatency10To50ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency10To50ms() int64` GetLatency10To50ms returns the Latency10To50ms field if non-nil, zero value otherwise. ### GetLatency10To50msOk -`func (o *OriginInspectorMeasurements) GetLatency10To50msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency10To50msOk() (*int64, bool)` GetLatency10To50msOk returns a tuple with the Latency10To50ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency10To50ms -`func (o *OriginInspectorMeasurements) SetLatency10To50ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency10To50ms(v int64)` SetLatency10To50ms sets Latency10To50ms field to given value. @@ -928,20 +928,20 @@ HasLatency10To50ms returns a boolean if a field has been set. ### GetLatency50To100ms -`func (o *OriginInspectorMeasurements) GetLatency50To100ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency50To100ms() int64` GetLatency50To100ms returns the Latency50To100ms field if non-nil, zero value otherwise. ### GetLatency50To100msOk -`func (o *OriginInspectorMeasurements) GetLatency50To100msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency50To100msOk() (*int64, bool)` GetLatency50To100msOk returns a tuple with the Latency50To100ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency50To100ms -`func (o *OriginInspectorMeasurements) SetLatency50To100ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency50To100ms(v int64)` SetLatency50To100ms sets Latency50To100ms field to given value. @@ -953,20 +953,20 @@ HasLatency50To100ms returns a boolean if a field has been set. ### GetLatency100To250ms -`func (o *OriginInspectorMeasurements) GetLatency100To250ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency100To250ms() int64` GetLatency100To250ms returns the Latency100To250ms field if non-nil, zero value otherwise. ### GetLatency100To250msOk -`func (o *OriginInspectorMeasurements) GetLatency100To250msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency100To250msOk() (*int64, bool)` GetLatency100To250msOk returns a tuple with the Latency100To250ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency100To250ms -`func (o *OriginInspectorMeasurements) SetLatency100To250ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency100To250ms(v int64)` SetLatency100To250ms sets Latency100To250ms field to given value. @@ -978,20 +978,20 @@ HasLatency100To250ms returns a boolean if a field has been set. ### GetLatency250To500ms -`func (o *OriginInspectorMeasurements) GetLatency250To500ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency250To500ms() int64` GetLatency250To500ms returns the Latency250To500ms field if non-nil, zero value otherwise. ### GetLatency250To500msOk -`func (o *OriginInspectorMeasurements) GetLatency250To500msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency250To500msOk() (*int64, bool)` GetLatency250To500msOk returns a tuple with the Latency250To500ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency250To500ms -`func (o *OriginInspectorMeasurements) SetLatency250To500ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency250To500ms(v int64)` SetLatency250To500ms sets Latency250To500ms field to given value. @@ -1003,20 +1003,20 @@ HasLatency250To500ms returns a boolean if a field has been set. ### GetLatency500To1000ms -`func (o *OriginInspectorMeasurements) GetLatency500To1000ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency500To1000ms() int64` GetLatency500To1000ms returns the Latency500To1000ms field if non-nil, zero value otherwise. ### GetLatency500To1000msOk -`func (o *OriginInspectorMeasurements) GetLatency500To1000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency500To1000msOk() (*int64, bool)` GetLatency500To1000msOk returns a tuple with the Latency500To1000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency500To1000ms -`func (o *OriginInspectorMeasurements) SetLatency500To1000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency500To1000ms(v int64)` SetLatency500To1000ms sets Latency500To1000ms field to given value. @@ -1028,20 +1028,20 @@ HasLatency500To1000ms returns a boolean if a field has been set. ### GetLatency1000To5000ms -`func (o *OriginInspectorMeasurements) GetLatency1000To5000ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency1000To5000ms() int64` GetLatency1000To5000ms returns the Latency1000To5000ms field if non-nil, zero value otherwise. ### GetLatency1000To5000msOk -`func (o *OriginInspectorMeasurements) GetLatency1000To5000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency1000To5000msOk() (*int64, bool)` GetLatency1000To5000msOk returns a tuple with the Latency1000To5000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency1000To5000ms -`func (o *OriginInspectorMeasurements) SetLatency1000To5000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency1000To5000ms(v int64)` SetLatency1000To5000ms sets Latency1000To5000ms field to given value. @@ -1053,20 +1053,20 @@ HasLatency1000To5000ms returns a boolean if a field has been set. ### GetLatency5000To10000ms -`func (o *OriginInspectorMeasurements) GetLatency5000To10000ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency5000To10000ms() int64` GetLatency5000To10000ms returns the Latency5000To10000ms field if non-nil, zero value otherwise. ### GetLatency5000To10000msOk -`func (o *OriginInspectorMeasurements) GetLatency5000To10000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency5000To10000msOk() (*int64, bool)` GetLatency5000To10000msOk returns a tuple with the Latency5000To10000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency5000To10000ms -`func (o *OriginInspectorMeasurements) SetLatency5000To10000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency5000To10000ms(v int64)` SetLatency5000To10000ms sets Latency5000To10000ms field to given value. @@ -1078,20 +1078,20 @@ HasLatency5000To10000ms returns a boolean if a field has been set. ### GetLatency10000To60000ms -`func (o *OriginInspectorMeasurements) GetLatency10000To60000ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency10000To60000ms() int64` GetLatency10000To60000ms returns the Latency10000To60000ms field if non-nil, zero value otherwise. ### GetLatency10000To60000msOk -`func (o *OriginInspectorMeasurements) GetLatency10000To60000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency10000To60000msOk() (*int64, bool)` GetLatency10000To60000msOk returns a tuple with the Latency10000To60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency10000To60000ms -`func (o *OriginInspectorMeasurements) SetLatency10000To60000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency10000To60000ms(v int64)` SetLatency10000To60000ms sets Latency10000To60000ms field to given value. @@ -1103,20 +1103,20 @@ HasLatency10000To60000ms returns a boolean if a field has been set. ### GetLatency60000ms -`func (o *OriginInspectorMeasurements) GetLatency60000ms() int32` +`func (o *OriginInspectorMeasurements) GetLatency60000ms() int64` GetLatency60000ms returns the Latency60000ms field if non-nil, zero value otherwise. ### GetLatency60000msOk -`func (o *OriginInspectorMeasurements) GetLatency60000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetLatency60000msOk() (*int64, bool)` GetLatency60000msOk returns a tuple with the Latency60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency60000ms -`func (o *OriginInspectorMeasurements) SetLatency60000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetLatency60000ms(v int64)` SetLatency60000ms sets Latency60000ms field to given value. @@ -1128,20 +1128,20 @@ HasLatency60000ms returns a boolean if a field has been set. ### GetWafResponses -`func (o *OriginInspectorMeasurements) GetWafResponses() int32` +`func (o *OriginInspectorMeasurements) GetWafResponses() int64` GetWafResponses returns the WafResponses field if non-nil, zero value otherwise. ### GetWafResponsesOk -`func (o *OriginInspectorMeasurements) GetWafResponsesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafResponsesOk() (*int64, bool)` GetWafResponsesOk returns a tuple with the WafResponses field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafResponses -`func (o *OriginInspectorMeasurements) SetWafResponses(v int32)` +`func (o *OriginInspectorMeasurements) SetWafResponses(v int64)` SetWafResponses sets WafResponses field to given value. @@ -1153,20 +1153,20 @@ HasWafResponses returns a boolean if a field has been set. ### GetWafRespHeaderBytes -`func (o *OriginInspectorMeasurements) GetWafRespHeaderBytes() int32` +`func (o *OriginInspectorMeasurements) GetWafRespHeaderBytes() int64` GetWafRespHeaderBytes returns the WafRespHeaderBytes field if non-nil, zero value otherwise. ### GetWafRespHeaderBytesOk -`func (o *OriginInspectorMeasurements) GetWafRespHeaderBytesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafRespHeaderBytesOk() (*int64, bool)` GetWafRespHeaderBytesOk returns a tuple with the WafRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafRespHeaderBytes -`func (o *OriginInspectorMeasurements) SetWafRespHeaderBytes(v int32)` +`func (o *OriginInspectorMeasurements) SetWafRespHeaderBytes(v int64)` SetWafRespHeaderBytes sets WafRespHeaderBytes field to given value. @@ -1178,20 +1178,20 @@ HasWafRespHeaderBytes returns a boolean if a field has been set. ### GetWafRespBodyBytes -`func (o *OriginInspectorMeasurements) GetWafRespBodyBytes() int32` +`func (o *OriginInspectorMeasurements) GetWafRespBodyBytes() int64` GetWafRespBodyBytes returns the WafRespBodyBytes field if non-nil, zero value otherwise. ### GetWafRespBodyBytesOk -`func (o *OriginInspectorMeasurements) GetWafRespBodyBytesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafRespBodyBytesOk() (*int64, bool)` GetWafRespBodyBytesOk returns a tuple with the WafRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafRespBodyBytes -`func (o *OriginInspectorMeasurements) SetWafRespBodyBytes(v int32)` +`func (o *OriginInspectorMeasurements) SetWafRespBodyBytes(v int64)` SetWafRespBodyBytes sets WafRespBodyBytes field to given value. @@ -1203,20 +1203,20 @@ HasWafRespBodyBytes returns a boolean if a field has been set. ### GetWafStatus1xx -`func (o *OriginInspectorMeasurements) GetWafStatus1xx() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus1xx() int64` GetWafStatus1xx returns the WafStatus1xx field if non-nil, zero value otherwise. ### GetWafStatus1xxOk -`func (o *OriginInspectorMeasurements) GetWafStatus1xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus1xxOk() (*int64, bool)` GetWafStatus1xxOk returns a tuple with the WafStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus1xx -`func (o *OriginInspectorMeasurements) SetWafStatus1xx(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus1xx(v int64)` SetWafStatus1xx sets WafStatus1xx field to given value. @@ -1228,20 +1228,20 @@ HasWafStatus1xx returns a boolean if a field has been set. ### GetWafStatus2xx -`func (o *OriginInspectorMeasurements) GetWafStatus2xx() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus2xx() int64` GetWafStatus2xx returns the WafStatus2xx field if non-nil, zero value otherwise. ### GetWafStatus2xxOk -`func (o *OriginInspectorMeasurements) GetWafStatus2xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus2xxOk() (*int64, bool)` GetWafStatus2xxOk returns a tuple with the WafStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus2xx -`func (o *OriginInspectorMeasurements) SetWafStatus2xx(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus2xx(v int64)` SetWafStatus2xx sets WafStatus2xx field to given value. @@ -1253,20 +1253,20 @@ HasWafStatus2xx returns a boolean if a field has been set. ### GetWafStatus3xx -`func (o *OriginInspectorMeasurements) GetWafStatus3xx() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus3xx() int64` GetWafStatus3xx returns the WafStatus3xx field if non-nil, zero value otherwise. ### GetWafStatus3xxOk -`func (o *OriginInspectorMeasurements) GetWafStatus3xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus3xxOk() (*int64, bool)` GetWafStatus3xxOk returns a tuple with the WafStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus3xx -`func (o *OriginInspectorMeasurements) SetWafStatus3xx(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus3xx(v int64)` SetWafStatus3xx sets WafStatus3xx field to given value. @@ -1278,20 +1278,20 @@ HasWafStatus3xx returns a boolean if a field has been set. ### GetWafStatus4xx -`func (o *OriginInspectorMeasurements) GetWafStatus4xx() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus4xx() int64` GetWafStatus4xx returns the WafStatus4xx field if non-nil, zero value otherwise. ### GetWafStatus4xxOk -`func (o *OriginInspectorMeasurements) GetWafStatus4xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus4xxOk() (*int64, bool)` GetWafStatus4xxOk returns a tuple with the WafStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus4xx -`func (o *OriginInspectorMeasurements) SetWafStatus4xx(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus4xx(v int64)` SetWafStatus4xx sets WafStatus4xx field to given value. @@ -1303,20 +1303,20 @@ HasWafStatus4xx returns a boolean if a field has been set. ### GetWafStatus5xx -`func (o *OriginInspectorMeasurements) GetWafStatus5xx() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus5xx() int64` GetWafStatus5xx returns the WafStatus5xx field if non-nil, zero value otherwise. ### GetWafStatus5xxOk -`func (o *OriginInspectorMeasurements) GetWafStatus5xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus5xxOk() (*int64, bool)` GetWafStatus5xxOk returns a tuple with the WafStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus5xx -`func (o *OriginInspectorMeasurements) SetWafStatus5xx(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus5xx(v int64)` SetWafStatus5xx sets WafStatus5xx field to given value. @@ -1328,20 +1328,20 @@ HasWafStatus5xx returns a boolean if a field has been set. ### GetWafStatus200 -`func (o *OriginInspectorMeasurements) GetWafStatus200() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus200() int64` GetWafStatus200 returns the WafStatus200 field if non-nil, zero value otherwise. ### GetWafStatus200Ok -`func (o *OriginInspectorMeasurements) GetWafStatus200Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus200Ok() (*int64, bool)` GetWafStatus200Ok returns a tuple with the WafStatus200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus200 -`func (o *OriginInspectorMeasurements) SetWafStatus200(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus200(v int64)` SetWafStatus200 sets WafStatus200 field to given value. @@ -1353,20 +1353,20 @@ HasWafStatus200 returns a boolean if a field has been set. ### GetWafStatus204 -`func (o *OriginInspectorMeasurements) GetWafStatus204() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus204() int64` GetWafStatus204 returns the WafStatus204 field if non-nil, zero value otherwise. ### GetWafStatus204Ok -`func (o *OriginInspectorMeasurements) GetWafStatus204Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus204Ok() (*int64, bool)` GetWafStatus204Ok returns a tuple with the WafStatus204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus204 -`func (o *OriginInspectorMeasurements) SetWafStatus204(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus204(v int64)` SetWafStatus204 sets WafStatus204 field to given value. @@ -1378,20 +1378,20 @@ HasWafStatus204 returns a boolean if a field has been set. ### GetWafStatus206 -`func (o *OriginInspectorMeasurements) GetWafStatus206() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus206() int64` GetWafStatus206 returns the WafStatus206 field if non-nil, zero value otherwise. ### GetWafStatus206Ok -`func (o *OriginInspectorMeasurements) GetWafStatus206Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus206Ok() (*int64, bool)` GetWafStatus206Ok returns a tuple with the WafStatus206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus206 -`func (o *OriginInspectorMeasurements) SetWafStatus206(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus206(v int64)` SetWafStatus206 sets WafStatus206 field to given value. @@ -1403,20 +1403,20 @@ HasWafStatus206 returns a boolean if a field has been set. ### GetWafStatus301 -`func (o *OriginInspectorMeasurements) GetWafStatus301() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus301() int64` GetWafStatus301 returns the WafStatus301 field if non-nil, zero value otherwise. ### GetWafStatus301Ok -`func (o *OriginInspectorMeasurements) GetWafStatus301Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus301Ok() (*int64, bool)` GetWafStatus301Ok returns a tuple with the WafStatus301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus301 -`func (o *OriginInspectorMeasurements) SetWafStatus301(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus301(v int64)` SetWafStatus301 sets WafStatus301 field to given value. @@ -1428,20 +1428,20 @@ HasWafStatus301 returns a boolean if a field has been set. ### GetWafStatus302 -`func (o *OriginInspectorMeasurements) GetWafStatus302() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus302() int64` GetWafStatus302 returns the WafStatus302 field if non-nil, zero value otherwise. ### GetWafStatus302Ok -`func (o *OriginInspectorMeasurements) GetWafStatus302Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus302Ok() (*int64, bool)` GetWafStatus302Ok returns a tuple with the WafStatus302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus302 -`func (o *OriginInspectorMeasurements) SetWafStatus302(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus302(v int64)` SetWafStatus302 sets WafStatus302 field to given value. @@ -1453,20 +1453,20 @@ HasWafStatus302 returns a boolean if a field has been set. ### GetWafStatus304 -`func (o *OriginInspectorMeasurements) GetWafStatus304() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus304() int64` GetWafStatus304 returns the WafStatus304 field if non-nil, zero value otherwise. ### GetWafStatus304Ok -`func (o *OriginInspectorMeasurements) GetWafStatus304Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus304Ok() (*int64, bool)` GetWafStatus304Ok returns a tuple with the WafStatus304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus304 -`func (o *OriginInspectorMeasurements) SetWafStatus304(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus304(v int64)` SetWafStatus304 sets WafStatus304 field to given value. @@ -1478,20 +1478,20 @@ HasWafStatus304 returns a boolean if a field has been set. ### GetWafStatus400 -`func (o *OriginInspectorMeasurements) GetWafStatus400() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus400() int64` GetWafStatus400 returns the WafStatus400 field if non-nil, zero value otherwise. ### GetWafStatus400Ok -`func (o *OriginInspectorMeasurements) GetWafStatus400Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus400Ok() (*int64, bool)` GetWafStatus400Ok returns a tuple with the WafStatus400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus400 -`func (o *OriginInspectorMeasurements) SetWafStatus400(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus400(v int64)` SetWafStatus400 sets WafStatus400 field to given value. @@ -1503,20 +1503,20 @@ HasWafStatus400 returns a boolean if a field has been set. ### GetWafStatus401 -`func (o *OriginInspectorMeasurements) GetWafStatus401() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus401() int64` GetWafStatus401 returns the WafStatus401 field if non-nil, zero value otherwise. ### GetWafStatus401Ok -`func (o *OriginInspectorMeasurements) GetWafStatus401Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus401Ok() (*int64, bool)` GetWafStatus401Ok returns a tuple with the WafStatus401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus401 -`func (o *OriginInspectorMeasurements) SetWafStatus401(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus401(v int64)` SetWafStatus401 sets WafStatus401 field to given value. @@ -1528,20 +1528,20 @@ HasWafStatus401 returns a boolean if a field has been set. ### GetWafStatus403 -`func (o *OriginInspectorMeasurements) GetWafStatus403() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus403() int64` GetWafStatus403 returns the WafStatus403 field if non-nil, zero value otherwise. ### GetWafStatus403Ok -`func (o *OriginInspectorMeasurements) GetWafStatus403Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus403Ok() (*int64, bool)` GetWafStatus403Ok returns a tuple with the WafStatus403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus403 -`func (o *OriginInspectorMeasurements) SetWafStatus403(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus403(v int64)` SetWafStatus403 sets WafStatus403 field to given value. @@ -1553,20 +1553,20 @@ HasWafStatus403 returns a boolean if a field has been set. ### GetWafStatus404 -`func (o *OriginInspectorMeasurements) GetWafStatus404() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus404() int64` GetWafStatus404 returns the WafStatus404 field if non-nil, zero value otherwise. ### GetWafStatus404Ok -`func (o *OriginInspectorMeasurements) GetWafStatus404Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus404Ok() (*int64, bool)` GetWafStatus404Ok returns a tuple with the WafStatus404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus404 -`func (o *OriginInspectorMeasurements) SetWafStatus404(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus404(v int64)` SetWafStatus404 sets WafStatus404 field to given value. @@ -1578,20 +1578,20 @@ HasWafStatus404 returns a boolean if a field has been set. ### GetWafStatus416 -`func (o *OriginInspectorMeasurements) GetWafStatus416() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus416() int64` GetWafStatus416 returns the WafStatus416 field if non-nil, zero value otherwise. ### GetWafStatus416Ok -`func (o *OriginInspectorMeasurements) GetWafStatus416Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus416Ok() (*int64, bool)` GetWafStatus416Ok returns a tuple with the WafStatus416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus416 -`func (o *OriginInspectorMeasurements) SetWafStatus416(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus416(v int64)` SetWafStatus416 sets WafStatus416 field to given value. @@ -1603,20 +1603,20 @@ HasWafStatus416 returns a boolean if a field has been set. ### GetWafStatus429 -`func (o *OriginInspectorMeasurements) GetWafStatus429() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus429() int64` GetWafStatus429 returns the WafStatus429 field if non-nil, zero value otherwise. ### GetWafStatus429Ok -`func (o *OriginInspectorMeasurements) GetWafStatus429Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus429Ok() (*int64, bool)` GetWafStatus429Ok returns a tuple with the WafStatus429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus429 -`func (o *OriginInspectorMeasurements) SetWafStatus429(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus429(v int64)` SetWafStatus429 sets WafStatus429 field to given value. @@ -1628,20 +1628,20 @@ HasWafStatus429 returns a boolean if a field has been set. ### GetWafStatus500 -`func (o *OriginInspectorMeasurements) GetWafStatus500() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus500() int64` GetWafStatus500 returns the WafStatus500 field if non-nil, zero value otherwise. ### GetWafStatus500Ok -`func (o *OriginInspectorMeasurements) GetWafStatus500Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus500Ok() (*int64, bool)` GetWafStatus500Ok returns a tuple with the WafStatus500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus500 -`func (o *OriginInspectorMeasurements) SetWafStatus500(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus500(v int64)` SetWafStatus500 sets WafStatus500 field to given value. @@ -1653,20 +1653,20 @@ HasWafStatus500 returns a boolean if a field has been set. ### GetWafStatus501 -`func (o *OriginInspectorMeasurements) GetWafStatus501() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus501() int64` GetWafStatus501 returns the WafStatus501 field if non-nil, zero value otherwise. ### GetWafStatus501Ok -`func (o *OriginInspectorMeasurements) GetWafStatus501Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus501Ok() (*int64, bool)` GetWafStatus501Ok returns a tuple with the WafStatus501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus501 -`func (o *OriginInspectorMeasurements) SetWafStatus501(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus501(v int64)` SetWafStatus501 sets WafStatus501 field to given value. @@ -1678,20 +1678,20 @@ HasWafStatus501 returns a boolean if a field has been set. ### GetWafStatus502 -`func (o *OriginInspectorMeasurements) GetWafStatus502() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus502() int64` GetWafStatus502 returns the WafStatus502 field if non-nil, zero value otherwise. ### GetWafStatus502Ok -`func (o *OriginInspectorMeasurements) GetWafStatus502Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus502Ok() (*int64, bool)` GetWafStatus502Ok returns a tuple with the WafStatus502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus502 -`func (o *OriginInspectorMeasurements) SetWafStatus502(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus502(v int64)` SetWafStatus502 sets WafStatus502 field to given value. @@ -1703,20 +1703,20 @@ HasWafStatus502 returns a boolean if a field has been set. ### GetWafStatus503 -`func (o *OriginInspectorMeasurements) GetWafStatus503() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus503() int64` GetWafStatus503 returns the WafStatus503 field if non-nil, zero value otherwise. ### GetWafStatus503Ok -`func (o *OriginInspectorMeasurements) GetWafStatus503Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus503Ok() (*int64, bool)` GetWafStatus503Ok returns a tuple with the WafStatus503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus503 -`func (o *OriginInspectorMeasurements) SetWafStatus503(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus503(v int64)` SetWafStatus503 sets WafStatus503 field to given value. @@ -1728,20 +1728,20 @@ HasWafStatus503 returns a boolean if a field has been set. ### GetWafStatus504 -`func (o *OriginInspectorMeasurements) GetWafStatus504() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus504() int64` GetWafStatus504 returns the WafStatus504 field if non-nil, zero value otherwise. ### GetWafStatus504Ok -`func (o *OriginInspectorMeasurements) GetWafStatus504Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus504Ok() (*int64, bool)` GetWafStatus504Ok returns a tuple with the WafStatus504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus504 -`func (o *OriginInspectorMeasurements) SetWafStatus504(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus504(v int64)` SetWafStatus504 sets WafStatus504 field to given value. @@ -1753,20 +1753,20 @@ HasWafStatus504 returns a boolean if a field has been set. ### GetWafStatus505 -`func (o *OriginInspectorMeasurements) GetWafStatus505() int32` +`func (o *OriginInspectorMeasurements) GetWafStatus505() int64` GetWafStatus505 returns the WafStatus505 field if non-nil, zero value otherwise. ### GetWafStatus505Ok -`func (o *OriginInspectorMeasurements) GetWafStatus505Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafStatus505Ok() (*int64, bool)` GetWafStatus505Ok returns a tuple with the WafStatus505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus505 -`func (o *OriginInspectorMeasurements) SetWafStatus505(v int32)` +`func (o *OriginInspectorMeasurements) SetWafStatus505(v int64)` SetWafStatus505 sets WafStatus505 field to given value. @@ -1778,20 +1778,20 @@ HasWafStatus505 returns a boolean if a field has been set. ### GetWafLatency0To1ms -`func (o *OriginInspectorMeasurements) GetWafLatency0To1ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency0To1ms() int64` GetWafLatency0To1ms returns the WafLatency0To1ms field if non-nil, zero value otherwise. ### GetWafLatency0To1msOk -`func (o *OriginInspectorMeasurements) GetWafLatency0To1msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency0To1msOk() (*int64, bool)` GetWafLatency0To1msOk returns a tuple with the WafLatency0To1ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency0To1ms -`func (o *OriginInspectorMeasurements) SetWafLatency0To1ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency0To1ms(v int64)` SetWafLatency0To1ms sets WafLatency0To1ms field to given value. @@ -1803,20 +1803,20 @@ HasWafLatency0To1ms returns a boolean if a field has been set. ### GetWafLatency1To5ms -`func (o *OriginInspectorMeasurements) GetWafLatency1To5ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency1To5ms() int64` GetWafLatency1To5ms returns the WafLatency1To5ms field if non-nil, zero value otherwise. ### GetWafLatency1To5msOk -`func (o *OriginInspectorMeasurements) GetWafLatency1To5msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency1To5msOk() (*int64, bool)` GetWafLatency1To5msOk returns a tuple with the WafLatency1To5ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency1To5ms -`func (o *OriginInspectorMeasurements) SetWafLatency1To5ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency1To5ms(v int64)` SetWafLatency1To5ms sets WafLatency1To5ms field to given value. @@ -1828,20 +1828,20 @@ HasWafLatency1To5ms returns a boolean if a field has been set. ### GetWafLatency5To10ms -`func (o *OriginInspectorMeasurements) GetWafLatency5To10ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency5To10ms() int64` GetWafLatency5To10ms returns the WafLatency5To10ms field if non-nil, zero value otherwise. ### GetWafLatency5To10msOk -`func (o *OriginInspectorMeasurements) GetWafLatency5To10msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency5To10msOk() (*int64, bool)` GetWafLatency5To10msOk returns a tuple with the WafLatency5To10ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency5To10ms -`func (o *OriginInspectorMeasurements) SetWafLatency5To10ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency5To10ms(v int64)` SetWafLatency5To10ms sets WafLatency5To10ms field to given value. @@ -1853,20 +1853,20 @@ HasWafLatency5To10ms returns a boolean if a field has been set. ### GetWafLatency10To50ms -`func (o *OriginInspectorMeasurements) GetWafLatency10To50ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency10To50ms() int64` GetWafLatency10To50ms returns the WafLatency10To50ms field if non-nil, zero value otherwise. ### GetWafLatency10To50msOk -`func (o *OriginInspectorMeasurements) GetWafLatency10To50msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency10To50msOk() (*int64, bool)` GetWafLatency10To50msOk returns a tuple with the WafLatency10To50ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency10To50ms -`func (o *OriginInspectorMeasurements) SetWafLatency10To50ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency10To50ms(v int64)` SetWafLatency10To50ms sets WafLatency10To50ms field to given value. @@ -1878,20 +1878,20 @@ HasWafLatency10To50ms returns a boolean if a field has been set. ### GetWafLatency50To100ms -`func (o *OriginInspectorMeasurements) GetWafLatency50To100ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency50To100ms() int64` GetWafLatency50To100ms returns the WafLatency50To100ms field if non-nil, zero value otherwise. ### GetWafLatency50To100msOk -`func (o *OriginInspectorMeasurements) GetWafLatency50To100msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency50To100msOk() (*int64, bool)` GetWafLatency50To100msOk returns a tuple with the WafLatency50To100ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency50To100ms -`func (o *OriginInspectorMeasurements) SetWafLatency50To100ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency50To100ms(v int64)` SetWafLatency50To100ms sets WafLatency50To100ms field to given value. @@ -1903,20 +1903,20 @@ HasWafLatency50To100ms returns a boolean if a field has been set. ### GetWafLatency100To250ms -`func (o *OriginInspectorMeasurements) GetWafLatency100To250ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency100To250ms() int64` GetWafLatency100To250ms returns the WafLatency100To250ms field if non-nil, zero value otherwise. ### GetWafLatency100To250msOk -`func (o *OriginInspectorMeasurements) GetWafLatency100To250msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency100To250msOk() (*int64, bool)` GetWafLatency100To250msOk returns a tuple with the WafLatency100To250ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency100To250ms -`func (o *OriginInspectorMeasurements) SetWafLatency100To250ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency100To250ms(v int64)` SetWafLatency100To250ms sets WafLatency100To250ms field to given value. @@ -1928,20 +1928,20 @@ HasWafLatency100To250ms returns a boolean if a field has been set. ### GetWafLatency250To500ms -`func (o *OriginInspectorMeasurements) GetWafLatency250To500ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency250To500ms() int64` GetWafLatency250To500ms returns the WafLatency250To500ms field if non-nil, zero value otherwise. ### GetWafLatency250To500msOk -`func (o *OriginInspectorMeasurements) GetWafLatency250To500msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency250To500msOk() (*int64, bool)` GetWafLatency250To500msOk returns a tuple with the WafLatency250To500ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency250To500ms -`func (o *OriginInspectorMeasurements) SetWafLatency250To500ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency250To500ms(v int64)` SetWafLatency250To500ms sets WafLatency250To500ms field to given value. @@ -1953,20 +1953,20 @@ HasWafLatency250To500ms returns a boolean if a field has been set. ### GetWafLatency500To1000ms -`func (o *OriginInspectorMeasurements) GetWafLatency500To1000ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency500To1000ms() int64` GetWafLatency500To1000ms returns the WafLatency500To1000ms field if non-nil, zero value otherwise. ### GetWafLatency500To1000msOk -`func (o *OriginInspectorMeasurements) GetWafLatency500To1000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency500To1000msOk() (*int64, bool)` GetWafLatency500To1000msOk returns a tuple with the WafLatency500To1000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency500To1000ms -`func (o *OriginInspectorMeasurements) SetWafLatency500To1000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency500To1000ms(v int64)` SetWafLatency500To1000ms sets WafLatency500To1000ms field to given value. @@ -1978,20 +1978,20 @@ HasWafLatency500To1000ms returns a boolean if a field has been set. ### GetWafLatency1000To5000ms -`func (o *OriginInspectorMeasurements) GetWafLatency1000To5000ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency1000To5000ms() int64` GetWafLatency1000To5000ms returns the WafLatency1000To5000ms field if non-nil, zero value otherwise. ### GetWafLatency1000To5000msOk -`func (o *OriginInspectorMeasurements) GetWafLatency1000To5000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency1000To5000msOk() (*int64, bool)` GetWafLatency1000To5000msOk returns a tuple with the WafLatency1000To5000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency1000To5000ms -`func (o *OriginInspectorMeasurements) SetWafLatency1000To5000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency1000To5000ms(v int64)` SetWafLatency1000To5000ms sets WafLatency1000To5000ms field to given value. @@ -2003,20 +2003,20 @@ HasWafLatency1000To5000ms returns a boolean if a field has been set. ### GetWafLatency5000To10000ms -`func (o *OriginInspectorMeasurements) GetWafLatency5000To10000ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency5000To10000ms() int64` GetWafLatency5000To10000ms returns the WafLatency5000To10000ms field if non-nil, zero value otherwise. ### GetWafLatency5000To10000msOk -`func (o *OriginInspectorMeasurements) GetWafLatency5000To10000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency5000To10000msOk() (*int64, bool)` GetWafLatency5000To10000msOk returns a tuple with the WafLatency5000To10000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency5000To10000ms -`func (o *OriginInspectorMeasurements) SetWafLatency5000To10000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency5000To10000ms(v int64)` SetWafLatency5000To10000ms sets WafLatency5000To10000ms field to given value. @@ -2028,20 +2028,20 @@ HasWafLatency5000To10000ms returns a boolean if a field has been set. ### GetWafLatency10000To60000ms -`func (o *OriginInspectorMeasurements) GetWafLatency10000To60000ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency10000To60000ms() int64` GetWafLatency10000To60000ms returns the WafLatency10000To60000ms field if non-nil, zero value otherwise. ### GetWafLatency10000To60000msOk -`func (o *OriginInspectorMeasurements) GetWafLatency10000To60000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency10000To60000msOk() (*int64, bool)` GetWafLatency10000To60000msOk returns a tuple with the WafLatency10000To60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency10000To60000ms -`func (o *OriginInspectorMeasurements) SetWafLatency10000To60000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency10000To60000ms(v int64)` SetWafLatency10000To60000ms sets WafLatency10000To60000ms field to given value. @@ -2053,20 +2053,20 @@ HasWafLatency10000To60000ms returns a boolean if a field has been set. ### GetWafLatency60000ms -`func (o *OriginInspectorMeasurements) GetWafLatency60000ms() int32` +`func (o *OriginInspectorMeasurements) GetWafLatency60000ms() int64` GetWafLatency60000ms returns the WafLatency60000ms field if non-nil, zero value otherwise. ### GetWafLatency60000msOk -`func (o *OriginInspectorMeasurements) GetWafLatency60000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetWafLatency60000msOk() (*int64, bool)` GetWafLatency60000msOk returns a tuple with the WafLatency60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency60000ms -`func (o *OriginInspectorMeasurements) SetWafLatency60000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetWafLatency60000ms(v int64)` SetWafLatency60000ms sets WafLatency60000ms field to given value. @@ -2078,20 +2078,20 @@ HasWafLatency60000ms returns a boolean if a field has been set. ### GetComputeResponses -`func (o *OriginInspectorMeasurements) GetComputeResponses() int32` +`func (o *OriginInspectorMeasurements) GetComputeResponses() int64` GetComputeResponses returns the ComputeResponses field if non-nil, zero value otherwise. ### GetComputeResponsesOk -`func (o *OriginInspectorMeasurements) GetComputeResponsesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeResponsesOk() (*int64, bool)` GetComputeResponsesOk returns a tuple with the ComputeResponses field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeResponses -`func (o *OriginInspectorMeasurements) SetComputeResponses(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeResponses(v int64)` SetComputeResponses sets ComputeResponses field to given value. @@ -2103,20 +2103,20 @@ HasComputeResponses returns a boolean if a field has been set. ### GetComputeRespHeaderBytes -`func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytes() int32` +`func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytes() int64` GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field if non-nil, zero value otherwise. ### GetComputeRespHeaderBytesOk -`func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytesOk() (*int64, bool)` GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespHeaderBytes -`func (o *OriginInspectorMeasurements) SetComputeRespHeaderBytes(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeRespHeaderBytes(v int64)` SetComputeRespHeaderBytes sets ComputeRespHeaderBytes field to given value. @@ -2128,20 +2128,20 @@ HasComputeRespHeaderBytes returns a boolean if a field has been set. ### GetComputeRespBodyBytes -`func (o *OriginInspectorMeasurements) GetComputeRespBodyBytes() int32` +`func (o *OriginInspectorMeasurements) GetComputeRespBodyBytes() int64` GetComputeRespBodyBytes returns the ComputeRespBodyBytes field if non-nil, zero value otherwise. ### GetComputeRespBodyBytesOk -`func (o *OriginInspectorMeasurements) GetComputeRespBodyBytesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeRespBodyBytesOk() (*int64, bool)` GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespBodyBytes -`func (o *OriginInspectorMeasurements) SetComputeRespBodyBytes(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeRespBodyBytes(v int64)` SetComputeRespBodyBytes sets ComputeRespBodyBytes field to given value. @@ -2153,20 +2153,20 @@ HasComputeRespBodyBytes returns a boolean if a field has been set. ### GetComputeStatus1xx -`func (o *OriginInspectorMeasurements) GetComputeStatus1xx() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus1xx() int64` GetComputeStatus1xx returns the ComputeStatus1xx field if non-nil, zero value otherwise. ### GetComputeStatus1xxOk -`func (o *OriginInspectorMeasurements) GetComputeStatus1xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus1xxOk() (*int64, bool)` GetComputeStatus1xxOk returns a tuple with the ComputeStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus1xx -`func (o *OriginInspectorMeasurements) SetComputeStatus1xx(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus1xx(v int64)` SetComputeStatus1xx sets ComputeStatus1xx field to given value. @@ -2178,20 +2178,20 @@ HasComputeStatus1xx returns a boolean if a field has been set. ### GetComputeStatus2xx -`func (o *OriginInspectorMeasurements) GetComputeStatus2xx() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus2xx() int64` GetComputeStatus2xx returns the ComputeStatus2xx field if non-nil, zero value otherwise. ### GetComputeStatus2xxOk -`func (o *OriginInspectorMeasurements) GetComputeStatus2xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus2xxOk() (*int64, bool)` GetComputeStatus2xxOk returns a tuple with the ComputeStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus2xx -`func (o *OriginInspectorMeasurements) SetComputeStatus2xx(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus2xx(v int64)` SetComputeStatus2xx sets ComputeStatus2xx field to given value. @@ -2203,20 +2203,20 @@ HasComputeStatus2xx returns a boolean if a field has been set. ### GetComputeStatus3xx -`func (o *OriginInspectorMeasurements) GetComputeStatus3xx() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus3xx() int64` GetComputeStatus3xx returns the ComputeStatus3xx field if non-nil, zero value otherwise. ### GetComputeStatus3xxOk -`func (o *OriginInspectorMeasurements) GetComputeStatus3xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus3xxOk() (*int64, bool)` GetComputeStatus3xxOk returns a tuple with the ComputeStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus3xx -`func (o *OriginInspectorMeasurements) SetComputeStatus3xx(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus3xx(v int64)` SetComputeStatus3xx sets ComputeStatus3xx field to given value. @@ -2228,20 +2228,20 @@ HasComputeStatus3xx returns a boolean if a field has been set. ### GetComputeStatus4xx -`func (o *OriginInspectorMeasurements) GetComputeStatus4xx() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus4xx() int64` GetComputeStatus4xx returns the ComputeStatus4xx field if non-nil, zero value otherwise. ### GetComputeStatus4xxOk -`func (o *OriginInspectorMeasurements) GetComputeStatus4xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus4xxOk() (*int64, bool)` GetComputeStatus4xxOk returns a tuple with the ComputeStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus4xx -`func (o *OriginInspectorMeasurements) SetComputeStatus4xx(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus4xx(v int64)` SetComputeStatus4xx sets ComputeStatus4xx field to given value. @@ -2253,20 +2253,20 @@ HasComputeStatus4xx returns a boolean if a field has been set. ### GetComputeStatus5xx -`func (o *OriginInspectorMeasurements) GetComputeStatus5xx() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus5xx() int64` GetComputeStatus5xx returns the ComputeStatus5xx field if non-nil, zero value otherwise. ### GetComputeStatus5xxOk -`func (o *OriginInspectorMeasurements) GetComputeStatus5xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus5xxOk() (*int64, bool)` GetComputeStatus5xxOk returns a tuple with the ComputeStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus5xx -`func (o *OriginInspectorMeasurements) SetComputeStatus5xx(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus5xx(v int64)` SetComputeStatus5xx sets ComputeStatus5xx field to given value. @@ -2278,20 +2278,20 @@ HasComputeStatus5xx returns a boolean if a field has been set. ### GetComputeStatus200 -`func (o *OriginInspectorMeasurements) GetComputeStatus200() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus200() int64` GetComputeStatus200 returns the ComputeStatus200 field if non-nil, zero value otherwise. ### GetComputeStatus200Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus200Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus200Ok() (*int64, bool)` GetComputeStatus200Ok returns a tuple with the ComputeStatus200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus200 -`func (o *OriginInspectorMeasurements) SetComputeStatus200(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus200(v int64)` SetComputeStatus200 sets ComputeStatus200 field to given value. @@ -2303,20 +2303,20 @@ HasComputeStatus200 returns a boolean if a field has been set. ### GetComputeStatus204 -`func (o *OriginInspectorMeasurements) GetComputeStatus204() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus204() int64` GetComputeStatus204 returns the ComputeStatus204 field if non-nil, zero value otherwise. ### GetComputeStatus204Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus204Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus204Ok() (*int64, bool)` GetComputeStatus204Ok returns a tuple with the ComputeStatus204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus204 -`func (o *OriginInspectorMeasurements) SetComputeStatus204(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus204(v int64)` SetComputeStatus204 sets ComputeStatus204 field to given value. @@ -2328,20 +2328,20 @@ HasComputeStatus204 returns a boolean if a field has been set. ### GetComputeStatus206 -`func (o *OriginInspectorMeasurements) GetComputeStatus206() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus206() int64` GetComputeStatus206 returns the ComputeStatus206 field if non-nil, zero value otherwise. ### GetComputeStatus206Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus206Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus206Ok() (*int64, bool)` GetComputeStatus206Ok returns a tuple with the ComputeStatus206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus206 -`func (o *OriginInspectorMeasurements) SetComputeStatus206(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus206(v int64)` SetComputeStatus206 sets ComputeStatus206 field to given value. @@ -2353,20 +2353,20 @@ HasComputeStatus206 returns a boolean if a field has been set. ### GetComputeStatus301 -`func (o *OriginInspectorMeasurements) GetComputeStatus301() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus301() int64` GetComputeStatus301 returns the ComputeStatus301 field if non-nil, zero value otherwise. ### GetComputeStatus301Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus301Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus301Ok() (*int64, bool)` GetComputeStatus301Ok returns a tuple with the ComputeStatus301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus301 -`func (o *OriginInspectorMeasurements) SetComputeStatus301(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus301(v int64)` SetComputeStatus301 sets ComputeStatus301 field to given value. @@ -2378,20 +2378,20 @@ HasComputeStatus301 returns a boolean if a field has been set. ### GetComputeStatus302 -`func (o *OriginInspectorMeasurements) GetComputeStatus302() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus302() int64` GetComputeStatus302 returns the ComputeStatus302 field if non-nil, zero value otherwise. ### GetComputeStatus302Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus302Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus302Ok() (*int64, bool)` GetComputeStatus302Ok returns a tuple with the ComputeStatus302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus302 -`func (o *OriginInspectorMeasurements) SetComputeStatus302(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus302(v int64)` SetComputeStatus302 sets ComputeStatus302 field to given value. @@ -2403,20 +2403,20 @@ HasComputeStatus302 returns a boolean if a field has been set. ### GetComputeStatus304 -`func (o *OriginInspectorMeasurements) GetComputeStatus304() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus304() int64` GetComputeStatus304 returns the ComputeStatus304 field if non-nil, zero value otherwise. ### GetComputeStatus304Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus304Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus304Ok() (*int64, bool)` GetComputeStatus304Ok returns a tuple with the ComputeStatus304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus304 -`func (o *OriginInspectorMeasurements) SetComputeStatus304(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus304(v int64)` SetComputeStatus304 sets ComputeStatus304 field to given value. @@ -2428,20 +2428,20 @@ HasComputeStatus304 returns a boolean if a field has been set. ### GetComputeStatus400 -`func (o *OriginInspectorMeasurements) GetComputeStatus400() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus400() int64` GetComputeStatus400 returns the ComputeStatus400 field if non-nil, zero value otherwise. ### GetComputeStatus400Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus400Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus400Ok() (*int64, bool)` GetComputeStatus400Ok returns a tuple with the ComputeStatus400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus400 -`func (o *OriginInspectorMeasurements) SetComputeStatus400(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus400(v int64)` SetComputeStatus400 sets ComputeStatus400 field to given value. @@ -2453,20 +2453,20 @@ HasComputeStatus400 returns a boolean if a field has been set. ### GetComputeStatus401 -`func (o *OriginInspectorMeasurements) GetComputeStatus401() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus401() int64` GetComputeStatus401 returns the ComputeStatus401 field if non-nil, zero value otherwise. ### GetComputeStatus401Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus401Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus401Ok() (*int64, bool)` GetComputeStatus401Ok returns a tuple with the ComputeStatus401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus401 -`func (o *OriginInspectorMeasurements) SetComputeStatus401(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus401(v int64)` SetComputeStatus401 sets ComputeStatus401 field to given value. @@ -2478,20 +2478,20 @@ HasComputeStatus401 returns a boolean if a field has been set. ### GetComputeStatus403 -`func (o *OriginInspectorMeasurements) GetComputeStatus403() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus403() int64` GetComputeStatus403 returns the ComputeStatus403 field if non-nil, zero value otherwise. ### GetComputeStatus403Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus403Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus403Ok() (*int64, bool)` GetComputeStatus403Ok returns a tuple with the ComputeStatus403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus403 -`func (o *OriginInspectorMeasurements) SetComputeStatus403(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus403(v int64)` SetComputeStatus403 sets ComputeStatus403 field to given value. @@ -2503,20 +2503,20 @@ HasComputeStatus403 returns a boolean if a field has been set. ### GetComputeStatus404 -`func (o *OriginInspectorMeasurements) GetComputeStatus404() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus404() int64` GetComputeStatus404 returns the ComputeStatus404 field if non-nil, zero value otherwise. ### GetComputeStatus404Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus404Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus404Ok() (*int64, bool)` GetComputeStatus404Ok returns a tuple with the ComputeStatus404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus404 -`func (o *OriginInspectorMeasurements) SetComputeStatus404(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus404(v int64)` SetComputeStatus404 sets ComputeStatus404 field to given value. @@ -2528,20 +2528,20 @@ HasComputeStatus404 returns a boolean if a field has been set. ### GetComputeStatus416 -`func (o *OriginInspectorMeasurements) GetComputeStatus416() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus416() int64` GetComputeStatus416 returns the ComputeStatus416 field if non-nil, zero value otherwise. ### GetComputeStatus416Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus416Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus416Ok() (*int64, bool)` GetComputeStatus416Ok returns a tuple with the ComputeStatus416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus416 -`func (o *OriginInspectorMeasurements) SetComputeStatus416(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus416(v int64)` SetComputeStatus416 sets ComputeStatus416 field to given value. @@ -2553,20 +2553,20 @@ HasComputeStatus416 returns a boolean if a field has been set. ### GetComputeStatus429 -`func (o *OriginInspectorMeasurements) GetComputeStatus429() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus429() int64` GetComputeStatus429 returns the ComputeStatus429 field if non-nil, zero value otherwise. ### GetComputeStatus429Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus429Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus429Ok() (*int64, bool)` GetComputeStatus429Ok returns a tuple with the ComputeStatus429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus429 -`func (o *OriginInspectorMeasurements) SetComputeStatus429(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus429(v int64)` SetComputeStatus429 sets ComputeStatus429 field to given value. @@ -2578,20 +2578,20 @@ HasComputeStatus429 returns a boolean if a field has been set. ### GetComputeStatus500 -`func (o *OriginInspectorMeasurements) GetComputeStatus500() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus500() int64` GetComputeStatus500 returns the ComputeStatus500 field if non-nil, zero value otherwise. ### GetComputeStatus500Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus500Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus500Ok() (*int64, bool)` GetComputeStatus500Ok returns a tuple with the ComputeStatus500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus500 -`func (o *OriginInspectorMeasurements) SetComputeStatus500(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus500(v int64)` SetComputeStatus500 sets ComputeStatus500 field to given value. @@ -2603,20 +2603,20 @@ HasComputeStatus500 returns a boolean if a field has been set. ### GetComputeStatus501 -`func (o *OriginInspectorMeasurements) GetComputeStatus501() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus501() int64` GetComputeStatus501 returns the ComputeStatus501 field if non-nil, zero value otherwise. ### GetComputeStatus501Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus501Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus501Ok() (*int64, bool)` GetComputeStatus501Ok returns a tuple with the ComputeStatus501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus501 -`func (o *OriginInspectorMeasurements) SetComputeStatus501(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus501(v int64)` SetComputeStatus501 sets ComputeStatus501 field to given value. @@ -2628,20 +2628,20 @@ HasComputeStatus501 returns a boolean if a field has been set. ### GetComputeStatus502 -`func (o *OriginInspectorMeasurements) GetComputeStatus502() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus502() int64` GetComputeStatus502 returns the ComputeStatus502 field if non-nil, zero value otherwise. ### GetComputeStatus502Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus502Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus502Ok() (*int64, bool)` GetComputeStatus502Ok returns a tuple with the ComputeStatus502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus502 -`func (o *OriginInspectorMeasurements) SetComputeStatus502(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus502(v int64)` SetComputeStatus502 sets ComputeStatus502 field to given value. @@ -2653,20 +2653,20 @@ HasComputeStatus502 returns a boolean if a field has been set. ### GetComputeStatus503 -`func (o *OriginInspectorMeasurements) GetComputeStatus503() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus503() int64` GetComputeStatus503 returns the ComputeStatus503 field if non-nil, zero value otherwise. ### GetComputeStatus503Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus503Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus503Ok() (*int64, bool)` GetComputeStatus503Ok returns a tuple with the ComputeStatus503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus503 -`func (o *OriginInspectorMeasurements) SetComputeStatus503(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus503(v int64)` SetComputeStatus503 sets ComputeStatus503 field to given value. @@ -2678,20 +2678,20 @@ HasComputeStatus503 returns a boolean if a field has been set. ### GetComputeStatus504 -`func (o *OriginInspectorMeasurements) GetComputeStatus504() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus504() int64` GetComputeStatus504 returns the ComputeStatus504 field if non-nil, zero value otherwise. ### GetComputeStatus504Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus504Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus504Ok() (*int64, bool)` GetComputeStatus504Ok returns a tuple with the ComputeStatus504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus504 -`func (o *OriginInspectorMeasurements) SetComputeStatus504(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus504(v int64)` SetComputeStatus504 sets ComputeStatus504 field to given value. @@ -2703,20 +2703,20 @@ HasComputeStatus504 returns a boolean if a field has been set. ### GetComputeStatus505 -`func (o *OriginInspectorMeasurements) GetComputeStatus505() int32` +`func (o *OriginInspectorMeasurements) GetComputeStatus505() int64` GetComputeStatus505 returns the ComputeStatus505 field if non-nil, zero value otherwise. ### GetComputeStatus505Ok -`func (o *OriginInspectorMeasurements) GetComputeStatus505Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeStatus505Ok() (*int64, bool)` GetComputeStatus505Ok returns a tuple with the ComputeStatus505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus505 -`func (o *OriginInspectorMeasurements) SetComputeStatus505(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeStatus505(v int64)` SetComputeStatus505 sets ComputeStatus505 field to given value. @@ -2728,20 +2728,20 @@ HasComputeStatus505 returns a boolean if a field has been set. ### GetComputeLatency0To1ms -`func (o *OriginInspectorMeasurements) GetComputeLatency0To1ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency0To1ms() int64` GetComputeLatency0To1ms returns the ComputeLatency0To1ms field if non-nil, zero value otherwise. ### GetComputeLatency0To1msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency0To1msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency0To1msOk() (*int64, bool)` GetComputeLatency0To1msOk returns a tuple with the ComputeLatency0To1ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency0To1ms -`func (o *OriginInspectorMeasurements) SetComputeLatency0To1ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency0To1ms(v int64)` SetComputeLatency0To1ms sets ComputeLatency0To1ms field to given value. @@ -2753,20 +2753,20 @@ HasComputeLatency0To1ms returns a boolean if a field has been set. ### GetComputeLatency1To5ms -`func (o *OriginInspectorMeasurements) GetComputeLatency1To5ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency1To5ms() int64` GetComputeLatency1To5ms returns the ComputeLatency1To5ms field if non-nil, zero value otherwise. ### GetComputeLatency1To5msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency1To5msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency1To5msOk() (*int64, bool)` GetComputeLatency1To5msOk returns a tuple with the ComputeLatency1To5ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency1To5ms -`func (o *OriginInspectorMeasurements) SetComputeLatency1To5ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency1To5ms(v int64)` SetComputeLatency1To5ms sets ComputeLatency1To5ms field to given value. @@ -2778,20 +2778,20 @@ HasComputeLatency1To5ms returns a boolean if a field has been set. ### GetComputeLatency5To10ms -`func (o *OriginInspectorMeasurements) GetComputeLatency5To10ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency5To10ms() int64` GetComputeLatency5To10ms returns the ComputeLatency5To10ms field if non-nil, zero value otherwise. ### GetComputeLatency5To10msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency5To10msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency5To10msOk() (*int64, bool)` GetComputeLatency5To10msOk returns a tuple with the ComputeLatency5To10ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency5To10ms -`func (o *OriginInspectorMeasurements) SetComputeLatency5To10ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency5To10ms(v int64)` SetComputeLatency5To10ms sets ComputeLatency5To10ms field to given value. @@ -2803,20 +2803,20 @@ HasComputeLatency5To10ms returns a boolean if a field has been set. ### GetComputeLatency10To50ms -`func (o *OriginInspectorMeasurements) GetComputeLatency10To50ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency10To50ms() int64` GetComputeLatency10To50ms returns the ComputeLatency10To50ms field if non-nil, zero value otherwise. ### GetComputeLatency10To50msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency10To50msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency10To50msOk() (*int64, bool)` GetComputeLatency10To50msOk returns a tuple with the ComputeLatency10To50ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency10To50ms -`func (o *OriginInspectorMeasurements) SetComputeLatency10To50ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency10To50ms(v int64)` SetComputeLatency10To50ms sets ComputeLatency10To50ms field to given value. @@ -2828,20 +2828,20 @@ HasComputeLatency10To50ms returns a boolean if a field has been set. ### GetComputeLatency50To100ms -`func (o *OriginInspectorMeasurements) GetComputeLatency50To100ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency50To100ms() int64` GetComputeLatency50To100ms returns the ComputeLatency50To100ms field if non-nil, zero value otherwise. ### GetComputeLatency50To100msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency50To100msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency50To100msOk() (*int64, bool)` GetComputeLatency50To100msOk returns a tuple with the ComputeLatency50To100ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency50To100ms -`func (o *OriginInspectorMeasurements) SetComputeLatency50To100ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency50To100ms(v int64)` SetComputeLatency50To100ms sets ComputeLatency50To100ms field to given value. @@ -2853,20 +2853,20 @@ HasComputeLatency50To100ms returns a boolean if a field has been set. ### GetComputeLatency100To250ms -`func (o *OriginInspectorMeasurements) GetComputeLatency100To250ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency100To250ms() int64` GetComputeLatency100To250ms returns the ComputeLatency100To250ms field if non-nil, zero value otherwise. ### GetComputeLatency100To250msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency100To250msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency100To250msOk() (*int64, bool)` GetComputeLatency100To250msOk returns a tuple with the ComputeLatency100To250ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency100To250ms -`func (o *OriginInspectorMeasurements) SetComputeLatency100To250ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency100To250ms(v int64)` SetComputeLatency100To250ms sets ComputeLatency100To250ms field to given value. @@ -2878,20 +2878,20 @@ HasComputeLatency100To250ms returns a boolean if a field has been set. ### GetComputeLatency250To500ms -`func (o *OriginInspectorMeasurements) GetComputeLatency250To500ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency250To500ms() int64` GetComputeLatency250To500ms returns the ComputeLatency250To500ms field if non-nil, zero value otherwise. ### GetComputeLatency250To500msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency250To500msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency250To500msOk() (*int64, bool)` GetComputeLatency250To500msOk returns a tuple with the ComputeLatency250To500ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency250To500ms -`func (o *OriginInspectorMeasurements) SetComputeLatency250To500ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency250To500ms(v int64)` SetComputeLatency250To500ms sets ComputeLatency250To500ms field to given value. @@ -2903,20 +2903,20 @@ HasComputeLatency250To500ms returns a boolean if a field has been set. ### GetComputeLatency500To1000ms -`func (o *OriginInspectorMeasurements) GetComputeLatency500To1000ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency500To1000ms() int64` GetComputeLatency500To1000ms returns the ComputeLatency500To1000ms field if non-nil, zero value otherwise. ### GetComputeLatency500To1000msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency500To1000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency500To1000msOk() (*int64, bool)` GetComputeLatency500To1000msOk returns a tuple with the ComputeLatency500To1000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency500To1000ms -`func (o *OriginInspectorMeasurements) SetComputeLatency500To1000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency500To1000ms(v int64)` SetComputeLatency500To1000ms sets ComputeLatency500To1000ms field to given value. @@ -2928,20 +2928,20 @@ HasComputeLatency500To1000ms returns a boolean if a field has been set. ### GetComputeLatency1000To5000ms -`func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000ms() int64` GetComputeLatency1000To5000ms returns the ComputeLatency1000To5000ms field if non-nil, zero value otherwise. ### GetComputeLatency1000To5000msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000msOk() (*int64, bool)` GetComputeLatency1000To5000msOk returns a tuple with the ComputeLatency1000To5000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency1000To5000ms -`func (o *OriginInspectorMeasurements) SetComputeLatency1000To5000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency1000To5000ms(v int64)` SetComputeLatency1000To5000ms sets ComputeLatency1000To5000ms field to given value. @@ -2953,20 +2953,20 @@ HasComputeLatency1000To5000ms returns a boolean if a field has been set. ### GetComputeLatency5000To10000ms -`func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000ms() int64` GetComputeLatency5000To10000ms returns the ComputeLatency5000To10000ms field if non-nil, zero value otherwise. ### GetComputeLatency5000To10000msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000msOk() (*int64, bool)` GetComputeLatency5000To10000msOk returns a tuple with the ComputeLatency5000To10000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency5000To10000ms -`func (o *OriginInspectorMeasurements) SetComputeLatency5000To10000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency5000To10000ms(v int64)` SetComputeLatency5000To10000ms sets ComputeLatency5000To10000ms field to given value. @@ -2978,20 +2978,20 @@ HasComputeLatency5000To10000ms returns a boolean if a field has been set. ### GetComputeLatency10000To60000ms -`func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000ms() int64` GetComputeLatency10000To60000ms returns the ComputeLatency10000To60000ms field if non-nil, zero value otherwise. ### GetComputeLatency10000To60000msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000msOk() (*int64, bool)` GetComputeLatency10000To60000msOk returns a tuple with the ComputeLatency10000To60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency10000To60000ms -`func (o *OriginInspectorMeasurements) SetComputeLatency10000To60000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency10000To60000ms(v int64)` SetComputeLatency10000To60000ms sets ComputeLatency10000To60000ms field to given value. @@ -3003,20 +3003,20 @@ HasComputeLatency10000To60000ms returns a boolean if a field has been set. ### GetComputeLatency60000ms -`func (o *OriginInspectorMeasurements) GetComputeLatency60000ms() int32` +`func (o *OriginInspectorMeasurements) GetComputeLatency60000ms() int64` GetComputeLatency60000ms returns the ComputeLatency60000ms field if non-nil, zero value otherwise. ### GetComputeLatency60000msOk -`func (o *OriginInspectorMeasurements) GetComputeLatency60000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetComputeLatency60000msOk() (*int64, bool)` GetComputeLatency60000msOk returns a tuple with the ComputeLatency60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency60000ms -`func (o *OriginInspectorMeasurements) SetComputeLatency60000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetComputeLatency60000ms(v int64)` SetComputeLatency60000ms sets ComputeLatency60000ms field to given value. @@ -3028,20 +3028,20 @@ HasComputeLatency60000ms returns a boolean if a field has been set. ### GetAllResponses -`func (o *OriginInspectorMeasurements) GetAllResponses() int32` +`func (o *OriginInspectorMeasurements) GetAllResponses() int64` GetAllResponses returns the AllResponses field if non-nil, zero value otherwise. ### GetAllResponsesOk -`func (o *OriginInspectorMeasurements) GetAllResponsesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllResponsesOk() (*int64, bool)` GetAllResponsesOk returns a tuple with the AllResponses field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllResponses -`func (o *OriginInspectorMeasurements) SetAllResponses(v int32)` +`func (o *OriginInspectorMeasurements) SetAllResponses(v int64)` SetAllResponses sets AllResponses field to given value. @@ -3053,20 +3053,20 @@ HasAllResponses returns a boolean if a field has been set. ### GetAllRespHeaderBytes -`func (o *OriginInspectorMeasurements) GetAllRespHeaderBytes() int32` +`func (o *OriginInspectorMeasurements) GetAllRespHeaderBytes() int64` GetAllRespHeaderBytes returns the AllRespHeaderBytes field if non-nil, zero value otherwise. ### GetAllRespHeaderBytesOk -`func (o *OriginInspectorMeasurements) GetAllRespHeaderBytesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllRespHeaderBytesOk() (*int64, bool)` GetAllRespHeaderBytesOk returns a tuple with the AllRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllRespHeaderBytes -`func (o *OriginInspectorMeasurements) SetAllRespHeaderBytes(v int32)` +`func (o *OriginInspectorMeasurements) SetAllRespHeaderBytes(v int64)` SetAllRespHeaderBytes sets AllRespHeaderBytes field to given value. @@ -3078,20 +3078,20 @@ HasAllRespHeaderBytes returns a boolean if a field has been set. ### GetAllRespBodyBytes -`func (o *OriginInspectorMeasurements) GetAllRespBodyBytes() int32` +`func (o *OriginInspectorMeasurements) GetAllRespBodyBytes() int64` GetAllRespBodyBytes returns the AllRespBodyBytes field if non-nil, zero value otherwise. ### GetAllRespBodyBytesOk -`func (o *OriginInspectorMeasurements) GetAllRespBodyBytesOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllRespBodyBytesOk() (*int64, bool)` GetAllRespBodyBytesOk returns a tuple with the AllRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllRespBodyBytes -`func (o *OriginInspectorMeasurements) SetAllRespBodyBytes(v int32)` +`func (o *OriginInspectorMeasurements) SetAllRespBodyBytes(v int64)` SetAllRespBodyBytes sets AllRespBodyBytes field to given value. @@ -3103,20 +3103,20 @@ HasAllRespBodyBytes returns a boolean if a field has been set. ### GetAllStatus1xx -`func (o *OriginInspectorMeasurements) GetAllStatus1xx() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus1xx() int64` GetAllStatus1xx returns the AllStatus1xx field if non-nil, zero value otherwise. ### GetAllStatus1xxOk -`func (o *OriginInspectorMeasurements) GetAllStatus1xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus1xxOk() (*int64, bool)` GetAllStatus1xxOk returns a tuple with the AllStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus1xx -`func (o *OriginInspectorMeasurements) SetAllStatus1xx(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus1xx(v int64)` SetAllStatus1xx sets AllStatus1xx field to given value. @@ -3128,20 +3128,20 @@ HasAllStatus1xx returns a boolean if a field has been set. ### GetAllStatus2xx -`func (o *OriginInspectorMeasurements) GetAllStatus2xx() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus2xx() int64` GetAllStatus2xx returns the AllStatus2xx field if non-nil, zero value otherwise. ### GetAllStatus2xxOk -`func (o *OriginInspectorMeasurements) GetAllStatus2xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus2xxOk() (*int64, bool)` GetAllStatus2xxOk returns a tuple with the AllStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus2xx -`func (o *OriginInspectorMeasurements) SetAllStatus2xx(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus2xx(v int64)` SetAllStatus2xx sets AllStatus2xx field to given value. @@ -3153,20 +3153,20 @@ HasAllStatus2xx returns a boolean if a field has been set. ### GetAllStatus3xx -`func (o *OriginInspectorMeasurements) GetAllStatus3xx() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus3xx() int64` GetAllStatus3xx returns the AllStatus3xx field if non-nil, zero value otherwise. ### GetAllStatus3xxOk -`func (o *OriginInspectorMeasurements) GetAllStatus3xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus3xxOk() (*int64, bool)` GetAllStatus3xxOk returns a tuple with the AllStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus3xx -`func (o *OriginInspectorMeasurements) SetAllStatus3xx(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus3xx(v int64)` SetAllStatus3xx sets AllStatus3xx field to given value. @@ -3178,20 +3178,20 @@ HasAllStatus3xx returns a boolean if a field has been set. ### GetAllStatus4xx -`func (o *OriginInspectorMeasurements) GetAllStatus4xx() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus4xx() int64` GetAllStatus4xx returns the AllStatus4xx field if non-nil, zero value otherwise. ### GetAllStatus4xxOk -`func (o *OriginInspectorMeasurements) GetAllStatus4xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus4xxOk() (*int64, bool)` GetAllStatus4xxOk returns a tuple with the AllStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus4xx -`func (o *OriginInspectorMeasurements) SetAllStatus4xx(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus4xx(v int64)` SetAllStatus4xx sets AllStatus4xx field to given value. @@ -3203,20 +3203,20 @@ HasAllStatus4xx returns a boolean if a field has been set. ### GetAllStatus5xx -`func (o *OriginInspectorMeasurements) GetAllStatus5xx() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus5xx() int64` GetAllStatus5xx returns the AllStatus5xx field if non-nil, zero value otherwise. ### GetAllStatus5xxOk -`func (o *OriginInspectorMeasurements) GetAllStatus5xxOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus5xxOk() (*int64, bool)` GetAllStatus5xxOk returns a tuple with the AllStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus5xx -`func (o *OriginInspectorMeasurements) SetAllStatus5xx(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus5xx(v int64)` SetAllStatus5xx sets AllStatus5xx field to given value. @@ -3228,20 +3228,20 @@ HasAllStatus5xx returns a boolean if a field has been set. ### GetAllStatus200 -`func (o *OriginInspectorMeasurements) GetAllStatus200() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus200() int64` GetAllStatus200 returns the AllStatus200 field if non-nil, zero value otherwise. ### GetAllStatus200Ok -`func (o *OriginInspectorMeasurements) GetAllStatus200Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus200Ok() (*int64, bool)` GetAllStatus200Ok returns a tuple with the AllStatus200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus200 -`func (o *OriginInspectorMeasurements) SetAllStatus200(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus200(v int64)` SetAllStatus200 sets AllStatus200 field to given value. @@ -3253,20 +3253,20 @@ HasAllStatus200 returns a boolean if a field has been set. ### GetAllStatus204 -`func (o *OriginInspectorMeasurements) GetAllStatus204() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus204() int64` GetAllStatus204 returns the AllStatus204 field if non-nil, zero value otherwise. ### GetAllStatus204Ok -`func (o *OriginInspectorMeasurements) GetAllStatus204Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus204Ok() (*int64, bool)` GetAllStatus204Ok returns a tuple with the AllStatus204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus204 -`func (o *OriginInspectorMeasurements) SetAllStatus204(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus204(v int64)` SetAllStatus204 sets AllStatus204 field to given value. @@ -3278,20 +3278,20 @@ HasAllStatus204 returns a boolean if a field has been set. ### GetAllStatus206 -`func (o *OriginInspectorMeasurements) GetAllStatus206() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus206() int64` GetAllStatus206 returns the AllStatus206 field if non-nil, zero value otherwise. ### GetAllStatus206Ok -`func (o *OriginInspectorMeasurements) GetAllStatus206Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus206Ok() (*int64, bool)` GetAllStatus206Ok returns a tuple with the AllStatus206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus206 -`func (o *OriginInspectorMeasurements) SetAllStatus206(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus206(v int64)` SetAllStatus206 sets AllStatus206 field to given value. @@ -3303,20 +3303,20 @@ HasAllStatus206 returns a boolean if a field has been set. ### GetAllStatus301 -`func (o *OriginInspectorMeasurements) GetAllStatus301() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus301() int64` GetAllStatus301 returns the AllStatus301 field if non-nil, zero value otherwise. ### GetAllStatus301Ok -`func (o *OriginInspectorMeasurements) GetAllStatus301Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus301Ok() (*int64, bool)` GetAllStatus301Ok returns a tuple with the AllStatus301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus301 -`func (o *OriginInspectorMeasurements) SetAllStatus301(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus301(v int64)` SetAllStatus301 sets AllStatus301 field to given value. @@ -3328,20 +3328,20 @@ HasAllStatus301 returns a boolean if a field has been set. ### GetAllStatus302 -`func (o *OriginInspectorMeasurements) GetAllStatus302() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus302() int64` GetAllStatus302 returns the AllStatus302 field if non-nil, zero value otherwise. ### GetAllStatus302Ok -`func (o *OriginInspectorMeasurements) GetAllStatus302Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus302Ok() (*int64, bool)` GetAllStatus302Ok returns a tuple with the AllStatus302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus302 -`func (o *OriginInspectorMeasurements) SetAllStatus302(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus302(v int64)` SetAllStatus302 sets AllStatus302 field to given value. @@ -3353,20 +3353,20 @@ HasAllStatus302 returns a boolean if a field has been set. ### GetAllStatus304 -`func (o *OriginInspectorMeasurements) GetAllStatus304() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus304() int64` GetAllStatus304 returns the AllStatus304 field if non-nil, zero value otherwise. ### GetAllStatus304Ok -`func (o *OriginInspectorMeasurements) GetAllStatus304Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus304Ok() (*int64, bool)` GetAllStatus304Ok returns a tuple with the AllStatus304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus304 -`func (o *OriginInspectorMeasurements) SetAllStatus304(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus304(v int64)` SetAllStatus304 sets AllStatus304 field to given value. @@ -3378,20 +3378,20 @@ HasAllStatus304 returns a boolean if a field has been set. ### GetAllStatus400 -`func (o *OriginInspectorMeasurements) GetAllStatus400() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus400() int64` GetAllStatus400 returns the AllStatus400 field if non-nil, zero value otherwise. ### GetAllStatus400Ok -`func (o *OriginInspectorMeasurements) GetAllStatus400Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus400Ok() (*int64, bool)` GetAllStatus400Ok returns a tuple with the AllStatus400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus400 -`func (o *OriginInspectorMeasurements) SetAllStatus400(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus400(v int64)` SetAllStatus400 sets AllStatus400 field to given value. @@ -3403,20 +3403,20 @@ HasAllStatus400 returns a boolean if a field has been set. ### GetAllStatus401 -`func (o *OriginInspectorMeasurements) GetAllStatus401() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus401() int64` GetAllStatus401 returns the AllStatus401 field if non-nil, zero value otherwise. ### GetAllStatus401Ok -`func (o *OriginInspectorMeasurements) GetAllStatus401Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus401Ok() (*int64, bool)` GetAllStatus401Ok returns a tuple with the AllStatus401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus401 -`func (o *OriginInspectorMeasurements) SetAllStatus401(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus401(v int64)` SetAllStatus401 sets AllStatus401 field to given value. @@ -3428,20 +3428,20 @@ HasAllStatus401 returns a boolean if a field has been set. ### GetAllStatus403 -`func (o *OriginInspectorMeasurements) GetAllStatus403() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus403() int64` GetAllStatus403 returns the AllStatus403 field if non-nil, zero value otherwise. ### GetAllStatus403Ok -`func (o *OriginInspectorMeasurements) GetAllStatus403Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus403Ok() (*int64, bool)` GetAllStatus403Ok returns a tuple with the AllStatus403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus403 -`func (o *OriginInspectorMeasurements) SetAllStatus403(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus403(v int64)` SetAllStatus403 sets AllStatus403 field to given value. @@ -3453,20 +3453,20 @@ HasAllStatus403 returns a boolean if a field has been set. ### GetAllStatus404 -`func (o *OriginInspectorMeasurements) GetAllStatus404() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus404() int64` GetAllStatus404 returns the AllStatus404 field if non-nil, zero value otherwise. ### GetAllStatus404Ok -`func (o *OriginInspectorMeasurements) GetAllStatus404Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus404Ok() (*int64, bool)` GetAllStatus404Ok returns a tuple with the AllStatus404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus404 -`func (o *OriginInspectorMeasurements) SetAllStatus404(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus404(v int64)` SetAllStatus404 sets AllStatus404 field to given value. @@ -3478,20 +3478,20 @@ HasAllStatus404 returns a boolean if a field has been set. ### GetAllStatus416 -`func (o *OriginInspectorMeasurements) GetAllStatus416() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus416() int64` GetAllStatus416 returns the AllStatus416 field if non-nil, zero value otherwise. ### GetAllStatus416Ok -`func (o *OriginInspectorMeasurements) GetAllStatus416Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus416Ok() (*int64, bool)` GetAllStatus416Ok returns a tuple with the AllStatus416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus416 -`func (o *OriginInspectorMeasurements) SetAllStatus416(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus416(v int64)` SetAllStatus416 sets AllStatus416 field to given value. @@ -3503,20 +3503,20 @@ HasAllStatus416 returns a boolean if a field has been set. ### GetAllStatus429 -`func (o *OriginInspectorMeasurements) GetAllStatus429() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus429() int64` GetAllStatus429 returns the AllStatus429 field if non-nil, zero value otherwise. ### GetAllStatus429Ok -`func (o *OriginInspectorMeasurements) GetAllStatus429Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus429Ok() (*int64, bool)` GetAllStatus429Ok returns a tuple with the AllStatus429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus429 -`func (o *OriginInspectorMeasurements) SetAllStatus429(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus429(v int64)` SetAllStatus429 sets AllStatus429 field to given value. @@ -3528,20 +3528,20 @@ HasAllStatus429 returns a boolean if a field has been set. ### GetAllStatus500 -`func (o *OriginInspectorMeasurements) GetAllStatus500() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus500() int64` GetAllStatus500 returns the AllStatus500 field if non-nil, zero value otherwise. ### GetAllStatus500Ok -`func (o *OriginInspectorMeasurements) GetAllStatus500Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus500Ok() (*int64, bool)` GetAllStatus500Ok returns a tuple with the AllStatus500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus500 -`func (o *OriginInspectorMeasurements) SetAllStatus500(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus500(v int64)` SetAllStatus500 sets AllStatus500 field to given value. @@ -3553,20 +3553,20 @@ HasAllStatus500 returns a boolean if a field has been set. ### GetAllStatus501 -`func (o *OriginInspectorMeasurements) GetAllStatus501() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus501() int64` GetAllStatus501 returns the AllStatus501 field if non-nil, zero value otherwise. ### GetAllStatus501Ok -`func (o *OriginInspectorMeasurements) GetAllStatus501Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus501Ok() (*int64, bool)` GetAllStatus501Ok returns a tuple with the AllStatus501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus501 -`func (o *OriginInspectorMeasurements) SetAllStatus501(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus501(v int64)` SetAllStatus501 sets AllStatus501 field to given value. @@ -3578,20 +3578,20 @@ HasAllStatus501 returns a boolean if a field has been set. ### GetAllStatus502 -`func (o *OriginInspectorMeasurements) GetAllStatus502() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus502() int64` GetAllStatus502 returns the AllStatus502 field if non-nil, zero value otherwise. ### GetAllStatus502Ok -`func (o *OriginInspectorMeasurements) GetAllStatus502Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus502Ok() (*int64, bool)` GetAllStatus502Ok returns a tuple with the AllStatus502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus502 -`func (o *OriginInspectorMeasurements) SetAllStatus502(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus502(v int64)` SetAllStatus502 sets AllStatus502 field to given value. @@ -3603,20 +3603,20 @@ HasAllStatus502 returns a boolean if a field has been set. ### GetAllStatus503 -`func (o *OriginInspectorMeasurements) GetAllStatus503() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus503() int64` GetAllStatus503 returns the AllStatus503 field if non-nil, zero value otherwise. ### GetAllStatus503Ok -`func (o *OriginInspectorMeasurements) GetAllStatus503Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus503Ok() (*int64, bool)` GetAllStatus503Ok returns a tuple with the AllStatus503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus503 -`func (o *OriginInspectorMeasurements) SetAllStatus503(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus503(v int64)` SetAllStatus503 sets AllStatus503 field to given value. @@ -3628,20 +3628,20 @@ HasAllStatus503 returns a boolean if a field has been set. ### GetAllStatus504 -`func (o *OriginInspectorMeasurements) GetAllStatus504() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus504() int64` GetAllStatus504 returns the AllStatus504 field if non-nil, zero value otherwise. ### GetAllStatus504Ok -`func (o *OriginInspectorMeasurements) GetAllStatus504Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus504Ok() (*int64, bool)` GetAllStatus504Ok returns a tuple with the AllStatus504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus504 -`func (o *OriginInspectorMeasurements) SetAllStatus504(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus504(v int64)` SetAllStatus504 sets AllStatus504 field to given value. @@ -3653,20 +3653,20 @@ HasAllStatus504 returns a boolean if a field has been set. ### GetAllStatus505 -`func (o *OriginInspectorMeasurements) GetAllStatus505() int32` +`func (o *OriginInspectorMeasurements) GetAllStatus505() int64` GetAllStatus505 returns the AllStatus505 field if non-nil, zero value otherwise. ### GetAllStatus505Ok -`func (o *OriginInspectorMeasurements) GetAllStatus505Ok() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllStatus505Ok() (*int64, bool)` GetAllStatus505Ok returns a tuple with the AllStatus505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus505 -`func (o *OriginInspectorMeasurements) SetAllStatus505(v int32)` +`func (o *OriginInspectorMeasurements) SetAllStatus505(v int64)` SetAllStatus505 sets AllStatus505 field to given value. @@ -3678,20 +3678,20 @@ HasAllStatus505 returns a boolean if a field has been set. ### GetAllLatency0To1ms -`func (o *OriginInspectorMeasurements) GetAllLatency0To1ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency0To1ms() int64` GetAllLatency0To1ms returns the AllLatency0To1ms field if non-nil, zero value otherwise. ### GetAllLatency0To1msOk -`func (o *OriginInspectorMeasurements) GetAllLatency0To1msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency0To1msOk() (*int64, bool)` GetAllLatency0To1msOk returns a tuple with the AllLatency0To1ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency0To1ms -`func (o *OriginInspectorMeasurements) SetAllLatency0To1ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency0To1ms(v int64)` SetAllLatency0To1ms sets AllLatency0To1ms field to given value. @@ -3703,20 +3703,20 @@ HasAllLatency0To1ms returns a boolean if a field has been set. ### GetAllLatency1To5ms -`func (o *OriginInspectorMeasurements) GetAllLatency1To5ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency1To5ms() int64` GetAllLatency1To5ms returns the AllLatency1To5ms field if non-nil, zero value otherwise. ### GetAllLatency1To5msOk -`func (o *OriginInspectorMeasurements) GetAllLatency1To5msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency1To5msOk() (*int64, bool)` GetAllLatency1To5msOk returns a tuple with the AllLatency1To5ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency1To5ms -`func (o *OriginInspectorMeasurements) SetAllLatency1To5ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency1To5ms(v int64)` SetAllLatency1To5ms sets AllLatency1To5ms field to given value. @@ -3728,20 +3728,20 @@ HasAllLatency1To5ms returns a boolean if a field has been set. ### GetAllLatency5To10ms -`func (o *OriginInspectorMeasurements) GetAllLatency5To10ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency5To10ms() int64` GetAllLatency5To10ms returns the AllLatency5To10ms field if non-nil, zero value otherwise. ### GetAllLatency5To10msOk -`func (o *OriginInspectorMeasurements) GetAllLatency5To10msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency5To10msOk() (*int64, bool)` GetAllLatency5To10msOk returns a tuple with the AllLatency5To10ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency5To10ms -`func (o *OriginInspectorMeasurements) SetAllLatency5To10ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency5To10ms(v int64)` SetAllLatency5To10ms sets AllLatency5To10ms field to given value. @@ -3753,20 +3753,20 @@ HasAllLatency5To10ms returns a boolean if a field has been set. ### GetAllLatency10To50ms -`func (o *OriginInspectorMeasurements) GetAllLatency10To50ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency10To50ms() int64` GetAllLatency10To50ms returns the AllLatency10To50ms field if non-nil, zero value otherwise. ### GetAllLatency10To50msOk -`func (o *OriginInspectorMeasurements) GetAllLatency10To50msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency10To50msOk() (*int64, bool)` GetAllLatency10To50msOk returns a tuple with the AllLatency10To50ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency10To50ms -`func (o *OriginInspectorMeasurements) SetAllLatency10To50ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency10To50ms(v int64)` SetAllLatency10To50ms sets AllLatency10To50ms field to given value. @@ -3778,20 +3778,20 @@ HasAllLatency10To50ms returns a boolean if a field has been set. ### GetAllLatency50To100ms -`func (o *OriginInspectorMeasurements) GetAllLatency50To100ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency50To100ms() int64` GetAllLatency50To100ms returns the AllLatency50To100ms field if non-nil, zero value otherwise. ### GetAllLatency50To100msOk -`func (o *OriginInspectorMeasurements) GetAllLatency50To100msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency50To100msOk() (*int64, bool)` GetAllLatency50To100msOk returns a tuple with the AllLatency50To100ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency50To100ms -`func (o *OriginInspectorMeasurements) SetAllLatency50To100ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency50To100ms(v int64)` SetAllLatency50To100ms sets AllLatency50To100ms field to given value. @@ -3803,20 +3803,20 @@ HasAllLatency50To100ms returns a boolean if a field has been set. ### GetAllLatency100To250ms -`func (o *OriginInspectorMeasurements) GetAllLatency100To250ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency100To250ms() int64` GetAllLatency100To250ms returns the AllLatency100To250ms field if non-nil, zero value otherwise. ### GetAllLatency100To250msOk -`func (o *OriginInspectorMeasurements) GetAllLatency100To250msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency100To250msOk() (*int64, bool)` GetAllLatency100To250msOk returns a tuple with the AllLatency100To250ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency100To250ms -`func (o *OriginInspectorMeasurements) SetAllLatency100To250ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency100To250ms(v int64)` SetAllLatency100To250ms sets AllLatency100To250ms field to given value. @@ -3828,20 +3828,20 @@ HasAllLatency100To250ms returns a boolean if a field has been set. ### GetAllLatency250To500ms -`func (o *OriginInspectorMeasurements) GetAllLatency250To500ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency250To500ms() int64` GetAllLatency250To500ms returns the AllLatency250To500ms field if non-nil, zero value otherwise. ### GetAllLatency250To500msOk -`func (o *OriginInspectorMeasurements) GetAllLatency250To500msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency250To500msOk() (*int64, bool)` GetAllLatency250To500msOk returns a tuple with the AllLatency250To500ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency250To500ms -`func (o *OriginInspectorMeasurements) SetAllLatency250To500ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency250To500ms(v int64)` SetAllLatency250To500ms sets AllLatency250To500ms field to given value. @@ -3853,20 +3853,20 @@ HasAllLatency250To500ms returns a boolean if a field has been set. ### GetAllLatency500To1000ms -`func (o *OriginInspectorMeasurements) GetAllLatency500To1000ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency500To1000ms() int64` GetAllLatency500To1000ms returns the AllLatency500To1000ms field if non-nil, zero value otherwise. ### GetAllLatency500To1000msOk -`func (o *OriginInspectorMeasurements) GetAllLatency500To1000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency500To1000msOk() (*int64, bool)` GetAllLatency500To1000msOk returns a tuple with the AllLatency500To1000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency500To1000ms -`func (o *OriginInspectorMeasurements) SetAllLatency500To1000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency500To1000ms(v int64)` SetAllLatency500To1000ms sets AllLatency500To1000ms field to given value. @@ -3878,20 +3878,20 @@ HasAllLatency500To1000ms returns a boolean if a field has been set. ### GetAllLatency1000To5000ms -`func (o *OriginInspectorMeasurements) GetAllLatency1000To5000ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency1000To5000ms() int64` GetAllLatency1000To5000ms returns the AllLatency1000To5000ms field if non-nil, zero value otherwise. ### GetAllLatency1000To5000msOk -`func (o *OriginInspectorMeasurements) GetAllLatency1000To5000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency1000To5000msOk() (*int64, bool)` GetAllLatency1000To5000msOk returns a tuple with the AllLatency1000To5000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency1000To5000ms -`func (o *OriginInspectorMeasurements) SetAllLatency1000To5000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency1000To5000ms(v int64)` SetAllLatency1000To5000ms sets AllLatency1000To5000ms field to given value. @@ -3903,20 +3903,20 @@ HasAllLatency1000To5000ms returns a boolean if a field has been set. ### GetAllLatency5000To10000ms -`func (o *OriginInspectorMeasurements) GetAllLatency5000To10000ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency5000To10000ms() int64` GetAllLatency5000To10000ms returns the AllLatency5000To10000ms field if non-nil, zero value otherwise. ### GetAllLatency5000To10000msOk -`func (o *OriginInspectorMeasurements) GetAllLatency5000To10000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency5000To10000msOk() (*int64, bool)` GetAllLatency5000To10000msOk returns a tuple with the AllLatency5000To10000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency5000To10000ms -`func (o *OriginInspectorMeasurements) SetAllLatency5000To10000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency5000To10000ms(v int64)` SetAllLatency5000To10000ms sets AllLatency5000To10000ms field to given value. @@ -3928,20 +3928,20 @@ HasAllLatency5000To10000ms returns a boolean if a field has been set. ### GetAllLatency10000To60000ms -`func (o *OriginInspectorMeasurements) GetAllLatency10000To60000ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency10000To60000ms() int64` GetAllLatency10000To60000ms returns the AllLatency10000To60000ms field if non-nil, zero value otherwise. ### GetAllLatency10000To60000msOk -`func (o *OriginInspectorMeasurements) GetAllLatency10000To60000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency10000To60000msOk() (*int64, bool)` GetAllLatency10000To60000msOk returns a tuple with the AllLatency10000To60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency10000To60000ms -`func (o *OriginInspectorMeasurements) SetAllLatency10000To60000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency10000To60000ms(v int64)` SetAllLatency10000To60000ms sets AllLatency10000To60000ms field to given value. @@ -3953,20 +3953,20 @@ HasAllLatency10000To60000ms returns a boolean if a field has been set. ### GetAllLatency60000ms -`func (o *OriginInspectorMeasurements) GetAllLatency60000ms() int32` +`func (o *OriginInspectorMeasurements) GetAllLatency60000ms() int64` GetAllLatency60000ms returns the AllLatency60000ms field if non-nil, zero value otherwise. ### GetAllLatency60000msOk -`func (o *OriginInspectorMeasurements) GetAllLatency60000msOk() (*int32, bool)` +`func (o *OriginInspectorMeasurements) GetAllLatency60000msOk() (*int64, bool)` GetAllLatency60000msOk returns a tuple with the AllLatency60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency60000ms -`func (o *OriginInspectorMeasurements) SetAllLatency60000ms(v int32)` +`func (o *OriginInspectorMeasurements) SetAllLatency60000ms(v int64)` SetAllLatency60000ms sets AllLatency60000ms field to given value. diff --git a/docs/OriginInspectorValues.md b/docs/OriginInspectorValues.md index 5407ef6..751f760 100644 --- a/docs/OriginInspectorValues.md +++ b/docs/OriginInspectorValues.md @@ -4,158 +4,158 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**Responses** | Pointer to **int32** | Number of responses from origin. | [optional] -**RespHeaderBytes** | Pointer to **int32** | Number of header bytes from origin. | [optional] -**RespBodyBytes** | Pointer to **int32** | Number of body bytes from origin. | [optional] -**Status1xx** | Pointer to **int32** | Number of 1xx \"Informational\" status codes delivered from origin. | [optional] -**Status2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes delivered from origin. | [optional] -**Status3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes delivered from origin. | [optional] -**Status4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes delivered from origin. | [optional] -**Status5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes delivered from origin. | [optional] -**Status200** | Pointer to **int32** | Number of responses received with status code 200 (Success) from origin. | [optional] -**Status204** | Pointer to **int32** | Number of responses received with status code 204 (No Content) from origin. | [optional] -**Status206** | Pointer to **int32** | Number of responses received with status code 206 (Partial Content) from origin. | [optional] -**Status301** | Pointer to **int32** | Number of responses received with status code 301 (Moved Permanently) from origin. | [optional] -**Status302** | Pointer to **int32** | Number of responses received with status code 302 (Found) from origin. | [optional] -**Status304** | Pointer to **int32** | Number of responses received with status code 304 (Not Modified) from origin. | [optional] -**Status400** | Pointer to **int32** | Number of responses received with status code 400 (Bad Request) from origin. | [optional] -**Status401** | Pointer to **int32** | Number of responses received with status code 401 (Unauthorized) from origin. | [optional] -**Status403** | Pointer to **int32** | Number of responses received with status code 403 (Forbidden) from origin. | [optional] -**Status404** | Pointer to **int32** | Number of responses received with status code 404 (Not Found) from origin. | [optional] -**Status416** | Pointer to **int32** | Number of responses received with status code 416 (Range Not Satisfiable) from origin. | [optional] -**Status429** | Pointer to **int32** | Number of responses received with status code 429 (Too Many Requests) from origin. | [optional] -**Status500** | Pointer to **int32** | Number of responses received with status code 500 (Internal Server Error) from origin. | [optional] -**Status501** | Pointer to **int32** | Number of responses received with status code 501 (Not Implemented) from origin. | [optional] -**Status502** | Pointer to **int32** | Number of responses received with status code 502 (Bad Gateway) from origin. | [optional] -**Status503** | Pointer to **int32** | Number of responses received with status code 503 (Service Unavailable) from origin. | [optional] -**Status504** | Pointer to **int32** | Number of responses received with status code 504 (Gateway Timeout) from origin. | [optional] -**Status505** | Pointer to **int32** | Number of responses received with status code 505 (HTTP Version Not Supported) from origin. | [optional] -**Latency0To1ms** | Pointer to **int32** | Number of responses from origin with latency between 0 and 1 millisecond. | [optional] -**Latency1To5ms** | Pointer to **int32** | Number of responses from origin with latency between 1 and 5 milliseconds. | [optional] -**Latency5To10ms** | Pointer to **int32** | Number of responses from origin with latency between 5 and 10 milliseconds. | [optional] -**Latency10To50ms** | Pointer to **int32** | Number of responses from origin with latency between 10 and 50 milliseconds. | [optional] -**Latency50To100ms** | Pointer to **int32** | Number of responses from origin with latency between 50 and 100 milliseconds. | [optional] -**Latency100To250ms** | Pointer to **int32** | Number of responses from origin with latency between 100 and 250 milliseconds. | [optional] -**Latency250To500ms** | Pointer to **int32** | Number of responses from origin with latency between 250 and 500 milliseconds. | [optional] -**Latency500To1000ms** | Pointer to **int32** | Number of responses from origin with latency between 500 and 1,000 milliseconds. | [optional] -**Latency1000To5000ms** | Pointer to **int32** | Number of responses from origin with latency between 1,000 and 5,000 milliseconds. | [optional] -**Latency5000To10000ms** | Pointer to **int32** | Number of responses from origin with latency between 5,000 and 10,000 milliseconds. | [optional] -**Latency10000To60000ms** | Pointer to **int32** | Number of responses from origin with latency between 10,000 and 60,000 milliseconds. | [optional] -**Latency60000ms** | Pointer to **int32** | Number of responses from origin with latency of 60,000 milliseconds and above. | [optional] -**WafResponses** | Pointer to **int32** | Number of responses received for origin requests made by the Fastly WAF. | [optional] -**WafRespHeaderBytes** | Pointer to **int32** | Number of header bytes received for origin requests made by the Fastly WAF. | [optional] -**WafRespBodyBytes** | Pointer to **int32** | Number of body bytes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus1xx** | Pointer to **int32** | Number of 1xx \"Informational\" status codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes received for origin requests made by the Fastly WAF. | [optional] -**WafStatus200** | Pointer to **int32** | Number of responses received with status code 200 (Success) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus204** | Pointer to **int32** | Number of responses received with status code 204 (No Content) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus206** | Pointer to **int32** | Number of responses received with status code 206 (Partial Content) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus301** | Pointer to **int32** | Number of responses received with status code 301 (Moved Permanently) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus302** | Pointer to **int32** | Number of responses received with status code 302 (Found) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus304** | Pointer to **int32** | Number of responses received with status code 304 (Not Modified) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus400** | Pointer to **int32** | Number of responses received with status code 400 (Bad Request) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus401** | Pointer to **int32** | Number of responses received with status code 401 (Unauthorized) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus403** | Pointer to **int32** | Number of responses received with status code 403 (Forbidden) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus404** | Pointer to **int32** | Number of responses received with status code 404 (Not Found) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus416** | Pointer to **int32** | Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus429** | Pointer to **int32** | Number of responses received with status code 429 (Too Many Requests) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus500** | Pointer to **int32** | Number of responses received with status code 500 (Internal Server Error) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus501** | Pointer to **int32** | Number of responses received with status code 501 (Not Implemented) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus502** | Pointer to **int32** | Number of responses received with status code 502 (Bad Gateway) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus503** | Pointer to **int32** | Number of responses received with status code 503 (Service Unavailable) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus504** | Pointer to **int32** | Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by the Fastly WAF. | [optional] -**WafStatus505** | Pointer to **int32** | Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by the Fastly WAF. | [optional] -**WafLatency0To1ms** | Pointer to **int32** | Number of responses with latency between 0 and 1 millisecond received for origin requests made by the Fastly WAF. | [optional] -**WafLatency1To5ms** | Pointer to **int32** | Number of responses with latency between 1 and 5 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency5To10ms** | Pointer to **int32** | Number of responses with latency between 5 and 10 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency10To50ms** | Pointer to **int32** | Number of responses with latency between 10 and 50 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency50To100ms** | Pointer to **int32** | Number of responses with latency between 50 and 100 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency100To250ms** | Pointer to **int32** | Number of responses with latency between 100 and 250 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency250To500ms** | Pointer to **int32** | Number of responses with latency between 250 and 500 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency500To1000ms** | Pointer to **int32** | Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency1000To5000ms** | Pointer to **int32** | Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency5000To10000ms** | Pointer to **int32** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency10000To60000ms** | Pointer to **int32** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] -**WafLatency60000ms** | Pointer to **int32** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. | [optional] -**ComputeResponses** | Pointer to **int32** | Number of responses for origin received by the Compute platform. | [optional] -**ComputeRespHeaderBytes** | Pointer to **int32** | Number of header bytes for origin received by the Compute platform. | [optional] -**ComputeRespBodyBytes** | Pointer to **int32** | Number of body bytes for origin received by the Compute platform. | [optional] -**ComputeStatus1xx** | Pointer to **int32** | Number of 1xx \"Informational\" status codes for origin received by the Compute platform. | [optional] -**ComputeStatus2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes for origin received by the Compute platform. | [optional] -**ComputeStatus3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes for origin received by the Compute platform. | [optional] -**ComputeStatus4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes for origin received by the Compute platform. | [optional] -**ComputeStatus5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes for origin received by the Compute platform. | [optional] -**ComputeStatus200** | Pointer to **int32** | Number of responses received with status code 200 (Success) for origin received by the Compute platform. | [optional] -**ComputeStatus204** | Pointer to **int32** | Number of responses received with status code 204 (No Content) for origin received by the Compute platform. | [optional] -**ComputeStatus206** | Pointer to **int32** | Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. | [optional] -**ComputeStatus301** | Pointer to **int32** | Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. | [optional] -**ComputeStatus302** | Pointer to **int32** | Number of responses received with status code 302 (Found) for origin received by the Compute platform. | [optional] -**ComputeStatus304** | Pointer to **int32** | Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. | [optional] -**ComputeStatus400** | Pointer to **int32** | Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. | [optional] -**ComputeStatus401** | Pointer to **int32** | Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. | [optional] -**ComputeStatus403** | Pointer to **int32** | Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. | [optional] -**ComputeStatus404** | Pointer to **int32** | Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. | [optional] -**ComputeStatus416** | Pointer to **int32** | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. | [optional] -**ComputeStatus429** | Pointer to **int32** | Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. | [optional] -**ComputeStatus500** | Pointer to **int32** | Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. | [optional] -**ComputeStatus501** | Pointer to **int32** | Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. | [optional] -**ComputeStatus502** | Pointer to **int32** | Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. | [optional] -**ComputeStatus503** | Pointer to **int32** | Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. | [optional] -**ComputeStatus504** | Pointer to **int32** | Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. | [optional] -**ComputeStatus505** | Pointer to **int32** | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. | [optional] -**ComputeLatency0To1ms** | Pointer to **int32** | Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. | [optional] -**ComputeLatency1To5ms** | Pointer to **int32** | Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency5To10ms** | Pointer to **int32** | Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency10To50ms** | Pointer to **int32** | Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency50To100ms** | Pointer to **int32** | Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency100To250ms** | Pointer to **int32** | Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency250To500ms** | Pointer to **int32** | Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency500To1000ms** | Pointer to **int32** | Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency1000To5000ms** | Pointer to **int32** | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency5000To10000ms** | Pointer to **int32** | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency10000To60000ms** | Pointer to **int32** | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. | [optional] -**ComputeLatency60000ms** | Pointer to **int32** | Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. | [optional] -**AllResponses** | Pointer to **int32** | Number of responses received for origin requests made by all sources. | [optional] -**AllRespHeaderBytes** | Pointer to **int32** | Number of header bytes received for origin requests made by all sources. | [optional] -**AllRespBodyBytes** | Pointer to **int32** | Number of body bytes received for origin requests made by all sources. | [optional] -**AllStatus1xx** | Pointer to **int32** | Number of 1xx \"Informational\" category status codes delivered received for origin requests made by all sources. | [optional] -**AllStatus2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes received for origin requests made by all sources. | [optional] -**AllStatus3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes received for origin requests made by all sources. | [optional] -**AllStatus4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes received for origin requests made by all sources. | [optional] -**AllStatus5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes received for origin requests made by all sources. | [optional] -**AllStatus200** | Pointer to **int32** | Number of responses received with status code 200 (Success) received for origin requests made by all sources. | [optional] -**AllStatus204** | Pointer to **int32** | Number of responses received with status code 204 (No Content) received for origin requests made by all sources. | [optional] -**AllStatus206** | Pointer to **int32** | Number of responses received with status code 206 (Partial Content) received for origin requests made by all sources. | [optional] -**AllStatus301** | Pointer to **int32** | Number of responses received with status code 301 (Moved Permanently) received for origin requests made by all sources. | [optional] -**AllStatus302** | Pointer to **int32** | Number of responses received with status code 302 (Found) received for origin requests made by all sources. | [optional] -**AllStatus304** | Pointer to **int32** | Number of responses received with status code 304 (Not Modified) received for origin requests made by all sources. | [optional] -**AllStatus400** | Pointer to **int32** | Number of responses received with status code 400 (Bad Request) received for origin requests made by all sources. | [optional] -**AllStatus401** | Pointer to **int32** | Number of responses received with status code 401 (Unauthorized) received for origin requests made by all sources. | [optional] -**AllStatus403** | Pointer to **int32** | Number of responses received with status code 403 (Forbidden) received for origin requests made by all sources. | [optional] -**AllStatus404** | Pointer to **int32** | Number of responses received with status code 404 (Not Found) received for origin requests made by all sources. | [optional] -**AllStatus416** | Pointer to **int32** | Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by all sources. | [optional] -**AllStatus429** | Pointer to **int32** | Number of responses received with status code 429 (Too Many Requests) received for origin requests made by all sources. | [optional] -**AllStatus500** | Pointer to **int32** | Number of responses received with status code 500 (Internal Server Error) received for origin requests made by all sources. | [optional] -**AllStatus501** | Pointer to **int32** | Number of responses received with status code 501 (Not Implemented) received for origin requests made by all sources. | [optional] -**AllStatus502** | Pointer to **int32** | Number of responses received with status code 502 (Bad Gateway) received for origin requests made by all sources. | [optional] -**AllStatus503** | Pointer to **int32** | Number of responses received with status code 503 (Service Unavailable) received for origin requests made by all sources. | [optional] -**AllStatus504** | Pointer to **int32** | Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by all sources. | [optional] -**AllStatus505** | Pointer to **int32** | Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by all sources. | [optional] -**AllLatency0To1ms** | Pointer to **int32** | Number of responses with latency between 0 and 1 millisecond received for origin requests made by all sources. | [optional] -**AllLatency1To5ms** | Pointer to **int32** | Number of responses with latency between 1 and 5 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency5To10ms** | Pointer to **int32** | Number of responses with latency between 5 and 10 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency10To50ms** | Pointer to **int32** | Number of responses with latency between 10 and 50 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency50To100ms** | Pointer to **int32** | Number of responses with latency between 50 and 100 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency100To250ms** | Pointer to **int32** | Number of responses with latency between 100 and 250 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency250To500ms** | Pointer to **int32** | Number of responses with latency between 250 and 500 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency500To1000ms** | Pointer to **int32** | Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency1000To5000ms** | Pointer to **int32** | Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency5000To10000ms** | Pointer to **int32** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency10000To60000ms** | Pointer to **int32** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by all sources. | [optional] -**AllLatency60000ms** | Pointer to **int32** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by all sources. | [optional] +**Responses** | Pointer to **int64** | Number of responses from origin. | [optional] +**RespHeaderBytes** | Pointer to **int64** | Number of header bytes from origin. | [optional] +**RespBodyBytes** | Pointer to **int64** | Number of body bytes from origin. | [optional] +**Status1xx** | Pointer to **int64** | Number of 1xx \"Informational\" status codes delivered from origin. | [optional] +**Status2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes delivered from origin. | [optional] +**Status3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes delivered from origin. | [optional] +**Status4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes delivered from origin. | [optional] +**Status5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes delivered from origin. | [optional] +**Status200** | Pointer to **int64** | Number of responses received with status code 200 (Success) from origin. | [optional] +**Status204** | Pointer to **int64** | Number of responses received with status code 204 (No Content) from origin. | [optional] +**Status206** | Pointer to **int64** | Number of responses received with status code 206 (Partial Content) from origin. | [optional] +**Status301** | Pointer to **int64** | Number of responses received with status code 301 (Moved Permanently) from origin. | [optional] +**Status302** | Pointer to **int64** | Number of responses received with status code 302 (Found) from origin. | [optional] +**Status304** | Pointer to **int64** | Number of responses received with status code 304 (Not Modified) from origin. | [optional] +**Status400** | Pointer to **int64** | Number of responses received with status code 400 (Bad Request) from origin. | [optional] +**Status401** | Pointer to **int64** | Number of responses received with status code 401 (Unauthorized) from origin. | [optional] +**Status403** | Pointer to **int64** | Number of responses received with status code 403 (Forbidden) from origin. | [optional] +**Status404** | Pointer to **int64** | Number of responses received with status code 404 (Not Found) from origin. | [optional] +**Status416** | Pointer to **int64** | Number of responses received with status code 416 (Range Not Satisfiable) from origin. | [optional] +**Status429** | Pointer to **int64** | Number of responses received with status code 429 (Too Many Requests) from origin. | [optional] +**Status500** | Pointer to **int64** | Number of responses received with status code 500 (Internal Server Error) from origin. | [optional] +**Status501** | Pointer to **int64** | Number of responses received with status code 501 (Not Implemented) from origin. | [optional] +**Status502** | Pointer to **int64** | Number of responses received with status code 502 (Bad Gateway) from origin. | [optional] +**Status503** | Pointer to **int64** | Number of responses received with status code 503 (Service Unavailable) from origin. | [optional] +**Status504** | Pointer to **int64** | Number of responses received with status code 504 (Gateway Timeout) from origin. | [optional] +**Status505** | Pointer to **int64** | Number of responses received with status code 505 (HTTP Version Not Supported) from origin. | [optional] +**Latency0To1ms** | Pointer to **int64** | Number of responses from origin with latency between 0 and 1 millisecond. | [optional] +**Latency1To5ms** | Pointer to **int64** | Number of responses from origin with latency between 1 and 5 milliseconds. | [optional] +**Latency5To10ms** | Pointer to **int64** | Number of responses from origin with latency between 5 and 10 milliseconds. | [optional] +**Latency10To50ms** | Pointer to **int64** | Number of responses from origin with latency between 10 and 50 milliseconds. | [optional] +**Latency50To100ms** | Pointer to **int64** | Number of responses from origin with latency between 50 and 100 milliseconds. | [optional] +**Latency100To250ms** | Pointer to **int64** | Number of responses from origin with latency between 100 and 250 milliseconds. | [optional] +**Latency250To500ms** | Pointer to **int64** | Number of responses from origin with latency between 250 and 500 milliseconds. | [optional] +**Latency500To1000ms** | Pointer to **int64** | Number of responses from origin with latency between 500 and 1,000 milliseconds. | [optional] +**Latency1000To5000ms** | Pointer to **int64** | Number of responses from origin with latency between 1,000 and 5,000 milliseconds. | [optional] +**Latency5000To10000ms** | Pointer to **int64** | Number of responses from origin with latency between 5,000 and 10,000 milliseconds. | [optional] +**Latency10000To60000ms** | Pointer to **int64** | Number of responses from origin with latency between 10,000 and 60,000 milliseconds. | [optional] +**Latency60000ms** | Pointer to **int64** | Number of responses from origin with latency of 60,000 milliseconds and above. | [optional] +**WafResponses** | Pointer to **int64** | Number of responses received for origin requests made by the Fastly WAF. | [optional] +**WafRespHeaderBytes** | Pointer to **int64** | Number of header bytes received for origin requests made by the Fastly WAF. | [optional] +**WafRespBodyBytes** | Pointer to **int64** | Number of body bytes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus1xx** | Pointer to **int64** | Number of 1xx \"Informational\" status codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes received for origin requests made by the Fastly WAF. | [optional] +**WafStatus200** | Pointer to **int64** | Number of responses received with status code 200 (Success) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus204** | Pointer to **int64** | Number of responses received with status code 204 (No Content) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus206** | Pointer to **int64** | Number of responses received with status code 206 (Partial Content) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus301** | Pointer to **int64** | Number of responses received with status code 301 (Moved Permanently) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus302** | Pointer to **int64** | Number of responses received with status code 302 (Found) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus304** | Pointer to **int64** | Number of responses received with status code 304 (Not Modified) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus400** | Pointer to **int64** | Number of responses received with status code 400 (Bad Request) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus401** | Pointer to **int64** | Number of responses received with status code 401 (Unauthorized) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus403** | Pointer to **int64** | Number of responses received with status code 403 (Forbidden) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus404** | Pointer to **int64** | Number of responses received with status code 404 (Not Found) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus416** | Pointer to **int64** | Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus429** | Pointer to **int64** | Number of responses received with status code 429 (Too Many Requests) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus500** | Pointer to **int64** | Number of responses received with status code 500 (Internal Server Error) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus501** | Pointer to **int64** | Number of responses received with status code 501 (Not Implemented) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus502** | Pointer to **int64** | Number of responses received with status code 502 (Bad Gateway) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus503** | Pointer to **int64** | Number of responses received with status code 503 (Service Unavailable) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus504** | Pointer to **int64** | Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by the Fastly WAF. | [optional] +**WafStatus505** | Pointer to **int64** | Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by the Fastly WAF. | [optional] +**WafLatency0To1ms** | Pointer to **int64** | Number of responses with latency between 0 and 1 millisecond received for origin requests made by the Fastly WAF. | [optional] +**WafLatency1To5ms** | Pointer to **int64** | Number of responses with latency between 1 and 5 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency5To10ms** | Pointer to **int64** | Number of responses with latency between 5 and 10 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency10To50ms** | Pointer to **int64** | Number of responses with latency between 10 and 50 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency50To100ms** | Pointer to **int64** | Number of responses with latency between 50 and 100 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency100To250ms** | Pointer to **int64** | Number of responses with latency between 100 and 250 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency250To500ms** | Pointer to **int64** | Number of responses with latency between 250 and 500 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency500To1000ms** | Pointer to **int64** | Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency1000To5000ms** | Pointer to **int64** | Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency5000To10000ms** | Pointer to **int64** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency10000To60000ms** | Pointer to **int64** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. | [optional] +**WafLatency60000ms** | Pointer to **int64** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. | [optional] +**ComputeResponses** | Pointer to **int64** | Number of responses for origin received by the Compute platform. | [optional] +**ComputeRespHeaderBytes** | Pointer to **int64** | Number of header bytes for origin received by the Compute platform. | [optional] +**ComputeRespBodyBytes** | Pointer to **int64** | Number of body bytes for origin received by the Compute platform. | [optional] +**ComputeStatus1xx** | Pointer to **int64** | Number of 1xx \"Informational\" status codes for origin received by the Compute platform. | [optional] +**ComputeStatus2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes for origin received by the Compute platform. | [optional] +**ComputeStatus3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes for origin received by the Compute platform. | [optional] +**ComputeStatus4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes for origin received by the Compute platform. | [optional] +**ComputeStatus5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes for origin received by the Compute platform. | [optional] +**ComputeStatus200** | Pointer to **int64** | Number of responses received with status code 200 (Success) for origin received by the Compute platform. | [optional] +**ComputeStatus204** | Pointer to **int64** | Number of responses received with status code 204 (No Content) for origin received by the Compute platform. | [optional] +**ComputeStatus206** | Pointer to **int64** | Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. | [optional] +**ComputeStatus301** | Pointer to **int64** | Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. | [optional] +**ComputeStatus302** | Pointer to **int64** | Number of responses received with status code 302 (Found) for origin received by the Compute platform. | [optional] +**ComputeStatus304** | Pointer to **int64** | Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. | [optional] +**ComputeStatus400** | Pointer to **int64** | Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. | [optional] +**ComputeStatus401** | Pointer to **int64** | Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. | [optional] +**ComputeStatus403** | Pointer to **int64** | Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. | [optional] +**ComputeStatus404** | Pointer to **int64** | Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. | [optional] +**ComputeStatus416** | Pointer to **int64** | Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. | [optional] +**ComputeStatus429** | Pointer to **int64** | Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. | [optional] +**ComputeStatus500** | Pointer to **int64** | Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. | [optional] +**ComputeStatus501** | Pointer to **int64** | Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. | [optional] +**ComputeStatus502** | Pointer to **int64** | Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. | [optional] +**ComputeStatus503** | Pointer to **int64** | Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. | [optional] +**ComputeStatus504** | Pointer to **int64** | Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. | [optional] +**ComputeStatus505** | Pointer to **int64** | Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. | [optional] +**ComputeLatency0To1ms** | Pointer to **int64** | Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. | [optional] +**ComputeLatency1To5ms** | Pointer to **int64** | Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency5To10ms** | Pointer to **int64** | Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency10To50ms** | Pointer to **int64** | Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency50To100ms** | Pointer to **int64** | Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency100To250ms** | Pointer to **int64** | Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency250To500ms** | Pointer to **int64** | Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency500To1000ms** | Pointer to **int64** | Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency1000To5000ms** | Pointer to **int64** | Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency5000To10000ms** | Pointer to **int64** | Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency10000To60000ms** | Pointer to **int64** | Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. | [optional] +**ComputeLatency60000ms** | Pointer to **int64** | Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. | [optional] +**AllResponses** | Pointer to **int64** | Number of responses received for origin requests made by all sources. | [optional] +**AllRespHeaderBytes** | Pointer to **int64** | Number of header bytes received for origin requests made by all sources. | [optional] +**AllRespBodyBytes** | Pointer to **int64** | Number of body bytes received for origin requests made by all sources. | [optional] +**AllStatus1xx** | Pointer to **int64** | Number of 1xx \"Informational\" category status codes delivered received for origin requests made by all sources. | [optional] +**AllStatus2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes received for origin requests made by all sources. | [optional] +**AllStatus3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes received for origin requests made by all sources. | [optional] +**AllStatus4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes received for origin requests made by all sources. | [optional] +**AllStatus5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes received for origin requests made by all sources. | [optional] +**AllStatus200** | Pointer to **int64** | Number of responses received with status code 200 (Success) received for origin requests made by all sources. | [optional] +**AllStatus204** | Pointer to **int64** | Number of responses received with status code 204 (No Content) received for origin requests made by all sources. | [optional] +**AllStatus206** | Pointer to **int64** | Number of responses received with status code 206 (Partial Content) received for origin requests made by all sources. | [optional] +**AllStatus301** | Pointer to **int64** | Number of responses received with status code 301 (Moved Permanently) received for origin requests made by all sources. | [optional] +**AllStatus302** | Pointer to **int64** | Number of responses received with status code 302 (Found) received for origin requests made by all sources. | [optional] +**AllStatus304** | Pointer to **int64** | Number of responses received with status code 304 (Not Modified) received for origin requests made by all sources. | [optional] +**AllStatus400** | Pointer to **int64** | Number of responses received with status code 400 (Bad Request) received for origin requests made by all sources. | [optional] +**AllStatus401** | Pointer to **int64** | Number of responses received with status code 401 (Unauthorized) received for origin requests made by all sources. | [optional] +**AllStatus403** | Pointer to **int64** | Number of responses received with status code 403 (Forbidden) received for origin requests made by all sources. | [optional] +**AllStatus404** | Pointer to **int64** | Number of responses received with status code 404 (Not Found) received for origin requests made by all sources. | [optional] +**AllStatus416** | Pointer to **int64** | Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by all sources. | [optional] +**AllStatus429** | Pointer to **int64** | Number of responses received with status code 429 (Too Many Requests) received for origin requests made by all sources. | [optional] +**AllStatus500** | Pointer to **int64** | Number of responses received with status code 500 (Internal Server Error) received for origin requests made by all sources. | [optional] +**AllStatus501** | Pointer to **int64** | Number of responses received with status code 501 (Not Implemented) received for origin requests made by all sources. | [optional] +**AllStatus502** | Pointer to **int64** | Number of responses received with status code 502 (Bad Gateway) received for origin requests made by all sources. | [optional] +**AllStatus503** | Pointer to **int64** | Number of responses received with status code 503 (Service Unavailable) received for origin requests made by all sources. | [optional] +**AllStatus504** | Pointer to **int64** | Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by all sources. | [optional] +**AllStatus505** | Pointer to **int64** | Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by all sources. | [optional] +**AllLatency0To1ms** | Pointer to **int64** | Number of responses with latency between 0 and 1 millisecond received for origin requests made by all sources. | [optional] +**AllLatency1To5ms** | Pointer to **int64** | Number of responses with latency between 1 and 5 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency5To10ms** | Pointer to **int64** | Number of responses with latency between 5 and 10 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency10To50ms** | Pointer to **int64** | Number of responses with latency between 10 and 50 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency50To100ms** | Pointer to **int64** | Number of responses with latency between 50 and 100 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency100To250ms** | Pointer to **int64** | Number of responses with latency between 100 and 250 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency250To500ms** | Pointer to **int64** | Number of responses with latency between 250 and 500 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency500To1000ms** | Pointer to **int64** | Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency1000To5000ms** | Pointer to **int64** | Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency5000To10000ms** | Pointer to **int64** | Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency10000To60000ms** | Pointer to **int64** | Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by all sources. | [optional] +**AllLatency60000ms** | Pointer to **int64** | Number of responses with latency of 60,000 milliseconds and above received for origin requests made by all sources. | [optional] ## Methods @@ -178,20 +178,20 @@ but it doesn't guarantee that properties required by API are set ### GetResponses -`func (o *OriginInspectorValues) GetResponses() int32` +`func (o *OriginInspectorValues) GetResponses() int64` GetResponses returns the Responses field if non-nil, zero value otherwise. ### GetResponsesOk -`func (o *OriginInspectorValues) GetResponsesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetResponsesOk() (*int64, bool)` GetResponsesOk returns a tuple with the Responses field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetResponses -`func (o *OriginInspectorValues) SetResponses(v int32)` +`func (o *OriginInspectorValues) SetResponses(v int64)` SetResponses sets Responses field to given value. @@ -203,20 +203,20 @@ HasResponses returns a boolean if a field has been set. ### GetRespHeaderBytes -`func (o *OriginInspectorValues) GetRespHeaderBytes() int32` +`func (o *OriginInspectorValues) GetRespHeaderBytes() int64` GetRespHeaderBytes returns the RespHeaderBytes field if non-nil, zero value otherwise. ### GetRespHeaderBytesOk -`func (o *OriginInspectorValues) GetRespHeaderBytesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetRespHeaderBytesOk() (*int64, bool)` GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespHeaderBytes -`func (o *OriginInspectorValues) SetRespHeaderBytes(v int32)` +`func (o *OriginInspectorValues) SetRespHeaderBytes(v int64)` SetRespHeaderBytes sets RespHeaderBytes field to given value. @@ -228,20 +228,20 @@ HasRespHeaderBytes returns a boolean if a field has been set. ### GetRespBodyBytes -`func (o *OriginInspectorValues) GetRespBodyBytes() int32` +`func (o *OriginInspectorValues) GetRespBodyBytes() int64` GetRespBodyBytes returns the RespBodyBytes field if non-nil, zero value otherwise. ### GetRespBodyBytesOk -`func (o *OriginInspectorValues) GetRespBodyBytesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetRespBodyBytesOk() (*int64, bool)` GetRespBodyBytesOk returns a tuple with the RespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespBodyBytes -`func (o *OriginInspectorValues) SetRespBodyBytes(v int32)` +`func (o *OriginInspectorValues) SetRespBodyBytes(v int64)` SetRespBodyBytes sets RespBodyBytes field to given value. @@ -253,20 +253,20 @@ HasRespBodyBytes returns a boolean if a field has been set. ### GetStatus1xx -`func (o *OriginInspectorValues) GetStatus1xx() int32` +`func (o *OriginInspectorValues) GetStatus1xx() int64` GetStatus1xx returns the Status1xx field if non-nil, zero value otherwise. ### GetStatus1xxOk -`func (o *OriginInspectorValues) GetStatus1xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus1xxOk() (*int64, bool)` GetStatus1xxOk returns a tuple with the Status1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus1xx -`func (o *OriginInspectorValues) SetStatus1xx(v int32)` +`func (o *OriginInspectorValues) SetStatus1xx(v int64)` SetStatus1xx sets Status1xx field to given value. @@ -278,20 +278,20 @@ HasStatus1xx returns a boolean if a field has been set. ### GetStatus2xx -`func (o *OriginInspectorValues) GetStatus2xx() int32` +`func (o *OriginInspectorValues) GetStatus2xx() int64` GetStatus2xx returns the Status2xx field if non-nil, zero value otherwise. ### GetStatus2xxOk -`func (o *OriginInspectorValues) GetStatus2xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus2xxOk() (*int64, bool)` GetStatus2xxOk returns a tuple with the Status2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus2xx -`func (o *OriginInspectorValues) SetStatus2xx(v int32)` +`func (o *OriginInspectorValues) SetStatus2xx(v int64)` SetStatus2xx sets Status2xx field to given value. @@ -303,20 +303,20 @@ HasStatus2xx returns a boolean if a field has been set. ### GetStatus3xx -`func (o *OriginInspectorValues) GetStatus3xx() int32` +`func (o *OriginInspectorValues) GetStatus3xx() int64` GetStatus3xx returns the Status3xx field if non-nil, zero value otherwise. ### GetStatus3xxOk -`func (o *OriginInspectorValues) GetStatus3xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus3xxOk() (*int64, bool)` GetStatus3xxOk returns a tuple with the Status3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus3xx -`func (o *OriginInspectorValues) SetStatus3xx(v int32)` +`func (o *OriginInspectorValues) SetStatus3xx(v int64)` SetStatus3xx sets Status3xx field to given value. @@ -328,20 +328,20 @@ HasStatus3xx returns a boolean if a field has been set. ### GetStatus4xx -`func (o *OriginInspectorValues) GetStatus4xx() int32` +`func (o *OriginInspectorValues) GetStatus4xx() int64` GetStatus4xx returns the Status4xx field if non-nil, zero value otherwise. ### GetStatus4xxOk -`func (o *OriginInspectorValues) GetStatus4xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus4xxOk() (*int64, bool)` GetStatus4xxOk returns a tuple with the Status4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus4xx -`func (o *OriginInspectorValues) SetStatus4xx(v int32)` +`func (o *OriginInspectorValues) SetStatus4xx(v int64)` SetStatus4xx sets Status4xx field to given value. @@ -353,20 +353,20 @@ HasStatus4xx returns a boolean if a field has been set. ### GetStatus5xx -`func (o *OriginInspectorValues) GetStatus5xx() int32` +`func (o *OriginInspectorValues) GetStatus5xx() int64` GetStatus5xx returns the Status5xx field if non-nil, zero value otherwise. ### GetStatus5xxOk -`func (o *OriginInspectorValues) GetStatus5xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus5xxOk() (*int64, bool)` GetStatus5xxOk returns a tuple with the Status5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus5xx -`func (o *OriginInspectorValues) SetStatus5xx(v int32)` +`func (o *OriginInspectorValues) SetStatus5xx(v int64)` SetStatus5xx sets Status5xx field to given value. @@ -378,20 +378,20 @@ HasStatus5xx returns a boolean if a field has been set. ### GetStatus200 -`func (o *OriginInspectorValues) GetStatus200() int32` +`func (o *OriginInspectorValues) GetStatus200() int64` GetStatus200 returns the Status200 field if non-nil, zero value otherwise. ### GetStatus200Ok -`func (o *OriginInspectorValues) GetStatus200Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus200Ok() (*int64, bool)` GetStatus200Ok returns a tuple with the Status200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus200 -`func (o *OriginInspectorValues) SetStatus200(v int32)` +`func (o *OriginInspectorValues) SetStatus200(v int64)` SetStatus200 sets Status200 field to given value. @@ -403,20 +403,20 @@ HasStatus200 returns a boolean if a field has been set. ### GetStatus204 -`func (o *OriginInspectorValues) GetStatus204() int32` +`func (o *OriginInspectorValues) GetStatus204() int64` GetStatus204 returns the Status204 field if non-nil, zero value otherwise. ### GetStatus204Ok -`func (o *OriginInspectorValues) GetStatus204Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus204Ok() (*int64, bool)` GetStatus204Ok returns a tuple with the Status204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus204 -`func (o *OriginInspectorValues) SetStatus204(v int32)` +`func (o *OriginInspectorValues) SetStatus204(v int64)` SetStatus204 sets Status204 field to given value. @@ -428,20 +428,20 @@ HasStatus204 returns a boolean if a field has been set. ### GetStatus206 -`func (o *OriginInspectorValues) GetStatus206() int32` +`func (o *OriginInspectorValues) GetStatus206() int64` GetStatus206 returns the Status206 field if non-nil, zero value otherwise. ### GetStatus206Ok -`func (o *OriginInspectorValues) GetStatus206Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus206Ok() (*int64, bool)` GetStatus206Ok returns a tuple with the Status206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus206 -`func (o *OriginInspectorValues) SetStatus206(v int32)` +`func (o *OriginInspectorValues) SetStatus206(v int64)` SetStatus206 sets Status206 field to given value. @@ -453,20 +453,20 @@ HasStatus206 returns a boolean if a field has been set. ### GetStatus301 -`func (o *OriginInspectorValues) GetStatus301() int32` +`func (o *OriginInspectorValues) GetStatus301() int64` GetStatus301 returns the Status301 field if non-nil, zero value otherwise. ### GetStatus301Ok -`func (o *OriginInspectorValues) GetStatus301Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus301Ok() (*int64, bool)` GetStatus301Ok returns a tuple with the Status301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus301 -`func (o *OriginInspectorValues) SetStatus301(v int32)` +`func (o *OriginInspectorValues) SetStatus301(v int64)` SetStatus301 sets Status301 field to given value. @@ -478,20 +478,20 @@ HasStatus301 returns a boolean if a field has been set. ### GetStatus302 -`func (o *OriginInspectorValues) GetStatus302() int32` +`func (o *OriginInspectorValues) GetStatus302() int64` GetStatus302 returns the Status302 field if non-nil, zero value otherwise. ### GetStatus302Ok -`func (o *OriginInspectorValues) GetStatus302Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus302Ok() (*int64, bool)` GetStatus302Ok returns a tuple with the Status302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus302 -`func (o *OriginInspectorValues) SetStatus302(v int32)` +`func (o *OriginInspectorValues) SetStatus302(v int64)` SetStatus302 sets Status302 field to given value. @@ -503,20 +503,20 @@ HasStatus302 returns a boolean if a field has been set. ### GetStatus304 -`func (o *OriginInspectorValues) GetStatus304() int32` +`func (o *OriginInspectorValues) GetStatus304() int64` GetStatus304 returns the Status304 field if non-nil, zero value otherwise. ### GetStatus304Ok -`func (o *OriginInspectorValues) GetStatus304Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus304Ok() (*int64, bool)` GetStatus304Ok returns a tuple with the Status304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus304 -`func (o *OriginInspectorValues) SetStatus304(v int32)` +`func (o *OriginInspectorValues) SetStatus304(v int64)` SetStatus304 sets Status304 field to given value. @@ -528,20 +528,20 @@ HasStatus304 returns a boolean if a field has been set. ### GetStatus400 -`func (o *OriginInspectorValues) GetStatus400() int32` +`func (o *OriginInspectorValues) GetStatus400() int64` GetStatus400 returns the Status400 field if non-nil, zero value otherwise. ### GetStatus400Ok -`func (o *OriginInspectorValues) GetStatus400Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus400Ok() (*int64, bool)` GetStatus400Ok returns a tuple with the Status400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus400 -`func (o *OriginInspectorValues) SetStatus400(v int32)` +`func (o *OriginInspectorValues) SetStatus400(v int64)` SetStatus400 sets Status400 field to given value. @@ -553,20 +553,20 @@ HasStatus400 returns a boolean if a field has been set. ### GetStatus401 -`func (o *OriginInspectorValues) GetStatus401() int32` +`func (o *OriginInspectorValues) GetStatus401() int64` GetStatus401 returns the Status401 field if non-nil, zero value otherwise. ### GetStatus401Ok -`func (o *OriginInspectorValues) GetStatus401Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus401Ok() (*int64, bool)` GetStatus401Ok returns a tuple with the Status401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus401 -`func (o *OriginInspectorValues) SetStatus401(v int32)` +`func (o *OriginInspectorValues) SetStatus401(v int64)` SetStatus401 sets Status401 field to given value. @@ -578,20 +578,20 @@ HasStatus401 returns a boolean if a field has been set. ### GetStatus403 -`func (o *OriginInspectorValues) GetStatus403() int32` +`func (o *OriginInspectorValues) GetStatus403() int64` GetStatus403 returns the Status403 field if non-nil, zero value otherwise. ### GetStatus403Ok -`func (o *OriginInspectorValues) GetStatus403Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus403Ok() (*int64, bool)` GetStatus403Ok returns a tuple with the Status403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus403 -`func (o *OriginInspectorValues) SetStatus403(v int32)` +`func (o *OriginInspectorValues) SetStatus403(v int64)` SetStatus403 sets Status403 field to given value. @@ -603,20 +603,20 @@ HasStatus403 returns a boolean if a field has been set. ### GetStatus404 -`func (o *OriginInspectorValues) GetStatus404() int32` +`func (o *OriginInspectorValues) GetStatus404() int64` GetStatus404 returns the Status404 field if non-nil, zero value otherwise. ### GetStatus404Ok -`func (o *OriginInspectorValues) GetStatus404Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus404Ok() (*int64, bool)` GetStatus404Ok returns a tuple with the Status404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus404 -`func (o *OriginInspectorValues) SetStatus404(v int32)` +`func (o *OriginInspectorValues) SetStatus404(v int64)` SetStatus404 sets Status404 field to given value. @@ -628,20 +628,20 @@ HasStatus404 returns a boolean if a field has been set. ### GetStatus416 -`func (o *OriginInspectorValues) GetStatus416() int32` +`func (o *OriginInspectorValues) GetStatus416() int64` GetStatus416 returns the Status416 field if non-nil, zero value otherwise. ### GetStatus416Ok -`func (o *OriginInspectorValues) GetStatus416Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus416Ok() (*int64, bool)` GetStatus416Ok returns a tuple with the Status416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus416 -`func (o *OriginInspectorValues) SetStatus416(v int32)` +`func (o *OriginInspectorValues) SetStatus416(v int64)` SetStatus416 sets Status416 field to given value. @@ -653,20 +653,20 @@ HasStatus416 returns a boolean if a field has been set. ### GetStatus429 -`func (o *OriginInspectorValues) GetStatus429() int32` +`func (o *OriginInspectorValues) GetStatus429() int64` GetStatus429 returns the Status429 field if non-nil, zero value otherwise. ### GetStatus429Ok -`func (o *OriginInspectorValues) GetStatus429Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus429Ok() (*int64, bool)` GetStatus429Ok returns a tuple with the Status429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus429 -`func (o *OriginInspectorValues) SetStatus429(v int32)` +`func (o *OriginInspectorValues) SetStatus429(v int64)` SetStatus429 sets Status429 field to given value. @@ -678,20 +678,20 @@ HasStatus429 returns a boolean if a field has been set. ### GetStatus500 -`func (o *OriginInspectorValues) GetStatus500() int32` +`func (o *OriginInspectorValues) GetStatus500() int64` GetStatus500 returns the Status500 field if non-nil, zero value otherwise. ### GetStatus500Ok -`func (o *OriginInspectorValues) GetStatus500Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus500Ok() (*int64, bool)` GetStatus500Ok returns a tuple with the Status500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus500 -`func (o *OriginInspectorValues) SetStatus500(v int32)` +`func (o *OriginInspectorValues) SetStatus500(v int64)` SetStatus500 sets Status500 field to given value. @@ -703,20 +703,20 @@ HasStatus500 returns a boolean if a field has been set. ### GetStatus501 -`func (o *OriginInspectorValues) GetStatus501() int32` +`func (o *OriginInspectorValues) GetStatus501() int64` GetStatus501 returns the Status501 field if non-nil, zero value otherwise. ### GetStatus501Ok -`func (o *OriginInspectorValues) GetStatus501Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus501Ok() (*int64, bool)` GetStatus501Ok returns a tuple with the Status501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus501 -`func (o *OriginInspectorValues) SetStatus501(v int32)` +`func (o *OriginInspectorValues) SetStatus501(v int64)` SetStatus501 sets Status501 field to given value. @@ -728,20 +728,20 @@ HasStatus501 returns a boolean if a field has been set. ### GetStatus502 -`func (o *OriginInspectorValues) GetStatus502() int32` +`func (o *OriginInspectorValues) GetStatus502() int64` GetStatus502 returns the Status502 field if non-nil, zero value otherwise. ### GetStatus502Ok -`func (o *OriginInspectorValues) GetStatus502Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus502Ok() (*int64, bool)` GetStatus502Ok returns a tuple with the Status502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus502 -`func (o *OriginInspectorValues) SetStatus502(v int32)` +`func (o *OriginInspectorValues) SetStatus502(v int64)` SetStatus502 sets Status502 field to given value. @@ -753,20 +753,20 @@ HasStatus502 returns a boolean if a field has been set. ### GetStatus503 -`func (o *OriginInspectorValues) GetStatus503() int32` +`func (o *OriginInspectorValues) GetStatus503() int64` GetStatus503 returns the Status503 field if non-nil, zero value otherwise. ### GetStatus503Ok -`func (o *OriginInspectorValues) GetStatus503Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus503Ok() (*int64, bool)` GetStatus503Ok returns a tuple with the Status503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus503 -`func (o *OriginInspectorValues) SetStatus503(v int32)` +`func (o *OriginInspectorValues) SetStatus503(v int64)` SetStatus503 sets Status503 field to given value. @@ -778,20 +778,20 @@ HasStatus503 returns a boolean if a field has been set. ### GetStatus504 -`func (o *OriginInspectorValues) GetStatus504() int32` +`func (o *OriginInspectorValues) GetStatus504() int64` GetStatus504 returns the Status504 field if non-nil, zero value otherwise. ### GetStatus504Ok -`func (o *OriginInspectorValues) GetStatus504Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus504Ok() (*int64, bool)` GetStatus504Ok returns a tuple with the Status504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus504 -`func (o *OriginInspectorValues) SetStatus504(v int32)` +`func (o *OriginInspectorValues) SetStatus504(v int64)` SetStatus504 sets Status504 field to given value. @@ -803,20 +803,20 @@ HasStatus504 returns a boolean if a field has been set. ### GetStatus505 -`func (o *OriginInspectorValues) GetStatus505() int32` +`func (o *OriginInspectorValues) GetStatus505() int64` GetStatus505 returns the Status505 field if non-nil, zero value otherwise. ### GetStatus505Ok -`func (o *OriginInspectorValues) GetStatus505Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetStatus505Ok() (*int64, bool)` GetStatus505Ok returns a tuple with the Status505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus505 -`func (o *OriginInspectorValues) SetStatus505(v int32)` +`func (o *OriginInspectorValues) SetStatus505(v int64)` SetStatus505 sets Status505 field to given value. @@ -828,20 +828,20 @@ HasStatus505 returns a boolean if a field has been set. ### GetLatency0To1ms -`func (o *OriginInspectorValues) GetLatency0To1ms() int32` +`func (o *OriginInspectorValues) GetLatency0To1ms() int64` GetLatency0To1ms returns the Latency0To1ms field if non-nil, zero value otherwise. ### GetLatency0To1msOk -`func (o *OriginInspectorValues) GetLatency0To1msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency0To1msOk() (*int64, bool)` GetLatency0To1msOk returns a tuple with the Latency0To1ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency0To1ms -`func (o *OriginInspectorValues) SetLatency0To1ms(v int32)` +`func (o *OriginInspectorValues) SetLatency0To1ms(v int64)` SetLatency0To1ms sets Latency0To1ms field to given value. @@ -853,20 +853,20 @@ HasLatency0To1ms returns a boolean if a field has been set. ### GetLatency1To5ms -`func (o *OriginInspectorValues) GetLatency1To5ms() int32` +`func (o *OriginInspectorValues) GetLatency1To5ms() int64` GetLatency1To5ms returns the Latency1To5ms field if non-nil, zero value otherwise. ### GetLatency1To5msOk -`func (o *OriginInspectorValues) GetLatency1To5msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency1To5msOk() (*int64, bool)` GetLatency1To5msOk returns a tuple with the Latency1To5ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency1To5ms -`func (o *OriginInspectorValues) SetLatency1To5ms(v int32)` +`func (o *OriginInspectorValues) SetLatency1To5ms(v int64)` SetLatency1To5ms sets Latency1To5ms field to given value. @@ -878,20 +878,20 @@ HasLatency1To5ms returns a boolean if a field has been set. ### GetLatency5To10ms -`func (o *OriginInspectorValues) GetLatency5To10ms() int32` +`func (o *OriginInspectorValues) GetLatency5To10ms() int64` GetLatency5To10ms returns the Latency5To10ms field if non-nil, zero value otherwise. ### GetLatency5To10msOk -`func (o *OriginInspectorValues) GetLatency5To10msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency5To10msOk() (*int64, bool)` GetLatency5To10msOk returns a tuple with the Latency5To10ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency5To10ms -`func (o *OriginInspectorValues) SetLatency5To10ms(v int32)` +`func (o *OriginInspectorValues) SetLatency5To10ms(v int64)` SetLatency5To10ms sets Latency5To10ms field to given value. @@ -903,20 +903,20 @@ HasLatency5To10ms returns a boolean if a field has been set. ### GetLatency10To50ms -`func (o *OriginInspectorValues) GetLatency10To50ms() int32` +`func (o *OriginInspectorValues) GetLatency10To50ms() int64` GetLatency10To50ms returns the Latency10To50ms field if non-nil, zero value otherwise. ### GetLatency10To50msOk -`func (o *OriginInspectorValues) GetLatency10To50msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency10To50msOk() (*int64, bool)` GetLatency10To50msOk returns a tuple with the Latency10To50ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency10To50ms -`func (o *OriginInspectorValues) SetLatency10To50ms(v int32)` +`func (o *OriginInspectorValues) SetLatency10To50ms(v int64)` SetLatency10To50ms sets Latency10To50ms field to given value. @@ -928,20 +928,20 @@ HasLatency10To50ms returns a boolean if a field has been set. ### GetLatency50To100ms -`func (o *OriginInspectorValues) GetLatency50To100ms() int32` +`func (o *OriginInspectorValues) GetLatency50To100ms() int64` GetLatency50To100ms returns the Latency50To100ms field if non-nil, zero value otherwise. ### GetLatency50To100msOk -`func (o *OriginInspectorValues) GetLatency50To100msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency50To100msOk() (*int64, bool)` GetLatency50To100msOk returns a tuple with the Latency50To100ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency50To100ms -`func (o *OriginInspectorValues) SetLatency50To100ms(v int32)` +`func (o *OriginInspectorValues) SetLatency50To100ms(v int64)` SetLatency50To100ms sets Latency50To100ms field to given value. @@ -953,20 +953,20 @@ HasLatency50To100ms returns a boolean if a field has been set. ### GetLatency100To250ms -`func (o *OriginInspectorValues) GetLatency100To250ms() int32` +`func (o *OriginInspectorValues) GetLatency100To250ms() int64` GetLatency100To250ms returns the Latency100To250ms field if non-nil, zero value otherwise. ### GetLatency100To250msOk -`func (o *OriginInspectorValues) GetLatency100To250msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency100To250msOk() (*int64, bool)` GetLatency100To250msOk returns a tuple with the Latency100To250ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency100To250ms -`func (o *OriginInspectorValues) SetLatency100To250ms(v int32)` +`func (o *OriginInspectorValues) SetLatency100To250ms(v int64)` SetLatency100To250ms sets Latency100To250ms field to given value. @@ -978,20 +978,20 @@ HasLatency100To250ms returns a boolean if a field has been set. ### GetLatency250To500ms -`func (o *OriginInspectorValues) GetLatency250To500ms() int32` +`func (o *OriginInspectorValues) GetLatency250To500ms() int64` GetLatency250To500ms returns the Latency250To500ms field if non-nil, zero value otherwise. ### GetLatency250To500msOk -`func (o *OriginInspectorValues) GetLatency250To500msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency250To500msOk() (*int64, bool)` GetLatency250To500msOk returns a tuple with the Latency250To500ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency250To500ms -`func (o *OriginInspectorValues) SetLatency250To500ms(v int32)` +`func (o *OriginInspectorValues) SetLatency250To500ms(v int64)` SetLatency250To500ms sets Latency250To500ms field to given value. @@ -1003,20 +1003,20 @@ HasLatency250To500ms returns a boolean if a field has been set. ### GetLatency500To1000ms -`func (o *OriginInspectorValues) GetLatency500To1000ms() int32` +`func (o *OriginInspectorValues) GetLatency500To1000ms() int64` GetLatency500To1000ms returns the Latency500To1000ms field if non-nil, zero value otherwise. ### GetLatency500To1000msOk -`func (o *OriginInspectorValues) GetLatency500To1000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency500To1000msOk() (*int64, bool)` GetLatency500To1000msOk returns a tuple with the Latency500To1000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency500To1000ms -`func (o *OriginInspectorValues) SetLatency500To1000ms(v int32)` +`func (o *OriginInspectorValues) SetLatency500To1000ms(v int64)` SetLatency500To1000ms sets Latency500To1000ms field to given value. @@ -1028,20 +1028,20 @@ HasLatency500To1000ms returns a boolean if a field has been set. ### GetLatency1000To5000ms -`func (o *OriginInspectorValues) GetLatency1000To5000ms() int32` +`func (o *OriginInspectorValues) GetLatency1000To5000ms() int64` GetLatency1000To5000ms returns the Latency1000To5000ms field if non-nil, zero value otherwise. ### GetLatency1000To5000msOk -`func (o *OriginInspectorValues) GetLatency1000To5000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency1000To5000msOk() (*int64, bool)` GetLatency1000To5000msOk returns a tuple with the Latency1000To5000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency1000To5000ms -`func (o *OriginInspectorValues) SetLatency1000To5000ms(v int32)` +`func (o *OriginInspectorValues) SetLatency1000To5000ms(v int64)` SetLatency1000To5000ms sets Latency1000To5000ms field to given value. @@ -1053,20 +1053,20 @@ HasLatency1000To5000ms returns a boolean if a field has been set. ### GetLatency5000To10000ms -`func (o *OriginInspectorValues) GetLatency5000To10000ms() int32` +`func (o *OriginInspectorValues) GetLatency5000To10000ms() int64` GetLatency5000To10000ms returns the Latency5000To10000ms field if non-nil, zero value otherwise. ### GetLatency5000To10000msOk -`func (o *OriginInspectorValues) GetLatency5000To10000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency5000To10000msOk() (*int64, bool)` GetLatency5000To10000msOk returns a tuple with the Latency5000To10000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency5000To10000ms -`func (o *OriginInspectorValues) SetLatency5000To10000ms(v int32)` +`func (o *OriginInspectorValues) SetLatency5000To10000ms(v int64)` SetLatency5000To10000ms sets Latency5000To10000ms field to given value. @@ -1078,20 +1078,20 @@ HasLatency5000To10000ms returns a boolean if a field has been set. ### GetLatency10000To60000ms -`func (o *OriginInspectorValues) GetLatency10000To60000ms() int32` +`func (o *OriginInspectorValues) GetLatency10000To60000ms() int64` GetLatency10000To60000ms returns the Latency10000To60000ms field if non-nil, zero value otherwise. ### GetLatency10000To60000msOk -`func (o *OriginInspectorValues) GetLatency10000To60000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency10000To60000msOk() (*int64, bool)` GetLatency10000To60000msOk returns a tuple with the Latency10000To60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency10000To60000ms -`func (o *OriginInspectorValues) SetLatency10000To60000ms(v int32)` +`func (o *OriginInspectorValues) SetLatency10000To60000ms(v int64)` SetLatency10000To60000ms sets Latency10000To60000ms field to given value. @@ -1103,20 +1103,20 @@ HasLatency10000To60000ms returns a boolean if a field has been set. ### GetLatency60000ms -`func (o *OriginInspectorValues) GetLatency60000ms() int32` +`func (o *OriginInspectorValues) GetLatency60000ms() int64` GetLatency60000ms returns the Latency60000ms field if non-nil, zero value otherwise. ### GetLatency60000msOk -`func (o *OriginInspectorValues) GetLatency60000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetLatency60000msOk() (*int64, bool)` GetLatency60000msOk returns a tuple with the Latency60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLatency60000ms -`func (o *OriginInspectorValues) SetLatency60000ms(v int32)` +`func (o *OriginInspectorValues) SetLatency60000ms(v int64)` SetLatency60000ms sets Latency60000ms field to given value. @@ -1128,20 +1128,20 @@ HasLatency60000ms returns a boolean if a field has been set. ### GetWafResponses -`func (o *OriginInspectorValues) GetWafResponses() int32` +`func (o *OriginInspectorValues) GetWafResponses() int64` GetWafResponses returns the WafResponses field if non-nil, zero value otherwise. ### GetWafResponsesOk -`func (o *OriginInspectorValues) GetWafResponsesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafResponsesOk() (*int64, bool)` GetWafResponsesOk returns a tuple with the WafResponses field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafResponses -`func (o *OriginInspectorValues) SetWafResponses(v int32)` +`func (o *OriginInspectorValues) SetWafResponses(v int64)` SetWafResponses sets WafResponses field to given value. @@ -1153,20 +1153,20 @@ HasWafResponses returns a boolean if a field has been set. ### GetWafRespHeaderBytes -`func (o *OriginInspectorValues) GetWafRespHeaderBytes() int32` +`func (o *OriginInspectorValues) GetWafRespHeaderBytes() int64` GetWafRespHeaderBytes returns the WafRespHeaderBytes field if non-nil, zero value otherwise. ### GetWafRespHeaderBytesOk -`func (o *OriginInspectorValues) GetWafRespHeaderBytesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafRespHeaderBytesOk() (*int64, bool)` GetWafRespHeaderBytesOk returns a tuple with the WafRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafRespHeaderBytes -`func (o *OriginInspectorValues) SetWafRespHeaderBytes(v int32)` +`func (o *OriginInspectorValues) SetWafRespHeaderBytes(v int64)` SetWafRespHeaderBytes sets WafRespHeaderBytes field to given value. @@ -1178,20 +1178,20 @@ HasWafRespHeaderBytes returns a boolean if a field has been set. ### GetWafRespBodyBytes -`func (o *OriginInspectorValues) GetWafRespBodyBytes() int32` +`func (o *OriginInspectorValues) GetWafRespBodyBytes() int64` GetWafRespBodyBytes returns the WafRespBodyBytes field if non-nil, zero value otherwise. ### GetWafRespBodyBytesOk -`func (o *OriginInspectorValues) GetWafRespBodyBytesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafRespBodyBytesOk() (*int64, bool)` GetWafRespBodyBytesOk returns a tuple with the WafRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafRespBodyBytes -`func (o *OriginInspectorValues) SetWafRespBodyBytes(v int32)` +`func (o *OriginInspectorValues) SetWafRespBodyBytes(v int64)` SetWafRespBodyBytes sets WafRespBodyBytes field to given value. @@ -1203,20 +1203,20 @@ HasWafRespBodyBytes returns a boolean if a field has been set. ### GetWafStatus1xx -`func (o *OriginInspectorValues) GetWafStatus1xx() int32` +`func (o *OriginInspectorValues) GetWafStatus1xx() int64` GetWafStatus1xx returns the WafStatus1xx field if non-nil, zero value otherwise. ### GetWafStatus1xxOk -`func (o *OriginInspectorValues) GetWafStatus1xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus1xxOk() (*int64, bool)` GetWafStatus1xxOk returns a tuple with the WafStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus1xx -`func (o *OriginInspectorValues) SetWafStatus1xx(v int32)` +`func (o *OriginInspectorValues) SetWafStatus1xx(v int64)` SetWafStatus1xx sets WafStatus1xx field to given value. @@ -1228,20 +1228,20 @@ HasWafStatus1xx returns a boolean if a field has been set. ### GetWafStatus2xx -`func (o *OriginInspectorValues) GetWafStatus2xx() int32` +`func (o *OriginInspectorValues) GetWafStatus2xx() int64` GetWafStatus2xx returns the WafStatus2xx field if non-nil, zero value otherwise. ### GetWafStatus2xxOk -`func (o *OriginInspectorValues) GetWafStatus2xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus2xxOk() (*int64, bool)` GetWafStatus2xxOk returns a tuple with the WafStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus2xx -`func (o *OriginInspectorValues) SetWafStatus2xx(v int32)` +`func (o *OriginInspectorValues) SetWafStatus2xx(v int64)` SetWafStatus2xx sets WafStatus2xx field to given value. @@ -1253,20 +1253,20 @@ HasWafStatus2xx returns a boolean if a field has been set. ### GetWafStatus3xx -`func (o *OriginInspectorValues) GetWafStatus3xx() int32` +`func (o *OriginInspectorValues) GetWafStatus3xx() int64` GetWafStatus3xx returns the WafStatus3xx field if non-nil, zero value otherwise. ### GetWafStatus3xxOk -`func (o *OriginInspectorValues) GetWafStatus3xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus3xxOk() (*int64, bool)` GetWafStatus3xxOk returns a tuple with the WafStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus3xx -`func (o *OriginInspectorValues) SetWafStatus3xx(v int32)` +`func (o *OriginInspectorValues) SetWafStatus3xx(v int64)` SetWafStatus3xx sets WafStatus3xx field to given value. @@ -1278,20 +1278,20 @@ HasWafStatus3xx returns a boolean if a field has been set. ### GetWafStatus4xx -`func (o *OriginInspectorValues) GetWafStatus4xx() int32` +`func (o *OriginInspectorValues) GetWafStatus4xx() int64` GetWafStatus4xx returns the WafStatus4xx field if non-nil, zero value otherwise. ### GetWafStatus4xxOk -`func (o *OriginInspectorValues) GetWafStatus4xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus4xxOk() (*int64, bool)` GetWafStatus4xxOk returns a tuple with the WafStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus4xx -`func (o *OriginInspectorValues) SetWafStatus4xx(v int32)` +`func (o *OriginInspectorValues) SetWafStatus4xx(v int64)` SetWafStatus4xx sets WafStatus4xx field to given value. @@ -1303,20 +1303,20 @@ HasWafStatus4xx returns a boolean if a field has been set. ### GetWafStatus5xx -`func (o *OriginInspectorValues) GetWafStatus5xx() int32` +`func (o *OriginInspectorValues) GetWafStatus5xx() int64` GetWafStatus5xx returns the WafStatus5xx field if non-nil, zero value otherwise. ### GetWafStatus5xxOk -`func (o *OriginInspectorValues) GetWafStatus5xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus5xxOk() (*int64, bool)` GetWafStatus5xxOk returns a tuple with the WafStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus5xx -`func (o *OriginInspectorValues) SetWafStatus5xx(v int32)` +`func (o *OriginInspectorValues) SetWafStatus5xx(v int64)` SetWafStatus5xx sets WafStatus5xx field to given value. @@ -1328,20 +1328,20 @@ HasWafStatus5xx returns a boolean if a field has been set. ### GetWafStatus200 -`func (o *OriginInspectorValues) GetWafStatus200() int32` +`func (o *OriginInspectorValues) GetWafStatus200() int64` GetWafStatus200 returns the WafStatus200 field if non-nil, zero value otherwise. ### GetWafStatus200Ok -`func (o *OriginInspectorValues) GetWafStatus200Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus200Ok() (*int64, bool)` GetWafStatus200Ok returns a tuple with the WafStatus200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus200 -`func (o *OriginInspectorValues) SetWafStatus200(v int32)` +`func (o *OriginInspectorValues) SetWafStatus200(v int64)` SetWafStatus200 sets WafStatus200 field to given value. @@ -1353,20 +1353,20 @@ HasWafStatus200 returns a boolean if a field has been set. ### GetWafStatus204 -`func (o *OriginInspectorValues) GetWafStatus204() int32` +`func (o *OriginInspectorValues) GetWafStatus204() int64` GetWafStatus204 returns the WafStatus204 field if non-nil, zero value otherwise. ### GetWafStatus204Ok -`func (o *OriginInspectorValues) GetWafStatus204Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus204Ok() (*int64, bool)` GetWafStatus204Ok returns a tuple with the WafStatus204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus204 -`func (o *OriginInspectorValues) SetWafStatus204(v int32)` +`func (o *OriginInspectorValues) SetWafStatus204(v int64)` SetWafStatus204 sets WafStatus204 field to given value. @@ -1378,20 +1378,20 @@ HasWafStatus204 returns a boolean if a field has been set. ### GetWafStatus206 -`func (o *OriginInspectorValues) GetWafStatus206() int32` +`func (o *OriginInspectorValues) GetWafStatus206() int64` GetWafStatus206 returns the WafStatus206 field if non-nil, zero value otherwise. ### GetWafStatus206Ok -`func (o *OriginInspectorValues) GetWafStatus206Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus206Ok() (*int64, bool)` GetWafStatus206Ok returns a tuple with the WafStatus206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus206 -`func (o *OriginInspectorValues) SetWafStatus206(v int32)` +`func (o *OriginInspectorValues) SetWafStatus206(v int64)` SetWafStatus206 sets WafStatus206 field to given value. @@ -1403,20 +1403,20 @@ HasWafStatus206 returns a boolean if a field has been set. ### GetWafStatus301 -`func (o *OriginInspectorValues) GetWafStatus301() int32` +`func (o *OriginInspectorValues) GetWafStatus301() int64` GetWafStatus301 returns the WafStatus301 field if non-nil, zero value otherwise. ### GetWafStatus301Ok -`func (o *OriginInspectorValues) GetWafStatus301Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus301Ok() (*int64, bool)` GetWafStatus301Ok returns a tuple with the WafStatus301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus301 -`func (o *OriginInspectorValues) SetWafStatus301(v int32)` +`func (o *OriginInspectorValues) SetWafStatus301(v int64)` SetWafStatus301 sets WafStatus301 field to given value. @@ -1428,20 +1428,20 @@ HasWafStatus301 returns a boolean if a field has been set. ### GetWafStatus302 -`func (o *OriginInspectorValues) GetWafStatus302() int32` +`func (o *OriginInspectorValues) GetWafStatus302() int64` GetWafStatus302 returns the WafStatus302 field if non-nil, zero value otherwise. ### GetWafStatus302Ok -`func (o *OriginInspectorValues) GetWafStatus302Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus302Ok() (*int64, bool)` GetWafStatus302Ok returns a tuple with the WafStatus302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus302 -`func (o *OriginInspectorValues) SetWafStatus302(v int32)` +`func (o *OriginInspectorValues) SetWafStatus302(v int64)` SetWafStatus302 sets WafStatus302 field to given value. @@ -1453,20 +1453,20 @@ HasWafStatus302 returns a boolean if a field has been set. ### GetWafStatus304 -`func (o *OriginInspectorValues) GetWafStatus304() int32` +`func (o *OriginInspectorValues) GetWafStatus304() int64` GetWafStatus304 returns the WafStatus304 field if non-nil, zero value otherwise. ### GetWafStatus304Ok -`func (o *OriginInspectorValues) GetWafStatus304Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus304Ok() (*int64, bool)` GetWafStatus304Ok returns a tuple with the WafStatus304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus304 -`func (o *OriginInspectorValues) SetWafStatus304(v int32)` +`func (o *OriginInspectorValues) SetWafStatus304(v int64)` SetWafStatus304 sets WafStatus304 field to given value. @@ -1478,20 +1478,20 @@ HasWafStatus304 returns a boolean if a field has been set. ### GetWafStatus400 -`func (o *OriginInspectorValues) GetWafStatus400() int32` +`func (o *OriginInspectorValues) GetWafStatus400() int64` GetWafStatus400 returns the WafStatus400 field if non-nil, zero value otherwise. ### GetWafStatus400Ok -`func (o *OriginInspectorValues) GetWafStatus400Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus400Ok() (*int64, bool)` GetWafStatus400Ok returns a tuple with the WafStatus400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus400 -`func (o *OriginInspectorValues) SetWafStatus400(v int32)` +`func (o *OriginInspectorValues) SetWafStatus400(v int64)` SetWafStatus400 sets WafStatus400 field to given value. @@ -1503,20 +1503,20 @@ HasWafStatus400 returns a boolean if a field has been set. ### GetWafStatus401 -`func (o *OriginInspectorValues) GetWafStatus401() int32` +`func (o *OriginInspectorValues) GetWafStatus401() int64` GetWafStatus401 returns the WafStatus401 field if non-nil, zero value otherwise. ### GetWafStatus401Ok -`func (o *OriginInspectorValues) GetWafStatus401Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus401Ok() (*int64, bool)` GetWafStatus401Ok returns a tuple with the WafStatus401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus401 -`func (o *OriginInspectorValues) SetWafStatus401(v int32)` +`func (o *OriginInspectorValues) SetWafStatus401(v int64)` SetWafStatus401 sets WafStatus401 field to given value. @@ -1528,20 +1528,20 @@ HasWafStatus401 returns a boolean if a field has been set. ### GetWafStatus403 -`func (o *OriginInspectorValues) GetWafStatus403() int32` +`func (o *OriginInspectorValues) GetWafStatus403() int64` GetWafStatus403 returns the WafStatus403 field if non-nil, zero value otherwise. ### GetWafStatus403Ok -`func (o *OriginInspectorValues) GetWafStatus403Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus403Ok() (*int64, bool)` GetWafStatus403Ok returns a tuple with the WafStatus403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus403 -`func (o *OriginInspectorValues) SetWafStatus403(v int32)` +`func (o *OriginInspectorValues) SetWafStatus403(v int64)` SetWafStatus403 sets WafStatus403 field to given value. @@ -1553,20 +1553,20 @@ HasWafStatus403 returns a boolean if a field has been set. ### GetWafStatus404 -`func (o *OriginInspectorValues) GetWafStatus404() int32` +`func (o *OriginInspectorValues) GetWafStatus404() int64` GetWafStatus404 returns the WafStatus404 field if non-nil, zero value otherwise. ### GetWafStatus404Ok -`func (o *OriginInspectorValues) GetWafStatus404Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus404Ok() (*int64, bool)` GetWafStatus404Ok returns a tuple with the WafStatus404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus404 -`func (o *OriginInspectorValues) SetWafStatus404(v int32)` +`func (o *OriginInspectorValues) SetWafStatus404(v int64)` SetWafStatus404 sets WafStatus404 field to given value. @@ -1578,20 +1578,20 @@ HasWafStatus404 returns a boolean if a field has been set. ### GetWafStatus416 -`func (o *OriginInspectorValues) GetWafStatus416() int32` +`func (o *OriginInspectorValues) GetWafStatus416() int64` GetWafStatus416 returns the WafStatus416 field if non-nil, zero value otherwise. ### GetWafStatus416Ok -`func (o *OriginInspectorValues) GetWafStatus416Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus416Ok() (*int64, bool)` GetWafStatus416Ok returns a tuple with the WafStatus416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus416 -`func (o *OriginInspectorValues) SetWafStatus416(v int32)` +`func (o *OriginInspectorValues) SetWafStatus416(v int64)` SetWafStatus416 sets WafStatus416 field to given value. @@ -1603,20 +1603,20 @@ HasWafStatus416 returns a boolean if a field has been set. ### GetWafStatus429 -`func (o *OriginInspectorValues) GetWafStatus429() int32` +`func (o *OriginInspectorValues) GetWafStatus429() int64` GetWafStatus429 returns the WafStatus429 field if non-nil, zero value otherwise. ### GetWafStatus429Ok -`func (o *OriginInspectorValues) GetWafStatus429Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus429Ok() (*int64, bool)` GetWafStatus429Ok returns a tuple with the WafStatus429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus429 -`func (o *OriginInspectorValues) SetWafStatus429(v int32)` +`func (o *OriginInspectorValues) SetWafStatus429(v int64)` SetWafStatus429 sets WafStatus429 field to given value. @@ -1628,20 +1628,20 @@ HasWafStatus429 returns a boolean if a field has been set. ### GetWafStatus500 -`func (o *OriginInspectorValues) GetWafStatus500() int32` +`func (o *OriginInspectorValues) GetWafStatus500() int64` GetWafStatus500 returns the WafStatus500 field if non-nil, zero value otherwise. ### GetWafStatus500Ok -`func (o *OriginInspectorValues) GetWafStatus500Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus500Ok() (*int64, bool)` GetWafStatus500Ok returns a tuple with the WafStatus500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus500 -`func (o *OriginInspectorValues) SetWafStatus500(v int32)` +`func (o *OriginInspectorValues) SetWafStatus500(v int64)` SetWafStatus500 sets WafStatus500 field to given value. @@ -1653,20 +1653,20 @@ HasWafStatus500 returns a boolean if a field has been set. ### GetWafStatus501 -`func (o *OriginInspectorValues) GetWafStatus501() int32` +`func (o *OriginInspectorValues) GetWafStatus501() int64` GetWafStatus501 returns the WafStatus501 field if non-nil, zero value otherwise. ### GetWafStatus501Ok -`func (o *OriginInspectorValues) GetWafStatus501Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus501Ok() (*int64, bool)` GetWafStatus501Ok returns a tuple with the WafStatus501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus501 -`func (o *OriginInspectorValues) SetWafStatus501(v int32)` +`func (o *OriginInspectorValues) SetWafStatus501(v int64)` SetWafStatus501 sets WafStatus501 field to given value. @@ -1678,20 +1678,20 @@ HasWafStatus501 returns a boolean if a field has been set. ### GetWafStatus502 -`func (o *OriginInspectorValues) GetWafStatus502() int32` +`func (o *OriginInspectorValues) GetWafStatus502() int64` GetWafStatus502 returns the WafStatus502 field if non-nil, zero value otherwise. ### GetWafStatus502Ok -`func (o *OriginInspectorValues) GetWafStatus502Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus502Ok() (*int64, bool)` GetWafStatus502Ok returns a tuple with the WafStatus502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus502 -`func (o *OriginInspectorValues) SetWafStatus502(v int32)` +`func (o *OriginInspectorValues) SetWafStatus502(v int64)` SetWafStatus502 sets WafStatus502 field to given value. @@ -1703,20 +1703,20 @@ HasWafStatus502 returns a boolean if a field has been set. ### GetWafStatus503 -`func (o *OriginInspectorValues) GetWafStatus503() int32` +`func (o *OriginInspectorValues) GetWafStatus503() int64` GetWafStatus503 returns the WafStatus503 field if non-nil, zero value otherwise. ### GetWafStatus503Ok -`func (o *OriginInspectorValues) GetWafStatus503Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus503Ok() (*int64, bool)` GetWafStatus503Ok returns a tuple with the WafStatus503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus503 -`func (o *OriginInspectorValues) SetWafStatus503(v int32)` +`func (o *OriginInspectorValues) SetWafStatus503(v int64)` SetWafStatus503 sets WafStatus503 field to given value. @@ -1728,20 +1728,20 @@ HasWafStatus503 returns a boolean if a field has been set. ### GetWafStatus504 -`func (o *OriginInspectorValues) GetWafStatus504() int32` +`func (o *OriginInspectorValues) GetWafStatus504() int64` GetWafStatus504 returns the WafStatus504 field if non-nil, zero value otherwise. ### GetWafStatus504Ok -`func (o *OriginInspectorValues) GetWafStatus504Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus504Ok() (*int64, bool)` GetWafStatus504Ok returns a tuple with the WafStatus504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus504 -`func (o *OriginInspectorValues) SetWafStatus504(v int32)` +`func (o *OriginInspectorValues) SetWafStatus504(v int64)` SetWafStatus504 sets WafStatus504 field to given value. @@ -1753,20 +1753,20 @@ HasWafStatus504 returns a boolean if a field has been set. ### GetWafStatus505 -`func (o *OriginInspectorValues) GetWafStatus505() int32` +`func (o *OriginInspectorValues) GetWafStatus505() int64` GetWafStatus505 returns the WafStatus505 field if non-nil, zero value otherwise. ### GetWafStatus505Ok -`func (o *OriginInspectorValues) GetWafStatus505Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafStatus505Ok() (*int64, bool)` GetWafStatus505Ok returns a tuple with the WafStatus505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafStatus505 -`func (o *OriginInspectorValues) SetWafStatus505(v int32)` +`func (o *OriginInspectorValues) SetWafStatus505(v int64)` SetWafStatus505 sets WafStatus505 field to given value. @@ -1778,20 +1778,20 @@ HasWafStatus505 returns a boolean if a field has been set. ### GetWafLatency0To1ms -`func (o *OriginInspectorValues) GetWafLatency0To1ms() int32` +`func (o *OriginInspectorValues) GetWafLatency0To1ms() int64` GetWafLatency0To1ms returns the WafLatency0To1ms field if non-nil, zero value otherwise. ### GetWafLatency0To1msOk -`func (o *OriginInspectorValues) GetWafLatency0To1msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency0To1msOk() (*int64, bool)` GetWafLatency0To1msOk returns a tuple with the WafLatency0To1ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency0To1ms -`func (o *OriginInspectorValues) SetWafLatency0To1ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency0To1ms(v int64)` SetWafLatency0To1ms sets WafLatency0To1ms field to given value. @@ -1803,20 +1803,20 @@ HasWafLatency0To1ms returns a boolean if a field has been set. ### GetWafLatency1To5ms -`func (o *OriginInspectorValues) GetWafLatency1To5ms() int32` +`func (o *OriginInspectorValues) GetWafLatency1To5ms() int64` GetWafLatency1To5ms returns the WafLatency1To5ms field if non-nil, zero value otherwise. ### GetWafLatency1To5msOk -`func (o *OriginInspectorValues) GetWafLatency1To5msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency1To5msOk() (*int64, bool)` GetWafLatency1To5msOk returns a tuple with the WafLatency1To5ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency1To5ms -`func (o *OriginInspectorValues) SetWafLatency1To5ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency1To5ms(v int64)` SetWafLatency1To5ms sets WafLatency1To5ms field to given value. @@ -1828,20 +1828,20 @@ HasWafLatency1To5ms returns a boolean if a field has been set. ### GetWafLatency5To10ms -`func (o *OriginInspectorValues) GetWafLatency5To10ms() int32` +`func (o *OriginInspectorValues) GetWafLatency5To10ms() int64` GetWafLatency5To10ms returns the WafLatency5To10ms field if non-nil, zero value otherwise. ### GetWafLatency5To10msOk -`func (o *OriginInspectorValues) GetWafLatency5To10msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency5To10msOk() (*int64, bool)` GetWafLatency5To10msOk returns a tuple with the WafLatency5To10ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency5To10ms -`func (o *OriginInspectorValues) SetWafLatency5To10ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency5To10ms(v int64)` SetWafLatency5To10ms sets WafLatency5To10ms field to given value. @@ -1853,20 +1853,20 @@ HasWafLatency5To10ms returns a boolean if a field has been set. ### GetWafLatency10To50ms -`func (o *OriginInspectorValues) GetWafLatency10To50ms() int32` +`func (o *OriginInspectorValues) GetWafLatency10To50ms() int64` GetWafLatency10To50ms returns the WafLatency10To50ms field if non-nil, zero value otherwise. ### GetWafLatency10To50msOk -`func (o *OriginInspectorValues) GetWafLatency10To50msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency10To50msOk() (*int64, bool)` GetWafLatency10To50msOk returns a tuple with the WafLatency10To50ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency10To50ms -`func (o *OriginInspectorValues) SetWafLatency10To50ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency10To50ms(v int64)` SetWafLatency10To50ms sets WafLatency10To50ms field to given value. @@ -1878,20 +1878,20 @@ HasWafLatency10To50ms returns a boolean if a field has been set. ### GetWafLatency50To100ms -`func (o *OriginInspectorValues) GetWafLatency50To100ms() int32` +`func (o *OriginInspectorValues) GetWafLatency50To100ms() int64` GetWafLatency50To100ms returns the WafLatency50To100ms field if non-nil, zero value otherwise. ### GetWafLatency50To100msOk -`func (o *OriginInspectorValues) GetWafLatency50To100msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency50To100msOk() (*int64, bool)` GetWafLatency50To100msOk returns a tuple with the WafLatency50To100ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency50To100ms -`func (o *OriginInspectorValues) SetWafLatency50To100ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency50To100ms(v int64)` SetWafLatency50To100ms sets WafLatency50To100ms field to given value. @@ -1903,20 +1903,20 @@ HasWafLatency50To100ms returns a boolean if a field has been set. ### GetWafLatency100To250ms -`func (o *OriginInspectorValues) GetWafLatency100To250ms() int32` +`func (o *OriginInspectorValues) GetWafLatency100To250ms() int64` GetWafLatency100To250ms returns the WafLatency100To250ms field if non-nil, zero value otherwise. ### GetWafLatency100To250msOk -`func (o *OriginInspectorValues) GetWafLatency100To250msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency100To250msOk() (*int64, bool)` GetWafLatency100To250msOk returns a tuple with the WafLatency100To250ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency100To250ms -`func (o *OriginInspectorValues) SetWafLatency100To250ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency100To250ms(v int64)` SetWafLatency100To250ms sets WafLatency100To250ms field to given value. @@ -1928,20 +1928,20 @@ HasWafLatency100To250ms returns a boolean if a field has been set. ### GetWafLatency250To500ms -`func (o *OriginInspectorValues) GetWafLatency250To500ms() int32` +`func (o *OriginInspectorValues) GetWafLatency250To500ms() int64` GetWafLatency250To500ms returns the WafLatency250To500ms field if non-nil, zero value otherwise. ### GetWafLatency250To500msOk -`func (o *OriginInspectorValues) GetWafLatency250To500msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency250To500msOk() (*int64, bool)` GetWafLatency250To500msOk returns a tuple with the WafLatency250To500ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency250To500ms -`func (o *OriginInspectorValues) SetWafLatency250To500ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency250To500ms(v int64)` SetWafLatency250To500ms sets WafLatency250To500ms field to given value. @@ -1953,20 +1953,20 @@ HasWafLatency250To500ms returns a boolean if a field has been set. ### GetWafLatency500To1000ms -`func (o *OriginInspectorValues) GetWafLatency500To1000ms() int32` +`func (o *OriginInspectorValues) GetWafLatency500To1000ms() int64` GetWafLatency500To1000ms returns the WafLatency500To1000ms field if non-nil, zero value otherwise. ### GetWafLatency500To1000msOk -`func (o *OriginInspectorValues) GetWafLatency500To1000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency500To1000msOk() (*int64, bool)` GetWafLatency500To1000msOk returns a tuple with the WafLatency500To1000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency500To1000ms -`func (o *OriginInspectorValues) SetWafLatency500To1000ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency500To1000ms(v int64)` SetWafLatency500To1000ms sets WafLatency500To1000ms field to given value. @@ -1978,20 +1978,20 @@ HasWafLatency500To1000ms returns a boolean if a field has been set. ### GetWafLatency1000To5000ms -`func (o *OriginInspectorValues) GetWafLatency1000To5000ms() int32` +`func (o *OriginInspectorValues) GetWafLatency1000To5000ms() int64` GetWafLatency1000To5000ms returns the WafLatency1000To5000ms field if non-nil, zero value otherwise. ### GetWafLatency1000To5000msOk -`func (o *OriginInspectorValues) GetWafLatency1000To5000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency1000To5000msOk() (*int64, bool)` GetWafLatency1000To5000msOk returns a tuple with the WafLatency1000To5000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency1000To5000ms -`func (o *OriginInspectorValues) SetWafLatency1000To5000ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency1000To5000ms(v int64)` SetWafLatency1000To5000ms sets WafLatency1000To5000ms field to given value. @@ -2003,20 +2003,20 @@ HasWafLatency1000To5000ms returns a boolean if a field has been set. ### GetWafLatency5000To10000ms -`func (o *OriginInspectorValues) GetWafLatency5000To10000ms() int32` +`func (o *OriginInspectorValues) GetWafLatency5000To10000ms() int64` GetWafLatency5000To10000ms returns the WafLatency5000To10000ms field if non-nil, zero value otherwise. ### GetWafLatency5000To10000msOk -`func (o *OriginInspectorValues) GetWafLatency5000To10000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency5000To10000msOk() (*int64, bool)` GetWafLatency5000To10000msOk returns a tuple with the WafLatency5000To10000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency5000To10000ms -`func (o *OriginInspectorValues) SetWafLatency5000To10000ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency5000To10000ms(v int64)` SetWafLatency5000To10000ms sets WafLatency5000To10000ms field to given value. @@ -2028,20 +2028,20 @@ HasWafLatency5000To10000ms returns a boolean if a field has been set. ### GetWafLatency10000To60000ms -`func (o *OriginInspectorValues) GetWafLatency10000To60000ms() int32` +`func (o *OriginInspectorValues) GetWafLatency10000To60000ms() int64` GetWafLatency10000To60000ms returns the WafLatency10000To60000ms field if non-nil, zero value otherwise. ### GetWafLatency10000To60000msOk -`func (o *OriginInspectorValues) GetWafLatency10000To60000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency10000To60000msOk() (*int64, bool)` GetWafLatency10000To60000msOk returns a tuple with the WafLatency10000To60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency10000To60000ms -`func (o *OriginInspectorValues) SetWafLatency10000To60000ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency10000To60000ms(v int64)` SetWafLatency10000To60000ms sets WafLatency10000To60000ms field to given value. @@ -2053,20 +2053,20 @@ HasWafLatency10000To60000ms returns a boolean if a field has been set. ### GetWafLatency60000ms -`func (o *OriginInspectorValues) GetWafLatency60000ms() int32` +`func (o *OriginInspectorValues) GetWafLatency60000ms() int64` GetWafLatency60000ms returns the WafLatency60000ms field if non-nil, zero value otherwise. ### GetWafLatency60000msOk -`func (o *OriginInspectorValues) GetWafLatency60000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetWafLatency60000msOk() (*int64, bool)` GetWafLatency60000msOk returns a tuple with the WafLatency60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLatency60000ms -`func (o *OriginInspectorValues) SetWafLatency60000ms(v int32)` +`func (o *OriginInspectorValues) SetWafLatency60000ms(v int64)` SetWafLatency60000ms sets WafLatency60000ms field to given value. @@ -2078,20 +2078,20 @@ HasWafLatency60000ms returns a boolean if a field has been set. ### GetComputeResponses -`func (o *OriginInspectorValues) GetComputeResponses() int32` +`func (o *OriginInspectorValues) GetComputeResponses() int64` GetComputeResponses returns the ComputeResponses field if non-nil, zero value otherwise. ### GetComputeResponsesOk -`func (o *OriginInspectorValues) GetComputeResponsesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeResponsesOk() (*int64, bool)` GetComputeResponsesOk returns a tuple with the ComputeResponses field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeResponses -`func (o *OriginInspectorValues) SetComputeResponses(v int32)` +`func (o *OriginInspectorValues) SetComputeResponses(v int64)` SetComputeResponses sets ComputeResponses field to given value. @@ -2103,20 +2103,20 @@ HasComputeResponses returns a boolean if a field has been set. ### GetComputeRespHeaderBytes -`func (o *OriginInspectorValues) GetComputeRespHeaderBytes() int32` +`func (o *OriginInspectorValues) GetComputeRespHeaderBytes() int64` GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field if non-nil, zero value otherwise. ### GetComputeRespHeaderBytesOk -`func (o *OriginInspectorValues) GetComputeRespHeaderBytesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeRespHeaderBytesOk() (*int64, bool)` GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespHeaderBytes -`func (o *OriginInspectorValues) SetComputeRespHeaderBytes(v int32)` +`func (o *OriginInspectorValues) SetComputeRespHeaderBytes(v int64)` SetComputeRespHeaderBytes sets ComputeRespHeaderBytes field to given value. @@ -2128,20 +2128,20 @@ HasComputeRespHeaderBytes returns a boolean if a field has been set. ### GetComputeRespBodyBytes -`func (o *OriginInspectorValues) GetComputeRespBodyBytes() int32` +`func (o *OriginInspectorValues) GetComputeRespBodyBytes() int64` GetComputeRespBodyBytes returns the ComputeRespBodyBytes field if non-nil, zero value otherwise. ### GetComputeRespBodyBytesOk -`func (o *OriginInspectorValues) GetComputeRespBodyBytesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeRespBodyBytesOk() (*int64, bool)` GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespBodyBytes -`func (o *OriginInspectorValues) SetComputeRespBodyBytes(v int32)` +`func (o *OriginInspectorValues) SetComputeRespBodyBytes(v int64)` SetComputeRespBodyBytes sets ComputeRespBodyBytes field to given value. @@ -2153,20 +2153,20 @@ HasComputeRespBodyBytes returns a boolean if a field has been set. ### GetComputeStatus1xx -`func (o *OriginInspectorValues) GetComputeStatus1xx() int32` +`func (o *OriginInspectorValues) GetComputeStatus1xx() int64` GetComputeStatus1xx returns the ComputeStatus1xx field if non-nil, zero value otherwise. ### GetComputeStatus1xxOk -`func (o *OriginInspectorValues) GetComputeStatus1xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus1xxOk() (*int64, bool)` GetComputeStatus1xxOk returns a tuple with the ComputeStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus1xx -`func (o *OriginInspectorValues) SetComputeStatus1xx(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus1xx(v int64)` SetComputeStatus1xx sets ComputeStatus1xx field to given value. @@ -2178,20 +2178,20 @@ HasComputeStatus1xx returns a boolean if a field has been set. ### GetComputeStatus2xx -`func (o *OriginInspectorValues) GetComputeStatus2xx() int32` +`func (o *OriginInspectorValues) GetComputeStatus2xx() int64` GetComputeStatus2xx returns the ComputeStatus2xx field if non-nil, zero value otherwise. ### GetComputeStatus2xxOk -`func (o *OriginInspectorValues) GetComputeStatus2xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus2xxOk() (*int64, bool)` GetComputeStatus2xxOk returns a tuple with the ComputeStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus2xx -`func (o *OriginInspectorValues) SetComputeStatus2xx(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus2xx(v int64)` SetComputeStatus2xx sets ComputeStatus2xx field to given value. @@ -2203,20 +2203,20 @@ HasComputeStatus2xx returns a boolean if a field has been set. ### GetComputeStatus3xx -`func (o *OriginInspectorValues) GetComputeStatus3xx() int32` +`func (o *OriginInspectorValues) GetComputeStatus3xx() int64` GetComputeStatus3xx returns the ComputeStatus3xx field if non-nil, zero value otherwise. ### GetComputeStatus3xxOk -`func (o *OriginInspectorValues) GetComputeStatus3xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus3xxOk() (*int64, bool)` GetComputeStatus3xxOk returns a tuple with the ComputeStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus3xx -`func (o *OriginInspectorValues) SetComputeStatus3xx(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus3xx(v int64)` SetComputeStatus3xx sets ComputeStatus3xx field to given value. @@ -2228,20 +2228,20 @@ HasComputeStatus3xx returns a boolean if a field has been set. ### GetComputeStatus4xx -`func (o *OriginInspectorValues) GetComputeStatus4xx() int32` +`func (o *OriginInspectorValues) GetComputeStatus4xx() int64` GetComputeStatus4xx returns the ComputeStatus4xx field if non-nil, zero value otherwise. ### GetComputeStatus4xxOk -`func (o *OriginInspectorValues) GetComputeStatus4xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus4xxOk() (*int64, bool)` GetComputeStatus4xxOk returns a tuple with the ComputeStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus4xx -`func (o *OriginInspectorValues) SetComputeStatus4xx(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus4xx(v int64)` SetComputeStatus4xx sets ComputeStatus4xx field to given value. @@ -2253,20 +2253,20 @@ HasComputeStatus4xx returns a boolean if a field has been set. ### GetComputeStatus5xx -`func (o *OriginInspectorValues) GetComputeStatus5xx() int32` +`func (o *OriginInspectorValues) GetComputeStatus5xx() int64` GetComputeStatus5xx returns the ComputeStatus5xx field if non-nil, zero value otherwise. ### GetComputeStatus5xxOk -`func (o *OriginInspectorValues) GetComputeStatus5xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus5xxOk() (*int64, bool)` GetComputeStatus5xxOk returns a tuple with the ComputeStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus5xx -`func (o *OriginInspectorValues) SetComputeStatus5xx(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus5xx(v int64)` SetComputeStatus5xx sets ComputeStatus5xx field to given value. @@ -2278,20 +2278,20 @@ HasComputeStatus5xx returns a boolean if a field has been set. ### GetComputeStatus200 -`func (o *OriginInspectorValues) GetComputeStatus200() int32` +`func (o *OriginInspectorValues) GetComputeStatus200() int64` GetComputeStatus200 returns the ComputeStatus200 field if non-nil, zero value otherwise. ### GetComputeStatus200Ok -`func (o *OriginInspectorValues) GetComputeStatus200Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus200Ok() (*int64, bool)` GetComputeStatus200Ok returns a tuple with the ComputeStatus200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus200 -`func (o *OriginInspectorValues) SetComputeStatus200(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus200(v int64)` SetComputeStatus200 sets ComputeStatus200 field to given value. @@ -2303,20 +2303,20 @@ HasComputeStatus200 returns a boolean if a field has been set. ### GetComputeStatus204 -`func (o *OriginInspectorValues) GetComputeStatus204() int32` +`func (o *OriginInspectorValues) GetComputeStatus204() int64` GetComputeStatus204 returns the ComputeStatus204 field if non-nil, zero value otherwise. ### GetComputeStatus204Ok -`func (o *OriginInspectorValues) GetComputeStatus204Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus204Ok() (*int64, bool)` GetComputeStatus204Ok returns a tuple with the ComputeStatus204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus204 -`func (o *OriginInspectorValues) SetComputeStatus204(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus204(v int64)` SetComputeStatus204 sets ComputeStatus204 field to given value. @@ -2328,20 +2328,20 @@ HasComputeStatus204 returns a boolean if a field has been set. ### GetComputeStatus206 -`func (o *OriginInspectorValues) GetComputeStatus206() int32` +`func (o *OriginInspectorValues) GetComputeStatus206() int64` GetComputeStatus206 returns the ComputeStatus206 field if non-nil, zero value otherwise. ### GetComputeStatus206Ok -`func (o *OriginInspectorValues) GetComputeStatus206Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus206Ok() (*int64, bool)` GetComputeStatus206Ok returns a tuple with the ComputeStatus206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus206 -`func (o *OriginInspectorValues) SetComputeStatus206(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus206(v int64)` SetComputeStatus206 sets ComputeStatus206 field to given value. @@ -2353,20 +2353,20 @@ HasComputeStatus206 returns a boolean if a field has been set. ### GetComputeStatus301 -`func (o *OriginInspectorValues) GetComputeStatus301() int32` +`func (o *OriginInspectorValues) GetComputeStatus301() int64` GetComputeStatus301 returns the ComputeStatus301 field if non-nil, zero value otherwise. ### GetComputeStatus301Ok -`func (o *OriginInspectorValues) GetComputeStatus301Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus301Ok() (*int64, bool)` GetComputeStatus301Ok returns a tuple with the ComputeStatus301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus301 -`func (o *OriginInspectorValues) SetComputeStatus301(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus301(v int64)` SetComputeStatus301 sets ComputeStatus301 field to given value. @@ -2378,20 +2378,20 @@ HasComputeStatus301 returns a boolean if a field has been set. ### GetComputeStatus302 -`func (o *OriginInspectorValues) GetComputeStatus302() int32` +`func (o *OriginInspectorValues) GetComputeStatus302() int64` GetComputeStatus302 returns the ComputeStatus302 field if non-nil, zero value otherwise. ### GetComputeStatus302Ok -`func (o *OriginInspectorValues) GetComputeStatus302Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus302Ok() (*int64, bool)` GetComputeStatus302Ok returns a tuple with the ComputeStatus302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus302 -`func (o *OriginInspectorValues) SetComputeStatus302(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus302(v int64)` SetComputeStatus302 sets ComputeStatus302 field to given value. @@ -2403,20 +2403,20 @@ HasComputeStatus302 returns a boolean if a field has been set. ### GetComputeStatus304 -`func (o *OriginInspectorValues) GetComputeStatus304() int32` +`func (o *OriginInspectorValues) GetComputeStatus304() int64` GetComputeStatus304 returns the ComputeStatus304 field if non-nil, zero value otherwise. ### GetComputeStatus304Ok -`func (o *OriginInspectorValues) GetComputeStatus304Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus304Ok() (*int64, bool)` GetComputeStatus304Ok returns a tuple with the ComputeStatus304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus304 -`func (o *OriginInspectorValues) SetComputeStatus304(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus304(v int64)` SetComputeStatus304 sets ComputeStatus304 field to given value. @@ -2428,20 +2428,20 @@ HasComputeStatus304 returns a boolean if a field has been set. ### GetComputeStatus400 -`func (o *OriginInspectorValues) GetComputeStatus400() int32` +`func (o *OriginInspectorValues) GetComputeStatus400() int64` GetComputeStatus400 returns the ComputeStatus400 field if non-nil, zero value otherwise. ### GetComputeStatus400Ok -`func (o *OriginInspectorValues) GetComputeStatus400Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus400Ok() (*int64, bool)` GetComputeStatus400Ok returns a tuple with the ComputeStatus400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus400 -`func (o *OriginInspectorValues) SetComputeStatus400(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus400(v int64)` SetComputeStatus400 sets ComputeStatus400 field to given value. @@ -2453,20 +2453,20 @@ HasComputeStatus400 returns a boolean if a field has been set. ### GetComputeStatus401 -`func (o *OriginInspectorValues) GetComputeStatus401() int32` +`func (o *OriginInspectorValues) GetComputeStatus401() int64` GetComputeStatus401 returns the ComputeStatus401 field if non-nil, zero value otherwise. ### GetComputeStatus401Ok -`func (o *OriginInspectorValues) GetComputeStatus401Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus401Ok() (*int64, bool)` GetComputeStatus401Ok returns a tuple with the ComputeStatus401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus401 -`func (o *OriginInspectorValues) SetComputeStatus401(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus401(v int64)` SetComputeStatus401 sets ComputeStatus401 field to given value. @@ -2478,20 +2478,20 @@ HasComputeStatus401 returns a boolean if a field has been set. ### GetComputeStatus403 -`func (o *OriginInspectorValues) GetComputeStatus403() int32` +`func (o *OriginInspectorValues) GetComputeStatus403() int64` GetComputeStatus403 returns the ComputeStatus403 field if non-nil, zero value otherwise. ### GetComputeStatus403Ok -`func (o *OriginInspectorValues) GetComputeStatus403Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus403Ok() (*int64, bool)` GetComputeStatus403Ok returns a tuple with the ComputeStatus403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus403 -`func (o *OriginInspectorValues) SetComputeStatus403(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus403(v int64)` SetComputeStatus403 sets ComputeStatus403 field to given value. @@ -2503,20 +2503,20 @@ HasComputeStatus403 returns a boolean if a field has been set. ### GetComputeStatus404 -`func (o *OriginInspectorValues) GetComputeStatus404() int32` +`func (o *OriginInspectorValues) GetComputeStatus404() int64` GetComputeStatus404 returns the ComputeStatus404 field if non-nil, zero value otherwise. ### GetComputeStatus404Ok -`func (o *OriginInspectorValues) GetComputeStatus404Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus404Ok() (*int64, bool)` GetComputeStatus404Ok returns a tuple with the ComputeStatus404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus404 -`func (o *OriginInspectorValues) SetComputeStatus404(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus404(v int64)` SetComputeStatus404 sets ComputeStatus404 field to given value. @@ -2528,20 +2528,20 @@ HasComputeStatus404 returns a boolean if a field has been set. ### GetComputeStatus416 -`func (o *OriginInspectorValues) GetComputeStatus416() int32` +`func (o *OriginInspectorValues) GetComputeStatus416() int64` GetComputeStatus416 returns the ComputeStatus416 field if non-nil, zero value otherwise. ### GetComputeStatus416Ok -`func (o *OriginInspectorValues) GetComputeStatus416Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus416Ok() (*int64, bool)` GetComputeStatus416Ok returns a tuple with the ComputeStatus416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus416 -`func (o *OriginInspectorValues) SetComputeStatus416(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus416(v int64)` SetComputeStatus416 sets ComputeStatus416 field to given value. @@ -2553,20 +2553,20 @@ HasComputeStatus416 returns a boolean if a field has been set. ### GetComputeStatus429 -`func (o *OriginInspectorValues) GetComputeStatus429() int32` +`func (o *OriginInspectorValues) GetComputeStatus429() int64` GetComputeStatus429 returns the ComputeStatus429 field if non-nil, zero value otherwise. ### GetComputeStatus429Ok -`func (o *OriginInspectorValues) GetComputeStatus429Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus429Ok() (*int64, bool)` GetComputeStatus429Ok returns a tuple with the ComputeStatus429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus429 -`func (o *OriginInspectorValues) SetComputeStatus429(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus429(v int64)` SetComputeStatus429 sets ComputeStatus429 field to given value. @@ -2578,20 +2578,20 @@ HasComputeStatus429 returns a boolean if a field has been set. ### GetComputeStatus500 -`func (o *OriginInspectorValues) GetComputeStatus500() int32` +`func (o *OriginInspectorValues) GetComputeStatus500() int64` GetComputeStatus500 returns the ComputeStatus500 field if non-nil, zero value otherwise. ### GetComputeStatus500Ok -`func (o *OriginInspectorValues) GetComputeStatus500Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus500Ok() (*int64, bool)` GetComputeStatus500Ok returns a tuple with the ComputeStatus500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus500 -`func (o *OriginInspectorValues) SetComputeStatus500(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus500(v int64)` SetComputeStatus500 sets ComputeStatus500 field to given value. @@ -2603,20 +2603,20 @@ HasComputeStatus500 returns a boolean if a field has been set. ### GetComputeStatus501 -`func (o *OriginInspectorValues) GetComputeStatus501() int32` +`func (o *OriginInspectorValues) GetComputeStatus501() int64` GetComputeStatus501 returns the ComputeStatus501 field if non-nil, zero value otherwise. ### GetComputeStatus501Ok -`func (o *OriginInspectorValues) GetComputeStatus501Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus501Ok() (*int64, bool)` GetComputeStatus501Ok returns a tuple with the ComputeStatus501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus501 -`func (o *OriginInspectorValues) SetComputeStatus501(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus501(v int64)` SetComputeStatus501 sets ComputeStatus501 field to given value. @@ -2628,20 +2628,20 @@ HasComputeStatus501 returns a boolean if a field has been set. ### GetComputeStatus502 -`func (o *OriginInspectorValues) GetComputeStatus502() int32` +`func (o *OriginInspectorValues) GetComputeStatus502() int64` GetComputeStatus502 returns the ComputeStatus502 field if non-nil, zero value otherwise. ### GetComputeStatus502Ok -`func (o *OriginInspectorValues) GetComputeStatus502Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus502Ok() (*int64, bool)` GetComputeStatus502Ok returns a tuple with the ComputeStatus502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus502 -`func (o *OriginInspectorValues) SetComputeStatus502(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus502(v int64)` SetComputeStatus502 sets ComputeStatus502 field to given value. @@ -2653,20 +2653,20 @@ HasComputeStatus502 returns a boolean if a field has been set. ### GetComputeStatus503 -`func (o *OriginInspectorValues) GetComputeStatus503() int32` +`func (o *OriginInspectorValues) GetComputeStatus503() int64` GetComputeStatus503 returns the ComputeStatus503 field if non-nil, zero value otherwise. ### GetComputeStatus503Ok -`func (o *OriginInspectorValues) GetComputeStatus503Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus503Ok() (*int64, bool)` GetComputeStatus503Ok returns a tuple with the ComputeStatus503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus503 -`func (o *OriginInspectorValues) SetComputeStatus503(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus503(v int64)` SetComputeStatus503 sets ComputeStatus503 field to given value. @@ -2678,20 +2678,20 @@ HasComputeStatus503 returns a boolean if a field has been set. ### GetComputeStatus504 -`func (o *OriginInspectorValues) GetComputeStatus504() int32` +`func (o *OriginInspectorValues) GetComputeStatus504() int64` GetComputeStatus504 returns the ComputeStatus504 field if non-nil, zero value otherwise. ### GetComputeStatus504Ok -`func (o *OriginInspectorValues) GetComputeStatus504Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus504Ok() (*int64, bool)` GetComputeStatus504Ok returns a tuple with the ComputeStatus504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus504 -`func (o *OriginInspectorValues) SetComputeStatus504(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus504(v int64)` SetComputeStatus504 sets ComputeStatus504 field to given value. @@ -2703,20 +2703,20 @@ HasComputeStatus504 returns a boolean if a field has been set. ### GetComputeStatus505 -`func (o *OriginInspectorValues) GetComputeStatus505() int32` +`func (o *OriginInspectorValues) GetComputeStatus505() int64` GetComputeStatus505 returns the ComputeStatus505 field if non-nil, zero value otherwise. ### GetComputeStatus505Ok -`func (o *OriginInspectorValues) GetComputeStatus505Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeStatus505Ok() (*int64, bool)` GetComputeStatus505Ok returns a tuple with the ComputeStatus505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStatus505 -`func (o *OriginInspectorValues) SetComputeStatus505(v int32)` +`func (o *OriginInspectorValues) SetComputeStatus505(v int64)` SetComputeStatus505 sets ComputeStatus505 field to given value. @@ -2728,20 +2728,20 @@ HasComputeStatus505 returns a boolean if a field has been set. ### GetComputeLatency0To1ms -`func (o *OriginInspectorValues) GetComputeLatency0To1ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency0To1ms() int64` GetComputeLatency0To1ms returns the ComputeLatency0To1ms field if non-nil, zero value otherwise. ### GetComputeLatency0To1msOk -`func (o *OriginInspectorValues) GetComputeLatency0To1msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency0To1msOk() (*int64, bool)` GetComputeLatency0To1msOk returns a tuple with the ComputeLatency0To1ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency0To1ms -`func (o *OriginInspectorValues) SetComputeLatency0To1ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency0To1ms(v int64)` SetComputeLatency0To1ms sets ComputeLatency0To1ms field to given value. @@ -2753,20 +2753,20 @@ HasComputeLatency0To1ms returns a boolean if a field has been set. ### GetComputeLatency1To5ms -`func (o *OriginInspectorValues) GetComputeLatency1To5ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency1To5ms() int64` GetComputeLatency1To5ms returns the ComputeLatency1To5ms field if non-nil, zero value otherwise. ### GetComputeLatency1To5msOk -`func (o *OriginInspectorValues) GetComputeLatency1To5msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency1To5msOk() (*int64, bool)` GetComputeLatency1To5msOk returns a tuple with the ComputeLatency1To5ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency1To5ms -`func (o *OriginInspectorValues) SetComputeLatency1To5ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency1To5ms(v int64)` SetComputeLatency1To5ms sets ComputeLatency1To5ms field to given value. @@ -2778,20 +2778,20 @@ HasComputeLatency1To5ms returns a boolean if a field has been set. ### GetComputeLatency5To10ms -`func (o *OriginInspectorValues) GetComputeLatency5To10ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency5To10ms() int64` GetComputeLatency5To10ms returns the ComputeLatency5To10ms field if non-nil, zero value otherwise. ### GetComputeLatency5To10msOk -`func (o *OriginInspectorValues) GetComputeLatency5To10msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency5To10msOk() (*int64, bool)` GetComputeLatency5To10msOk returns a tuple with the ComputeLatency5To10ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency5To10ms -`func (o *OriginInspectorValues) SetComputeLatency5To10ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency5To10ms(v int64)` SetComputeLatency5To10ms sets ComputeLatency5To10ms field to given value. @@ -2803,20 +2803,20 @@ HasComputeLatency5To10ms returns a boolean if a field has been set. ### GetComputeLatency10To50ms -`func (o *OriginInspectorValues) GetComputeLatency10To50ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency10To50ms() int64` GetComputeLatency10To50ms returns the ComputeLatency10To50ms field if non-nil, zero value otherwise. ### GetComputeLatency10To50msOk -`func (o *OriginInspectorValues) GetComputeLatency10To50msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency10To50msOk() (*int64, bool)` GetComputeLatency10To50msOk returns a tuple with the ComputeLatency10To50ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency10To50ms -`func (o *OriginInspectorValues) SetComputeLatency10To50ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency10To50ms(v int64)` SetComputeLatency10To50ms sets ComputeLatency10To50ms field to given value. @@ -2828,20 +2828,20 @@ HasComputeLatency10To50ms returns a boolean if a field has been set. ### GetComputeLatency50To100ms -`func (o *OriginInspectorValues) GetComputeLatency50To100ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency50To100ms() int64` GetComputeLatency50To100ms returns the ComputeLatency50To100ms field if non-nil, zero value otherwise. ### GetComputeLatency50To100msOk -`func (o *OriginInspectorValues) GetComputeLatency50To100msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency50To100msOk() (*int64, bool)` GetComputeLatency50To100msOk returns a tuple with the ComputeLatency50To100ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency50To100ms -`func (o *OriginInspectorValues) SetComputeLatency50To100ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency50To100ms(v int64)` SetComputeLatency50To100ms sets ComputeLatency50To100ms field to given value. @@ -2853,20 +2853,20 @@ HasComputeLatency50To100ms returns a boolean if a field has been set. ### GetComputeLatency100To250ms -`func (o *OriginInspectorValues) GetComputeLatency100To250ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency100To250ms() int64` GetComputeLatency100To250ms returns the ComputeLatency100To250ms field if non-nil, zero value otherwise. ### GetComputeLatency100To250msOk -`func (o *OriginInspectorValues) GetComputeLatency100To250msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency100To250msOk() (*int64, bool)` GetComputeLatency100To250msOk returns a tuple with the ComputeLatency100To250ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency100To250ms -`func (o *OriginInspectorValues) SetComputeLatency100To250ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency100To250ms(v int64)` SetComputeLatency100To250ms sets ComputeLatency100To250ms field to given value. @@ -2878,20 +2878,20 @@ HasComputeLatency100To250ms returns a boolean if a field has been set. ### GetComputeLatency250To500ms -`func (o *OriginInspectorValues) GetComputeLatency250To500ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency250To500ms() int64` GetComputeLatency250To500ms returns the ComputeLatency250To500ms field if non-nil, zero value otherwise. ### GetComputeLatency250To500msOk -`func (o *OriginInspectorValues) GetComputeLatency250To500msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency250To500msOk() (*int64, bool)` GetComputeLatency250To500msOk returns a tuple with the ComputeLatency250To500ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency250To500ms -`func (o *OriginInspectorValues) SetComputeLatency250To500ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency250To500ms(v int64)` SetComputeLatency250To500ms sets ComputeLatency250To500ms field to given value. @@ -2903,20 +2903,20 @@ HasComputeLatency250To500ms returns a boolean if a field has been set. ### GetComputeLatency500To1000ms -`func (o *OriginInspectorValues) GetComputeLatency500To1000ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency500To1000ms() int64` GetComputeLatency500To1000ms returns the ComputeLatency500To1000ms field if non-nil, zero value otherwise. ### GetComputeLatency500To1000msOk -`func (o *OriginInspectorValues) GetComputeLatency500To1000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency500To1000msOk() (*int64, bool)` GetComputeLatency500To1000msOk returns a tuple with the ComputeLatency500To1000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency500To1000ms -`func (o *OriginInspectorValues) SetComputeLatency500To1000ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency500To1000ms(v int64)` SetComputeLatency500To1000ms sets ComputeLatency500To1000ms field to given value. @@ -2928,20 +2928,20 @@ HasComputeLatency500To1000ms returns a boolean if a field has been set. ### GetComputeLatency1000To5000ms -`func (o *OriginInspectorValues) GetComputeLatency1000To5000ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency1000To5000ms() int64` GetComputeLatency1000To5000ms returns the ComputeLatency1000To5000ms field if non-nil, zero value otherwise. ### GetComputeLatency1000To5000msOk -`func (o *OriginInspectorValues) GetComputeLatency1000To5000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency1000To5000msOk() (*int64, bool)` GetComputeLatency1000To5000msOk returns a tuple with the ComputeLatency1000To5000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency1000To5000ms -`func (o *OriginInspectorValues) SetComputeLatency1000To5000ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency1000To5000ms(v int64)` SetComputeLatency1000To5000ms sets ComputeLatency1000To5000ms field to given value. @@ -2953,20 +2953,20 @@ HasComputeLatency1000To5000ms returns a boolean if a field has been set. ### GetComputeLatency5000To10000ms -`func (o *OriginInspectorValues) GetComputeLatency5000To10000ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency5000To10000ms() int64` GetComputeLatency5000To10000ms returns the ComputeLatency5000To10000ms field if non-nil, zero value otherwise. ### GetComputeLatency5000To10000msOk -`func (o *OriginInspectorValues) GetComputeLatency5000To10000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency5000To10000msOk() (*int64, bool)` GetComputeLatency5000To10000msOk returns a tuple with the ComputeLatency5000To10000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency5000To10000ms -`func (o *OriginInspectorValues) SetComputeLatency5000To10000ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency5000To10000ms(v int64)` SetComputeLatency5000To10000ms sets ComputeLatency5000To10000ms field to given value. @@ -2978,20 +2978,20 @@ HasComputeLatency5000To10000ms returns a boolean if a field has been set. ### GetComputeLatency10000To60000ms -`func (o *OriginInspectorValues) GetComputeLatency10000To60000ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency10000To60000ms() int64` GetComputeLatency10000To60000ms returns the ComputeLatency10000To60000ms field if non-nil, zero value otherwise. ### GetComputeLatency10000To60000msOk -`func (o *OriginInspectorValues) GetComputeLatency10000To60000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency10000To60000msOk() (*int64, bool)` GetComputeLatency10000To60000msOk returns a tuple with the ComputeLatency10000To60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency10000To60000ms -`func (o *OriginInspectorValues) SetComputeLatency10000To60000ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency10000To60000ms(v int64)` SetComputeLatency10000To60000ms sets ComputeLatency10000To60000ms field to given value. @@ -3003,20 +3003,20 @@ HasComputeLatency10000To60000ms returns a boolean if a field has been set. ### GetComputeLatency60000ms -`func (o *OriginInspectorValues) GetComputeLatency60000ms() int32` +`func (o *OriginInspectorValues) GetComputeLatency60000ms() int64` GetComputeLatency60000ms returns the ComputeLatency60000ms field if non-nil, zero value otherwise. ### GetComputeLatency60000msOk -`func (o *OriginInspectorValues) GetComputeLatency60000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetComputeLatency60000msOk() (*int64, bool)` GetComputeLatency60000msOk returns a tuple with the ComputeLatency60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeLatency60000ms -`func (o *OriginInspectorValues) SetComputeLatency60000ms(v int32)` +`func (o *OriginInspectorValues) SetComputeLatency60000ms(v int64)` SetComputeLatency60000ms sets ComputeLatency60000ms field to given value. @@ -3028,20 +3028,20 @@ HasComputeLatency60000ms returns a boolean if a field has been set. ### GetAllResponses -`func (o *OriginInspectorValues) GetAllResponses() int32` +`func (o *OriginInspectorValues) GetAllResponses() int64` GetAllResponses returns the AllResponses field if non-nil, zero value otherwise. ### GetAllResponsesOk -`func (o *OriginInspectorValues) GetAllResponsesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllResponsesOk() (*int64, bool)` GetAllResponsesOk returns a tuple with the AllResponses field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllResponses -`func (o *OriginInspectorValues) SetAllResponses(v int32)` +`func (o *OriginInspectorValues) SetAllResponses(v int64)` SetAllResponses sets AllResponses field to given value. @@ -3053,20 +3053,20 @@ HasAllResponses returns a boolean if a field has been set. ### GetAllRespHeaderBytes -`func (o *OriginInspectorValues) GetAllRespHeaderBytes() int32` +`func (o *OriginInspectorValues) GetAllRespHeaderBytes() int64` GetAllRespHeaderBytes returns the AllRespHeaderBytes field if non-nil, zero value otherwise. ### GetAllRespHeaderBytesOk -`func (o *OriginInspectorValues) GetAllRespHeaderBytesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllRespHeaderBytesOk() (*int64, bool)` GetAllRespHeaderBytesOk returns a tuple with the AllRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllRespHeaderBytes -`func (o *OriginInspectorValues) SetAllRespHeaderBytes(v int32)` +`func (o *OriginInspectorValues) SetAllRespHeaderBytes(v int64)` SetAllRespHeaderBytes sets AllRespHeaderBytes field to given value. @@ -3078,20 +3078,20 @@ HasAllRespHeaderBytes returns a boolean if a field has been set. ### GetAllRespBodyBytes -`func (o *OriginInspectorValues) GetAllRespBodyBytes() int32` +`func (o *OriginInspectorValues) GetAllRespBodyBytes() int64` GetAllRespBodyBytes returns the AllRespBodyBytes field if non-nil, zero value otherwise. ### GetAllRespBodyBytesOk -`func (o *OriginInspectorValues) GetAllRespBodyBytesOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllRespBodyBytesOk() (*int64, bool)` GetAllRespBodyBytesOk returns a tuple with the AllRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllRespBodyBytes -`func (o *OriginInspectorValues) SetAllRespBodyBytes(v int32)` +`func (o *OriginInspectorValues) SetAllRespBodyBytes(v int64)` SetAllRespBodyBytes sets AllRespBodyBytes field to given value. @@ -3103,20 +3103,20 @@ HasAllRespBodyBytes returns a boolean if a field has been set. ### GetAllStatus1xx -`func (o *OriginInspectorValues) GetAllStatus1xx() int32` +`func (o *OriginInspectorValues) GetAllStatus1xx() int64` GetAllStatus1xx returns the AllStatus1xx field if non-nil, zero value otherwise. ### GetAllStatus1xxOk -`func (o *OriginInspectorValues) GetAllStatus1xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus1xxOk() (*int64, bool)` GetAllStatus1xxOk returns a tuple with the AllStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus1xx -`func (o *OriginInspectorValues) SetAllStatus1xx(v int32)` +`func (o *OriginInspectorValues) SetAllStatus1xx(v int64)` SetAllStatus1xx sets AllStatus1xx field to given value. @@ -3128,20 +3128,20 @@ HasAllStatus1xx returns a boolean if a field has been set. ### GetAllStatus2xx -`func (o *OriginInspectorValues) GetAllStatus2xx() int32` +`func (o *OriginInspectorValues) GetAllStatus2xx() int64` GetAllStatus2xx returns the AllStatus2xx field if non-nil, zero value otherwise. ### GetAllStatus2xxOk -`func (o *OriginInspectorValues) GetAllStatus2xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus2xxOk() (*int64, bool)` GetAllStatus2xxOk returns a tuple with the AllStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus2xx -`func (o *OriginInspectorValues) SetAllStatus2xx(v int32)` +`func (o *OriginInspectorValues) SetAllStatus2xx(v int64)` SetAllStatus2xx sets AllStatus2xx field to given value. @@ -3153,20 +3153,20 @@ HasAllStatus2xx returns a boolean if a field has been set. ### GetAllStatus3xx -`func (o *OriginInspectorValues) GetAllStatus3xx() int32` +`func (o *OriginInspectorValues) GetAllStatus3xx() int64` GetAllStatus3xx returns the AllStatus3xx field if non-nil, zero value otherwise. ### GetAllStatus3xxOk -`func (o *OriginInspectorValues) GetAllStatus3xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus3xxOk() (*int64, bool)` GetAllStatus3xxOk returns a tuple with the AllStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus3xx -`func (o *OriginInspectorValues) SetAllStatus3xx(v int32)` +`func (o *OriginInspectorValues) SetAllStatus3xx(v int64)` SetAllStatus3xx sets AllStatus3xx field to given value. @@ -3178,20 +3178,20 @@ HasAllStatus3xx returns a boolean if a field has been set. ### GetAllStatus4xx -`func (o *OriginInspectorValues) GetAllStatus4xx() int32` +`func (o *OriginInspectorValues) GetAllStatus4xx() int64` GetAllStatus4xx returns the AllStatus4xx field if non-nil, zero value otherwise. ### GetAllStatus4xxOk -`func (o *OriginInspectorValues) GetAllStatus4xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus4xxOk() (*int64, bool)` GetAllStatus4xxOk returns a tuple with the AllStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus4xx -`func (o *OriginInspectorValues) SetAllStatus4xx(v int32)` +`func (o *OriginInspectorValues) SetAllStatus4xx(v int64)` SetAllStatus4xx sets AllStatus4xx field to given value. @@ -3203,20 +3203,20 @@ HasAllStatus4xx returns a boolean if a field has been set. ### GetAllStatus5xx -`func (o *OriginInspectorValues) GetAllStatus5xx() int32` +`func (o *OriginInspectorValues) GetAllStatus5xx() int64` GetAllStatus5xx returns the AllStatus5xx field if non-nil, zero value otherwise. ### GetAllStatus5xxOk -`func (o *OriginInspectorValues) GetAllStatus5xxOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus5xxOk() (*int64, bool)` GetAllStatus5xxOk returns a tuple with the AllStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus5xx -`func (o *OriginInspectorValues) SetAllStatus5xx(v int32)` +`func (o *OriginInspectorValues) SetAllStatus5xx(v int64)` SetAllStatus5xx sets AllStatus5xx field to given value. @@ -3228,20 +3228,20 @@ HasAllStatus5xx returns a boolean if a field has been set. ### GetAllStatus200 -`func (o *OriginInspectorValues) GetAllStatus200() int32` +`func (o *OriginInspectorValues) GetAllStatus200() int64` GetAllStatus200 returns the AllStatus200 field if non-nil, zero value otherwise. ### GetAllStatus200Ok -`func (o *OriginInspectorValues) GetAllStatus200Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus200Ok() (*int64, bool)` GetAllStatus200Ok returns a tuple with the AllStatus200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus200 -`func (o *OriginInspectorValues) SetAllStatus200(v int32)` +`func (o *OriginInspectorValues) SetAllStatus200(v int64)` SetAllStatus200 sets AllStatus200 field to given value. @@ -3253,20 +3253,20 @@ HasAllStatus200 returns a boolean if a field has been set. ### GetAllStatus204 -`func (o *OriginInspectorValues) GetAllStatus204() int32` +`func (o *OriginInspectorValues) GetAllStatus204() int64` GetAllStatus204 returns the AllStatus204 field if non-nil, zero value otherwise. ### GetAllStatus204Ok -`func (o *OriginInspectorValues) GetAllStatus204Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus204Ok() (*int64, bool)` GetAllStatus204Ok returns a tuple with the AllStatus204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus204 -`func (o *OriginInspectorValues) SetAllStatus204(v int32)` +`func (o *OriginInspectorValues) SetAllStatus204(v int64)` SetAllStatus204 sets AllStatus204 field to given value. @@ -3278,20 +3278,20 @@ HasAllStatus204 returns a boolean if a field has been set. ### GetAllStatus206 -`func (o *OriginInspectorValues) GetAllStatus206() int32` +`func (o *OriginInspectorValues) GetAllStatus206() int64` GetAllStatus206 returns the AllStatus206 field if non-nil, zero value otherwise. ### GetAllStatus206Ok -`func (o *OriginInspectorValues) GetAllStatus206Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus206Ok() (*int64, bool)` GetAllStatus206Ok returns a tuple with the AllStatus206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus206 -`func (o *OriginInspectorValues) SetAllStatus206(v int32)` +`func (o *OriginInspectorValues) SetAllStatus206(v int64)` SetAllStatus206 sets AllStatus206 field to given value. @@ -3303,20 +3303,20 @@ HasAllStatus206 returns a boolean if a field has been set. ### GetAllStatus301 -`func (o *OriginInspectorValues) GetAllStatus301() int32` +`func (o *OriginInspectorValues) GetAllStatus301() int64` GetAllStatus301 returns the AllStatus301 field if non-nil, zero value otherwise. ### GetAllStatus301Ok -`func (o *OriginInspectorValues) GetAllStatus301Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus301Ok() (*int64, bool)` GetAllStatus301Ok returns a tuple with the AllStatus301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus301 -`func (o *OriginInspectorValues) SetAllStatus301(v int32)` +`func (o *OriginInspectorValues) SetAllStatus301(v int64)` SetAllStatus301 sets AllStatus301 field to given value. @@ -3328,20 +3328,20 @@ HasAllStatus301 returns a boolean if a field has been set. ### GetAllStatus302 -`func (o *OriginInspectorValues) GetAllStatus302() int32` +`func (o *OriginInspectorValues) GetAllStatus302() int64` GetAllStatus302 returns the AllStatus302 field if non-nil, zero value otherwise. ### GetAllStatus302Ok -`func (o *OriginInspectorValues) GetAllStatus302Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus302Ok() (*int64, bool)` GetAllStatus302Ok returns a tuple with the AllStatus302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus302 -`func (o *OriginInspectorValues) SetAllStatus302(v int32)` +`func (o *OriginInspectorValues) SetAllStatus302(v int64)` SetAllStatus302 sets AllStatus302 field to given value. @@ -3353,20 +3353,20 @@ HasAllStatus302 returns a boolean if a field has been set. ### GetAllStatus304 -`func (o *OriginInspectorValues) GetAllStatus304() int32` +`func (o *OriginInspectorValues) GetAllStatus304() int64` GetAllStatus304 returns the AllStatus304 field if non-nil, zero value otherwise. ### GetAllStatus304Ok -`func (o *OriginInspectorValues) GetAllStatus304Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus304Ok() (*int64, bool)` GetAllStatus304Ok returns a tuple with the AllStatus304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus304 -`func (o *OriginInspectorValues) SetAllStatus304(v int32)` +`func (o *OriginInspectorValues) SetAllStatus304(v int64)` SetAllStatus304 sets AllStatus304 field to given value. @@ -3378,20 +3378,20 @@ HasAllStatus304 returns a boolean if a field has been set. ### GetAllStatus400 -`func (o *OriginInspectorValues) GetAllStatus400() int32` +`func (o *OriginInspectorValues) GetAllStatus400() int64` GetAllStatus400 returns the AllStatus400 field if non-nil, zero value otherwise. ### GetAllStatus400Ok -`func (o *OriginInspectorValues) GetAllStatus400Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus400Ok() (*int64, bool)` GetAllStatus400Ok returns a tuple with the AllStatus400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus400 -`func (o *OriginInspectorValues) SetAllStatus400(v int32)` +`func (o *OriginInspectorValues) SetAllStatus400(v int64)` SetAllStatus400 sets AllStatus400 field to given value. @@ -3403,20 +3403,20 @@ HasAllStatus400 returns a boolean if a field has been set. ### GetAllStatus401 -`func (o *OriginInspectorValues) GetAllStatus401() int32` +`func (o *OriginInspectorValues) GetAllStatus401() int64` GetAllStatus401 returns the AllStatus401 field if non-nil, zero value otherwise. ### GetAllStatus401Ok -`func (o *OriginInspectorValues) GetAllStatus401Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus401Ok() (*int64, bool)` GetAllStatus401Ok returns a tuple with the AllStatus401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus401 -`func (o *OriginInspectorValues) SetAllStatus401(v int32)` +`func (o *OriginInspectorValues) SetAllStatus401(v int64)` SetAllStatus401 sets AllStatus401 field to given value. @@ -3428,20 +3428,20 @@ HasAllStatus401 returns a boolean if a field has been set. ### GetAllStatus403 -`func (o *OriginInspectorValues) GetAllStatus403() int32` +`func (o *OriginInspectorValues) GetAllStatus403() int64` GetAllStatus403 returns the AllStatus403 field if non-nil, zero value otherwise. ### GetAllStatus403Ok -`func (o *OriginInspectorValues) GetAllStatus403Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus403Ok() (*int64, bool)` GetAllStatus403Ok returns a tuple with the AllStatus403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus403 -`func (o *OriginInspectorValues) SetAllStatus403(v int32)` +`func (o *OriginInspectorValues) SetAllStatus403(v int64)` SetAllStatus403 sets AllStatus403 field to given value. @@ -3453,20 +3453,20 @@ HasAllStatus403 returns a boolean if a field has been set. ### GetAllStatus404 -`func (o *OriginInspectorValues) GetAllStatus404() int32` +`func (o *OriginInspectorValues) GetAllStatus404() int64` GetAllStatus404 returns the AllStatus404 field if non-nil, zero value otherwise. ### GetAllStatus404Ok -`func (o *OriginInspectorValues) GetAllStatus404Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus404Ok() (*int64, bool)` GetAllStatus404Ok returns a tuple with the AllStatus404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus404 -`func (o *OriginInspectorValues) SetAllStatus404(v int32)` +`func (o *OriginInspectorValues) SetAllStatus404(v int64)` SetAllStatus404 sets AllStatus404 field to given value. @@ -3478,20 +3478,20 @@ HasAllStatus404 returns a boolean if a field has been set. ### GetAllStatus416 -`func (o *OriginInspectorValues) GetAllStatus416() int32` +`func (o *OriginInspectorValues) GetAllStatus416() int64` GetAllStatus416 returns the AllStatus416 field if non-nil, zero value otherwise. ### GetAllStatus416Ok -`func (o *OriginInspectorValues) GetAllStatus416Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus416Ok() (*int64, bool)` GetAllStatus416Ok returns a tuple with the AllStatus416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus416 -`func (o *OriginInspectorValues) SetAllStatus416(v int32)` +`func (o *OriginInspectorValues) SetAllStatus416(v int64)` SetAllStatus416 sets AllStatus416 field to given value. @@ -3503,20 +3503,20 @@ HasAllStatus416 returns a boolean if a field has been set. ### GetAllStatus429 -`func (o *OriginInspectorValues) GetAllStatus429() int32` +`func (o *OriginInspectorValues) GetAllStatus429() int64` GetAllStatus429 returns the AllStatus429 field if non-nil, zero value otherwise. ### GetAllStatus429Ok -`func (o *OriginInspectorValues) GetAllStatus429Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus429Ok() (*int64, bool)` GetAllStatus429Ok returns a tuple with the AllStatus429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus429 -`func (o *OriginInspectorValues) SetAllStatus429(v int32)` +`func (o *OriginInspectorValues) SetAllStatus429(v int64)` SetAllStatus429 sets AllStatus429 field to given value. @@ -3528,20 +3528,20 @@ HasAllStatus429 returns a boolean if a field has been set. ### GetAllStatus500 -`func (o *OriginInspectorValues) GetAllStatus500() int32` +`func (o *OriginInspectorValues) GetAllStatus500() int64` GetAllStatus500 returns the AllStatus500 field if non-nil, zero value otherwise. ### GetAllStatus500Ok -`func (o *OriginInspectorValues) GetAllStatus500Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus500Ok() (*int64, bool)` GetAllStatus500Ok returns a tuple with the AllStatus500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus500 -`func (o *OriginInspectorValues) SetAllStatus500(v int32)` +`func (o *OriginInspectorValues) SetAllStatus500(v int64)` SetAllStatus500 sets AllStatus500 field to given value. @@ -3553,20 +3553,20 @@ HasAllStatus500 returns a boolean if a field has been set. ### GetAllStatus501 -`func (o *OriginInspectorValues) GetAllStatus501() int32` +`func (o *OriginInspectorValues) GetAllStatus501() int64` GetAllStatus501 returns the AllStatus501 field if non-nil, zero value otherwise. ### GetAllStatus501Ok -`func (o *OriginInspectorValues) GetAllStatus501Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus501Ok() (*int64, bool)` GetAllStatus501Ok returns a tuple with the AllStatus501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus501 -`func (o *OriginInspectorValues) SetAllStatus501(v int32)` +`func (o *OriginInspectorValues) SetAllStatus501(v int64)` SetAllStatus501 sets AllStatus501 field to given value. @@ -3578,20 +3578,20 @@ HasAllStatus501 returns a boolean if a field has been set. ### GetAllStatus502 -`func (o *OriginInspectorValues) GetAllStatus502() int32` +`func (o *OriginInspectorValues) GetAllStatus502() int64` GetAllStatus502 returns the AllStatus502 field if non-nil, zero value otherwise. ### GetAllStatus502Ok -`func (o *OriginInspectorValues) GetAllStatus502Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus502Ok() (*int64, bool)` GetAllStatus502Ok returns a tuple with the AllStatus502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus502 -`func (o *OriginInspectorValues) SetAllStatus502(v int32)` +`func (o *OriginInspectorValues) SetAllStatus502(v int64)` SetAllStatus502 sets AllStatus502 field to given value. @@ -3603,20 +3603,20 @@ HasAllStatus502 returns a boolean if a field has been set. ### GetAllStatus503 -`func (o *OriginInspectorValues) GetAllStatus503() int32` +`func (o *OriginInspectorValues) GetAllStatus503() int64` GetAllStatus503 returns the AllStatus503 field if non-nil, zero value otherwise. ### GetAllStatus503Ok -`func (o *OriginInspectorValues) GetAllStatus503Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus503Ok() (*int64, bool)` GetAllStatus503Ok returns a tuple with the AllStatus503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus503 -`func (o *OriginInspectorValues) SetAllStatus503(v int32)` +`func (o *OriginInspectorValues) SetAllStatus503(v int64)` SetAllStatus503 sets AllStatus503 field to given value. @@ -3628,20 +3628,20 @@ HasAllStatus503 returns a boolean if a field has been set. ### GetAllStatus504 -`func (o *OriginInspectorValues) GetAllStatus504() int32` +`func (o *OriginInspectorValues) GetAllStatus504() int64` GetAllStatus504 returns the AllStatus504 field if non-nil, zero value otherwise. ### GetAllStatus504Ok -`func (o *OriginInspectorValues) GetAllStatus504Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus504Ok() (*int64, bool)` GetAllStatus504Ok returns a tuple with the AllStatus504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus504 -`func (o *OriginInspectorValues) SetAllStatus504(v int32)` +`func (o *OriginInspectorValues) SetAllStatus504(v int64)` SetAllStatus504 sets AllStatus504 field to given value. @@ -3653,20 +3653,20 @@ HasAllStatus504 returns a boolean if a field has been set. ### GetAllStatus505 -`func (o *OriginInspectorValues) GetAllStatus505() int32` +`func (o *OriginInspectorValues) GetAllStatus505() int64` GetAllStatus505 returns the AllStatus505 field if non-nil, zero value otherwise. ### GetAllStatus505Ok -`func (o *OriginInspectorValues) GetAllStatus505Ok() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllStatus505Ok() (*int64, bool)` GetAllStatus505Ok returns a tuple with the AllStatus505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus505 -`func (o *OriginInspectorValues) SetAllStatus505(v int32)` +`func (o *OriginInspectorValues) SetAllStatus505(v int64)` SetAllStatus505 sets AllStatus505 field to given value. @@ -3678,20 +3678,20 @@ HasAllStatus505 returns a boolean if a field has been set. ### GetAllLatency0To1ms -`func (o *OriginInspectorValues) GetAllLatency0To1ms() int32` +`func (o *OriginInspectorValues) GetAllLatency0To1ms() int64` GetAllLatency0To1ms returns the AllLatency0To1ms field if non-nil, zero value otherwise. ### GetAllLatency0To1msOk -`func (o *OriginInspectorValues) GetAllLatency0To1msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency0To1msOk() (*int64, bool)` GetAllLatency0To1msOk returns a tuple with the AllLatency0To1ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency0To1ms -`func (o *OriginInspectorValues) SetAllLatency0To1ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency0To1ms(v int64)` SetAllLatency0To1ms sets AllLatency0To1ms field to given value. @@ -3703,20 +3703,20 @@ HasAllLatency0To1ms returns a boolean if a field has been set. ### GetAllLatency1To5ms -`func (o *OriginInspectorValues) GetAllLatency1To5ms() int32` +`func (o *OriginInspectorValues) GetAllLatency1To5ms() int64` GetAllLatency1To5ms returns the AllLatency1To5ms field if non-nil, zero value otherwise. ### GetAllLatency1To5msOk -`func (o *OriginInspectorValues) GetAllLatency1To5msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency1To5msOk() (*int64, bool)` GetAllLatency1To5msOk returns a tuple with the AllLatency1To5ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency1To5ms -`func (o *OriginInspectorValues) SetAllLatency1To5ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency1To5ms(v int64)` SetAllLatency1To5ms sets AllLatency1To5ms field to given value. @@ -3728,20 +3728,20 @@ HasAllLatency1To5ms returns a boolean if a field has been set. ### GetAllLatency5To10ms -`func (o *OriginInspectorValues) GetAllLatency5To10ms() int32` +`func (o *OriginInspectorValues) GetAllLatency5To10ms() int64` GetAllLatency5To10ms returns the AllLatency5To10ms field if non-nil, zero value otherwise. ### GetAllLatency5To10msOk -`func (o *OriginInspectorValues) GetAllLatency5To10msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency5To10msOk() (*int64, bool)` GetAllLatency5To10msOk returns a tuple with the AllLatency5To10ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency5To10ms -`func (o *OriginInspectorValues) SetAllLatency5To10ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency5To10ms(v int64)` SetAllLatency5To10ms sets AllLatency5To10ms field to given value. @@ -3753,20 +3753,20 @@ HasAllLatency5To10ms returns a boolean if a field has been set. ### GetAllLatency10To50ms -`func (o *OriginInspectorValues) GetAllLatency10To50ms() int32` +`func (o *OriginInspectorValues) GetAllLatency10To50ms() int64` GetAllLatency10To50ms returns the AllLatency10To50ms field if non-nil, zero value otherwise. ### GetAllLatency10To50msOk -`func (o *OriginInspectorValues) GetAllLatency10To50msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency10To50msOk() (*int64, bool)` GetAllLatency10To50msOk returns a tuple with the AllLatency10To50ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency10To50ms -`func (o *OriginInspectorValues) SetAllLatency10To50ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency10To50ms(v int64)` SetAllLatency10To50ms sets AllLatency10To50ms field to given value. @@ -3778,20 +3778,20 @@ HasAllLatency10To50ms returns a boolean if a field has been set. ### GetAllLatency50To100ms -`func (o *OriginInspectorValues) GetAllLatency50To100ms() int32` +`func (o *OriginInspectorValues) GetAllLatency50To100ms() int64` GetAllLatency50To100ms returns the AllLatency50To100ms field if non-nil, zero value otherwise. ### GetAllLatency50To100msOk -`func (o *OriginInspectorValues) GetAllLatency50To100msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency50To100msOk() (*int64, bool)` GetAllLatency50To100msOk returns a tuple with the AllLatency50To100ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency50To100ms -`func (o *OriginInspectorValues) SetAllLatency50To100ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency50To100ms(v int64)` SetAllLatency50To100ms sets AllLatency50To100ms field to given value. @@ -3803,20 +3803,20 @@ HasAllLatency50To100ms returns a boolean if a field has been set. ### GetAllLatency100To250ms -`func (o *OriginInspectorValues) GetAllLatency100To250ms() int32` +`func (o *OriginInspectorValues) GetAllLatency100To250ms() int64` GetAllLatency100To250ms returns the AllLatency100To250ms field if non-nil, zero value otherwise. ### GetAllLatency100To250msOk -`func (o *OriginInspectorValues) GetAllLatency100To250msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency100To250msOk() (*int64, bool)` GetAllLatency100To250msOk returns a tuple with the AllLatency100To250ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency100To250ms -`func (o *OriginInspectorValues) SetAllLatency100To250ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency100To250ms(v int64)` SetAllLatency100To250ms sets AllLatency100To250ms field to given value. @@ -3828,20 +3828,20 @@ HasAllLatency100To250ms returns a boolean if a field has been set. ### GetAllLatency250To500ms -`func (o *OriginInspectorValues) GetAllLatency250To500ms() int32` +`func (o *OriginInspectorValues) GetAllLatency250To500ms() int64` GetAllLatency250To500ms returns the AllLatency250To500ms field if non-nil, zero value otherwise. ### GetAllLatency250To500msOk -`func (o *OriginInspectorValues) GetAllLatency250To500msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency250To500msOk() (*int64, bool)` GetAllLatency250To500msOk returns a tuple with the AllLatency250To500ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency250To500ms -`func (o *OriginInspectorValues) SetAllLatency250To500ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency250To500ms(v int64)` SetAllLatency250To500ms sets AllLatency250To500ms field to given value. @@ -3853,20 +3853,20 @@ HasAllLatency250To500ms returns a boolean if a field has been set. ### GetAllLatency500To1000ms -`func (o *OriginInspectorValues) GetAllLatency500To1000ms() int32` +`func (o *OriginInspectorValues) GetAllLatency500To1000ms() int64` GetAllLatency500To1000ms returns the AllLatency500To1000ms field if non-nil, zero value otherwise. ### GetAllLatency500To1000msOk -`func (o *OriginInspectorValues) GetAllLatency500To1000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency500To1000msOk() (*int64, bool)` GetAllLatency500To1000msOk returns a tuple with the AllLatency500To1000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency500To1000ms -`func (o *OriginInspectorValues) SetAllLatency500To1000ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency500To1000ms(v int64)` SetAllLatency500To1000ms sets AllLatency500To1000ms field to given value. @@ -3878,20 +3878,20 @@ HasAllLatency500To1000ms returns a boolean if a field has been set. ### GetAllLatency1000To5000ms -`func (o *OriginInspectorValues) GetAllLatency1000To5000ms() int32` +`func (o *OriginInspectorValues) GetAllLatency1000To5000ms() int64` GetAllLatency1000To5000ms returns the AllLatency1000To5000ms field if non-nil, zero value otherwise. ### GetAllLatency1000To5000msOk -`func (o *OriginInspectorValues) GetAllLatency1000To5000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency1000To5000msOk() (*int64, bool)` GetAllLatency1000To5000msOk returns a tuple with the AllLatency1000To5000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency1000To5000ms -`func (o *OriginInspectorValues) SetAllLatency1000To5000ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency1000To5000ms(v int64)` SetAllLatency1000To5000ms sets AllLatency1000To5000ms field to given value. @@ -3903,20 +3903,20 @@ HasAllLatency1000To5000ms returns a boolean if a field has been set. ### GetAllLatency5000To10000ms -`func (o *OriginInspectorValues) GetAllLatency5000To10000ms() int32` +`func (o *OriginInspectorValues) GetAllLatency5000To10000ms() int64` GetAllLatency5000To10000ms returns the AllLatency5000To10000ms field if non-nil, zero value otherwise. ### GetAllLatency5000To10000msOk -`func (o *OriginInspectorValues) GetAllLatency5000To10000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency5000To10000msOk() (*int64, bool)` GetAllLatency5000To10000msOk returns a tuple with the AllLatency5000To10000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency5000To10000ms -`func (o *OriginInspectorValues) SetAllLatency5000To10000ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency5000To10000ms(v int64)` SetAllLatency5000To10000ms sets AllLatency5000To10000ms field to given value. @@ -3928,20 +3928,20 @@ HasAllLatency5000To10000ms returns a boolean if a field has been set. ### GetAllLatency10000To60000ms -`func (o *OriginInspectorValues) GetAllLatency10000To60000ms() int32` +`func (o *OriginInspectorValues) GetAllLatency10000To60000ms() int64` GetAllLatency10000To60000ms returns the AllLatency10000To60000ms field if non-nil, zero value otherwise. ### GetAllLatency10000To60000msOk -`func (o *OriginInspectorValues) GetAllLatency10000To60000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency10000To60000msOk() (*int64, bool)` GetAllLatency10000To60000msOk returns a tuple with the AllLatency10000To60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency10000To60000ms -`func (o *OriginInspectorValues) SetAllLatency10000To60000ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency10000To60000ms(v int64)` SetAllLatency10000To60000ms sets AllLatency10000To60000ms field to given value. @@ -3953,20 +3953,20 @@ HasAllLatency10000To60000ms returns a boolean if a field has been set. ### GetAllLatency60000ms -`func (o *OriginInspectorValues) GetAllLatency60000ms() int32` +`func (o *OriginInspectorValues) GetAllLatency60000ms() int64` GetAllLatency60000ms returns the AllLatency60000ms field if non-nil, zero value otherwise. ### GetAllLatency60000msOk -`func (o *OriginInspectorValues) GetAllLatency60000msOk() (*int32, bool)` +`func (o *OriginInspectorValues) GetAllLatency60000msOk() (*int64, bool)` GetAllLatency60000msOk returns a tuple with the AllLatency60000ms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllLatency60000ms -`func (o *OriginInspectorValues) SetAllLatency60000ms(v int32)` +`func (o *OriginInspectorValues) SetAllLatency60000ms(v int64)` SetAllLatency60000ms sets AllLatency60000ms field to given value. diff --git a/docs/Realtime.md b/docs/Realtime.md index eacbb92..33fbf64 100644 --- a/docs/Realtime.md +++ b/docs/Realtime.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Timestamp** | Pointer to **int32** | Value to use for subsequent requests. | [optional] -**AggregateDelay** | Pointer to **int32** | How long the system will wait before aggregating messages for each second. The most recent data returned will have happened at the moment of the request, minus the aggregation delay. | [optional] +**AggregateDelay** | Pointer to **int64** | How long the system will wait before aggregating messages for each second. The most recent data returned will have happened at the moment of the request, minus the aggregation delay. | [optional] **Data** | Pointer to [**[]RealtimeEntry**](RealtimeEntry.md) | A list of [records](#record-data-model), each representing one second of time. | [optional] ## Methods @@ -54,20 +54,20 @@ HasTimestamp returns a boolean if a field has been set. ### GetAggregateDelay -`func (o *Realtime) GetAggregateDelay() int32` +`func (o *Realtime) GetAggregateDelay() int64` GetAggregateDelay returns the AggregateDelay field if non-nil, zero value otherwise. ### GetAggregateDelayOk -`func (o *Realtime) GetAggregateDelayOk() (*int32, bool)` +`func (o *Realtime) GetAggregateDelayOk() (*int64, bool)` GetAggregateDelayOk returns a tuple with the AggregateDelay field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAggregateDelay -`func (o *Realtime) SetAggregateDelay(v int32)` +`func (o *Realtime) SetAggregateDelay(v int64)` SetAggregateDelay sets AggregateDelay field to given value. diff --git a/docs/RealtimeEntryAggregated.md b/docs/RealtimeEntryAggregated.md index 4c91da1..f8d8593 100644 --- a/docs/RealtimeEntryAggregated.md +++ b/docs/RealtimeEntryAggregated.md @@ -4,252 +4,252 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**Requests** | Pointer to **int32** | Number of requests processed. | [optional] -**Logging** | Pointer to **int32** | Number of log lines sent (alias for `log`). | [optional] -**Log** | Pointer to **int32** | Number of log lines sent. | [optional] -**RespHeaderBytes** | Pointer to **int32** | Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). | [optional] -**HeaderSize** | Pointer to **int32** | Total header bytes delivered (alias for resp_header_bytes). | [optional] -**RespBodyBytes** | Pointer to **int32** | Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). | [optional] -**BodySize** | Pointer to **int32** | Total body bytes delivered (alias for resp_body_bytes). | [optional] -**Hits** | Pointer to **int32** | Number of cache hits. | [optional] -**Miss** | Pointer to **int32** | Number of cache misses. | [optional] -**Pass** | Pointer to **int32** | Number of requests that passed through the CDN without being cached. | [optional] -**Synth** | Pointer to **int32** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). | [optional] -**Errors** | Pointer to **int32** | Number of cache errors. | [optional] +**Requests** | Pointer to **int64** | Number of requests processed. | [optional] +**Logging** | Pointer to **int64** | Number of log lines sent (alias for `log`). | [optional] +**Log** | Pointer to **int64** | Number of log lines sent. | [optional] +**RespHeaderBytes** | Pointer to **int64** | Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). | [optional] +**HeaderSize** | Pointer to **int64** | Total header bytes delivered (alias for resp_header_bytes). | [optional] +**RespBodyBytes** | Pointer to **int64** | Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). | [optional] +**BodySize** | Pointer to **int64** | Total body bytes delivered (alias for resp_body_bytes). | [optional] +**Hits** | Pointer to **int64** | Number of cache hits. | [optional] +**Miss** | Pointer to **int64** | Number of cache misses. | [optional] +**Pass** | Pointer to **int64** | Number of requests that passed through the CDN without being cached. | [optional] +**Synth** | Pointer to **int64** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). | [optional] +**Errors** | Pointer to **int64** | Number of cache errors. | [optional] **HitsTime** | Pointer to **float32** | Total amount of time spent processing cache hits (in seconds). | [optional] **MissTime** | Pointer to **float32** | Total amount of time spent processing cache misses (in seconds). | [optional] **MissHistogram** | Pointer to **map[string]map[string]any** | A histogram. The value in each bucket is the number of requests to the origin whose responses arrived during the time period represented by the bucket. The key of each bucket represents the upper bound (in response time) of that bucket. The buckets vary in width and cover the time periods 0-10ms (in 1ms increments), 10-250ms (in 10ms increments), 250-1,000ms (in 50ms increments), 1,000-3,000ms (in 100ms increments), 3,000-10,000ms (in 500 ms increments), 10,000-20,000ms (in 1,000ms increments), 20,000-60,000ms (in 5,000ms increments), and 60,000ms through infinity (in a single bucket). | [optional] -**ComputeRequests** | Pointer to **int32** | The total number of requests that were received for your service by Fastly. | [optional] +**ComputeRequests** | Pointer to **int64** | The total number of requests that were received for your service by Fastly. | [optional] **ComputeExecutionTimeMs** | Pointer to **float32** | The amount of active CPU time used to process your requests (in milliseconds). | [optional] -**ComputeRAMUsed** | Pointer to **int32** | The amount of RAM used for your service by Fastly (in bytes). | [optional] +**ComputeRAMUsed** | Pointer to **int64** | The amount of RAM used for your service by Fastly (in bytes). | [optional] **ComputeRequestTimeMs** | Pointer to **float32** | The total, actual amount of time used to process your requests, including active CPU time (in milliseconds). | [optional] **ComputeRequestTimeBilledMs** | Pointer to **float32** | The total amount of request processing time you will be billed for, measured in 50 millisecond increments. | [optional] -**Shield** | Pointer to **int32** | Number of requests from edge to the shield POP. | [optional] -**Ipv6** | Pointer to **int32** | Number of requests that were received over IPv6. | [optional] -**Imgopto** | Pointer to **int32** | Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. | [optional] -**ImgoptoShield** | Pointer to **int32** | Number of responses that came from the Fastly Image Optimizer service via a shield. | [optional] -**ImgoptoTransforms** | Pointer to **int32** | Number of transforms performed by the Fastly Image Optimizer service. | [optional] -**Otfp** | Pointer to **int32** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpShield** | Pointer to **int32** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand via a shield. | [optional] -**OtfpManifests** | Pointer to **int32** | Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**Video** | Pointer to **int32** | Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). | [optional] -**Pci** | Pointer to **int32** | Number of responses with the PCI flag turned on. | [optional] -**HTTP2** | Pointer to **int32** | Number of requests received over HTTP/2. | [optional] -**HTTP3** | Pointer to **int32** | Number of requests received over HTTP/3. | [optional] -**Restarts** | Pointer to **int32** | Number of restarts performed. | [optional] -**ReqHeaderBytes** | Pointer to **int32** | Total header bytes received. | [optional] -**ReqBodyBytes** | Pointer to **int32** | Total body bytes received. | [optional] -**BereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to origin. | [optional] -**BereqBodyBytes** | Pointer to **int32** | Total body bytes sent to origin. | [optional] -**WafBlocked** | Pointer to **int32** | Number of requests that triggered a WAF rule and were blocked. | [optional] -**WafLogged** | Pointer to **int32** | Number of requests that triggered a WAF rule and were logged. | [optional] -**WafPassed** | Pointer to **int32** | Number of requests that triggered a WAF rule and were passed. | [optional] -**AttackReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule. | [optional] -**AttackReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule. | [optional] -**AttackRespSynthBytes** | Pointer to **int32** | Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. | [optional] -**AttackLoggedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was logged. | [optional] -**AttackLoggedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was logged. | [optional] -**AttackBlockedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was blocked. | [optional] -**AttackBlockedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was blocked. | [optional] -**AttackPassedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was passed. | [optional] -**AttackPassedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was passed. | [optional] -**ShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield. | [optional] -**ShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield. | [optional] -**OtfpRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**Shield** | Pointer to **int64** | Number of requests from edge to the shield POP. | [optional] +**Ipv6** | Pointer to **int64** | Number of requests that were received over IPv6. | [optional] +**Imgopto** | Pointer to **int64** | Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. | [optional] +**ImgoptoShield** | Pointer to **int64** | Number of responses that came from the Fastly Image Optimizer service via a shield. | [optional] +**ImgoptoTransforms** | Pointer to **int64** | Number of transforms performed by the Fastly Image Optimizer service. | [optional] +**Otfp** | Pointer to **int64** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpShield** | Pointer to **int64** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand via a shield. | [optional] +**OtfpManifests** | Pointer to **int64** | Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**Video** | Pointer to **int64** | Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). | [optional] +**Pci** | Pointer to **int64** | Number of responses with the PCI flag turned on. | [optional] +**HTTP2** | Pointer to **int64** | Number of requests received over HTTP/2. | [optional] +**HTTP3** | Pointer to **int64** | Number of requests received over HTTP/3. | [optional] +**Restarts** | Pointer to **int64** | Number of restarts performed. | [optional] +**ReqHeaderBytes** | Pointer to **int64** | Total header bytes received. | [optional] +**ReqBodyBytes** | Pointer to **int64** | Total body bytes received. | [optional] +**BereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to origin. | [optional] +**BereqBodyBytes** | Pointer to **int64** | Total body bytes sent to origin. | [optional] +**WafBlocked** | Pointer to **int64** | Number of requests that triggered a WAF rule and were blocked. | [optional] +**WafLogged** | Pointer to **int64** | Number of requests that triggered a WAF rule and were logged. | [optional] +**WafPassed** | Pointer to **int64** | Number of requests that triggered a WAF rule and were passed. | [optional] +**AttackReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule. | [optional] +**AttackReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule. | [optional] +**AttackRespSynthBytes** | Pointer to **int64** | Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. | [optional] +**AttackLoggedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was logged. | [optional] +**AttackLoggedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was logged. | [optional] +**AttackBlockedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was blocked. | [optional] +**AttackBlockedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was blocked. | [optional] +**AttackPassedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was passed. | [optional] +**AttackPassedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was passed. | [optional] +**ShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield. | [optional] +**ShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield. | [optional] +**OtfpRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] **OtfpShieldTime** | Pointer to **float32** | Total amount of time spent delivering a response via a shield from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). | [optional] **OtfpDeliverTime** | Pointer to **float32** | Total amount of time spent delivering a response from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). | [optional] -**ImgoptoRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] -**ImgoptoRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] -**ImgoptoShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] -**ImgoptoShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] -**Status1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered. | [optional] -**Status2xx** | Pointer to **int32** | Number of \"Success\" status codes delivered. | [optional] -**Status3xx** | Pointer to **int32** | Number of \"Redirection\" codes delivered. | [optional] -**Status4xx** | Pointer to **int32** | Number of \"Client Error\" codes delivered. | [optional] -**Status5xx** | Pointer to **int32** | Number of \"Server Error\" codes delivered. | [optional] -**Status200** | Pointer to **int32** | Number of responses sent with status code 200 (Success). | [optional] -**Status204** | Pointer to **int32** | Number of responses sent with status code 204 (No Content). | [optional] -**Status206** | Pointer to **int32** | Number of responses sent with status code 206 (Partial Content). | [optional] -**Status301** | Pointer to **int32** | Number of responses sent with status code 301 (Moved Permanently). | [optional] -**Status302** | Pointer to **int32** | Number of responses sent with status code 302 (Found). | [optional] -**Status304** | Pointer to **int32** | Number of responses sent with status code 304 (Not Modified). | [optional] -**Status400** | Pointer to **int32** | Number of responses sent with status code 400 (Bad Request). | [optional] -**Status401** | Pointer to **int32** | Number of responses sent with status code 401 (Unauthorized). | [optional] -**Status403** | Pointer to **int32** | Number of responses sent with status code 403 (Forbidden). | [optional] -**Status404** | Pointer to **int32** | Number of responses sent with status code 404 (Not Found). | [optional] -**Status406** | Pointer to **int32** | Number of responses sent with status code 406 (Not Acceptable). | [optional] -**Status416** | Pointer to **int32** | Number of responses sent with status code 416 (Range Not Satisfiable). | [optional] -**Status429** | Pointer to **int32** | Number of responses sent with status code 429 (Too Many Requests). | [optional] -**Status500** | Pointer to **int32** | Number of responses sent with status code 500 (Internal Server Error). | [optional] -**Status501** | Pointer to **int32** | Number of responses sent with status code 501 (Not Implemented). | [optional] -**Status502** | Pointer to **int32** | Number of responses sent with status code 502 (Bad Gateway). | [optional] -**Status503** | Pointer to **int32** | Number of responses sent with status code 503 (Service Unavailable). | [optional] -**Status504** | Pointer to **int32** | Number of responses sent with status code 504 (Gateway Timeout). | [optional] -**Status505** | Pointer to **int32** | Number of responses sent with status code 505 (HTTP Version Not Supported). | [optional] -**Uncacheable** | Pointer to **int32** | Number of requests that were designated uncachable. | [optional] +**ImgoptoRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] +**ImgoptoRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] +**ImgoptoShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] +**ImgoptoShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] +**Status1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered. | [optional] +**Status2xx** | Pointer to **int64** | Number of \"Success\" status codes delivered. | [optional] +**Status3xx** | Pointer to **int64** | Number of \"Redirection\" codes delivered. | [optional] +**Status4xx** | Pointer to **int64** | Number of \"Client Error\" codes delivered. | [optional] +**Status5xx** | Pointer to **int64** | Number of \"Server Error\" codes delivered. | [optional] +**Status200** | Pointer to **int64** | Number of responses sent with status code 200 (Success). | [optional] +**Status204** | Pointer to **int64** | Number of responses sent with status code 204 (No Content). | [optional] +**Status206** | Pointer to **int64** | Number of responses sent with status code 206 (Partial Content). | [optional] +**Status301** | Pointer to **int64** | Number of responses sent with status code 301 (Moved Permanently). | [optional] +**Status302** | Pointer to **int64** | Number of responses sent with status code 302 (Found). | [optional] +**Status304** | Pointer to **int64** | Number of responses sent with status code 304 (Not Modified). | [optional] +**Status400** | Pointer to **int64** | Number of responses sent with status code 400 (Bad Request). | [optional] +**Status401** | Pointer to **int64** | Number of responses sent with status code 401 (Unauthorized). | [optional] +**Status403** | Pointer to **int64** | Number of responses sent with status code 403 (Forbidden). | [optional] +**Status404** | Pointer to **int64** | Number of responses sent with status code 404 (Not Found). | [optional] +**Status406** | Pointer to **int64** | Number of responses sent with status code 406 (Not Acceptable). | [optional] +**Status416** | Pointer to **int64** | Number of responses sent with status code 416 (Range Not Satisfiable). | [optional] +**Status429** | Pointer to **int64** | Number of responses sent with status code 429 (Too Many Requests). | [optional] +**Status500** | Pointer to **int64** | Number of responses sent with status code 500 (Internal Server Error). | [optional] +**Status501** | Pointer to **int64** | Number of responses sent with status code 501 (Not Implemented). | [optional] +**Status502** | Pointer to **int64** | Number of responses sent with status code 502 (Bad Gateway). | [optional] +**Status503** | Pointer to **int64** | Number of responses sent with status code 503 (Service Unavailable). | [optional] +**Status504** | Pointer to **int64** | Number of responses sent with status code 504 (Gateway Timeout). | [optional] +**Status505** | Pointer to **int64** | Number of responses sent with status code 505 (HTTP Version Not Supported). | [optional] +**Uncacheable** | Pointer to **int64** | Number of requests that were designated uncachable. | [optional] **PassTime** | Pointer to **float32** | Total amount of time spent processing cache passes (in seconds). | [optional] -**TLS** | Pointer to **int32** | Number of requests that were received over TLS. | [optional] -**TLSV10** | Pointer to **int32** | Number of requests received over TLS 1.0. | [optional] -**TLSV11** | Pointer to **int32** | Number of requests received over TLS 1.1. | [optional] -**TLSV12** | Pointer to **int32** | Number of requests received over TLS 1.2. | [optional] -**TLSV13** | Pointer to **int32** | Number of requests received over TLS 1.3. | [optional] -**ObjectSize1k** | Pointer to **int32** | Number of objects served that were under 1KB in size. | [optional] -**ObjectSize10k** | Pointer to **int32** | Number of objects served that were between 1KB and 10KB in size. | [optional] -**ObjectSize100k** | Pointer to **int32** | Number of objects served that were between 10KB and 100KB in size. | [optional] -**ObjectSize1m** | Pointer to **int32** | Number of objects served that were between 100KB and 1MB in size. | [optional] -**ObjectSize10m** | Pointer to **int32** | Number of objects served that were between 1MB and 10MB in size. | [optional] -**ObjectSize100m** | Pointer to **int32** | Number of objects served that were between 10MB and 100MB in size. | [optional] -**ObjectSize1g** | Pointer to **int32** | Number of objects served that were between 100MB and 1GB in size. | [optional] -**ObjectSizeOther** | Pointer to **int32** | Number of objects served that were larger than 1GB in size. | [optional] +**TLS** | Pointer to **int64** | Number of requests that were received over TLS. | [optional] +**TLSV10** | Pointer to **int64** | Number of requests received over TLS 1.0. | [optional] +**TLSV11** | Pointer to **int64** | Number of requests received over TLS 1.1. | [optional] +**TLSV12** | Pointer to **int64** | Number of requests received over TLS 1.2. | [optional] +**TLSV13** | Pointer to **int64** | Number of requests received over TLS 1.3. | [optional] +**ObjectSize1k** | Pointer to **int64** | Number of objects served that were under 1KB in size. | [optional] +**ObjectSize10k** | Pointer to **int64** | Number of objects served that were between 1KB and 10KB in size. | [optional] +**ObjectSize100k** | Pointer to **int64** | Number of objects served that were between 10KB and 100KB in size. | [optional] +**ObjectSize1m** | Pointer to **int64** | Number of objects served that were between 100KB and 1MB in size. | [optional] +**ObjectSize10m** | Pointer to **int64** | Number of objects served that were between 1MB and 10MB in size. | [optional] +**ObjectSize100m** | Pointer to **int64** | Number of objects served that were between 10MB and 100MB in size. | [optional] +**ObjectSize1g** | Pointer to **int64** | Number of objects served that were between 100MB and 1GB in size. | [optional] +**ObjectSizeOther** | Pointer to **int64** | Number of objects served that were larger than 1GB in size. | [optional] **RecvSubTime** | Pointer to **float32** | Time spent inside the `vcl_recv` Varnish subroutine (in nanoseconds). | [optional] -**RecvSubCount** | Pointer to **int32** | Number of executions of the `vcl_recv` Varnish subroutine. | [optional] +**RecvSubCount** | Pointer to **int64** | Number of executions of the `vcl_recv` Varnish subroutine. | [optional] **HashSubTime** | Pointer to **float32** | Time spent inside the `vcl_hash` Varnish subroutine (in nanoseconds). | [optional] -**HashSubCount** | Pointer to **int32** | Number of executions of the `vcl_hash` Varnish subroutine. | [optional] +**HashSubCount** | Pointer to **int64** | Number of executions of the `vcl_hash` Varnish subroutine. | [optional] **MissSubTime** | Pointer to **float32** | Time spent inside the `vcl_miss` Varnish subroutine (in nanoseconds). | [optional] -**MissSubCount** | Pointer to **int32** | Number of executions of the `vcl_miss` Varnish subroutine. | [optional] +**MissSubCount** | Pointer to **int64** | Number of executions of the `vcl_miss` Varnish subroutine. | [optional] **FetchSubTime** | Pointer to **float32** | Time spent inside the `vcl_fetch` Varnish subroutine (in nanoseconds). | [optional] -**FetchSubCount** | Pointer to **int32** | Number of executions of the `vcl_fetch` Varnish subroutine. | [optional] +**FetchSubCount** | Pointer to **int64** | Number of executions of the `vcl_fetch` Varnish subroutine. | [optional] **PassSubTime** | Pointer to **float32** | Time spent inside the `vcl_pass` Varnish subroutine (in nanoseconds). | [optional] -**PassSubCount** | Pointer to **int32** | Number of executions of the `vcl_pass` Varnish subroutine. | [optional] +**PassSubCount** | Pointer to **int64** | Number of executions of the `vcl_pass` Varnish subroutine. | [optional] **PipeSubTime** | Pointer to **float32** | Time spent inside the `vcl_pipe` Varnish subroutine (in nanoseconds). | [optional] -**PipeSubCount** | Pointer to **int32** | Number of executions of the `vcl_pipe` Varnish subroutine. | [optional] +**PipeSubCount** | Pointer to **int64** | Number of executions of the `vcl_pipe` Varnish subroutine. | [optional] **DeliverSubTime** | Pointer to **float32** | Time spent inside the `vcl_deliver` Varnish subroutine (in nanoseconds). | [optional] -**DeliverSubCount** | Pointer to **int32** | Number of executions of the `vcl_deliver` Varnish subroutine. | [optional] +**DeliverSubCount** | Pointer to **int64** | Number of executions of the `vcl_deliver` Varnish subroutine. | [optional] **ErrorSubTime** | Pointer to **float32** | Time spent inside the `vcl_error` Varnish subroutine (in nanoseconds). | [optional] -**ErrorSubCount** | Pointer to **int32** | Number of executions of the `vcl_error` Varnish subroutine. | [optional] +**ErrorSubCount** | Pointer to **int64** | Number of executions of the `vcl_error` Varnish subroutine. | [optional] **HitSubTime** | Pointer to **float32** | Time spent inside the `vcl_hit` Varnish subroutine (in nanoseconds). | [optional] -**HitSubCount** | Pointer to **int32** | Number of executions of the `vcl_hit` Varnish subroutine. | [optional] +**HitSubCount** | Pointer to **int64** | Number of executions of the `vcl_hit` Varnish subroutine. | [optional] **PrehashSubTime** | Pointer to **float32** | Time spent inside the `vcl_prehash` Varnish subroutine (in nanoseconds). | [optional] -**PrehashSubCount** | Pointer to **int32** | Number of executions of the `vcl_prehash` Varnish subroutine. | [optional] +**PrehashSubCount** | Pointer to **int64** | Number of executions of the `vcl_prehash` Varnish subroutine. | [optional] **PredeliverSubTime** | Pointer to **float32** | Time spent inside the `vcl_predeliver` Varnish subroutine (in nanoseconds). | [optional] -**PredeliverSubCount** | Pointer to **int32** | Number of executions of the `vcl_predeliver` Varnish subroutine. | [optional] -**HitRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache hits. | [optional] -**MissRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache misses. | [optional] -**PassRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache passes. | [optional] -**ComputeReqHeaderBytes** | Pointer to **int32** | Total header bytes received by the Compute platform. | [optional] -**ComputeReqBodyBytes** | Pointer to **int32** | Total body bytes received by the Compute platform. | [optional] -**ComputeRespHeaderBytes** | Pointer to **int32** | Total header bytes sent from Compute to end user. | [optional] -**ComputeRespBodyBytes** | Pointer to **int32** | Total body bytes sent from Compute to end user. | [optional] -**Imgvideo** | Pointer to **int32** | Number of video responses that came from the Fastly Image Optimizer service. | [optional] -**ImgvideoFrames** | Pointer to **int32** | Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] -**ImgvideoRespHeaderBytes** | Pointer to **int32** | Total header bytes of video delivered from the Fastly Image Optimizer service. | [optional] -**ImgvideoRespBodyBytes** | Pointer to **int32** | Total body bytes of video delivered from the Fastly Image Optimizer service. | [optional] -**ImgvideoShield** | Pointer to **int32** | Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. | [optional] -**ImgvideoShieldFrames** | Pointer to **int32** | Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] -**ImgvideoShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] -**ImgvideoShieldRespBodyBytes** | Pointer to **int32** | Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] -**LogBytes** | Pointer to **int32** | Total log bytes sent. | [optional] -**EdgeRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly. | [optional] -**EdgeRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from Fastly to the end user. | [optional] -**EdgeRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from Fastly to the end user. | [optional] -**OriginRevalidations** | Pointer to **int32** | Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. | [optional] -**OriginFetches** | Pointer to **int32** | Number of requests sent to origin. | [optional] -**OriginFetchHeaderBytes** | Pointer to **int32** | Total request header bytes sent to origin. | [optional] -**OriginFetchBodyBytes** | Pointer to **int32** | Total request body bytes sent to origin. | [optional] -**OriginFetchRespHeaderBytes** | Pointer to **int32** | Total header bytes received from origin. | [optional] -**OriginFetchRespBodyBytes** | Pointer to **int32** | Total body bytes received from origin. | [optional] -**ShieldRevalidations** | Pointer to **int32** | Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. | [optional] -**ShieldFetches** | Pointer to **int32** | Number of requests made from one Fastly POP to another, as part of shielding. | [optional] -**ShieldFetchHeaderBytes** | Pointer to **int32** | Total request header bytes sent to a shield. | [optional] -**ShieldFetchBodyBytes** | Pointer to **int32** | Total request body bytes sent to a shield. | [optional] -**ShieldFetchRespHeaderBytes** | Pointer to **int32** | Total response header bytes sent from a shield to the edge. | [optional] -**ShieldFetchRespBodyBytes** | Pointer to **int32** | Total response body bytes sent from a shield to the edge. | [optional] -**SegblockOriginFetches** | Pointer to **int32** | Number of `Range` requests to origin for segments of resources when using segmented caching. | [optional] -**SegblockShieldFetches** | Pointer to **int32** | Number of `Range` requests to a shield for segments of resources when using segmented caching. | [optional] -**ComputeRespStatus1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus2xx** | Pointer to **int32** | Number of \"Success\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus3xx** | Pointer to **int32** | Number of \"Redirection\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus4xx** | Pointer to **int32** | Number of \"Client Error\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus5xx** | Pointer to **int32** | Number of \"Server Error\" category status codes delivered by the Compute platform. | [optional] -**EdgeHitRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] -**EdgeMissRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] -**ComputeBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] -**ComputeBereqBodyBytes** | Pointer to **int32** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] -**ComputeBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends (origins) by the Compute platform. | [optional] -**ComputeBerespBodyBytes** | Pointer to **int32** | Total body bytes received from backends (origins) by the Compute platform. | [optional] -**OriginCacheFetches** | Pointer to **int32** | The total number of completed requests made to backends (origins) that returned cacheable content. | [optional] -**ShieldCacheFetches** | Pointer to **int32** | The total number of completed requests made to shields that returned cacheable content. | [optional] -**ComputeBereqs** | Pointer to **int32** | Number of backend requests started. | [optional] -**ComputeBereqErrors** | Pointer to **int32** | Number of backend request errors, including timeouts. | [optional] -**ComputeResourceLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. | [optional] -**ComputeHeapLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its heap limit. | [optional] -**ComputeStackLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its stack limit. | [optional] -**ComputeGlobalsLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its globals limit. | [optional] -**ComputeGuestErrors** | Pointer to **int32** | Number of times a service experienced a guest code error. | [optional] -**ComputeRuntimeErrors** | Pointer to **int32** | Number of times a service experienced a guest runtime error. | [optional] -**EdgeHitRespBodyBytes** | Pointer to **int32** | Body bytes delivered for edge hits. | [optional] -**EdgeHitRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for edge hits. | [optional] -**EdgeMissRespBodyBytes** | Pointer to **int32** | Body bytes delivered for edge misses. | [optional] -**EdgeMissRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for edge misses. | [optional] -**OriginCacheFetchRespBodyBytes** | Pointer to **int32** | Body bytes received from origin for cacheable content. | [optional] -**OriginCacheFetchRespHeaderBytes** | Pointer to **int32** | Header bytes received from an origin for cacheable content. | [optional] -**ShieldHitRequests** | Pointer to **int32** | Number of requests that resulted in a hit at a shield. | [optional] -**ShieldMissRequests** | Pointer to **int32** | Number of requests that resulted in a miss at a shield. | [optional] -**ShieldHitRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for shield hits. | [optional] -**ShieldHitRespBodyBytes** | Pointer to **int32** | Body bytes delivered for shield hits. | [optional] -**ShieldMissRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for shield misses. | [optional] -**ShieldMissRespBodyBytes** | Pointer to **int32** | Body bytes delivered for shield misses. | [optional] -**WebsocketReqHeaderBytes** | Pointer to **int32** | Total header bytes received from end users over passthrough WebSocket connections. | [optional] -**WebsocketReqBodyBytes** | Pointer to **int32** | Total message content bytes received from end users over passthrough WebSocket connections. | [optional] -**WebsocketRespHeaderBytes** | Pointer to **int32** | Total header bytes sent to end users over passthrough WebSocket connections. | [optional] -**WebsocketBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends over passthrough WebSocket connections. | [optional] -**WebsocketBereqBodyBytes** | Pointer to **int32** | Total message content bytes sent to backends over passthrough WebSocket connections. | [optional] -**WebsocketBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends over passthrough WebSocket connections. | [optional] -**WebsocketBerespBodyBytes** | Pointer to **int32** | Total message content bytes received from backends over passthrough WebSocket connections. | [optional] -**WebsocketConnTimeMs** | Pointer to **int32** | Total duration of passthrough WebSocket connections with end users. | [optional] -**WebsocketRespBodyBytes** | Pointer to **int32** | Total message content bytes sent to end users over passthrough WebSocket connections. | [optional] -**FanoutRecvPublishes** | Pointer to **int32** | Total published messages received from the publish API endpoint. | [optional] -**FanoutSendPublishes** | Pointer to **int32** | Total published messages sent to end users. | [optional] -**KvStoreClassAOperations** | Pointer to **int32** | The total number of class a operations for the KV store. | [optional] -**KvStoreClassBOperations** | Pointer to **int32** | The total number of class b operations for the KV store. | [optional] -**ObjectStoreClassAOperations** | Pointer to **int32** | Use kv_store_class_a_operations. | [optional] -**ObjectStoreClassBOperations** | Pointer to **int32** | Use kv_store_class_b_operations. | [optional] -**FanoutReqHeaderBytes** | Pointer to **int32** | Total header bytes received from end users over Fanout connections. | [optional] -**FanoutReqBodyBytes** | Pointer to **int32** | Total body or message content bytes received from end users over Fanout connections. | [optional] -**FanoutRespHeaderBytes** | Pointer to **int32** | Total header bytes sent to end users over Fanout connections. | [optional] -**FanoutRespBodyBytes** | Pointer to **int32** | Total body or message content bytes sent to end users over Fanout connections, excluding published message content. | [optional] -**FanoutBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends over Fanout connections. | [optional] -**FanoutBereqBodyBytes** | Pointer to **int32** | Total body or message content bytes sent to backends over Fanout connections. | [optional] -**FanoutBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends over Fanout connections. | [optional] -**FanoutBerespBodyBytes** | Pointer to **int32** | Total body or message content bytes received from backends over Fanout connections. | [optional] -**FanoutConnTimeMs** | Pointer to **int32** | Total duration of Fanout connections with end users. | [optional] -**DdosActionLimitStreamsConnections** | Pointer to **int32** | For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] -**DdosActionLimitStreamsRequests** | Pointer to **int32** | For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] -**DdosActionTarpitAccept** | Pointer to **int32** | The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. | [optional] -**DdosActionTarpit** | Pointer to **int32** | The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. | [optional] -**DdosActionClose** | Pointer to **int32** | The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. | [optional] -**DdosActionBlackhole** | Pointer to **int32** | The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). | [optional] -**BotChallengeStarts** | Pointer to **int32** | The number of challenge-start tokens created. | [optional] -**BotChallengeCompleteTokensPassed** | Pointer to **int32** | The number of challenge-complete tokens that passed validation. | [optional] -**BotChallengeCompleteTokensFailed** | Pointer to **int32** | The number of challenge-complete tokens that failed validation. | [optional] -**BotChallengeCompleteTokensChecked** | Pointer to **int32** | The number of challenge-complete tokens checked. | [optional] -**BotChallengeCompleteTokensDisabled** | Pointer to **int32** | The number of challenge-complete tokens not checked because the feature was disabled. | [optional] -**BotChallengesIssued** | Pointer to **int32** | The number of challenges issued. For example, the issuance of a CAPTCHA challenge. | [optional] -**BotChallengesSucceeded** | Pointer to **int32** | The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. | [optional] -**BotChallengesFailed** | Pointer to **int32** | The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. | [optional] -**BotChallengeCompleteTokensIssued** | Pointer to **int32** | The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. | [optional] -**DdosActionDowngrade** | Pointer to **int32** | The number of times the downgrade action was taken. The downgrade action restricts the client to http1. | [optional] -**DdosActionDowngradedConnections** | Pointer to **int32** | The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. | [optional] -**AllHitRequests** | Pointer to **int32** | Number of cache hits for a VCL service. | [optional] -**AllMissRequests** | Pointer to **int32** | Number of cache misses for a VCL service. | [optional] -**AllPassRequests** | Pointer to **int32** | Number of requests that passed through the CDN without being cached for a VCL service. | [optional] -**AllErrorRequests** | Pointer to **int32** | Number of cache errors for a VCL service. | [optional] -**AllSynthRequests** | Pointer to **int32** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. | [optional] -**AllEdgeHitRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. | [optional] -**AllEdgeMissRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. | [optional] -**AllStatus1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered for all sources. | [optional] -**AllStatus2xx** | Pointer to **int32** | Number of \"Success\" status codes delivered for all sources. | [optional] -**AllStatus3xx** | Pointer to **int32** | Number of \"Redirection\" codes delivered for all sources. | [optional] -**AllStatus4xx** | Pointer to **int32** | Number of \"Client Error\" codes delivered for all sources. | [optional] -**AllStatus5xx** | Pointer to **int32** | Number of \"Server Error\" codes delivered for all sources. | [optional] +**PredeliverSubCount** | Pointer to **int64** | Number of executions of the `vcl_predeliver` Varnish subroutine. | [optional] +**HitRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache hits. | [optional] +**MissRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache misses. | [optional] +**PassRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache passes. | [optional] +**ComputeReqHeaderBytes** | Pointer to **int64** | Total header bytes received by the Compute platform. | [optional] +**ComputeReqBodyBytes** | Pointer to **int64** | Total body bytes received by the Compute platform. | [optional] +**ComputeRespHeaderBytes** | Pointer to **int64** | Total header bytes sent from Compute to end user. | [optional] +**ComputeRespBodyBytes** | Pointer to **int64** | Total body bytes sent from Compute to end user. | [optional] +**Imgvideo** | Pointer to **int64** | Number of video responses that came from the Fastly Image Optimizer service. | [optional] +**ImgvideoFrames** | Pointer to **int64** | Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] +**ImgvideoRespHeaderBytes** | Pointer to **int64** | Total header bytes of video delivered from the Fastly Image Optimizer service. | [optional] +**ImgvideoRespBodyBytes** | Pointer to **int64** | Total body bytes of video delivered from the Fastly Image Optimizer service. | [optional] +**ImgvideoShield** | Pointer to **int64** | Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. | [optional] +**ImgvideoShieldFrames** | Pointer to **int64** | Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] +**ImgvideoShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] +**ImgvideoShieldRespBodyBytes** | Pointer to **int64** | Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] +**LogBytes** | Pointer to **int64** | Total log bytes sent. | [optional] +**EdgeRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly. | [optional] +**EdgeRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from Fastly to the end user. | [optional] +**EdgeRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from Fastly to the end user. | [optional] +**OriginRevalidations** | Pointer to **int64** | Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. | [optional] +**OriginFetches** | Pointer to **int64** | Number of requests sent to origin. | [optional] +**OriginFetchHeaderBytes** | Pointer to **int64** | Total request header bytes sent to origin. | [optional] +**OriginFetchBodyBytes** | Pointer to **int64** | Total request body bytes sent to origin. | [optional] +**OriginFetchRespHeaderBytes** | Pointer to **int64** | Total header bytes received from origin. | [optional] +**OriginFetchRespBodyBytes** | Pointer to **int64** | Total body bytes received from origin. | [optional] +**ShieldRevalidations** | Pointer to **int64** | Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. | [optional] +**ShieldFetches** | Pointer to **int64** | Number of requests made from one Fastly POP to another, as part of shielding. | [optional] +**ShieldFetchHeaderBytes** | Pointer to **int64** | Total request header bytes sent to a shield. | [optional] +**ShieldFetchBodyBytes** | Pointer to **int64** | Total request body bytes sent to a shield. | [optional] +**ShieldFetchRespHeaderBytes** | Pointer to **int64** | Total response header bytes sent from a shield to the edge. | [optional] +**ShieldFetchRespBodyBytes** | Pointer to **int64** | Total response body bytes sent from a shield to the edge. | [optional] +**SegblockOriginFetches** | Pointer to **int64** | Number of `Range` requests to origin for segments of resources when using segmented caching. | [optional] +**SegblockShieldFetches** | Pointer to **int64** | Number of `Range` requests to a shield for segments of resources when using segmented caching. | [optional] +**ComputeRespStatus1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus2xx** | Pointer to **int64** | Number of \"Success\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus3xx** | Pointer to **int64** | Number of \"Redirection\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus4xx** | Pointer to **int64** | Number of \"Client Error\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus5xx** | Pointer to **int64** | Number of \"Server Error\" category status codes delivered by the Compute platform. | [optional] +**EdgeHitRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] +**EdgeMissRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] +**ComputeBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] +**ComputeBereqBodyBytes** | Pointer to **int64** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] +**ComputeBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends (origins) by the Compute platform. | [optional] +**ComputeBerespBodyBytes** | Pointer to **int64** | Total body bytes received from backends (origins) by the Compute platform. | [optional] +**OriginCacheFetches** | Pointer to **int64** | The total number of completed requests made to backends (origins) that returned cacheable content. | [optional] +**ShieldCacheFetches** | Pointer to **int64** | The total number of completed requests made to shields that returned cacheable content. | [optional] +**ComputeBereqs** | Pointer to **int64** | Number of backend requests started. | [optional] +**ComputeBereqErrors** | Pointer to **int64** | Number of backend request errors, including timeouts. | [optional] +**ComputeResourceLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. | [optional] +**ComputeHeapLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its heap limit. | [optional] +**ComputeStackLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its stack limit. | [optional] +**ComputeGlobalsLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its globals limit. | [optional] +**ComputeGuestErrors** | Pointer to **int64** | Number of times a service experienced a guest code error. | [optional] +**ComputeRuntimeErrors** | Pointer to **int64** | Number of times a service experienced a guest runtime error. | [optional] +**EdgeHitRespBodyBytes** | Pointer to **int64** | Body bytes delivered for edge hits. | [optional] +**EdgeHitRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for edge hits. | [optional] +**EdgeMissRespBodyBytes** | Pointer to **int64** | Body bytes delivered for edge misses. | [optional] +**EdgeMissRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for edge misses. | [optional] +**OriginCacheFetchRespBodyBytes** | Pointer to **int64** | Body bytes received from origin for cacheable content. | [optional] +**OriginCacheFetchRespHeaderBytes** | Pointer to **int64** | Header bytes received from an origin for cacheable content. | [optional] +**ShieldHitRequests** | Pointer to **int64** | Number of requests that resulted in a hit at a shield. | [optional] +**ShieldMissRequests** | Pointer to **int64** | Number of requests that resulted in a miss at a shield. | [optional] +**ShieldHitRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for shield hits. | [optional] +**ShieldHitRespBodyBytes** | Pointer to **int64** | Body bytes delivered for shield hits. | [optional] +**ShieldMissRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for shield misses. | [optional] +**ShieldMissRespBodyBytes** | Pointer to **int64** | Body bytes delivered for shield misses. | [optional] +**WebsocketReqHeaderBytes** | Pointer to **int64** | Total header bytes received from end users over passthrough WebSocket connections. | [optional] +**WebsocketReqBodyBytes** | Pointer to **int64** | Total message content bytes received from end users over passthrough WebSocket connections. | [optional] +**WebsocketRespHeaderBytes** | Pointer to **int64** | Total header bytes sent to end users over passthrough WebSocket connections. | [optional] +**WebsocketBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends over passthrough WebSocket connections. | [optional] +**WebsocketBereqBodyBytes** | Pointer to **int64** | Total message content bytes sent to backends over passthrough WebSocket connections. | [optional] +**WebsocketBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends over passthrough WebSocket connections. | [optional] +**WebsocketBerespBodyBytes** | Pointer to **int64** | Total message content bytes received from backends over passthrough WebSocket connections. | [optional] +**WebsocketConnTimeMs** | Pointer to **int64** | Total duration of passthrough WebSocket connections with end users. | [optional] +**WebsocketRespBodyBytes** | Pointer to **int64** | Total message content bytes sent to end users over passthrough WebSocket connections. | [optional] +**FanoutRecvPublishes** | Pointer to **int64** | Total published messages received from the publish API endpoint. | [optional] +**FanoutSendPublishes** | Pointer to **int64** | Total published messages sent to end users. | [optional] +**KvStoreClassAOperations** | Pointer to **int64** | The total number of class a operations for the KV store. | [optional] +**KvStoreClassBOperations** | Pointer to **int64** | The total number of class b operations for the KV store. | [optional] +**ObjectStoreClassAOperations** | Pointer to **int64** | Use kv_store_class_a_operations. | [optional] +**ObjectStoreClassBOperations** | Pointer to **int64** | Use kv_store_class_b_operations. | [optional] +**FanoutReqHeaderBytes** | Pointer to **int64** | Total header bytes received from end users over Fanout connections. | [optional] +**FanoutReqBodyBytes** | Pointer to **int64** | Total body or message content bytes received from end users over Fanout connections. | [optional] +**FanoutRespHeaderBytes** | Pointer to **int64** | Total header bytes sent to end users over Fanout connections. | [optional] +**FanoutRespBodyBytes** | Pointer to **int64** | Total body or message content bytes sent to end users over Fanout connections, excluding published message content. | [optional] +**FanoutBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends over Fanout connections. | [optional] +**FanoutBereqBodyBytes** | Pointer to **int64** | Total body or message content bytes sent to backends over Fanout connections. | [optional] +**FanoutBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends over Fanout connections. | [optional] +**FanoutBerespBodyBytes** | Pointer to **int64** | Total body or message content bytes received from backends over Fanout connections. | [optional] +**FanoutConnTimeMs** | Pointer to **int64** | Total duration of Fanout connections with end users. | [optional] +**DdosActionLimitStreamsConnections** | Pointer to **int64** | For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] +**DdosActionLimitStreamsRequests** | Pointer to **int64** | For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] +**DdosActionTarpitAccept** | Pointer to **int64** | The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. | [optional] +**DdosActionTarpit** | Pointer to **int64** | The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. | [optional] +**DdosActionClose** | Pointer to **int64** | The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. | [optional] +**DdosActionBlackhole** | Pointer to **int64** | The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). | [optional] +**BotChallengeStarts** | Pointer to **int64** | The number of challenge-start tokens created. | [optional] +**BotChallengeCompleteTokensPassed** | Pointer to **int64** | The number of challenge-complete tokens that passed validation. | [optional] +**BotChallengeCompleteTokensFailed** | Pointer to **int64** | The number of challenge-complete tokens that failed validation. | [optional] +**BotChallengeCompleteTokensChecked** | Pointer to **int64** | The number of challenge-complete tokens checked. | [optional] +**BotChallengeCompleteTokensDisabled** | Pointer to **int64** | The number of challenge-complete tokens not checked because the feature was disabled. | [optional] +**BotChallengesIssued** | Pointer to **int64** | The number of challenges issued. For example, the issuance of a CAPTCHA challenge. | [optional] +**BotChallengesSucceeded** | Pointer to **int64** | The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. | [optional] +**BotChallengesFailed** | Pointer to **int64** | The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. | [optional] +**BotChallengeCompleteTokensIssued** | Pointer to **int64** | The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. | [optional] +**DdosActionDowngrade** | Pointer to **int64** | The number of times the downgrade action was taken. The downgrade action restricts the client to http1. | [optional] +**DdosActionDowngradedConnections** | Pointer to **int64** | The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. | [optional] +**AllHitRequests** | Pointer to **int64** | Number of cache hits for a VCL service. | [optional] +**AllMissRequests** | Pointer to **int64** | Number of cache misses for a VCL service. | [optional] +**AllPassRequests** | Pointer to **int64** | Number of requests that passed through the CDN without being cached for a VCL service. | [optional] +**AllErrorRequests** | Pointer to **int64** | Number of cache errors for a VCL service. | [optional] +**AllSynthRequests** | Pointer to **int64** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. | [optional] +**AllEdgeHitRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. | [optional] +**AllEdgeMissRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. | [optional] +**AllStatus1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered for all sources. | [optional] +**AllStatus2xx** | Pointer to **int64** | Number of \"Success\" status codes delivered for all sources. | [optional] +**AllStatus3xx** | Pointer to **int64** | Number of \"Redirection\" codes delivered for all sources. | [optional] +**AllStatus4xx** | Pointer to **int64** | Number of \"Client Error\" codes delivered for all sources. | [optional] +**AllStatus5xx** | Pointer to **int64** | Number of \"Server Error\" codes delivered for all sources. | [optional] **OriginOffload** | Pointer to **float32** | Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). | [optional] -**RequestDeniedGetHeadBody** | Pointer to **int32** | Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. | [optional] -**ServiceDdosRequestsDetected** | Pointer to **int32** | Number of requests classified as a DDoS attack against a customer origin or service. | [optional] -**ServiceDdosRequestsMitigated** | Pointer to **int32** | Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. | [optional] -**ServiceDdosRequestsAllowed** | Pointer to **int32** | Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. | [optional] +**RequestDeniedGetHeadBody** | Pointer to **int64** | Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. | [optional] +**ServiceDdosRequestsDetected** | Pointer to **int64** | Number of requests classified as a DDoS attack against a customer origin or service. | [optional] +**ServiceDdosRequestsMitigated** | Pointer to **int64** | Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. | [optional] +**ServiceDdosRequestsAllowed** | Pointer to **int64** | Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. | [optional] ## Methods @@ -272,20 +272,20 @@ but it doesn't guarantee that properties required by API are set ### GetRequests -`func (o *RealtimeEntryAggregated) GetRequests() int32` +`func (o *RealtimeEntryAggregated) GetRequests() int64` GetRequests returns the Requests field if non-nil, zero value otherwise. ### GetRequestsOk -`func (o *RealtimeEntryAggregated) GetRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetRequestsOk() (*int64, bool)` GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRequests -`func (o *RealtimeEntryAggregated) SetRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetRequests(v int64)` SetRequests sets Requests field to given value. @@ -297,20 +297,20 @@ HasRequests returns a boolean if a field has been set. ### GetLogging -`func (o *RealtimeEntryAggregated) GetLogging() int32` +`func (o *RealtimeEntryAggregated) GetLogging() int64` GetLogging returns the Logging field if non-nil, zero value otherwise. ### GetLoggingOk -`func (o *RealtimeEntryAggregated) GetLoggingOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetLoggingOk() (*int64, bool)` GetLoggingOk returns a tuple with the Logging field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLogging -`func (o *RealtimeEntryAggregated) SetLogging(v int32)` +`func (o *RealtimeEntryAggregated) SetLogging(v int64)` SetLogging sets Logging field to given value. @@ -322,20 +322,20 @@ HasLogging returns a boolean if a field has been set. ### GetLog -`func (o *RealtimeEntryAggregated) GetLog() int32` +`func (o *RealtimeEntryAggregated) GetLog() int64` GetLog returns the Log field if non-nil, zero value otherwise. ### GetLogOk -`func (o *RealtimeEntryAggregated) GetLogOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetLogOk() (*int64, bool)` GetLogOk returns a tuple with the Log field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLog -`func (o *RealtimeEntryAggregated) SetLog(v int32)` +`func (o *RealtimeEntryAggregated) SetLog(v int64)` SetLog sets Log field to given value. @@ -347,20 +347,20 @@ HasLog returns a boolean if a field has been set. ### GetRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetRespHeaderBytes() int64` GetRespHeaderBytes returns the RespHeaderBytes field if non-nil, zero value otherwise. ### GetRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetRespHeaderBytesOk() (*int64, bool)` GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetRespHeaderBytes(v int64)` SetRespHeaderBytes sets RespHeaderBytes field to given value. @@ -372,20 +372,20 @@ HasRespHeaderBytes returns a boolean if a field has been set. ### GetHeaderSize -`func (o *RealtimeEntryAggregated) GetHeaderSize() int32` +`func (o *RealtimeEntryAggregated) GetHeaderSize() int64` GetHeaderSize returns the HeaderSize field if non-nil, zero value otherwise. ### GetHeaderSizeOk -`func (o *RealtimeEntryAggregated) GetHeaderSizeOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetHeaderSizeOk() (*int64, bool)` GetHeaderSizeOk returns a tuple with the HeaderSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHeaderSize -`func (o *RealtimeEntryAggregated) SetHeaderSize(v int32)` +`func (o *RealtimeEntryAggregated) SetHeaderSize(v int64)` SetHeaderSize sets HeaderSize field to given value. @@ -397,20 +397,20 @@ HasHeaderSize returns a boolean if a field has been set. ### GetRespBodyBytes -`func (o *RealtimeEntryAggregated) GetRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetRespBodyBytes() int64` GetRespBodyBytes returns the RespBodyBytes field if non-nil, zero value otherwise. ### GetRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetRespBodyBytesOk() (*int64, bool)` GetRespBodyBytesOk returns a tuple with the RespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespBodyBytes -`func (o *RealtimeEntryAggregated) SetRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetRespBodyBytes(v int64)` SetRespBodyBytes sets RespBodyBytes field to given value. @@ -422,20 +422,20 @@ HasRespBodyBytes returns a boolean if a field has been set. ### GetBodySize -`func (o *RealtimeEntryAggregated) GetBodySize() int32` +`func (o *RealtimeEntryAggregated) GetBodySize() int64` GetBodySize returns the BodySize field if non-nil, zero value otherwise. ### GetBodySizeOk -`func (o *RealtimeEntryAggregated) GetBodySizeOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBodySizeOk() (*int64, bool)` GetBodySizeOk returns a tuple with the BodySize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBodySize -`func (o *RealtimeEntryAggregated) SetBodySize(v int32)` +`func (o *RealtimeEntryAggregated) SetBodySize(v int64)` SetBodySize sets BodySize field to given value. @@ -447,20 +447,20 @@ HasBodySize returns a boolean if a field has been set. ### GetHits -`func (o *RealtimeEntryAggregated) GetHits() int32` +`func (o *RealtimeEntryAggregated) GetHits() int64` GetHits returns the Hits field if non-nil, zero value otherwise. ### GetHitsOk -`func (o *RealtimeEntryAggregated) GetHitsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetHitsOk() (*int64, bool)` GetHitsOk returns a tuple with the Hits field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHits -`func (o *RealtimeEntryAggregated) SetHits(v int32)` +`func (o *RealtimeEntryAggregated) SetHits(v int64)` SetHits sets Hits field to given value. @@ -472,20 +472,20 @@ HasHits returns a boolean if a field has been set. ### GetMiss -`func (o *RealtimeEntryAggregated) GetMiss() int32` +`func (o *RealtimeEntryAggregated) GetMiss() int64` GetMiss returns the Miss field if non-nil, zero value otherwise. ### GetMissOk -`func (o *RealtimeEntryAggregated) GetMissOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetMissOk() (*int64, bool)` GetMissOk returns a tuple with the Miss field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMiss -`func (o *RealtimeEntryAggregated) SetMiss(v int32)` +`func (o *RealtimeEntryAggregated) SetMiss(v int64)` SetMiss sets Miss field to given value. @@ -497,20 +497,20 @@ HasMiss returns a boolean if a field has been set. ### GetPass -`func (o *RealtimeEntryAggregated) GetPass() int32` +`func (o *RealtimeEntryAggregated) GetPass() int64` GetPass returns the Pass field if non-nil, zero value otherwise. ### GetPassOk -`func (o *RealtimeEntryAggregated) GetPassOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetPassOk() (*int64, bool)` GetPassOk returns a tuple with the Pass field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPass -`func (o *RealtimeEntryAggregated) SetPass(v int32)` +`func (o *RealtimeEntryAggregated) SetPass(v int64)` SetPass sets Pass field to given value. @@ -522,20 +522,20 @@ HasPass returns a boolean if a field has been set. ### GetSynth -`func (o *RealtimeEntryAggregated) GetSynth() int32` +`func (o *RealtimeEntryAggregated) GetSynth() int64` GetSynth returns the Synth field if non-nil, zero value otherwise. ### GetSynthOk -`func (o *RealtimeEntryAggregated) GetSynthOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetSynthOk() (*int64, bool)` GetSynthOk returns a tuple with the Synth field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSynth -`func (o *RealtimeEntryAggregated) SetSynth(v int32)` +`func (o *RealtimeEntryAggregated) SetSynth(v int64)` SetSynth sets Synth field to given value. @@ -547,20 +547,20 @@ HasSynth returns a boolean if a field has been set. ### GetErrors -`func (o *RealtimeEntryAggregated) GetErrors() int32` +`func (o *RealtimeEntryAggregated) GetErrors() int64` GetErrors returns the Errors field if non-nil, zero value otherwise. ### GetErrorsOk -`func (o *RealtimeEntryAggregated) GetErrorsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetErrorsOk() (*int64, bool)` GetErrorsOk returns a tuple with the Errors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetErrors -`func (o *RealtimeEntryAggregated) SetErrors(v int32)` +`func (o *RealtimeEntryAggregated) SetErrors(v int64)` SetErrors sets Errors field to given value. @@ -647,20 +647,20 @@ HasMissHistogram returns a boolean if a field has been set. ### GetComputeRequests -`func (o *RealtimeEntryAggregated) GetComputeRequests() int32` +`func (o *RealtimeEntryAggregated) GetComputeRequests() int64` GetComputeRequests returns the ComputeRequests field if non-nil, zero value otherwise. ### GetComputeRequestsOk -`func (o *RealtimeEntryAggregated) GetComputeRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRequestsOk() (*int64, bool)` GetComputeRequestsOk returns a tuple with the ComputeRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRequests -`func (o *RealtimeEntryAggregated) SetComputeRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRequests(v int64)` SetComputeRequests sets ComputeRequests field to given value. @@ -697,20 +697,20 @@ HasComputeExecutionTimeMs returns a boolean if a field has been set. ### GetComputeRAMUsed -`func (o *RealtimeEntryAggregated) GetComputeRAMUsed() int32` +`func (o *RealtimeEntryAggregated) GetComputeRAMUsed() int64` GetComputeRAMUsed returns the ComputeRAMUsed field if non-nil, zero value otherwise. ### GetComputeRAMUsedOk -`func (o *RealtimeEntryAggregated) GetComputeRAMUsedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRAMUsedOk() (*int64, bool)` GetComputeRAMUsedOk returns a tuple with the ComputeRAMUsed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRAMUsed -`func (o *RealtimeEntryAggregated) SetComputeRAMUsed(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRAMUsed(v int64)` SetComputeRAMUsed sets ComputeRAMUsed field to given value. @@ -772,20 +772,20 @@ HasComputeRequestTimeBilledMs returns a boolean if a field has been set. ### GetShield -`func (o *RealtimeEntryAggregated) GetShield() int32` +`func (o *RealtimeEntryAggregated) GetShield() int64` GetShield returns the Shield field if non-nil, zero value otherwise. ### GetShieldOk -`func (o *RealtimeEntryAggregated) GetShieldOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldOk() (*int64, bool)` GetShieldOk returns a tuple with the Shield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShield -`func (o *RealtimeEntryAggregated) SetShield(v int32)` +`func (o *RealtimeEntryAggregated) SetShield(v int64)` SetShield sets Shield field to given value. @@ -797,20 +797,20 @@ HasShield returns a boolean if a field has been set. ### GetIpv6 -`func (o *RealtimeEntryAggregated) GetIpv6() int32` +`func (o *RealtimeEntryAggregated) GetIpv6() int64` GetIpv6 returns the Ipv6 field if non-nil, zero value otherwise. ### GetIpv6Ok -`func (o *RealtimeEntryAggregated) GetIpv6Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetIpv6Ok() (*int64, bool)` GetIpv6Ok returns a tuple with the Ipv6 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetIpv6 -`func (o *RealtimeEntryAggregated) SetIpv6(v int32)` +`func (o *RealtimeEntryAggregated) SetIpv6(v int64)` SetIpv6 sets Ipv6 field to given value. @@ -822,20 +822,20 @@ HasIpv6 returns a boolean if a field has been set. ### GetImgopto -`func (o *RealtimeEntryAggregated) GetImgopto() int32` +`func (o *RealtimeEntryAggregated) GetImgopto() int64` GetImgopto returns the Imgopto field if non-nil, zero value otherwise. ### GetImgoptoOk -`func (o *RealtimeEntryAggregated) GetImgoptoOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgoptoOk() (*int64, bool)` GetImgoptoOk returns a tuple with the Imgopto field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgopto -`func (o *RealtimeEntryAggregated) SetImgopto(v int32)` +`func (o *RealtimeEntryAggregated) SetImgopto(v int64)` SetImgopto sets Imgopto field to given value. @@ -847,20 +847,20 @@ HasImgopto returns a boolean if a field has been set. ### GetImgoptoShield -`func (o *RealtimeEntryAggregated) GetImgoptoShield() int32` +`func (o *RealtimeEntryAggregated) GetImgoptoShield() int64` GetImgoptoShield returns the ImgoptoShield field if non-nil, zero value otherwise. ### GetImgoptoShieldOk -`func (o *RealtimeEntryAggregated) GetImgoptoShieldOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgoptoShieldOk() (*int64, bool)` GetImgoptoShieldOk returns a tuple with the ImgoptoShield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShield -`func (o *RealtimeEntryAggregated) SetImgoptoShield(v int32)` +`func (o *RealtimeEntryAggregated) SetImgoptoShield(v int64)` SetImgoptoShield sets ImgoptoShield field to given value. @@ -872,20 +872,20 @@ HasImgoptoShield returns a boolean if a field has been set. ### GetImgoptoTransforms -`func (o *RealtimeEntryAggregated) GetImgoptoTransforms() int32` +`func (o *RealtimeEntryAggregated) GetImgoptoTransforms() int64` GetImgoptoTransforms returns the ImgoptoTransforms field if non-nil, zero value otherwise. ### GetImgoptoTransformsOk -`func (o *RealtimeEntryAggregated) GetImgoptoTransformsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgoptoTransformsOk() (*int64, bool)` GetImgoptoTransformsOk returns a tuple with the ImgoptoTransforms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoTransforms -`func (o *RealtimeEntryAggregated) SetImgoptoTransforms(v int32)` +`func (o *RealtimeEntryAggregated) SetImgoptoTransforms(v int64)` SetImgoptoTransforms sets ImgoptoTransforms field to given value. @@ -897,20 +897,20 @@ HasImgoptoTransforms returns a boolean if a field has been set. ### GetOtfp -`func (o *RealtimeEntryAggregated) GetOtfp() int32` +`func (o *RealtimeEntryAggregated) GetOtfp() int64` GetOtfp returns the Otfp field if non-nil, zero value otherwise. ### GetOtfpOk -`func (o *RealtimeEntryAggregated) GetOtfpOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOtfpOk() (*int64, bool)` GetOtfpOk returns a tuple with the Otfp field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfp -`func (o *RealtimeEntryAggregated) SetOtfp(v int32)` +`func (o *RealtimeEntryAggregated) SetOtfp(v int64)` SetOtfp sets Otfp field to given value. @@ -922,20 +922,20 @@ HasOtfp returns a boolean if a field has been set. ### GetOtfpShield -`func (o *RealtimeEntryAggregated) GetOtfpShield() int32` +`func (o *RealtimeEntryAggregated) GetOtfpShield() int64` GetOtfpShield returns the OtfpShield field if non-nil, zero value otherwise. ### GetOtfpShieldOk -`func (o *RealtimeEntryAggregated) GetOtfpShieldOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOtfpShieldOk() (*int64, bool)` GetOtfpShieldOk returns a tuple with the OtfpShield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpShield -`func (o *RealtimeEntryAggregated) SetOtfpShield(v int32)` +`func (o *RealtimeEntryAggregated) SetOtfpShield(v int64)` SetOtfpShield sets OtfpShield field to given value. @@ -947,20 +947,20 @@ HasOtfpShield returns a boolean if a field has been set. ### GetOtfpManifests -`func (o *RealtimeEntryAggregated) GetOtfpManifests() int32` +`func (o *RealtimeEntryAggregated) GetOtfpManifests() int64` GetOtfpManifests returns the OtfpManifests field if non-nil, zero value otherwise. ### GetOtfpManifestsOk -`func (o *RealtimeEntryAggregated) GetOtfpManifestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOtfpManifestsOk() (*int64, bool)` GetOtfpManifestsOk returns a tuple with the OtfpManifests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpManifests -`func (o *RealtimeEntryAggregated) SetOtfpManifests(v int32)` +`func (o *RealtimeEntryAggregated) SetOtfpManifests(v int64)` SetOtfpManifests sets OtfpManifests field to given value. @@ -972,20 +972,20 @@ HasOtfpManifests returns a boolean if a field has been set. ### GetVideo -`func (o *RealtimeEntryAggregated) GetVideo() int32` +`func (o *RealtimeEntryAggregated) GetVideo() int64` GetVideo returns the Video field if non-nil, zero value otherwise. ### GetVideoOk -`func (o *RealtimeEntryAggregated) GetVideoOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetVideoOk() (*int64, bool)` GetVideoOk returns a tuple with the Video field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetVideo -`func (o *RealtimeEntryAggregated) SetVideo(v int32)` +`func (o *RealtimeEntryAggregated) SetVideo(v int64)` SetVideo sets Video field to given value. @@ -997,20 +997,20 @@ HasVideo returns a boolean if a field has been set. ### GetPci -`func (o *RealtimeEntryAggregated) GetPci() int32` +`func (o *RealtimeEntryAggregated) GetPci() int64` GetPci returns the Pci field if non-nil, zero value otherwise. ### GetPciOk -`func (o *RealtimeEntryAggregated) GetPciOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetPciOk() (*int64, bool)` GetPciOk returns a tuple with the Pci field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPci -`func (o *RealtimeEntryAggregated) SetPci(v int32)` +`func (o *RealtimeEntryAggregated) SetPci(v int64)` SetPci sets Pci field to given value. @@ -1022,20 +1022,20 @@ HasPci returns a boolean if a field has been set. ### GetHTTP2 -`func (o *RealtimeEntryAggregated) GetHTTP2() int32` +`func (o *RealtimeEntryAggregated) GetHTTP2() int64` GetHTTP2 returns the HTTP2 field if non-nil, zero value otherwise. ### GetHTTP2Ok -`func (o *RealtimeEntryAggregated) GetHTTP2Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetHTTP2Ok() (*int64, bool)` GetHTTP2Ok returns a tuple with the HTTP2 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHTTP2 -`func (o *RealtimeEntryAggregated) SetHTTP2(v int32)` +`func (o *RealtimeEntryAggregated) SetHTTP2(v int64)` SetHTTP2 sets HTTP2 field to given value. @@ -1047,20 +1047,20 @@ HasHTTP2 returns a boolean if a field has been set. ### GetHTTP3 -`func (o *RealtimeEntryAggregated) GetHTTP3() int32` +`func (o *RealtimeEntryAggregated) GetHTTP3() int64` GetHTTP3 returns the HTTP3 field if non-nil, zero value otherwise. ### GetHTTP3Ok -`func (o *RealtimeEntryAggregated) GetHTTP3Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetHTTP3Ok() (*int64, bool)` GetHTTP3Ok returns a tuple with the HTTP3 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHTTP3 -`func (o *RealtimeEntryAggregated) SetHTTP3(v int32)` +`func (o *RealtimeEntryAggregated) SetHTTP3(v int64)` SetHTTP3 sets HTTP3 field to given value. @@ -1072,20 +1072,20 @@ HasHTTP3 returns a boolean if a field has been set. ### GetRestarts -`func (o *RealtimeEntryAggregated) GetRestarts() int32` +`func (o *RealtimeEntryAggregated) GetRestarts() int64` GetRestarts returns the Restarts field if non-nil, zero value otherwise. ### GetRestartsOk -`func (o *RealtimeEntryAggregated) GetRestartsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetRestartsOk() (*int64, bool)` GetRestartsOk returns a tuple with the Restarts field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRestarts -`func (o *RealtimeEntryAggregated) SetRestarts(v int32)` +`func (o *RealtimeEntryAggregated) SetRestarts(v int64)` SetRestarts sets Restarts field to given value. @@ -1097,20 +1097,20 @@ HasRestarts returns a boolean if a field has been set. ### GetReqHeaderBytes -`func (o *RealtimeEntryAggregated) GetReqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetReqHeaderBytes() int64` GetReqHeaderBytes returns the ReqHeaderBytes field if non-nil, zero value otherwise. ### GetReqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetReqHeaderBytesOk() (*int64, bool)` GetReqHeaderBytesOk returns a tuple with the ReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetReqHeaderBytes -`func (o *RealtimeEntryAggregated) SetReqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetReqHeaderBytes(v int64)` SetReqHeaderBytes sets ReqHeaderBytes field to given value. @@ -1122,20 +1122,20 @@ HasReqHeaderBytes returns a boolean if a field has been set. ### GetReqBodyBytes -`func (o *RealtimeEntryAggregated) GetReqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetReqBodyBytes() int64` GetReqBodyBytes returns the ReqBodyBytes field if non-nil, zero value otherwise. ### GetReqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetReqBodyBytesOk() (*int64, bool)` GetReqBodyBytesOk returns a tuple with the ReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetReqBodyBytes -`func (o *RealtimeEntryAggregated) SetReqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetReqBodyBytes(v int64)` SetReqBodyBytes sets ReqBodyBytes field to given value. @@ -1147,20 +1147,20 @@ HasReqBodyBytes returns a boolean if a field has been set. ### GetBereqHeaderBytes -`func (o *RealtimeEntryAggregated) GetBereqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetBereqHeaderBytes() int64` GetBereqHeaderBytes returns the BereqHeaderBytes field if non-nil, zero value otherwise. ### GetBereqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetBereqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBereqHeaderBytesOk() (*int64, bool)` GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqHeaderBytes -`func (o *RealtimeEntryAggregated) SetBereqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetBereqHeaderBytes(v int64)` SetBereqHeaderBytes sets BereqHeaderBytes field to given value. @@ -1172,20 +1172,20 @@ HasBereqHeaderBytes returns a boolean if a field has been set. ### GetBereqBodyBytes -`func (o *RealtimeEntryAggregated) GetBereqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetBereqBodyBytes() int64` GetBereqBodyBytes returns the BereqBodyBytes field if non-nil, zero value otherwise. ### GetBereqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetBereqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBereqBodyBytesOk() (*int64, bool)` GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqBodyBytes -`func (o *RealtimeEntryAggregated) SetBereqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetBereqBodyBytes(v int64)` SetBereqBodyBytes sets BereqBodyBytes field to given value. @@ -1197,20 +1197,20 @@ HasBereqBodyBytes returns a boolean if a field has been set. ### GetWafBlocked -`func (o *RealtimeEntryAggregated) GetWafBlocked() int32` +`func (o *RealtimeEntryAggregated) GetWafBlocked() int64` GetWafBlocked returns the WafBlocked field if non-nil, zero value otherwise. ### GetWafBlockedOk -`func (o *RealtimeEntryAggregated) GetWafBlockedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWafBlockedOk() (*int64, bool)` GetWafBlockedOk returns a tuple with the WafBlocked field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafBlocked -`func (o *RealtimeEntryAggregated) SetWafBlocked(v int32)` +`func (o *RealtimeEntryAggregated) SetWafBlocked(v int64)` SetWafBlocked sets WafBlocked field to given value. @@ -1222,20 +1222,20 @@ HasWafBlocked returns a boolean if a field has been set. ### GetWafLogged -`func (o *RealtimeEntryAggregated) GetWafLogged() int32` +`func (o *RealtimeEntryAggregated) GetWafLogged() int64` GetWafLogged returns the WafLogged field if non-nil, zero value otherwise. ### GetWafLoggedOk -`func (o *RealtimeEntryAggregated) GetWafLoggedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWafLoggedOk() (*int64, bool)` GetWafLoggedOk returns a tuple with the WafLogged field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLogged -`func (o *RealtimeEntryAggregated) SetWafLogged(v int32)` +`func (o *RealtimeEntryAggregated) SetWafLogged(v int64)` SetWafLogged sets WafLogged field to given value. @@ -1247,20 +1247,20 @@ HasWafLogged returns a boolean if a field has been set. ### GetWafPassed -`func (o *RealtimeEntryAggregated) GetWafPassed() int32` +`func (o *RealtimeEntryAggregated) GetWafPassed() int64` GetWafPassed returns the WafPassed field if non-nil, zero value otherwise. ### GetWafPassedOk -`func (o *RealtimeEntryAggregated) GetWafPassedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWafPassedOk() (*int64, bool)` GetWafPassedOk returns a tuple with the WafPassed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafPassed -`func (o *RealtimeEntryAggregated) SetWafPassed(v int32)` +`func (o *RealtimeEntryAggregated) SetWafPassed(v int64)` SetWafPassed sets WafPassed field to given value. @@ -1272,20 +1272,20 @@ HasWafPassed returns a boolean if a field has been set. ### GetAttackReqHeaderBytes -`func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytes() int64` GetAttackReqHeaderBytes returns the AttackReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackReqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytesOk() (*int64, bool)` GetAttackReqHeaderBytesOk returns a tuple with the AttackReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackReqHeaderBytes -`func (o *RealtimeEntryAggregated) SetAttackReqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackReqHeaderBytes(v int64)` SetAttackReqHeaderBytes sets AttackReqHeaderBytes field to given value. @@ -1297,20 +1297,20 @@ HasAttackReqHeaderBytes returns a boolean if a field has been set. ### GetAttackReqBodyBytes -`func (o *RealtimeEntryAggregated) GetAttackReqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackReqBodyBytes() int64` GetAttackReqBodyBytes returns the AttackReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackReqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetAttackReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackReqBodyBytesOk() (*int64, bool)` GetAttackReqBodyBytesOk returns a tuple with the AttackReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackReqBodyBytes -`func (o *RealtimeEntryAggregated) SetAttackReqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackReqBodyBytes(v int64)` SetAttackReqBodyBytes sets AttackReqBodyBytes field to given value. @@ -1322,20 +1322,20 @@ HasAttackReqBodyBytes returns a boolean if a field has been set. ### GetAttackRespSynthBytes -`func (o *RealtimeEntryAggregated) GetAttackRespSynthBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackRespSynthBytes() int64` GetAttackRespSynthBytes returns the AttackRespSynthBytes field if non-nil, zero value otherwise. ### GetAttackRespSynthBytesOk -`func (o *RealtimeEntryAggregated) GetAttackRespSynthBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackRespSynthBytesOk() (*int64, bool)` GetAttackRespSynthBytesOk returns a tuple with the AttackRespSynthBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackRespSynthBytes -`func (o *RealtimeEntryAggregated) SetAttackRespSynthBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackRespSynthBytes(v int64)` SetAttackRespSynthBytes sets AttackRespSynthBytes field to given value. @@ -1347,20 +1347,20 @@ HasAttackRespSynthBytes returns a boolean if a field has been set. ### GetAttackLoggedReqHeaderBytes -`func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytes() int64` GetAttackLoggedReqHeaderBytes returns the AttackLoggedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackLoggedReqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytesOk() (*int64, bool)` GetAttackLoggedReqHeaderBytesOk returns a tuple with the AttackLoggedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackLoggedReqHeaderBytes -`func (o *RealtimeEntryAggregated) SetAttackLoggedReqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackLoggedReqHeaderBytes(v int64)` SetAttackLoggedReqHeaderBytes sets AttackLoggedReqHeaderBytes field to given value. @@ -1372,20 +1372,20 @@ HasAttackLoggedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackLoggedReqBodyBytes -`func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytes() int64` GetAttackLoggedReqBodyBytes returns the AttackLoggedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackLoggedReqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytesOk() (*int64, bool)` GetAttackLoggedReqBodyBytesOk returns a tuple with the AttackLoggedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackLoggedReqBodyBytes -`func (o *RealtimeEntryAggregated) SetAttackLoggedReqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackLoggedReqBodyBytes(v int64)` SetAttackLoggedReqBodyBytes sets AttackLoggedReqBodyBytes field to given value. @@ -1397,20 +1397,20 @@ HasAttackLoggedReqBodyBytes returns a boolean if a field has been set. ### GetAttackBlockedReqHeaderBytes -`func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytes() int64` GetAttackBlockedReqHeaderBytes returns the AttackBlockedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackBlockedReqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytesOk() (*int64, bool)` GetAttackBlockedReqHeaderBytesOk returns a tuple with the AttackBlockedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackBlockedReqHeaderBytes -`func (o *RealtimeEntryAggregated) SetAttackBlockedReqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackBlockedReqHeaderBytes(v int64)` SetAttackBlockedReqHeaderBytes sets AttackBlockedReqHeaderBytes field to given value. @@ -1422,20 +1422,20 @@ HasAttackBlockedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackBlockedReqBodyBytes -`func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytes() int64` GetAttackBlockedReqBodyBytes returns the AttackBlockedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackBlockedReqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytesOk() (*int64, bool)` GetAttackBlockedReqBodyBytesOk returns a tuple with the AttackBlockedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackBlockedReqBodyBytes -`func (o *RealtimeEntryAggregated) SetAttackBlockedReqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackBlockedReqBodyBytes(v int64)` SetAttackBlockedReqBodyBytes sets AttackBlockedReqBodyBytes field to given value. @@ -1447,20 +1447,20 @@ HasAttackBlockedReqBodyBytes returns a boolean if a field has been set. ### GetAttackPassedReqHeaderBytes -`func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytes() int64` GetAttackPassedReqHeaderBytes returns the AttackPassedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackPassedReqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytesOk() (*int64, bool)` GetAttackPassedReqHeaderBytesOk returns a tuple with the AttackPassedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackPassedReqHeaderBytes -`func (o *RealtimeEntryAggregated) SetAttackPassedReqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackPassedReqHeaderBytes(v int64)` SetAttackPassedReqHeaderBytes sets AttackPassedReqHeaderBytes field to given value. @@ -1472,20 +1472,20 @@ HasAttackPassedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackPassedReqBodyBytes -`func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytes() int64` GetAttackPassedReqBodyBytes returns the AttackPassedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackPassedReqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytesOk() (*int64, bool)` GetAttackPassedReqBodyBytesOk returns a tuple with the AttackPassedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackPassedReqBodyBytes -`func (o *RealtimeEntryAggregated) SetAttackPassedReqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetAttackPassedReqBodyBytes(v int64)` SetAttackPassedReqBodyBytes sets AttackPassedReqBodyBytes field to given value. @@ -1497,20 +1497,20 @@ HasAttackPassedReqBodyBytes returns a boolean if a field has been set. ### GetShieldRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytes() int64` GetShieldRespHeaderBytes returns the ShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytesOk() (*int64, bool)` GetShieldRespHeaderBytesOk returns a tuple with the ShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetShieldRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldRespHeaderBytes(v int64)` SetShieldRespHeaderBytes sets ShieldRespHeaderBytes field to given value. @@ -1522,20 +1522,20 @@ HasShieldRespHeaderBytes returns a boolean if a field has been set. ### GetShieldRespBodyBytes -`func (o *RealtimeEntryAggregated) GetShieldRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldRespBodyBytes() int64` GetShieldRespBodyBytes returns the ShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetShieldRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldRespBodyBytesOk() (*int64, bool)` GetShieldRespBodyBytesOk returns a tuple with the ShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRespBodyBytes -`func (o *RealtimeEntryAggregated) SetShieldRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldRespBodyBytes(v int64)` SetShieldRespBodyBytes sets ShieldRespBodyBytes field to given value. @@ -1547,20 +1547,20 @@ HasShieldRespBodyBytes returns a boolean if a field has been set. ### GetOtfpRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytes() int64` GetOtfpRespHeaderBytes returns the OtfpRespHeaderBytes field if non-nil, zero value otherwise. ### GetOtfpRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytesOk() (*int64, bool)` GetOtfpRespHeaderBytesOk returns a tuple with the OtfpRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetOtfpRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOtfpRespHeaderBytes(v int64)` SetOtfpRespHeaderBytes sets OtfpRespHeaderBytes field to given value. @@ -1572,20 +1572,20 @@ HasOtfpRespHeaderBytes returns a boolean if a field has been set. ### GetOtfpRespBodyBytes -`func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytes() int64` GetOtfpRespBodyBytes returns the OtfpRespBodyBytes field if non-nil, zero value otherwise. ### GetOtfpRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytesOk() (*int64, bool)` GetOtfpRespBodyBytesOk returns a tuple with the OtfpRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpRespBodyBytes -`func (o *RealtimeEntryAggregated) SetOtfpRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOtfpRespBodyBytes(v int64)` SetOtfpRespBodyBytes sets OtfpRespBodyBytes field to given value. @@ -1597,20 +1597,20 @@ HasOtfpRespBodyBytes returns a boolean if a field has been set. ### GetOtfpShieldRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytes() int64` GetOtfpShieldRespHeaderBytes returns the OtfpShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetOtfpShieldRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytesOk() (*int64, bool)` GetOtfpShieldRespHeaderBytesOk returns a tuple with the OtfpShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpShieldRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetOtfpShieldRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOtfpShieldRespHeaderBytes(v int64)` SetOtfpShieldRespHeaderBytes sets OtfpShieldRespHeaderBytes field to given value. @@ -1622,20 +1622,20 @@ HasOtfpShieldRespHeaderBytes returns a boolean if a field has been set. ### GetOtfpShieldRespBodyBytes -`func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytes() int64` GetOtfpShieldRespBodyBytes returns the OtfpShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetOtfpShieldRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytesOk() (*int64, bool)` GetOtfpShieldRespBodyBytesOk returns a tuple with the OtfpShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpShieldRespBodyBytes -`func (o *RealtimeEntryAggregated) SetOtfpShieldRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOtfpShieldRespBodyBytes(v int64)` SetOtfpShieldRespBodyBytes sets OtfpShieldRespBodyBytes field to given value. @@ -1697,20 +1697,20 @@ HasOtfpDeliverTime returns a boolean if a field has been set. ### GetImgoptoRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytes() int64` GetImgoptoRespHeaderBytes returns the ImgoptoRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgoptoRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytesOk() (*int64, bool)` GetImgoptoRespHeaderBytesOk returns a tuple with the ImgoptoRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetImgoptoRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetImgoptoRespHeaderBytes(v int64)` SetImgoptoRespHeaderBytes sets ImgoptoRespHeaderBytes field to given value. @@ -1722,20 +1722,20 @@ HasImgoptoRespHeaderBytes returns a boolean if a field has been set. ### GetImgoptoRespBodyBytes -`func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytes() int64` GetImgoptoRespBodyBytes returns the ImgoptoRespBodyBytes field if non-nil, zero value otherwise. ### GetImgoptoRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytesOk() (*int64, bool)` GetImgoptoRespBodyBytesOk returns a tuple with the ImgoptoRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoRespBodyBytes -`func (o *RealtimeEntryAggregated) SetImgoptoRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetImgoptoRespBodyBytes(v int64)` SetImgoptoRespBodyBytes sets ImgoptoRespBodyBytes field to given value. @@ -1747,20 +1747,20 @@ HasImgoptoRespBodyBytes returns a boolean if a field has been set. ### GetImgoptoShieldRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytes() int64` GetImgoptoShieldRespHeaderBytes returns the ImgoptoShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgoptoShieldRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytesOk() (*int64, bool)` GetImgoptoShieldRespHeaderBytesOk returns a tuple with the ImgoptoShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShieldRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetImgoptoShieldRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetImgoptoShieldRespHeaderBytes(v int64)` SetImgoptoShieldRespHeaderBytes sets ImgoptoShieldRespHeaderBytes field to given value. @@ -1772,20 +1772,20 @@ HasImgoptoShieldRespHeaderBytes returns a boolean if a field has been set. ### GetImgoptoShieldRespBodyBytes -`func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytes() int64` GetImgoptoShieldRespBodyBytes returns the ImgoptoShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetImgoptoShieldRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytesOk() (*int64, bool)` GetImgoptoShieldRespBodyBytesOk returns a tuple with the ImgoptoShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShieldRespBodyBytes -`func (o *RealtimeEntryAggregated) SetImgoptoShieldRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetImgoptoShieldRespBodyBytes(v int64)` SetImgoptoShieldRespBodyBytes sets ImgoptoShieldRespBodyBytes field to given value. @@ -1797,20 +1797,20 @@ HasImgoptoShieldRespBodyBytes returns a boolean if a field has been set. ### GetStatus1xx -`func (o *RealtimeEntryAggregated) GetStatus1xx() int32` +`func (o *RealtimeEntryAggregated) GetStatus1xx() int64` GetStatus1xx returns the Status1xx field if non-nil, zero value otherwise. ### GetStatus1xxOk -`func (o *RealtimeEntryAggregated) GetStatus1xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus1xxOk() (*int64, bool)` GetStatus1xxOk returns a tuple with the Status1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus1xx -`func (o *RealtimeEntryAggregated) SetStatus1xx(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus1xx(v int64)` SetStatus1xx sets Status1xx field to given value. @@ -1822,20 +1822,20 @@ HasStatus1xx returns a boolean if a field has been set. ### GetStatus2xx -`func (o *RealtimeEntryAggregated) GetStatus2xx() int32` +`func (o *RealtimeEntryAggregated) GetStatus2xx() int64` GetStatus2xx returns the Status2xx field if non-nil, zero value otherwise. ### GetStatus2xxOk -`func (o *RealtimeEntryAggregated) GetStatus2xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus2xxOk() (*int64, bool)` GetStatus2xxOk returns a tuple with the Status2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus2xx -`func (o *RealtimeEntryAggregated) SetStatus2xx(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus2xx(v int64)` SetStatus2xx sets Status2xx field to given value. @@ -1847,20 +1847,20 @@ HasStatus2xx returns a boolean if a field has been set. ### GetStatus3xx -`func (o *RealtimeEntryAggregated) GetStatus3xx() int32` +`func (o *RealtimeEntryAggregated) GetStatus3xx() int64` GetStatus3xx returns the Status3xx field if non-nil, zero value otherwise. ### GetStatus3xxOk -`func (o *RealtimeEntryAggregated) GetStatus3xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus3xxOk() (*int64, bool)` GetStatus3xxOk returns a tuple with the Status3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus3xx -`func (o *RealtimeEntryAggregated) SetStatus3xx(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus3xx(v int64)` SetStatus3xx sets Status3xx field to given value. @@ -1872,20 +1872,20 @@ HasStatus3xx returns a boolean if a field has been set. ### GetStatus4xx -`func (o *RealtimeEntryAggregated) GetStatus4xx() int32` +`func (o *RealtimeEntryAggregated) GetStatus4xx() int64` GetStatus4xx returns the Status4xx field if non-nil, zero value otherwise. ### GetStatus4xxOk -`func (o *RealtimeEntryAggregated) GetStatus4xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus4xxOk() (*int64, bool)` GetStatus4xxOk returns a tuple with the Status4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus4xx -`func (o *RealtimeEntryAggregated) SetStatus4xx(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus4xx(v int64)` SetStatus4xx sets Status4xx field to given value. @@ -1897,20 +1897,20 @@ HasStatus4xx returns a boolean if a field has been set. ### GetStatus5xx -`func (o *RealtimeEntryAggregated) GetStatus5xx() int32` +`func (o *RealtimeEntryAggregated) GetStatus5xx() int64` GetStatus5xx returns the Status5xx field if non-nil, zero value otherwise. ### GetStatus5xxOk -`func (o *RealtimeEntryAggregated) GetStatus5xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus5xxOk() (*int64, bool)` GetStatus5xxOk returns a tuple with the Status5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus5xx -`func (o *RealtimeEntryAggregated) SetStatus5xx(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus5xx(v int64)` SetStatus5xx sets Status5xx field to given value. @@ -1922,20 +1922,20 @@ HasStatus5xx returns a boolean if a field has been set. ### GetStatus200 -`func (o *RealtimeEntryAggregated) GetStatus200() int32` +`func (o *RealtimeEntryAggregated) GetStatus200() int64` GetStatus200 returns the Status200 field if non-nil, zero value otherwise. ### GetStatus200Ok -`func (o *RealtimeEntryAggregated) GetStatus200Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus200Ok() (*int64, bool)` GetStatus200Ok returns a tuple with the Status200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus200 -`func (o *RealtimeEntryAggregated) SetStatus200(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus200(v int64)` SetStatus200 sets Status200 field to given value. @@ -1947,20 +1947,20 @@ HasStatus200 returns a boolean if a field has been set. ### GetStatus204 -`func (o *RealtimeEntryAggregated) GetStatus204() int32` +`func (o *RealtimeEntryAggregated) GetStatus204() int64` GetStatus204 returns the Status204 field if non-nil, zero value otherwise. ### GetStatus204Ok -`func (o *RealtimeEntryAggregated) GetStatus204Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus204Ok() (*int64, bool)` GetStatus204Ok returns a tuple with the Status204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus204 -`func (o *RealtimeEntryAggregated) SetStatus204(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus204(v int64)` SetStatus204 sets Status204 field to given value. @@ -1972,20 +1972,20 @@ HasStatus204 returns a boolean if a field has been set. ### GetStatus206 -`func (o *RealtimeEntryAggregated) GetStatus206() int32` +`func (o *RealtimeEntryAggregated) GetStatus206() int64` GetStatus206 returns the Status206 field if non-nil, zero value otherwise. ### GetStatus206Ok -`func (o *RealtimeEntryAggregated) GetStatus206Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus206Ok() (*int64, bool)` GetStatus206Ok returns a tuple with the Status206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus206 -`func (o *RealtimeEntryAggregated) SetStatus206(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus206(v int64)` SetStatus206 sets Status206 field to given value. @@ -1997,20 +1997,20 @@ HasStatus206 returns a boolean if a field has been set. ### GetStatus301 -`func (o *RealtimeEntryAggregated) GetStatus301() int32` +`func (o *RealtimeEntryAggregated) GetStatus301() int64` GetStatus301 returns the Status301 field if non-nil, zero value otherwise. ### GetStatus301Ok -`func (o *RealtimeEntryAggregated) GetStatus301Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus301Ok() (*int64, bool)` GetStatus301Ok returns a tuple with the Status301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus301 -`func (o *RealtimeEntryAggregated) SetStatus301(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus301(v int64)` SetStatus301 sets Status301 field to given value. @@ -2022,20 +2022,20 @@ HasStatus301 returns a boolean if a field has been set. ### GetStatus302 -`func (o *RealtimeEntryAggregated) GetStatus302() int32` +`func (o *RealtimeEntryAggregated) GetStatus302() int64` GetStatus302 returns the Status302 field if non-nil, zero value otherwise. ### GetStatus302Ok -`func (o *RealtimeEntryAggregated) GetStatus302Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus302Ok() (*int64, bool)` GetStatus302Ok returns a tuple with the Status302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus302 -`func (o *RealtimeEntryAggregated) SetStatus302(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus302(v int64)` SetStatus302 sets Status302 field to given value. @@ -2047,20 +2047,20 @@ HasStatus302 returns a boolean if a field has been set. ### GetStatus304 -`func (o *RealtimeEntryAggregated) GetStatus304() int32` +`func (o *RealtimeEntryAggregated) GetStatus304() int64` GetStatus304 returns the Status304 field if non-nil, zero value otherwise. ### GetStatus304Ok -`func (o *RealtimeEntryAggregated) GetStatus304Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus304Ok() (*int64, bool)` GetStatus304Ok returns a tuple with the Status304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus304 -`func (o *RealtimeEntryAggregated) SetStatus304(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus304(v int64)` SetStatus304 sets Status304 field to given value. @@ -2072,20 +2072,20 @@ HasStatus304 returns a boolean if a field has been set. ### GetStatus400 -`func (o *RealtimeEntryAggregated) GetStatus400() int32` +`func (o *RealtimeEntryAggregated) GetStatus400() int64` GetStatus400 returns the Status400 field if non-nil, zero value otherwise. ### GetStatus400Ok -`func (o *RealtimeEntryAggregated) GetStatus400Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus400Ok() (*int64, bool)` GetStatus400Ok returns a tuple with the Status400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus400 -`func (o *RealtimeEntryAggregated) SetStatus400(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus400(v int64)` SetStatus400 sets Status400 field to given value. @@ -2097,20 +2097,20 @@ HasStatus400 returns a boolean if a field has been set. ### GetStatus401 -`func (o *RealtimeEntryAggregated) GetStatus401() int32` +`func (o *RealtimeEntryAggregated) GetStatus401() int64` GetStatus401 returns the Status401 field if non-nil, zero value otherwise. ### GetStatus401Ok -`func (o *RealtimeEntryAggregated) GetStatus401Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus401Ok() (*int64, bool)` GetStatus401Ok returns a tuple with the Status401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus401 -`func (o *RealtimeEntryAggregated) SetStatus401(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus401(v int64)` SetStatus401 sets Status401 field to given value. @@ -2122,20 +2122,20 @@ HasStatus401 returns a boolean if a field has been set. ### GetStatus403 -`func (o *RealtimeEntryAggregated) GetStatus403() int32` +`func (o *RealtimeEntryAggregated) GetStatus403() int64` GetStatus403 returns the Status403 field if non-nil, zero value otherwise. ### GetStatus403Ok -`func (o *RealtimeEntryAggregated) GetStatus403Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus403Ok() (*int64, bool)` GetStatus403Ok returns a tuple with the Status403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus403 -`func (o *RealtimeEntryAggregated) SetStatus403(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus403(v int64)` SetStatus403 sets Status403 field to given value. @@ -2147,20 +2147,20 @@ HasStatus403 returns a boolean if a field has been set. ### GetStatus404 -`func (o *RealtimeEntryAggregated) GetStatus404() int32` +`func (o *RealtimeEntryAggregated) GetStatus404() int64` GetStatus404 returns the Status404 field if non-nil, zero value otherwise. ### GetStatus404Ok -`func (o *RealtimeEntryAggregated) GetStatus404Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus404Ok() (*int64, bool)` GetStatus404Ok returns a tuple with the Status404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus404 -`func (o *RealtimeEntryAggregated) SetStatus404(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus404(v int64)` SetStatus404 sets Status404 field to given value. @@ -2172,20 +2172,20 @@ HasStatus404 returns a boolean if a field has been set. ### GetStatus406 -`func (o *RealtimeEntryAggregated) GetStatus406() int32` +`func (o *RealtimeEntryAggregated) GetStatus406() int64` GetStatus406 returns the Status406 field if non-nil, zero value otherwise. ### GetStatus406Ok -`func (o *RealtimeEntryAggregated) GetStatus406Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus406Ok() (*int64, bool)` GetStatus406Ok returns a tuple with the Status406 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus406 -`func (o *RealtimeEntryAggregated) SetStatus406(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus406(v int64)` SetStatus406 sets Status406 field to given value. @@ -2197,20 +2197,20 @@ HasStatus406 returns a boolean if a field has been set. ### GetStatus416 -`func (o *RealtimeEntryAggregated) GetStatus416() int32` +`func (o *RealtimeEntryAggregated) GetStatus416() int64` GetStatus416 returns the Status416 field if non-nil, zero value otherwise. ### GetStatus416Ok -`func (o *RealtimeEntryAggregated) GetStatus416Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus416Ok() (*int64, bool)` GetStatus416Ok returns a tuple with the Status416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus416 -`func (o *RealtimeEntryAggregated) SetStatus416(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus416(v int64)` SetStatus416 sets Status416 field to given value. @@ -2222,20 +2222,20 @@ HasStatus416 returns a boolean if a field has been set. ### GetStatus429 -`func (o *RealtimeEntryAggregated) GetStatus429() int32` +`func (o *RealtimeEntryAggregated) GetStatus429() int64` GetStatus429 returns the Status429 field if non-nil, zero value otherwise. ### GetStatus429Ok -`func (o *RealtimeEntryAggregated) GetStatus429Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus429Ok() (*int64, bool)` GetStatus429Ok returns a tuple with the Status429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus429 -`func (o *RealtimeEntryAggregated) SetStatus429(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus429(v int64)` SetStatus429 sets Status429 field to given value. @@ -2247,20 +2247,20 @@ HasStatus429 returns a boolean if a field has been set. ### GetStatus500 -`func (o *RealtimeEntryAggregated) GetStatus500() int32` +`func (o *RealtimeEntryAggregated) GetStatus500() int64` GetStatus500 returns the Status500 field if non-nil, zero value otherwise. ### GetStatus500Ok -`func (o *RealtimeEntryAggregated) GetStatus500Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus500Ok() (*int64, bool)` GetStatus500Ok returns a tuple with the Status500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus500 -`func (o *RealtimeEntryAggregated) SetStatus500(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus500(v int64)` SetStatus500 sets Status500 field to given value. @@ -2272,20 +2272,20 @@ HasStatus500 returns a boolean if a field has been set. ### GetStatus501 -`func (o *RealtimeEntryAggregated) GetStatus501() int32` +`func (o *RealtimeEntryAggregated) GetStatus501() int64` GetStatus501 returns the Status501 field if non-nil, zero value otherwise. ### GetStatus501Ok -`func (o *RealtimeEntryAggregated) GetStatus501Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus501Ok() (*int64, bool)` GetStatus501Ok returns a tuple with the Status501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus501 -`func (o *RealtimeEntryAggregated) SetStatus501(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus501(v int64)` SetStatus501 sets Status501 field to given value. @@ -2297,20 +2297,20 @@ HasStatus501 returns a boolean if a field has been set. ### GetStatus502 -`func (o *RealtimeEntryAggregated) GetStatus502() int32` +`func (o *RealtimeEntryAggregated) GetStatus502() int64` GetStatus502 returns the Status502 field if non-nil, zero value otherwise. ### GetStatus502Ok -`func (o *RealtimeEntryAggregated) GetStatus502Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus502Ok() (*int64, bool)` GetStatus502Ok returns a tuple with the Status502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus502 -`func (o *RealtimeEntryAggregated) SetStatus502(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus502(v int64)` SetStatus502 sets Status502 field to given value. @@ -2322,20 +2322,20 @@ HasStatus502 returns a boolean if a field has been set. ### GetStatus503 -`func (o *RealtimeEntryAggregated) GetStatus503() int32` +`func (o *RealtimeEntryAggregated) GetStatus503() int64` GetStatus503 returns the Status503 field if non-nil, zero value otherwise. ### GetStatus503Ok -`func (o *RealtimeEntryAggregated) GetStatus503Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus503Ok() (*int64, bool)` GetStatus503Ok returns a tuple with the Status503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus503 -`func (o *RealtimeEntryAggregated) SetStatus503(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus503(v int64)` SetStatus503 sets Status503 field to given value. @@ -2347,20 +2347,20 @@ HasStatus503 returns a boolean if a field has been set. ### GetStatus504 -`func (o *RealtimeEntryAggregated) GetStatus504() int32` +`func (o *RealtimeEntryAggregated) GetStatus504() int64` GetStatus504 returns the Status504 field if non-nil, zero value otherwise. ### GetStatus504Ok -`func (o *RealtimeEntryAggregated) GetStatus504Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus504Ok() (*int64, bool)` GetStatus504Ok returns a tuple with the Status504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus504 -`func (o *RealtimeEntryAggregated) SetStatus504(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus504(v int64)` SetStatus504 sets Status504 field to given value. @@ -2372,20 +2372,20 @@ HasStatus504 returns a boolean if a field has been set. ### GetStatus505 -`func (o *RealtimeEntryAggregated) GetStatus505() int32` +`func (o *RealtimeEntryAggregated) GetStatus505() int64` GetStatus505 returns the Status505 field if non-nil, zero value otherwise. ### GetStatus505Ok -`func (o *RealtimeEntryAggregated) GetStatus505Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetStatus505Ok() (*int64, bool)` GetStatus505Ok returns a tuple with the Status505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus505 -`func (o *RealtimeEntryAggregated) SetStatus505(v int32)` +`func (o *RealtimeEntryAggregated) SetStatus505(v int64)` SetStatus505 sets Status505 field to given value. @@ -2397,20 +2397,20 @@ HasStatus505 returns a boolean if a field has been set. ### GetUncacheable -`func (o *RealtimeEntryAggregated) GetUncacheable() int32` +`func (o *RealtimeEntryAggregated) GetUncacheable() int64` GetUncacheable returns the Uncacheable field if non-nil, zero value otherwise. ### GetUncacheableOk -`func (o *RealtimeEntryAggregated) GetUncacheableOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetUncacheableOk() (*int64, bool)` GetUncacheableOk returns a tuple with the Uncacheable field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetUncacheable -`func (o *RealtimeEntryAggregated) SetUncacheable(v int32)` +`func (o *RealtimeEntryAggregated) SetUncacheable(v int64)` SetUncacheable sets Uncacheable field to given value. @@ -2447,20 +2447,20 @@ HasPassTime returns a boolean if a field has been set. ### GetTLS -`func (o *RealtimeEntryAggregated) GetTLS() int32` +`func (o *RealtimeEntryAggregated) GetTLS() int64` GetTLS returns the TLS field if non-nil, zero value otherwise. ### GetTLSOk -`func (o *RealtimeEntryAggregated) GetTLSOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetTLSOk() (*int64, bool)` GetTLSOk returns a tuple with the TLS field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLS -`func (o *RealtimeEntryAggregated) SetTLS(v int32)` +`func (o *RealtimeEntryAggregated) SetTLS(v int64)` SetTLS sets TLS field to given value. @@ -2472,20 +2472,20 @@ HasTLS returns a boolean if a field has been set. ### GetTLSV10 -`func (o *RealtimeEntryAggregated) GetTLSV10() int32` +`func (o *RealtimeEntryAggregated) GetTLSV10() int64` GetTLSV10 returns the TLSV10 field if non-nil, zero value otherwise. ### GetTLSV10Ok -`func (o *RealtimeEntryAggregated) GetTLSV10Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetTLSV10Ok() (*int64, bool)` GetTLSV10Ok returns a tuple with the TLSV10 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV10 -`func (o *RealtimeEntryAggregated) SetTLSV10(v int32)` +`func (o *RealtimeEntryAggregated) SetTLSV10(v int64)` SetTLSV10 sets TLSV10 field to given value. @@ -2497,20 +2497,20 @@ HasTLSV10 returns a boolean if a field has been set. ### GetTLSV11 -`func (o *RealtimeEntryAggregated) GetTLSV11() int32` +`func (o *RealtimeEntryAggregated) GetTLSV11() int64` GetTLSV11 returns the TLSV11 field if non-nil, zero value otherwise. ### GetTLSV11Ok -`func (o *RealtimeEntryAggregated) GetTLSV11Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetTLSV11Ok() (*int64, bool)` GetTLSV11Ok returns a tuple with the TLSV11 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV11 -`func (o *RealtimeEntryAggregated) SetTLSV11(v int32)` +`func (o *RealtimeEntryAggregated) SetTLSV11(v int64)` SetTLSV11 sets TLSV11 field to given value. @@ -2522,20 +2522,20 @@ HasTLSV11 returns a boolean if a field has been set. ### GetTLSV12 -`func (o *RealtimeEntryAggregated) GetTLSV12() int32` +`func (o *RealtimeEntryAggregated) GetTLSV12() int64` GetTLSV12 returns the TLSV12 field if non-nil, zero value otherwise. ### GetTLSV12Ok -`func (o *RealtimeEntryAggregated) GetTLSV12Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetTLSV12Ok() (*int64, bool)` GetTLSV12Ok returns a tuple with the TLSV12 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV12 -`func (o *RealtimeEntryAggregated) SetTLSV12(v int32)` +`func (o *RealtimeEntryAggregated) SetTLSV12(v int64)` SetTLSV12 sets TLSV12 field to given value. @@ -2547,20 +2547,20 @@ HasTLSV12 returns a boolean if a field has been set. ### GetTLSV13 -`func (o *RealtimeEntryAggregated) GetTLSV13() int32` +`func (o *RealtimeEntryAggregated) GetTLSV13() int64` GetTLSV13 returns the TLSV13 field if non-nil, zero value otherwise. ### GetTLSV13Ok -`func (o *RealtimeEntryAggregated) GetTLSV13Ok() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetTLSV13Ok() (*int64, bool)` GetTLSV13Ok returns a tuple with the TLSV13 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV13 -`func (o *RealtimeEntryAggregated) SetTLSV13(v int32)` +`func (o *RealtimeEntryAggregated) SetTLSV13(v int64)` SetTLSV13 sets TLSV13 field to given value. @@ -2572,20 +2572,20 @@ HasTLSV13 returns a boolean if a field has been set. ### GetObjectSize1k -`func (o *RealtimeEntryAggregated) GetObjectSize1k() int32` +`func (o *RealtimeEntryAggregated) GetObjectSize1k() int64` GetObjectSize1k returns the ObjectSize1k field if non-nil, zero value otherwise. ### GetObjectSize1kOk -`func (o *RealtimeEntryAggregated) GetObjectSize1kOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectSize1kOk() (*int64, bool)` GetObjectSize1kOk returns a tuple with the ObjectSize1k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1k -`func (o *RealtimeEntryAggregated) SetObjectSize1k(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectSize1k(v int64)` SetObjectSize1k sets ObjectSize1k field to given value. @@ -2597,20 +2597,20 @@ HasObjectSize1k returns a boolean if a field has been set. ### GetObjectSize10k -`func (o *RealtimeEntryAggregated) GetObjectSize10k() int32` +`func (o *RealtimeEntryAggregated) GetObjectSize10k() int64` GetObjectSize10k returns the ObjectSize10k field if non-nil, zero value otherwise. ### GetObjectSize10kOk -`func (o *RealtimeEntryAggregated) GetObjectSize10kOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectSize10kOk() (*int64, bool)` GetObjectSize10kOk returns a tuple with the ObjectSize10k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize10k -`func (o *RealtimeEntryAggregated) SetObjectSize10k(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectSize10k(v int64)` SetObjectSize10k sets ObjectSize10k field to given value. @@ -2622,20 +2622,20 @@ HasObjectSize10k returns a boolean if a field has been set. ### GetObjectSize100k -`func (o *RealtimeEntryAggregated) GetObjectSize100k() int32` +`func (o *RealtimeEntryAggregated) GetObjectSize100k() int64` GetObjectSize100k returns the ObjectSize100k field if non-nil, zero value otherwise. ### GetObjectSize100kOk -`func (o *RealtimeEntryAggregated) GetObjectSize100kOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectSize100kOk() (*int64, bool)` GetObjectSize100kOk returns a tuple with the ObjectSize100k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize100k -`func (o *RealtimeEntryAggregated) SetObjectSize100k(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectSize100k(v int64)` SetObjectSize100k sets ObjectSize100k field to given value. @@ -2647,20 +2647,20 @@ HasObjectSize100k returns a boolean if a field has been set. ### GetObjectSize1m -`func (o *RealtimeEntryAggregated) GetObjectSize1m() int32` +`func (o *RealtimeEntryAggregated) GetObjectSize1m() int64` GetObjectSize1m returns the ObjectSize1m field if non-nil, zero value otherwise. ### GetObjectSize1mOk -`func (o *RealtimeEntryAggregated) GetObjectSize1mOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectSize1mOk() (*int64, bool)` GetObjectSize1mOk returns a tuple with the ObjectSize1m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1m -`func (o *RealtimeEntryAggregated) SetObjectSize1m(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectSize1m(v int64)` SetObjectSize1m sets ObjectSize1m field to given value. @@ -2672,20 +2672,20 @@ HasObjectSize1m returns a boolean if a field has been set. ### GetObjectSize10m -`func (o *RealtimeEntryAggregated) GetObjectSize10m() int32` +`func (o *RealtimeEntryAggregated) GetObjectSize10m() int64` GetObjectSize10m returns the ObjectSize10m field if non-nil, zero value otherwise. ### GetObjectSize10mOk -`func (o *RealtimeEntryAggregated) GetObjectSize10mOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectSize10mOk() (*int64, bool)` GetObjectSize10mOk returns a tuple with the ObjectSize10m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize10m -`func (o *RealtimeEntryAggregated) SetObjectSize10m(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectSize10m(v int64)` SetObjectSize10m sets ObjectSize10m field to given value. @@ -2697,20 +2697,20 @@ HasObjectSize10m returns a boolean if a field has been set. ### GetObjectSize100m -`func (o *RealtimeEntryAggregated) GetObjectSize100m() int32` +`func (o *RealtimeEntryAggregated) GetObjectSize100m() int64` GetObjectSize100m returns the ObjectSize100m field if non-nil, zero value otherwise. ### GetObjectSize100mOk -`func (o *RealtimeEntryAggregated) GetObjectSize100mOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectSize100mOk() (*int64, bool)` GetObjectSize100mOk returns a tuple with the ObjectSize100m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize100m -`func (o *RealtimeEntryAggregated) SetObjectSize100m(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectSize100m(v int64)` SetObjectSize100m sets ObjectSize100m field to given value. @@ -2722,20 +2722,20 @@ HasObjectSize100m returns a boolean if a field has been set. ### GetObjectSize1g -`func (o *RealtimeEntryAggregated) GetObjectSize1g() int32` +`func (o *RealtimeEntryAggregated) GetObjectSize1g() int64` GetObjectSize1g returns the ObjectSize1g field if non-nil, zero value otherwise. ### GetObjectSize1gOk -`func (o *RealtimeEntryAggregated) GetObjectSize1gOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectSize1gOk() (*int64, bool)` GetObjectSize1gOk returns a tuple with the ObjectSize1g field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1g -`func (o *RealtimeEntryAggregated) SetObjectSize1g(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectSize1g(v int64)` SetObjectSize1g sets ObjectSize1g field to given value. @@ -2747,20 +2747,20 @@ HasObjectSize1g returns a boolean if a field has been set. ### GetObjectSizeOther -`func (o *RealtimeEntryAggregated) GetObjectSizeOther() int32` +`func (o *RealtimeEntryAggregated) GetObjectSizeOther() int64` GetObjectSizeOther returns the ObjectSizeOther field if non-nil, zero value otherwise. ### GetObjectSizeOtherOk -`func (o *RealtimeEntryAggregated) GetObjectSizeOtherOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectSizeOtherOk() (*int64, bool)` GetObjectSizeOtherOk returns a tuple with the ObjectSizeOther field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSizeOther -`func (o *RealtimeEntryAggregated) SetObjectSizeOther(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectSizeOther(v int64)` SetObjectSizeOther sets ObjectSizeOther field to given value. @@ -2797,20 +2797,20 @@ HasRecvSubTime returns a boolean if a field has been set. ### GetRecvSubCount -`func (o *RealtimeEntryAggregated) GetRecvSubCount() int32` +`func (o *RealtimeEntryAggregated) GetRecvSubCount() int64` GetRecvSubCount returns the RecvSubCount field if non-nil, zero value otherwise. ### GetRecvSubCountOk -`func (o *RealtimeEntryAggregated) GetRecvSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetRecvSubCountOk() (*int64, bool)` GetRecvSubCountOk returns a tuple with the RecvSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRecvSubCount -`func (o *RealtimeEntryAggregated) SetRecvSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetRecvSubCount(v int64)` SetRecvSubCount sets RecvSubCount field to given value. @@ -2847,20 +2847,20 @@ HasHashSubTime returns a boolean if a field has been set. ### GetHashSubCount -`func (o *RealtimeEntryAggregated) GetHashSubCount() int32` +`func (o *RealtimeEntryAggregated) GetHashSubCount() int64` GetHashSubCount returns the HashSubCount field if non-nil, zero value otherwise. ### GetHashSubCountOk -`func (o *RealtimeEntryAggregated) GetHashSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetHashSubCountOk() (*int64, bool)` GetHashSubCountOk returns a tuple with the HashSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHashSubCount -`func (o *RealtimeEntryAggregated) SetHashSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetHashSubCount(v int64)` SetHashSubCount sets HashSubCount field to given value. @@ -2897,20 +2897,20 @@ HasMissSubTime returns a boolean if a field has been set. ### GetMissSubCount -`func (o *RealtimeEntryAggregated) GetMissSubCount() int32` +`func (o *RealtimeEntryAggregated) GetMissSubCount() int64` GetMissSubCount returns the MissSubCount field if non-nil, zero value otherwise. ### GetMissSubCountOk -`func (o *RealtimeEntryAggregated) GetMissSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetMissSubCountOk() (*int64, bool)` GetMissSubCountOk returns a tuple with the MissSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMissSubCount -`func (o *RealtimeEntryAggregated) SetMissSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetMissSubCount(v int64)` SetMissSubCount sets MissSubCount field to given value. @@ -2947,20 +2947,20 @@ HasFetchSubTime returns a boolean if a field has been set. ### GetFetchSubCount -`func (o *RealtimeEntryAggregated) GetFetchSubCount() int32` +`func (o *RealtimeEntryAggregated) GetFetchSubCount() int64` GetFetchSubCount returns the FetchSubCount field if non-nil, zero value otherwise. ### GetFetchSubCountOk -`func (o *RealtimeEntryAggregated) GetFetchSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFetchSubCountOk() (*int64, bool)` GetFetchSubCountOk returns a tuple with the FetchSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFetchSubCount -`func (o *RealtimeEntryAggregated) SetFetchSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetFetchSubCount(v int64)` SetFetchSubCount sets FetchSubCount field to given value. @@ -2997,20 +2997,20 @@ HasPassSubTime returns a boolean if a field has been set. ### GetPassSubCount -`func (o *RealtimeEntryAggregated) GetPassSubCount() int32` +`func (o *RealtimeEntryAggregated) GetPassSubCount() int64` GetPassSubCount returns the PassSubCount field if non-nil, zero value otherwise. ### GetPassSubCountOk -`func (o *RealtimeEntryAggregated) GetPassSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetPassSubCountOk() (*int64, bool)` GetPassSubCountOk returns a tuple with the PassSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPassSubCount -`func (o *RealtimeEntryAggregated) SetPassSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetPassSubCount(v int64)` SetPassSubCount sets PassSubCount field to given value. @@ -3047,20 +3047,20 @@ HasPipeSubTime returns a boolean if a field has been set. ### GetPipeSubCount -`func (o *RealtimeEntryAggregated) GetPipeSubCount() int32` +`func (o *RealtimeEntryAggregated) GetPipeSubCount() int64` GetPipeSubCount returns the PipeSubCount field if non-nil, zero value otherwise. ### GetPipeSubCountOk -`func (o *RealtimeEntryAggregated) GetPipeSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetPipeSubCountOk() (*int64, bool)` GetPipeSubCountOk returns a tuple with the PipeSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPipeSubCount -`func (o *RealtimeEntryAggregated) SetPipeSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetPipeSubCount(v int64)` SetPipeSubCount sets PipeSubCount field to given value. @@ -3097,20 +3097,20 @@ HasDeliverSubTime returns a boolean if a field has been set. ### GetDeliverSubCount -`func (o *RealtimeEntryAggregated) GetDeliverSubCount() int32` +`func (o *RealtimeEntryAggregated) GetDeliverSubCount() int64` GetDeliverSubCount returns the DeliverSubCount field if non-nil, zero value otherwise. ### GetDeliverSubCountOk -`func (o *RealtimeEntryAggregated) GetDeliverSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDeliverSubCountOk() (*int64, bool)` GetDeliverSubCountOk returns a tuple with the DeliverSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDeliverSubCount -`func (o *RealtimeEntryAggregated) SetDeliverSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetDeliverSubCount(v int64)` SetDeliverSubCount sets DeliverSubCount field to given value. @@ -3147,20 +3147,20 @@ HasErrorSubTime returns a boolean if a field has been set. ### GetErrorSubCount -`func (o *RealtimeEntryAggregated) GetErrorSubCount() int32` +`func (o *RealtimeEntryAggregated) GetErrorSubCount() int64` GetErrorSubCount returns the ErrorSubCount field if non-nil, zero value otherwise. ### GetErrorSubCountOk -`func (o *RealtimeEntryAggregated) GetErrorSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetErrorSubCountOk() (*int64, bool)` GetErrorSubCountOk returns a tuple with the ErrorSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetErrorSubCount -`func (o *RealtimeEntryAggregated) SetErrorSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetErrorSubCount(v int64)` SetErrorSubCount sets ErrorSubCount field to given value. @@ -3197,20 +3197,20 @@ HasHitSubTime returns a boolean if a field has been set. ### GetHitSubCount -`func (o *RealtimeEntryAggregated) GetHitSubCount() int32` +`func (o *RealtimeEntryAggregated) GetHitSubCount() int64` GetHitSubCount returns the HitSubCount field if non-nil, zero value otherwise. ### GetHitSubCountOk -`func (o *RealtimeEntryAggregated) GetHitSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetHitSubCountOk() (*int64, bool)` GetHitSubCountOk returns a tuple with the HitSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHitSubCount -`func (o *RealtimeEntryAggregated) SetHitSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetHitSubCount(v int64)` SetHitSubCount sets HitSubCount field to given value. @@ -3247,20 +3247,20 @@ HasPrehashSubTime returns a boolean if a field has been set. ### GetPrehashSubCount -`func (o *RealtimeEntryAggregated) GetPrehashSubCount() int32` +`func (o *RealtimeEntryAggregated) GetPrehashSubCount() int64` GetPrehashSubCount returns the PrehashSubCount field if non-nil, zero value otherwise. ### GetPrehashSubCountOk -`func (o *RealtimeEntryAggregated) GetPrehashSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetPrehashSubCountOk() (*int64, bool)` GetPrehashSubCountOk returns a tuple with the PrehashSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPrehashSubCount -`func (o *RealtimeEntryAggregated) SetPrehashSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetPrehashSubCount(v int64)` SetPrehashSubCount sets PrehashSubCount field to given value. @@ -3297,20 +3297,20 @@ HasPredeliverSubTime returns a boolean if a field has been set. ### GetPredeliverSubCount -`func (o *RealtimeEntryAggregated) GetPredeliverSubCount() int32` +`func (o *RealtimeEntryAggregated) GetPredeliverSubCount() int64` GetPredeliverSubCount returns the PredeliverSubCount field if non-nil, zero value otherwise. ### GetPredeliverSubCountOk -`func (o *RealtimeEntryAggregated) GetPredeliverSubCountOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetPredeliverSubCountOk() (*int64, bool)` GetPredeliverSubCountOk returns a tuple with the PredeliverSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPredeliverSubCount -`func (o *RealtimeEntryAggregated) SetPredeliverSubCount(v int32)` +`func (o *RealtimeEntryAggregated) SetPredeliverSubCount(v int64)` SetPredeliverSubCount sets PredeliverSubCount field to given value. @@ -3322,20 +3322,20 @@ HasPredeliverSubCount returns a boolean if a field has been set. ### GetHitRespBodyBytes -`func (o *RealtimeEntryAggregated) GetHitRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetHitRespBodyBytes() int64` GetHitRespBodyBytes returns the HitRespBodyBytes field if non-nil, zero value otherwise. ### GetHitRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetHitRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetHitRespBodyBytesOk() (*int64, bool)` GetHitRespBodyBytesOk returns a tuple with the HitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHitRespBodyBytes -`func (o *RealtimeEntryAggregated) SetHitRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetHitRespBodyBytes(v int64)` SetHitRespBodyBytes sets HitRespBodyBytes field to given value. @@ -3347,20 +3347,20 @@ HasHitRespBodyBytes returns a boolean if a field has been set. ### GetMissRespBodyBytes -`func (o *RealtimeEntryAggregated) GetMissRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetMissRespBodyBytes() int64` GetMissRespBodyBytes returns the MissRespBodyBytes field if non-nil, zero value otherwise. ### GetMissRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetMissRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetMissRespBodyBytesOk() (*int64, bool)` GetMissRespBodyBytesOk returns a tuple with the MissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMissRespBodyBytes -`func (o *RealtimeEntryAggregated) SetMissRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetMissRespBodyBytes(v int64)` SetMissRespBodyBytes sets MissRespBodyBytes field to given value. @@ -3372,20 +3372,20 @@ HasMissRespBodyBytes returns a boolean if a field has been set. ### GetPassRespBodyBytes -`func (o *RealtimeEntryAggregated) GetPassRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetPassRespBodyBytes() int64` GetPassRespBodyBytes returns the PassRespBodyBytes field if non-nil, zero value otherwise. ### GetPassRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetPassRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetPassRespBodyBytesOk() (*int64, bool)` GetPassRespBodyBytesOk returns a tuple with the PassRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPassRespBodyBytes -`func (o *RealtimeEntryAggregated) SetPassRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetPassRespBodyBytes(v int64)` SetPassRespBodyBytes sets PassRespBodyBytes field to given value. @@ -3397,20 +3397,20 @@ HasPassRespBodyBytes returns a boolean if a field has been set. ### GetComputeReqHeaderBytes -`func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytes() int64` GetComputeReqHeaderBytes returns the ComputeReqHeaderBytes field if non-nil, zero value otherwise. ### GetComputeReqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytesOk() (*int64, bool)` GetComputeReqHeaderBytesOk returns a tuple with the ComputeReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeReqHeaderBytes -`func (o *RealtimeEntryAggregated) SetComputeReqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeReqHeaderBytes(v int64)` SetComputeReqHeaderBytes sets ComputeReqHeaderBytes field to given value. @@ -3422,20 +3422,20 @@ HasComputeReqHeaderBytes returns a boolean if a field has been set. ### GetComputeReqBodyBytes -`func (o *RealtimeEntryAggregated) GetComputeReqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetComputeReqBodyBytes() int64` GetComputeReqBodyBytes returns the ComputeReqBodyBytes field if non-nil, zero value otherwise. ### GetComputeReqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetComputeReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeReqBodyBytesOk() (*int64, bool)` GetComputeReqBodyBytesOk returns a tuple with the ComputeReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeReqBodyBytes -`func (o *RealtimeEntryAggregated) SetComputeReqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeReqBodyBytes(v int64)` SetComputeReqBodyBytes sets ComputeReqBodyBytes field to given value. @@ -3447,20 +3447,20 @@ HasComputeReqBodyBytes returns a boolean if a field has been set. ### GetComputeRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytes() int64` GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field if non-nil, zero value otherwise. ### GetComputeRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytesOk() (*int64, bool)` GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetComputeRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRespHeaderBytes(v int64)` SetComputeRespHeaderBytes sets ComputeRespHeaderBytes field to given value. @@ -3472,20 +3472,20 @@ HasComputeRespHeaderBytes returns a boolean if a field has been set. ### GetComputeRespBodyBytes -`func (o *RealtimeEntryAggregated) GetComputeRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetComputeRespBodyBytes() int64` GetComputeRespBodyBytes returns the ComputeRespBodyBytes field if non-nil, zero value otherwise. ### GetComputeRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetComputeRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRespBodyBytesOk() (*int64, bool)` GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespBodyBytes -`func (o *RealtimeEntryAggregated) SetComputeRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRespBodyBytes(v int64)` SetComputeRespBodyBytes sets ComputeRespBodyBytes field to given value. @@ -3497,20 +3497,20 @@ HasComputeRespBodyBytes returns a boolean if a field has been set. ### GetImgvideo -`func (o *RealtimeEntryAggregated) GetImgvideo() int32` +`func (o *RealtimeEntryAggregated) GetImgvideo() int64` GetImgvideo returns the Imgvideo field if non-nil, zero value otherwise. ### GetImgvideoOk -`func (o *RealtimeEntryAggregated) GetImgvideoOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgvideoOk() (*int64, bool)` GetImgvideoOk returns a tuple with the Imgvideo field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideo -`func (o *RealtimeEntryAggregated) SetImgvideo(v int32)` +`func (o *RealtimeEntryAggregated) SetImgvideo(v int64)` SetImgvideo sets Imgvideo field to given value. @@ -3522,20 +3522,20 @@ HasImgvideo returns a boolean if a field has been set. ### GetImgvideoFrames -`func (o *RealtimeEntryAggregated) GetImgvideoFrames() int32` +`func (o *RealtimeEntryAggregated) GetImgvideoFrames() int64` GetImgvideoFrames returns the ImgvideoFrames field if non-nil, zero value otherwise. ### GetImgvideoFramesOk -`func (o *RealtimeEntryAggregated) GetImgvideoFramesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgvideoFramesOk() (*int64, bool)` GetImgvideoFramesOk returns a tuple with the ImgvideoFrames field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoFrames -`func (o *RealtimeEntryAggregated) SetImgvideoFrames(v int32)` +`func (o *RealtimeEntryAggregated) SetImgvideoFrames(v int64)` SetImgvideoFrames sets ImgvideoFrames field to given value. @@ -3547,20 +3547,20 @@ HasImgvideoFrames returns a boolean if a field has been set. ### GetImgvideoRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytes() int64` GetImgvideoRespHeaderBytes returns the ImgvideoRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgvideoRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytesOk() (*int64, bool)` GetImgvideoRespHeaderBytesOk returns a tuple with the ImgvideoRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetImgvideoRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetImgvideoRespHeaderBytes(v int64)` SetImgvideoRespHeaderBytes sets ImgvideoRespHeaderBytes field to given value. @@ -3572,20 +3572,20 @@ HasImgvideoRespHeaderBytes returns a boolean if a field has been set. ### GetImgvideoRespBodyBytes -`func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytes() int64` GetImgvideoRespBodyBytes returns the ImgvideoRespBodyBytes field if non-nil, zero value otherwise. ### GetImgvideoRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytesOk() (*int64, bool)` GetImgvideoRespBodyBytesOk returns a tuple with the ImgvideoRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoRespBodyBytes -`func (o *RealtimeEntryAggregated) SetImgvideoRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetImgvideoRespBodyBytes(v int64)` SetImgvideoRespBodyBytes sets ImgvideoRespBodyBytes field to given value. @@ -3597,20 +3597,20 @@ HasImgvideoRespBodyBytes returns a boolean if a field has been set. ### GetImgvideoShield -`func (o *RealtimeEntryAggregated) GetImgvideoShield() int32` +`func (o *RealtimeEntryAggregated) GetImgvideoShield() int64` GetImgvideoShield returns the ImgvideoShield field if non-nil, zero value otherwise. ### GetImgvideoShieldOk -`func (o *RealtimeEntryAggregated) GetImgvideoShieldOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgvideoShieldOk() (*int64, bool)` GetImgvideoShieldOk returns a tuple with the ImgvideoShield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShield -`func (o *RealtimeEntryAggregated) SetImgvideoShield(v int32)` +`func (o *RealtimeEntryAggregated) SetImgvideoShield(v int64)` SetImgvideoShield sets ImgvideoShield field to given value. @@ -3622,20 +3622,20 @@ HasImgvideoShield returns a boolean if a field has been set. ### GetImgvideoShieldFrames -`func (o *RealtimeEntryAggregated) GetImgvideoShieldFrames() int32` +`func (o *RealtimeEntryAggregated) GetImgvideoShieldFrames() int64` GetImgvideoShieldFrames returns the ImgvideoShieldFrames field if non-nil, zero value otherwise. ### GetImgvideoShieldFramesOk -`func (o *RealtimeEntryAggregated) GetImgvideoShieldFramesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgvideoShieldFramesOk() (*int64, bool)` GetImgvideoShieldFramesOk returns a tuple with the ImgvideoShieldFrames field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldFrames -`func (o *RealtimeEntryAggregated) SetImgvideoShieldFrames(v int32)` +`func (o *RealtimeEntryAggregated) SetImgvideoShieldFrames(v int64)` SetImgvideoShieldFrames sets ImgvideoShieldFrames field to given value. @@ -3647,20 +3647,20 @@ HasImgvideoShieldFrames returns a boolean if a field has been set. ### GetImgvideoShieldRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytes() int64` GetImgvideoShieldRespHeaderBytes returns the ImgvideoShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgvideoShieldRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytesOk() (*int64, bool)` GetImgvideoShieldRespHeaderBytesOk returns a tuple with the ImgvideoShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetImgvideoShieldRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetImgvideoShieldRespHeaderBytes(v int64)` SetImgvideoShieldRespHeaderBytes sets ImgvideoShieldRespHeaderBytes field to given value. @@ -3672,20 +3672,20 @@ HasImgvideoShieldRespHeaderBytes returns a boolean if a field has been set. ### GetImgvideoShieldRespBodyBytes -`func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytes() int64` GetImgvideoShieldRespBodyBytes returns the ImgvideoShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetImgvideoShieldRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytesOk() (*int64, bool)` GetImgvideoShieldRespBodyBytesOk returns a tuple with the ImgvideoShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldRespBodyBytes -`func (o *RealtimeEntryAggregated) SetImgvideoShieldRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetImgvideoShieldRespBodyBytes(v int64)` SetImgvideoShieldRespBodyBytes sets ImgvideoShieldRespBodyBytes field to given value. @@ -3697,20 +3697,20 @@ HasImgvideoShieldRespBodyBytes returns a boolean if a field has been set. ### GetLogBytes -`func (o *RealtimeEntryAggregated) GetLogBytes() int32` +`func (o *RealtimeEntryAggregated) GetLogBytes() int64` GetLogBytes returns the LogBytes field if non-nil, zero value otherwise. ### GetLogBytesOk -`func (o *RealtimeEntryAggregated) GetLogBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetLogBytesOk() (*int64, bool)` GetLogBytesOk returns a tuple with the LogBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLogBytes -`func (o *RealtimeEntryAggregated) SetLogBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetLogBytes(v int64)` SetLogBytes sets LogBytes field to given value. @@ -3722,20 +3722,20 @@ HasLogBytes returns a boolean if a field has been set. ### GetEdgeRequests -`func (o *RealtimeEntryAggregated) GetEdgeRequests() int32` +`func (o *RealtimeEntryAggregated) GetEdgeRequests() int64` GetEdgeRequests returns the EdgeRequests field if non-nil, zero value otherwise. ### GetEdgeRequestsOk -`func (o *RealtimeEntryAggregated) GetEdgeRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeRequestsOk() (*int64, bool)` GetEdgeRequestsOk returns a tuple with the EdgeRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRequests -`func (o *RealtimeEntryAggregated) SetEdgeRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeRequests(v int64)` SetEdgeRequests sets EdgeRequests field to given value. @@ -3747,20 +3747,20 @@ HasEdgeRequests returns a boolean if a field has been set. ### GetEdgeRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytes() int64` GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytesOk() (*int64, bool)` GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetEdgeRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeRespHeaderBytes(v int64)` SetEdgeRespHeaderBytes sets EdgeRespHeaderBytes field to given value. @@ -3772,20 +3772,20 @@ HasEdgeRespHeaderBytes returns a boolean if a field has been set. ### GetEdgeRespBodyBytes -`func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytes() int64` GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytesOk() (*int64, bool)` GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespBodyBytes -`func (o *RealtimeEntryAggregated) SetEdgeRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeRespBodyBytes(v int64)` SetEdgeRespBodyBytes sets EdgeRespBodyBytes field to given value. @@ -3797,20 +3797,20 @@ HasEdgeRespBodyBytes returns a boolean if a field has been set. ### GetOriginRevalidations -`func (o *RealtimeEntryAggregated) GetOriginRevalidations() int32` +`func (o *RealtimeEntryAggregated) GetOriginRevalidations() int64` GetOriginRevalidations returns the OriginRevalidations field if non-nil, zero value otherwise. ### GetOriginRevalidationsOk -`func (o *RealtimeEntryAggregated) GetOriginRevalidationsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginRevalidationsOk() (*int64, bool)` GetOriginRevalidationsOk returns a tuple with the OriginRevalidations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginRevalidations -`func (o *RealtimeEntryAggregated) SetOriginRevalidations(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginRevalidations(v int64)` SetOriginRevalidations sets OriginRevalidations field to given value. @@ -3822,20 +3822,20 @@ HasOriginRevalidations returns a boolean if a field has been set. ### GetOriginFetches -`func (o *RealtimeEntryAggregated) GetOriginFetches() int32` +`func (o *RealtimeEntryAggregated) GetOriginFetches() int64` GetOriginFetches returns the OriginFetches field if non-nil, zero value otherwise. ### GetOriginFetchesOk -`func (o *RealtimeEntryAggregated) GetOriginFetchesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginFetchesOk() (*int64, bool)` GetOriginFetchesOk returns a tuple with the OriginFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetches -`func (o *RealtimeEntryAggregated) SetOriginFetches(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginFetches(v int64)` SetOriginFetches sets OriginFetches field to given value. @@ -3847,20 +3847,20 @@ HasOriginFetches returns a boolean if a field has been set. ### GetOriginFetchHeaderBytes -`func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytes() int64` GetOriginFetchHeaderBytes returns the OriginFetchHeaderBytes field if non-nil, zero value otherwise. ### GetOriginFetchHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytesOk() (*int64, bool)` GetOriginFetchHeaderBytesOk returns a tuple with the OriginFetchHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchHeaderBytes -`func (o *RealtimeEntryAggregated) SetOriginFetchHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginFetchHeaderBytes(v int64)` SetOriginFetchHeaderBytes sets OriginFetchHeaderBytes field to given value. @@ -3872,20 +3872,20 @@ HasOriginFetchHeaderBytes returns a boolean if a field has been set. ### GetOriginFetchBodyBytes -`func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytes() int64` GetOriginFetchBodyBytes returns the OriginFetchBodyBytes field if non-nil, zero value otherwise. ### GetOriginFetchBodyBytesOk -`func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytesOk() (*int64, bool)` GetOriginFetchBodyBytesOk returns a tuple with the OriginFetchBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchBodyBytes -`func (o *RealtimeEntryAggregated) SetOriginFetchBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginFetchBodyBytes(v int64)` SetOriginFetchBodyBytes sets OriginFetchBodyBytes field to given value. @@ -3897,20 +3897,20 @@ HasOriginFetchBodyBytes returns a boolean if a field has been set. ### GetOriginFetchRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytes() int64` GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytesOk() (*int64, bool)` GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetOriginFetchRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginFetchRespHeaderBytes(v int64)` SetOriginFetchRespHeaderBytes sets OriginFetchRespHeaderBytes field to given value. @@ -3922,20 +3922,20 @@ HasOriginFetchRespHeaderBytes returns a boolean if a field has been set. ### GetOriginFetchRespBodyBytes -`func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytes() int64` GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytesOk() (*int64, bool)` GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespBodyBytes -`func (o *RealtimeEntryAggregated) SetOriginFetchRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginFetchRespBodyBytes(v int64)` SetOriginFetchRespBodyBytes sets OriginFetchRespBodyBytes field to given value. @@ -3947,20 +3947,20 @@ HasOriginFetchRespBodyBytes returns a boolean if a field has been set. ### GetShieldRevalidations -`func (o *RealtimeEntryAggregated) GetShieldRevalidations() int32` +`func (o *RealtimeEntryAggregated) GetShieldRevalidations() int64` GetShieldRevalidations returns the ShieldRevalidations field if non-nil, zero value otherwise. ### GetShieldRevalidationsOk -`func (o *RealtimeEntryAggregated) GetShieldRevalidationsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldRevalidationsOk() (*int64, bool)` GetShieldRevalidationsOk returns a tuple with the ShieldRevalidations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRevalidations -`func (o *RealtimeEntryAggregated) SetShieldRevalidations(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldRevalidations(v int64)` SetShieldRevalidations sets ShieldRevalidations field to given value. @@ -3972,20 +3972,20 @@ HasShieldRevalidations returns a boolean if a field has been set. ### GetShieldFetches -`func (o *RealtimeEntryAggregated) GetShieldFetches() int32` +`func (o *RealtimeEntryAggregated) GetShieldFetches() int64` GetShieldFetches returns the ShieldFetches field if non-nil, zero value otherwise. ### GetShieldFetchesOk -`func (o *RealtimeEntryAggregated) GetShieldFetchesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldFetchesOk() (*int64, bool)` GetShieldFetchesOk returns a tuple with the ShieldFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetches -`func (o *RealtimeEntryAggregated) SetShieldFetches(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldFetches(v int64)` SetShieldFetches sets ShieldFetches field to given value. @@ -3997,20 +3997,20 @@ HasShieldFetches returns a boolean if a field has been set. ### GetShieldFetchHeaderBytes -`func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytes() int64` GetShieldFetchHeaderBytes returns the ShieldFetchHeaderBytes field if non-nil, zero value otherwise. ### GetShieldFetchHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytesOk() (*int64, bool)` GetShieldFetchHeaderBytesOk returns a tuple with the ShieldFetchHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchHeaderBytes -`func (o *RealtimeEntryAggregated) SetShieldFetchHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldFetchHeaderBytes(v int64)` SetShieldFetchHeaderBytes sets ShieldFetchHeaderBytes field to given value. @@ -4022,20 +4022,20 @@ HasShieldFetchHeaderBytes returns a boolean if a field has been set. ### GetShieldFetchBodyBytes -`func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytes() int64` GetShieldFetchBodyBytes returns the ShieldFetchBodyBytes field if non-nil, zero value otherwise. ### GetShieldFetchBodyBytesOk -`func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytesOk() (*int64, bool)` GetShieldFetchBodyBytesOk returns a tuple with the ShieldFetchBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchBodyBytes -`func (o *RealtimeEntryAggregated) SetShieldFetchBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldFetchBodyBytes(v int64)` SetShieldFetchBodyBytes sets ShieldFetchBodyBytes field to given value. @@ -4047,20 +4047,20 @@ HasShieldFetchBodyBytes returns a boolean if a field has been set. ### GetShieldFetchRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytes() int64` GetShieldFetchRespHeaderBytes returns the ShieldFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldFetchRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytesOk() (*int64, bool)` GetShieldFetchRespHeaderBytesOk returns a tuple with the ShieldFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetShieldFetchRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldFetchRespHeaderBytes(v int64)` SetShieldFetchRespHeaderBytes sets ShieldFetchRespHeaderBytes field to given value. @@ -4072,20 +4072,20 @@ HasShieldFetchRespHeaderBytes returns a boolean if a field has been set. ### GetShieldFetchRespBodyBytes -`func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytes() int64` GetShieldFetchRespBodyBytes returns the ShieldFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldFetchRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytesOk() (*int64, bool)` GetShieldFetchRespBodyBytesOk returns a tuple with the ShieldFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchRespBodyBytes -`func (o *RealtimeEntryAggregated) SetShieldFetchRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldFetchRespBodyBytes(v int64)` SetShieldFetchRespBodyBytes sets ShieldFetchRespBodyBytes field to given value. @@ -4097,20 +4097,20 @@ HasShieldFetchRespBodyBytes returns a boolean if a field has been set. ### GetSegblockOriginFetches -`func (o *RealtimeEntryAggregated) GetSegblockOriginFetches() int32` +`func (o *RealtimeEntryAggregated) GetSegblockOriginFetches() int64` GetSegblockOriginFetches returns the SegblockOriginFetches field if non-nil, zero value otherwise. ### GetSegblockOriginFetchesOk -`func (o *RealtimeEntryAggregated) GetSegblockOriginFetchesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetSegblockOriginFetchesOk() (*int64, bool)` GetSegblockOriginFetchesOk returns a tuple with the SegblockOriginFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSegblockOriginFetches -`func (o *RealtimeEntryAggregated) SetSegblockOriginFetches(v int32)` +`func (o *RealtimeEntryAggregated) SetSegblockOriginFetches(v int64)` SetSegblockOriginFetches sets SegblockOriginFetches field to given value. @@ -4122,20 +4122,20 @@ HasSegblockOriginFetches returns a boolean if a field has been set. ### GetSegblockShieldFetches -`func (o *RealtimeEntryAggregated) GetSegblockShieldFetches() int32` +`func (o *RealtimeEntryAggregated) GetSegblockShieldFetches() int64` GetSegblockShieldFetches returns the SegblockShieldFetches field if non-nil, zero value otherwise. ### GetSegblockShieldFetchesOk -`func (o *RealtimeEntryAggregated) GetSegblockShieldFetchesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetSegblockShieldFetchesOk() (*int64, bool)` GetSegblockShieldFetchesOk returns a tuple with the SegblockShieldFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSegblockShieldFetches -`func (o *RealtimeEntryAggregated) SetSegblockShieldFetches(v int32)` +`func (o *RealtimeEntryAggregated) SetSegblockShieldFetches(v int64)` SetSegblockShieldFetches sets SegblockShieldFetches field to given value. @@ -4147,20 +4147,20 @@ HasSegblockShieldFetches returns a boolean if a field has been set. ### GetComputeRespStatus1xx -`func (o *RealtimeEntryAggregated) GetComputeRespStatus1xx() int32` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus1xx() int64` GetComputeRespStatus1xx returns the ComputeRespStatus1xx field if non-nil, zero value otherwise. ### GetComputeRespStatus1xxOk -`func (o *RealtimeEntryAggregated) GetComputeRespStatus1xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus1xxOk() (*int64, bool)` GetComputeRespStatus1xxOk returns a tuple with the ComputeRespStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus1xx -`func (o *RealtimeEntryAggregated) SetComputeRespStatus1xx(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRespStatus1xx(v int64)` SetComputeRespStatus1xx sets ComputeRespStatus1xx field to given value. @@ -4172,20 +4172,20 @@ HasComputeRespStatus1xx returns a boolean if a field has been set. ### GetComputeRespStatus2xx -`func (o *RealtimeEntryAggregated) GetComputeRespStatus2xx() int32` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus2xx() int64` GetComputeRespStatus2xx returns the ComputeRespStatus2xx field if non-nil, zero value otherwise. ### GetComputeRespStatus2xxOk -`func (o *RealtimeEntryAggregated) GetComputeRespStatus2xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus2xxOk() (*int64, bool)` GetComputeRespStatus2xxOk returns a tuple with the ComputeRespStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus2xx -`func (o *RealtimeEntryAggregated) SetComputeRespStatus2xx(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRespStatus2xx(v int64)` SetComputeRespStatus2xx sets ComputeRespStatus2xx field to given value. @@ -4197,20 +4197,20 @@ HasComputeRespStatus2xx returns a boolean if a field has been set. ### GetComputeRespStatus3xx -`func (o *RealtimeEntryAggregated) GetComputeRespStatus3xx() int32` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus3xx() int64` GetComputeRespStatus3xx returns the ComputeRespStatus3xx field if non-nil, zero value otherwise. ### GetComputeRespStatus3xxOk -`func (o *RealtimeEntryAggregated) GetComputeRespStatus3xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus3xxOk() (*int64, bool)` GetComputeRespStatus3xxOk returns a tuple with the ComputeRespStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus3xx -`func (o *RealtimeEntryAggregated) SetComputeRespStatus3xx(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRespStatus3xx(v int64)` SetComputeRespStatus3xx sets ComputeRespStatus3xx field to given value. @@ -4222,20 +4222,20 @@ HasComputeRespStatus3xx returns a boolean if a field has been set. ### GetComputeRespStatus4xx -`func (o *RealtimeEntryAggregated) GetComputeRespStatus4xx() int32` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus4xx() int64` GetComputeRespStatus4xx returns the ComputeRespStatus4xx field if non-nil, zero value otherwise. ### GetComputeRespStatus4xxOk -`func (o *RealtimeEntryAggregated) GetComputeRespStatus4xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus4xxOk() (*int64, bool)` GetComputeRespStatus4xxOk returns a tuple with the ComputeRespStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus4xx -`func (o *RealtimeEntryAggregated) SetComputeRespStatus4xx(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRespStatus4xx(v int64)` SetComputeRespStatus4xx sets ComputeRespStatus4xx field to given value. @@ -4247,20 +4247,20 @@ HasComputeRespStatus4xx returns a boolean if a field has been set. ### GetComputeRespStatus5xx -`func (o *RealtimeEntryAggregated) GetComputeRespStatus5xx() int32` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus5xx() int64` GetComputeRespStatus5xx returns the ComputeRespStatus5xx field if non-nil, zero value otherwise. ### GetComputeRespStatus5xxOk -`func (o *RealtimeEntryAggregated) GetComputeRespStatus5xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRespStatus5xxOk() (*int64, bool)` GetComputeRespStatus5xxOk returns a tuple with the ComputeRespStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus5xx -`func (o *RealtimeEntryAggregated) SetComputeRespStatus5xx(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRespStatus5xx(v int64)` SetComputeRespStatus5xx sets ComputeRespStatus5xx field to given value. @@ -4272,20 +4272,20 @@ HasComputeRespStatus5xx returns a boolean if a field has been set. ### GetEdgeHitRequests -`func (o *RealtimeEntryAggregated) GetEdgeHitRequests() int32` +`func (o *RealtimeEntryAggregated) GetEdgeHitRequests() int64` GetEdgeHitRequests returns the EdgeHitRequests field if non-nil, zero value otherwise. ### GetEdgeHitRequestsOk -`func (o *RealtimeEntryAggregated) GetEdgeHitRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeHitRequestsOk() (*int64, bool)` GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRequests -`func (o *RealtimeEntryAggregated) SetEdgeHitRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeHitRequests(v int64)` SetEdgeHitRequests sets EdgeHitRequests field to given value. @@ -4297,20 +4297,20 @@ HasEdgeHitRequests returns a boolean if a field has been set. ### GetEdgeMissRequests -`func (o *RealtimeEntryAggregated) GetEdgeMissRequests() int32` +`func (o *RealtimeEntryAggregated) GetEdgeMissRequests() int64` GetEdgeMissRequests returns the EdgeMissRequests field if non-nil, zero value otherwise. ### GetEdgeMissRequestsOk -`func (o *RealtimeEntryAggregated) GetEdgeMissRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeMissRequestsOk() (*int64, bool)` GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRequests -`func (o *RealtimeEntryAggregated) SetEdgeMissRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeMissRequests(v int64)` SetEdgeMissRequests sets EdgeMissRequests field to given value. @@ -4322,20 +4322,20 @@ HasEdgeMissRequests returns a boolean if a field has been set. ### GetComputeBereqHeaderBytes -`func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytes() int64` GetComputeBereqHeaderBytes returns the ComputeBereqHeaderBytes field if non-nil, zero value otherwise. ### GetComputeBereqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytesOk() (*int64, bool)` GetComputeBereqHeaderBytesOk returns a tuple with the ComputeBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqHeaderBytes -`func (o *RealtimeEntryAggregated) SetComputeBereqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeBereqHeaderBytes(v int64)` SetComputeBereqHeaderBytes sets ComputeBereqHeaderBytes field to given value. @@ -4347,20 +4347,20 @@ HasComputeBereqHeaderBytes returns a boolean if a field has been set. ### GetComputeBereqBodyBytes -`func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytes() int64` GetComputeBereqBodyBytes returns the ComputeBereqBodyBytes field if non-nil, zero value otherwise. ### GetComputeBereqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytesOk() (*int64, bool)` GetComputeBereqBodyBytesOk returns a tuple with the ComputeBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqBodyBytes -`func (o *RealtimeEntryAggregated) SetComputeBereqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeBereqBodyBytes(v int64)` SetComputeBereqBodyBytes sets ComputeBereqBodyBytes field to given value. @@ -4372,20 +4372,20 @@ HasComputeBereqBodyBytes returns a boolean if a field has been set. ### GetComputeBerespHeaderBytes -`func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytes() int64` GetComputeBerespHeaderBytes returns the ComputeBerespHeaderBytes field if non-nil, zero value otherwise. ### GetComputeBerespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytesOk() (*int64, bool)` GetComputeBerespHeaderBytesOk returns a tuple with the ComputeBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBerespHeaderBytes -`func (o *RealtimeEntryAggregated) SetComputeBerespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeBerespHeaderBytes(v int64)` SetComputeBerespHeaderBytes sets ComputeBerespHeaderBytes field to given value. @@ -4397,20 +4397,20 @@ HasComputeBerespHeaderBytes returns a boolean if a field has been set. ### GetComputeBerespBodyBytes -`func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytes() int64` GetComputeBerespBodyBytes returns the ComputeBerespBodyBytes field if non-nil, zero value otherwise. ### GetComputeBerespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytesOk() (*int64, bool)` GetComputeBerespBodyBytesOk returns a tuple with the ComputeBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBerespBodyBytes -`func (o *RealtimeEntryAggregated) SetComputeBerespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeBerespBodyBytes(v int64)` SetComputeBerespBodyBytes sets ComputeBerespBodyBytes field to given value. @@ -4422,20 +4422,20 @@ HasComputeBerespBodyBytes returns a boolean if a field has been set. ### GetOriginCacheFetches -`func (o *RealtimeEntryAggregated) GetOriginCacheFetches() int32` +`func (o *RealtimeEntryAggregated) GetOriginCacheFetches() int64` GetOriginCacheFetches returns the OriginCacheFetches field if non-nil, zero value otherwise. ### GetOriginCacheFetchesOk -`func (o *RealtimeEntryAggregated) GetOriginCacheFetchesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginCacheFetchesOk() (*int64, bool)` GetOriginCacheFetchesOk returns a tuple with the OriginCacheFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetches -`func (o *RealtimeEntryAggregated) SetOriginCacheFetches(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginCacheFetches(v int64)` SetOriginCacheFetches sets OriginCacheFetches field to given value. @@ -4447,20 +4447,20 @@ HasOriginCacheFetches returns a boolean if a field has been set. ### GetShieldCacheFetches -`func (o *RealtimeEntryAggregated) GetShieldCacheFetches() int32` +`func (o *RealtimeEntryAggregated) GetShieldCacheFetches() int64` GetShieldCacheFetches returns the ShieldCacheFetches field if non-nil, zero value otherwise. ### GetShieldCacheFetchesOk -`func (o *RealtimeEntryAggregated) GetShieldCacheFetchesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldCacheFetchesOk() (*int64, bool)` GetShieldCacheFetchesOk returns a tuple with the ShieldCacheFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldCacheFetches -`func (o *RealtimeEntryAggregated) SetShieldCacheFetches(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldCacheFetches(v int64)` SetShieldCacheFetches sets ShieldCacheFetches field to given value. @@ -4472,20 +4472,20 @@ HasShieldCacheFetches returns a boolean if a field has been set. ### GetComputeBereqs -`func (o *RealtimeEntryAggregated) GetComputeBereqs() int32` +`func (o *RealtimeEntryAggregated) GetComputeBereqs() int64` GetComputeBereqs returns the ComputeBereqs field if non-nil, zero value otherwise. ### GetComputeBereqsOk -`func (o *RealtimeEntryAggregated) GetComputeBereqsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeBereqsOk() (*int64, bool)` GetComputeBereqsOk returns a tuple with the ComputeBereqs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqs -`func (o *RealtimeEntryAggregated) SetComputeBereqs(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeBereqs(v int64)` SetComputeBereqs sets ComputeBereqs field to given value. @@ -4497,20 +4497,20 @@ HasComputeBereqs returns a boolean if a field has been set. ### GetComputeBereqErrors -`func (o *RealtimeEntryAggregated) GetComputeBereqErrors() int32` +`func (o *RealtimeEntryAggregated) GetComputeBereqErrors() int64` GetComputeBereqErrors returns the ComputeBereqErrors field if non-nil, zero value otherwise. ### GetComputeBereqErrorsOk -`func (o *RealtimeEntryAggregated) GetComputeBereqErrorsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeBereqErrorsOk() (*int64, bool)` GetComputeBereqErrorsOk returns a tuple with the ComputeBereqErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqErrors -`func (o *RealtimeEntryAggregated) SetComputeBereqErrors(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeBereqErrors(v int64)` SetComputeBereqErrors sets ComputeBereqErrors field to given value. @@ -4522,20 +4522,20 @@ HasComputeBereqErrors returns a boolean if a field has been set. ### GetComputeResourceLimitExceeded -`func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceeded() int32` +`func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceeded() int64` GetComputeResourceLimitExceeded returns the ComputeResourceLimitExceeded field if non-nil, zero value otherwise. ### GetComputeResourceLimitExceededOk -`func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceededOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceededOk() (*int64, bool)` GetComputeResourceLimitExceededOk returns a tuple with the ComputeResourceLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeResourceLimitExceeded -`func (o *RealtimeEntryAggregated) SetComputeResourceLimitExceeded(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeResourceLimitExceeded(v int64)` SetComputeResourceLimitExceeded sets ComputeResourceLimitExceeded field to given value. @@ -4547,20 +4547,20 @@ HasComputeResourceLimitExceeded returns a boolean if a field has been set. ### GetComputeHeapLimitExceeded -`func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceeded() int32` +`func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceeded() int64` GetComputeHeapLimitExceeded returns the ComputeHeapLimitExceeded field if non-nil, zero value otherwise. ### GetComputeHeapLimitExceededOk -`func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceededOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceededOk() (*int64, bool)` GetComputeHeapLimitExceededOk returns a tuple with the ComputeHeapLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeHeapLimitExceeded -`func (o *RealtimeEntryAggregated) SetComputeHeapLimitExceeded(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeHeapLimitExceeded(v int64)` SetComputeHeapLimitExceeded sets ComputeHeapLimitExceeded field to given value. @@ -4572,20 +4572,20 @@ HasComputeHeapLimitExceeded returns a boolean if a field has been set. ### GetComputeStackLimitExceeded -`func (o *RealtimeEntryAggregated) GetComputeStackLimitExceeded() int32` +`func (o *RealtimeEntryAggregated) GetComputeStackLimitExceeded() int64` GetComputeStackLimitExceeded returns the ComputeStackLimitExceeded field if non-nil, zero value otherwise. ### GetComputeStackLimitExceededOk -`func (o *RealtimeEntryAggregated) GetComputeStackLimitExceededOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeStackLimitExceededOk() (*int64, bool)` GetComputeStackLimitExceededOk returns a tuple with the ComputeStackLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStackLimitExceeded -`func (o *RealtimeEntryAggregated) SetComputeStackLimitExceeded(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeStackLimitExceeded(v int64)` SetComputeStackLimitExceeded sets ComputeStackLimitExceeded field to given value. @@ -4597,20 +4597,20 @@ HasComputeStackLimitExceeded returns a boolean if a field has been set. ### GetComputeGlobalsLimitExceeded -`func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceeded() int32` +`func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceeded() int64` GetComputeGlobalsLimitExceeded returns the ComputeGlobalsLimitExceeded field if non-nil, zero value otherwise. ### GetComputeGlobalsLimitExceededOk -`func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceededOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceededOk() (*int64, bool)` GetComputeGlobalsLimitExceededOk returns a tuple with the ComputeGlobalsLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeGlobalsLimitExceeded -`func (o *RealtimeEntryAggregated) SetComputeGlobalsLimitExceeded(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeGlobalsLimitExceeded(v int64)` SetComputeGlobalsLimitExceeded sets ComputeGlobalsLimitExceeded field to given value. @@ -4622,20 +4622,20 @@ HasComputeGlobalsLimitExceeded returns a boolean if a field has been set. ### GetComputeGuestErrors -`func (o *RealtimeEntryAggregated) GetComputeGuestErrors() int32` +`func (o *RealtimeEntryAggregated) GetComputeGuestErrors() int64` GetComputeGuestErrors returns the ComputeGuestErrors field if non-nil, zero value otherwise. ### GetComputeGuestErrorsOk -`func (o *RealtimeEntryAggregated) GetComputeGuestErrorsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeGuestErrorsOk() (*int64, bool)` GetComputeGuestErrorsOk returns a tuple with the ComputeGuestErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeGuestErrors -`func (o *RealtimeEntryAggregated) SetComputeGuestErrors(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeGuestErrors(v int64)` SetComputeGuestErrors sets ComputeGuestErrors field to given value. @@ -4647,20 +4647,20 @@ HasComputeGuestErrors returns a boolean if a field has been set. ### GetComputeRuntimeErrors -`func (o *RealtimeEntryAggregated) GetComputeRuntimeErrors() int32` +`func (o *RealtimeEntryAggregated) GetComputeRuntimeErrors() int64` GetComputeRuntimeErrors returns the ComputeRuntimeErrors field if non-nil, zero value otherwise. ### GetComputeRuntimeErrorsOk -`func (o *RealtimeEntryAggregated) GetComputeRuntimeErrorsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetComputeRuntimeErrorsOk() (*int64, bool)` GetComputeRuntimeErrorsOk returns a tuple with the ComputeRuntimeErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRuntimeErrors -`func (o *RealtimeEntryAggregated) SetComputeRuntimeErrors(v int32)` +`func (o *RealtimeEntryAggregated) SetComputeRuntimeErrors(v int64)` SetComputeRuntimeErrors sets ComputeRuntimeErrors field to given value. @@ -4672,20 +4672,20 @@ HasComputeRuntimeErrors returns a boolean if a field has been set. ### GetEdgeHitRespBodyBytes -`func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytes() int64` GetEdgeHitRespBodyBytes returns the EdgeHitRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeHitRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytesOk() (*int64, bool)` GetEdgeHitRespBodyBytesOk returns a tuple with the EdgeHitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRespBodyBytes -`func (o *RealtimeEntryAggregated) SetEdgeHitRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeHitRespBodyBytes(v int64)` SetEdgeHitRespBodyBytes sets EdgeHitRespBodyBytes field to given value. @@ -4697,20 +4697,20 @@ HasEdgeHitRespBodyBytes returns a boolean if a field has been set. ### GetEdgeHitRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytes() int64` GetEdgeHitRespHeaderBytes returns the EdgeHitRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeHitRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytesOk() (*int64, bool)` GetEdgeHitRespHeaderBytesOk returns a tuple with the EdgeHitRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetEdgeHitRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeHitRespHeaderBytes(v int64)` SetEdgeHitRespHeaderBytes sets EdgeHitRespHeaderBytes field to given value. @@ -4722,20 +4722,20 @@ HasEdgeHitRespHeaderBytes returns a boolean if a field has been set. ### GetEdgeMissRespBodyBytes -`func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytes() int64` GetEdgeMissRespBodyBytes returns the EdgeMissRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeMissRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytesOk() (*int64, bool)` GetEdgeMissRespBodyBytesOk returns a tuple with the EdgeMissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRespBodyBytes -`func (o *RealtimeEntryAggregated) SetEdgeMissRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeMissRespBodyBytes(v int64)` SetEdgeMissRespBodyBytes sets EdgeMissRespBodyBytes field to given value. @@ -4747,20 +4747,20 @@ HasEdgeMissRespBodyBytes returns a boolean if a field has been set. ### GetEdgeMissRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytes() int64` GetEdgeMissRespHeaderBytes returns the EdgeMissRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeMissRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytesOk() (*int64, bool)` GetEdgeMissRespHeaderBytesOk returns a tuple with the EdgeMissRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetEdgeMissRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetEdgeMissRespHeaderBytes(v int64)` SetEdgeMissRespHeaderBytes sets EdgeMissRespHeaderBytes field to given value. @@ -4772,20 +4772,20 @@ HasEdgeMissRespHeaderBytes returns a boolean if a field has been set. ### GetOriginCacheFetchRespBodyBytes -`func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytes() int64` GetOriginCacheFetchRespBodyBytes returns the OriginCacheFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetOriginCacheFetchRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytesOk() (*int64, bool)` GetOriginCacheFetchRespBodyBytesOk returns a tuple with the OriginCacheFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetchRespBodyBytes -`func (o *RealtimeEntryAggregated) SetOriginCacheFetchRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginCacheFetchRespBodyBytes(v int64)` SetOriginCacheFetchRespBodyBytes sets OriginCacheFetchRespBodyBytes field to given value. @@ -4797,20 +4797,20 @@ HasOriginCacheFetchRespBodyBytes returns a boolean if a field has been set. ### GetOriginCacheFetchRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytes() int64` GetOriginCacheFetchRespHeaderBytes returns the OriginCacheFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetOriginCacheFetchRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytesOk() (*int64, bool)` GetOriginCacheFetchRespHeaderBytesOk returns a tuple with the OriginCacheFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetchRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetOriginCacheFetchRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetOriginCacheFetchRespHeaderBytes(v int64)` SetOriginCacheFetchRespHeaderBytes sets OriginCacheFetchRespHeaderBytes field to given value. @@ -4822,20 +4822,20 @@ HasOriginCacheFetchRespHeaderBytes returns a boolean if a field has been set. ### GetShieldHitRequests -`func (o *RealtimeEntryAggregated) GetShieldHitRequests() int32` +`func (o *RealtimeEntryAggregated) GetShieldHitRequests() int64` GetShieldHitRequests returns the ShieldHitRequests field if non-nil, zero value otherwise. ### GetShieldHitRequestsOk -`func (o *RealtimeEntryAggregated) GetShieldHitRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldHitRequestsOk() (*int64, bool)` GetShieldHitRequestsOk returns a tuple with the ShieldHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRequests -`func (o *RealtimeEntryAggregated) SetShieldHitRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldHitRequests(v int64)` SetShieldHitRequests sets ShieldHitRequests field to given value. @@ -4847,20 +4847,20 @@ HasShieldHitRequests returns a boolean if a field has been set. ### GetShieldMissRequests -`func (o *RealtimeEntryAggregated) GetShieldMissRequests() int32` +`func (o *RealtimeEntryAggregated) GetShieldMissRequests() int64` GetShieldMissRequests returns the ShieldMissRequests field if non-nil, zero value otherwise. ### GetShieldMissRequestsOk -`func (o *RealtimeEntryAggregated) GetShieldMissRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldMissRequestsOk() (*int64, bool)` GetShieldMissRequestsOk returns a tuple with the ShieldMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRequests -`func (o *RealtimeEntryAggregated) SetShieldMissRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldMissRequests(v int64)` SetShieldMissRequests sets ShieldMissRequests field to given value. @@ -4872,20 +4872,20 @@ HasShieldMissRequests returns a boolean if a field has been set. ### GetShieldHitRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytes() int64` GetShieldHitRespHeaderBytes returns the ShieldHitRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldHitRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytesOk() (*int64, bool)` GetShieldHitRespHeaderBytesOk returns a tuple with the ShieldHitRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetShieldHitRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldHitRespHeaderBytes(v int64)` SetShieldHitRespHeaderBytes sets ShieldHitRespHeaderBytes field to given value. @@ -4897,20 +4897,20 @@ HasShieldHitRespHeaderBytes returns a boolean if a field has been set. ### GetShieldHitRespBodyBytes -`func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytes() int64` GetShieldHitRespBodyBytes returns the ShieldHitRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldHitRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytesOk() (*int64, bool)` GetShieldHitRespBodyBytesOk returns a tuple with the ShieldHitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRespBodyBytes -`func (o *RealtimeEntryAggregated) SetShieldHitRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldHitRespBodyBytes(v int64)` SetShieldHitRespBodyBytes sets ShieldHitRespBodyBytes field to given value. @@ -4922,20 +4922,20 @@ HasShieldHitRespBodyBytes returns a boolean if a field has been set. ### GetShieldMissRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytes() int64` GetShieldMissRespHeaderBytes returns the ShieldMissRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldMissRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytesOk() (*int64, bool)` GetShieldMissRespHeaderBytesOk returns a tuple with the ShieldMissRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetShieldMissRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldMissRespHeaderBytes(v int64)` SetShieldMissRespHeaderBytes sets ShieldMissRespHeaderBytes field to given value. @@ -4947,20 +4947,20 @@ HasShieldMissRespHeaderBytes returns a boolean if a field has been set. ### GetShieldMissRespBodyBytes -`func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytes() int64` GetShieldMissRespBodyBytes returns the ShieldMissRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldMissRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytesOk() (*int64, bool)` GetShieldMissRespBodyBytesOk returns a tuple with the ShieldMissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRespBodyBytes -`func (o *RealtimeEntryAggregated) SetShieldMissRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetShieldMissRespBodyBytes(v int64)` SetShieldMissRespBodyBytes sets ShieldMissRespBodyBytes field to given value. @@ -4972,20 +4972,20 @@ HasShieldMissRespBodyBytes returns a boolean if a field has been set. ### GetWebsocketReqHeaderBytes -`func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytes() int64` GetWebsocketReqHeaderBytes returns the WebsocketReqHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketReqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytesOk() (*int64, bool)` GetWebsocketReqHeaderBytesOk returns a tuple with the WebsocketReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketReqHeaderBytes -`func (o *RealtimeEntryAggregated) SetWebsocketReqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketReqHeaderBytes(v int64)` SetWebsocketReqHeaderBytes sets WebsocketReqHeaderBytes field to given value. @@ -4997,20 +4997,20 @@ HasWebsocketReqHeaderBytes returns a boolean if a field has been set. ### GetWebsocketReqBodyBytes -`func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytes() int64` GetWebsocketReqBodyBytes returns the WebsocketReqBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketReqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytesOk() (*int64, bool)` GetWebsocketReqBodyBytesOk returns a tuple with the WebsocketReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketReqBodyBytes -`func (o *RealtimeEntryAggregated) SetWebsocketReqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketReqBodyBytes(v int64)` SetWebsocketReqBodyBytes sets WebsocketReqBodyBytes field to given value. @@ -5022,20 +5022,20 @@ HasWebsocketReqBodyBytes returns a boolean if a field has been set. ### GetWebsocketRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytes() int64` GetWebsocketRespHeaderBytes returns the WebsocketRespHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytesOk() (*int64, bool)` GetWebsocketRespHeaderBytesOk returns a tuple with the WebsocketRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetWebsocketRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketRespHeaderBytes(v int64)` SetWebsocketRespHeaderBytes sets WebsocketRespHeaderBytes field to given value. @@ -5047,20 +5047,20 @@ HasWebsocketRespHeaderBytes returns a boolean if a field has been set. ### GetWebsocketBereqHeaderBytes -`func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytes() int64` GetWebsocketBereqHeaderBytes returns the WebsocketBereqHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketBereqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytesOk() (*int64, bool)` GetWebsocketBereqHeaderBytesOk returns a tuple with the WebsocketBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBereqHeaderBytes -`func (o *RealtimeEntryAggregated) SetWebsocketBereqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketBereqHeaderBytes(v int64)` SetWebsocketBereqHeaderBytes sets WebsocketBereqHeaderBytes field to given value. @@ -5072,20 +5072,20 @@ HasWebsocketBereqHeaderBytes returns a boolean if a field has been set. ### GetWebsocketBereqBodyBytes -`func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytes() int64` GetWebsocketBereqBodyBytes returns the WebsocketBereqBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketBereqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytesOk() (*int64, bool)` GetWebsocketBereqBodyBytesOk returns a tuple with the WebsocketBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBereqBodyBytes -`func (o *RealtimeEntryAggregated) SetWebsocketBereqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketBereqBodyBytes(v int64)` SetWebsocketBereqBodyBytes sets WebsocketBereqBodyBytes field to given value. @@ -5097,20 +5097,20 @@ HasWebsocketBereqBodyBytes returns a boolean if a field has been set. ### GetWebsocketBerespHeaderBytes -`func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytes() int64` GetWebsocketBerespHeaderBytes returns the WebsocketBerespHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketBerespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytesOk() (*int64, bool)` GetWebsocketBerespHeaderBytesOk returns a tuple with the WebsocketBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBerespHeaderBytes -`func (o *RealtimeEntryAggregated) SetWebsocketBerespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketBerespHeaderBytes(v int64)` SetWebsocketBerespHeaderBytes sets WebsocketBerespHeaderBytes field to given value. @@ -5122,20 +5122,20 @@ HasWebsocketBerespHeaderBytes returns a boolean if a field has been set. ### GetWebsocketBerespBodyBytes -`func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytes() int64` GetWebsocketBerespBodyBytes returns the WebsocketBerespBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketBerespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytesOk() (*int64, bool)` GetWebsocketBerespBodyBytesOk returns a tuple with the WebsocketBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBerespBodyBytes -`func (o *RealtimeEntryAggregated) SetWebsocketBerespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketBerespBodyBytes(v int64)` SetWebsocketBerespBodyBytes sets WebsocketBerespBodyBytes field to given value. @@ -5147,20 +5147,20 @@ HasWebsocketBerespBodyBytes returns a boolean if a field has been set. ### GetWebsocketConnTimeMs -`func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMs() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMs() int64` GetWebsocketConnTimeMs returns the WebsocketConnTimeMs field if non-nil, zero value otherwise. ### GetWebsocketConnTimeMsOk -`func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMsOk() (*int64, bool)` GetWebsocketConnTimeMsOk returns a tuple with the WebsocketConnTimeMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketConnTimeMs -`func (o *RealtimeEntryAggregated) SetWebsocketConnTimeMs(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketConnTimeMs(v int64)` SetWebsocketConnTimeMs sets WebsocketConnTimeMs field to given value. @@ -5172,20 +5172,20 @@ HasWebsocketConnTimeMs returns a boolean if a field has been set. ### GetWebsocketRespBodyBytes -`func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytes() int64` GetWebsocketRespBodyBytes returns the WebsocketRespBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytesOk() (*int64, bool)` GetWebsocketRespBodyBytesOk returns a tuple with the WebsocketRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketRespBodyBytes -`func (o *RealtimeEntryAggregated) SetWebsocketRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetWebsocketRespBodyBytes(v int64)` SetWebsocketRespBodyBytes sets WebsocketRespBodyBytes field to given value. @@ -5197,20 +5197,20 @@ HasWebsocketRespBodyBytes returns a boolean if a field has been set. ### GetFanoutRecvPublishes -`func (o *RealtimeEntryAggregated) GetFanoutRecvPublishes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutRecvPublishes() int64` GetFanoutRecvPublishes returns the FanoutRecvPublishes field if non-nil, zero value otherwise. ### GetFanoutRecvPublishesOk -`func (o *RealtimeEntryAggregated) GetFanoutRecvPublishesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutRecvPublishesOk() (*int64, bool)` GetFanoutRecvPublishesOk returns a tuple with the FanoutRecvPublishes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRecvPublishes -`func (o *RealtimeEntryAggregated) SetFanoutRecvPublishes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutRecvPublishes(v int64)` SetFanoutRecvPublishes sets FanoutRecvPublishes field to given value. @@ -5222,20 +5222,20 @@ HasFanoutRecvPublishes returns a boolean if a field has been set. ### GetFanoutSendPublishes -`func (o *RealtimeEntryAggregated) GetFanoutSendPublishes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutSendPublishes() int64` GetFanoutSendPublishes returns the FanoutSendPublishes field if non-nil, zero value otherwise. ### GetFanoutSendPublishesOk -`func (o *RealtimeEntryAggregated) GetFanoutSendPublishesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutSendPublishesOk() (*int64, bool)` GetFanoutSendPublishesOk returns a tuple with the FanoutSendPublishes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutSendPublishes -`func (o *RealtimeEntryAggregated) SetFanoutSendPublishes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutSendPublishes(v int64)` SetFanoutSendPublishes sets FanoutSendPublishes field to given value. @@ -5247,20 +5247,20 @@ HasFanoutSendPublishes returns a boolean if a field has been set. ### GetKvStoreClassAOperations -`func (o *RealtimeEntryAggregated) GetKvStoreClassAOperations() int32` +`func (o *RealtimeEntryAggregated) GetKvStoreClassAOperations() int64` GetKvStoreClassAOperations returns the KvStoreClassAOperations field if non-nil, zero value otherwise. ### GetKvStoreClassAOperationsOk -`func (o *RealtimeEntryAggregated) GetKvStoreClassAOperationsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetKvStoreClassAOperationsOk() (*int64, bool)` GetKvStoreClassAOperationsOk returns a tuple with the KvStoreClassAOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetKvStoreClassAOperations -`func (o *RealtimeEntryAggregated) SetKvStoreClassAOperations(v int32)` +`func (o *RealtimeEntryAggregated) SetKvStoreClassAOperations(v int64)` SetKvStoreClassAOperations sets KvStoreClassAOperations field to given value. @@ -5272,20 +5272,20 @@ HasKvStoreClassAOperations returns a boolean if a field has been set. ### GetKvStoreClassBOperations -`func (o *RealtimeEntryAggregated) GetKvStoreClassBOperations() int32` +`func (o *RealtimeEntryAggregated) GetKvStoreClassBOperations() int64` GetKvStoreClassBOperations returns the KvStoreClassBOperations field if non-nil, zero value otherwise. ### GetKvStoreClassBOperationsOk -`func (o *RealtimeEntryAggregated) GetKvStoreClassBOperationsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetKvStoreClassBOperationsOk() (*int64, bool)` GetKvStoreClassBOperationsOk returns a tuple with the KvStoreClassBOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetKvStoreClassBOperations -`func (o *RealtimeEntryAggregated) SetKvStoreClassBOperations(v int32)` +`func (o *RealtimeEntryAggregated) SetKvStoreClassBOperations(v int64)` SetKvStoreClassBOperations sets KvStoreClassBOperations field to given value. @@ -5297,20 +5297,20 @@ HasKvStoreClassBOperations returns a boolean if a field has been set. ### GetObjectStoreClassAOperations -`func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperations() int32` +`func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperations() int64` GetObjectStoreClassAOperations returns the ObjectStoreClassAOperations field if non-nil, zero value otherwise. ### GetObjectStoreClassAOperationsOk -`func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperationsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperationsOk() (*int64, bool)` GetObjectStoreClassAOperationsOk returns a tuple with the ObjectStoreClassAOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectStoreClassAOperations -`func (o *RealtimeEntryAggregated) SetObjectStoreClassAOperations(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectStoreClassAOperations(v int64)` SetObjectStoreClassAOperations sets ObjectStoreClassAOperations field to given value. @@ -5322,20 +5322,20 @@ HasObjectStoreClassAOperations returns a boolean if a field has been set. ### GetObjectStoreClassBOperations -`func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperations() int32` +`func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperations() int64` GetObjectStoreClassBOperations returns the ObjectStoreClassBOperations field if non-nil, zero value otherwise. ### GetObjectStoreClassBOperationsOk -`func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperationsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperationsOk() (*int64, bool)` GetObjectStoreClassBOperationsOk returns a tuple with the ObjectStoreClassBOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectStoreClassBOperations -`func (o *RealtimeEntryAggregated) SetObjectStoreClassBOperations(v int32)` +`func (o *RealtimeEntryAggregated) SetObjectStoreClassBOperations(v int64)` SetObjectStoreClassBOperations sets ObjectStoreClassBOperations field to given value. @@ -5347,20 +5347,20 @@ HasObjectStoreClassBOperations returns a boolean if a field has been set. ### GetFanoutReqHeaderBytes -`func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytes() int64` GetFanoutReqHeaderBytes returns the FanoutReqHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutReqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytesOk() (*int64, bool)` GetFanoutReqHeaderBytesOk returns a tuple with the FanoutReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutReqHeaderBytes -`func (o *RealtimeEntryAggregated) SetFanoutReqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutReqHeaderBytes(v int64)` SetFanoutReqHeaderBytes sets FanoutReqHeaderBytes field to given value. @@ -5372,20 +5372,20 @@ HasFanoutReqHeaderBytes returns a boolean if a field has been set. ### GetFanoutReqBodyBytes -`func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytes() int64` GetFanoutReqBodyBytes returns the FanoutReqBodyBytes field if non-nil, zero value otherwise. ### GetFanoutReqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytesOk() (*int64, bool)` GetFanoutReqBodyBytesOk returns a tuple with the FanoutReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutReqBodyBytes -`func (o *RealtimeEntryAggregated) SetFanoutReqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutReqBodyBytes(v int64)` SetFanoutReqBodyBytes sets FanoutReqBodyBytes field to given value. @@ -5397,20 +5397,20 @@ HasFanoutReqBodyBytes returns a boolean if a field has been set. ### GetFanoutRespHeaderBytes -`func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytes() int64` GetFanoutRespHeaderBytes returns the FanoutRespHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutRespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytesOk() (*int64, bool)` GetFanoutRespHeaderBytesOk returns a tuple with the FanoutRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRespHeaderBytes -`func (o *RealtimeEntryAggregated) SetFanoutRespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutRespHeaderBytes(v int64)` SetFanoutRespHeaderBytes sets FanoutRespHeaderBytes field to given value. @@ -5422,20 +5422,20 @@ HasFanoutRespHeaderBytes returns a boolean if a field has been set. ### GetFanoutRespBodyBytes -`func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytes() int64` GetFanoutRespBodyBytes returns the FanoutRespBodyBytes field if non-nil, zero value otherwise. ### GetFanoutRespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytesOk() (*int64, bool)` GetFanoutRespBodyBytesOk returns a tuple with the FanoutRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRespBodyBytes -`func (o *RealtimeEntryAggregated) SetFanoutRespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutRespBodyBytes(v int64)` SetFanoutRespBodyBytes sets FanoutRespBodyBytes field to given value. @@ -5447,20 +5447,20 @@ HasFanoutRespBodyBytes returns a boolean if a field has been set. ### GetFanoutBereqHeaderBytes -`func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytes() int64` GetFanoutBereqHeaderBytes returns the FanoutBereqHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutBereqHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytesOk() (*int64, bool)` GetFanoutBereqHeaderBytesOk returns a tuple with the FanoutBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBereqHeaderBytes -`func (o *RealtimeEntryAggregated) SetFanoutBereqHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutBereqHeaderBytes(v int64)` SetFanoutBereqHeaderBytes sets FanoutBereqHeaderBytes field to given value. @@ -5472,20 +5472,20 @@ HasFanoutBereqHeaderBytes returns a boolean if a field has been set. ### GetFanoutBereqBodyBytes -`func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytes() int64` GetFanoutBereqBodyBytes returns the FanoutBereqBodyBytes field if non-nil, zero value otherwise. ### GetFanoutBereqBodyBytesOk -`func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytesOk() (*int64, bool)` GetFanoutBereqBodyBytesOk returns a tuple with the FanoutBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBereqBodyBytes -`func (o *RealtimeEntryAggregated) SetFanoutBereqBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutBereqBodyBytes(v int64)` SetFanoutBereqBodyBytes sets FanoutBereqBodyBytes field to given value. @@ -5497,20 +5497,20 @@ HasFanoutBereqBodyBytes returns a boolean if a field has been set. ### GetFanoutBerespHeaderBytes -`func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytes() int64` GetFanoutBerespHeaderBytes returns the FanoutBerespHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutBerespHeaderBytesOk -`func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytesOk() (*int64, bool)` GetFanoutBerespHeaderBytesOk returns a tuple with the FanoutBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBerespHeaderBytes -`func (o *RealtimeEntryAggregated) SetFanoutBerespHeaderBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutBerespHeaderBytes(v int64)` SetFanoutBerespHeaderBytes sets FanoutBerespHeaderBytes field to given value. @@ -5522,20 +5522,20 @@ HasFanoutBerespHeaderBytes returns a boolean if a field has been set. ### GetFanoutBerespBodyBytes -`func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytes() int32` +`func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytes() int64` GetFanoutBerespBodyBytes returns the FanoutBerespBodyBytes field if non-nil, zero value otherwise. ### GetFanoutBerespBodyBytesOk -`func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytesOk() (*int64, bool)` GetFanoutBerespBodyBytesOk returns a tuple with the FanoutBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBerespBodyBytes -`func (o *RealtimeEntryAggregated) SetFanoutBerespBodyBytes(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutBerespBodyBytes(v int64)` SetFanoutBerespBodyBytes sets FanoutBerespBodyBytes field to given value. @@ -5547,20 +5547,20 @@ HasFanoutBerespBodyBytes returns a boolean if a field has been set. ### GetFanoutConnTimeMs -`func (o *RealtimeEntryAggregated) GetFanoutConnTimeMs() int32` +`func (o *RealtimeEntryAggregated) GetFanoutConnTimeMs() int64` GetFanoutConnTimeMs returns the FanoutConnTimeMs field if non-nil, zero value otherwise. ### GetFanoutConnTimeMsOk -`func (o *RealtimeEntryAggregated) GetFanoutConnTimeMsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetFanoutConnTimeMsOk() (*int64, bool)` GetFanoutConnTimeMsOk returns a tuple with the FanoutConnTimeMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutConnTimeMs -`func (o *RealtimeEntryAggregated) SetFanoutConnTimeMs(v int32)` +`func (o *RealtimeEntryAggregated) SetFanoutConnTimeMs(v int64)` SetFanoutConnTimeMs sets FanoutConnTimeMs field to given value. @@ -5572,20 +5572,20 @@ HasFanoutConnTimeMs returns a boolean if a field has been set. ### GetDdosActionLimitStreamsConnections -`func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnections() int32` +`func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnections() int64` GetDdosActionLimitStreamsConnections returns the DdosActionLimitStreamsConnections field if non-nil, zero value otherwise. ### GetDdosActionLimitStreamsConnectionsOk -`func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnectionsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnectionsOk() (*int64, bool)` GetDdosActionLimitStreamsConnectionsOk returns a tuple with the DdosActionLimitStreamsConnections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionLimitStreamsConnections -`func (o *RealtimeEntryAggregated) SetDdosActionLimitStreamsConnections(v int32)` +`func (o *RealtimeEntryAggregated) SetDdosActionLimitStreamsConnections(v int64)` SetDdosActionLimitStreamsConnections sets DdosActionLimitStreamsConnections field to given value. @@ -5597,20 +5597,20 @@ HasDdosActionLimitStreamsConnections returns a boolean if a field has been set. ### GetDdosActionLimitStreamsRequests -`func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequests() int32` +`func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequests() int64` GetDdosActionLimitStreamsRequests returns the DdosActionLimitStreamsRequests field if non-nil, zero value otherwise. ### GetDdosActionLimitStreamsRequestsOk -`func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequestsOk() (*int64, bool)` GetDdosActionLimitStreamsRequestsOk returns a tuple with the DdosActionLimitStreamsRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionLimitStreamsRequests -`func (o *RealtimeEntryAggregated) SetDdosActionLimitStreamsRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetDdosActionLimitStreamsRequests(v int64)` SetDdosActionLimitStreamsRequests sets DdosActionLimitStreamsRequests field to given value. @@ -5622,20 +5622,20 @@ HasDdosActionLimitStreamsRequests returns a boolean if a field has been set. ### GetDdosActionTarpitAccept -`func (o *RealtimeEntryAggregated) GetDdosActionTarpitAccept() int32` +`func (o *RealtimeEntryAggregated) GetDdosActionTarpitAccept() int64` GetDdosActionTarpitAccept returns the DdosActionTarpitAccept field if non-nil, zero value otherwise. ### GetDdosActionTarpitAcceptOk -`func (o *RealtimeEntryAggregated) GetDdosActionTarpitAcceptOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDdosActionTarpitAcceptOk() (*int64, bool)` GetDdosActionTarpitAcceptOk returns a tuple with the DdosActionTarpitAccept field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionTarpitAccept -`func (o *RealtimeEntryAggregated) SetDdosActionTarpitAccept(v int32)` +`func (o *RealtimeEntryAggregated) SetDdosActionTarpitAccept(v int64)` SetDdosActionTarpitAccept sets DdosActionTarpitAccept field to given value. @@ -5647,20 +5647,20 @@ HasDdosActionTarpitAccept returns a boolean if a field has been set. ### GetDdosActionTarpit -`func (o *RealtimeEntryAggregated) GetDdosActionTarpit() int32` +`func (o *RealtimeEntryAggregated) GetDdosActionTarpit() int64` GetDdosActionTarpit returns the DdosActionTarpit field if non-nil, zero value otherwise. ### GetDdosActionTarpitOk -`func (o *RealtimeEntryAggregated) GetDdosActionTarpitOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDdosActionTarpitOk() (*int64, bool)` GetDdosActionTarpitOk returns a tuple with the DdosActionTarpit field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionTarpit -`func (o *RealtimeEntryAggregated) SetDdosActionTarpit(v int32)` +`func (o *RealtimeEntryAggregated) SetDdosActionTarpit(v int64)` SetDdosActionTarpit sets DdosActionTarpit field to given value. @@ -5672,20 +5672,20 @@ HasDdosActionTarpit returns a boolean if a field has been set. ### GetDdosActionClose -`func (o *RealtimeEntryAggregated) GetDdosActionClose() int32` +`func (o *RealtimeEntryAggregated) GetDdosActionClose() int64` GetDdosActionClose returns the DdosActionClose field if non-nil, zero value otherwise. ### GetDdosActionCloseOk -`func (o *RealtimeEntryAggregated) GetDdosActionCloseOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDdosActionCloseOk() (*int64, bool)` GetDdosActionCloseOk returns a tuple with the DdosActionClose field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionClose -`func (o *RealtimeEntryAggregated) SetDdosActionClose(v int32)` +`func (o *RealtimeEntryAggregated) SetDdosActionClose(v int64)` SetDdosActionClose sets DdosActionClose field to given value. @@ -5697,20 +5697,20 @@ HasDdosActionClose returns a boolean if a field has been set. ### GetDdosActionBlackhole -`func (o *RealtimeEntryAggregated) GetDdosActionBlackhole() int32` +`func (o *RealtimeEntryAggregated) GetDdosActionBlackhole() int64` GetDdosActionBlackhole returns the DdosActionBlackhole field if non-nil, zero value otherwise. ### GetDdosActionBlackholeOk -`func (o *RealtimeEntryAggregated) GetDdosActionBlackholeOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDdosActionBlackholeOk() (*int64, bool)` GetDdosActionBlackholeOk returns a tuple with the DdosActionBlackhole field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionBlackhole -`func (o *RealtimeEntryAggregated) SetDdosActionBlackhole(v int32)` +`func (o *RealtimeEntryAggregated) SetDdosActionBlackhole(v int64)` SetDdosActionBlackhole sets DdosActionBlackhole field to given value. @@ -5722,20 +5722,20 @@ HasDdosActionBlackhole returns a boolean if a field has been set. ### GetBotChallengeStarts -`func (o *RealtimeEntryAggregated) GetBotChallengeStarts() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengeStarts() int64` GetBotChallengeStarts returns the BotChallengeStarts field if non-nil, zero value otherwise. ### GetBotChallengeStartsOk -`func (o *RealtimeEntryAggregated) GetBotChallengeStartsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengeStartsOk() (*int64, bool)` GetBotChallengeStartsOk returns a tuple with the BotChallengeStarts field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeStarts -`func (o *RealtimeEntryAggregated) SetBotChallengeStarts(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengeStarts(v int64)` SetBotChallengeStarts sets BotChallengeStarts field to given value. @@ -5747,20 +5747,20 @@ HasBotChallengeStarts returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensPassed -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassed() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassed() int64` GetBotChallengeCompleteTokensPassed returns the BotChallengeCompleteTokensPassed field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensPassedOk -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassedOk() (*int64, bool)` GetBotChallengeCompleteTokensPassedOk returns a tuple with the BotChallengeCompleteTokensPassed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensPassed -`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensPassed(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensPassed(v int64)` SetBotChallengeCompleteTokensPassed sets BotChallengeCompleteTokensPassed field to given value. @@ -5772,20 +5772,20 @@ HasBotChallengeCompleteTokensPassed returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensFailed -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailed() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailed() int64` GetBotChallengeCompleteTokensFailed returns the BotChallengeCompleteTokensFailed field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensFailedOk -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailedOk() (*int64, bool)` GetBotChallengeCompleteTokensFailedOk returns a tuple with the BotChallengeCompleteTokensFailed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensFailed -`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensFailed(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensFailed(v int64)` SetBotChallengeCompleteTokensFailed sets BotChallengeCompleteTokensFailed field to given value. @@ -5797,20 +5797,20 @@ HasBotChallengeCompleteTokensFailed returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensChecked -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensChecked() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensChecked() int64` GetBotChallengeCompleteTokensChecked returns the BotChallengeCompleteTokensChecked field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensCheckedOk -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensCheckedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensCheckedOk() (*int64, bool)` GetBotChallengeCompleteTokensCheckedOk returns a tuple with the BotChallengeCompleteTokensChecked field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensChecked -`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensChecked(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensChecked(v int64)` SetBotChallengeCompleteTokensChecked sets BotChallengeCompleteTokensChecked field to given value. @@ -5822,20 +5822,20 @@ HasBotChallengeCompleteTokensChecked returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensDisabled -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabled() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabled() int64` GetBotChallengeCompleteTokensDisabled returns the BotChallengeCompleteTokensDisabled field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensDisabledOk -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabledOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabledOk() (*int64, bool)` GetBotChallengeCompleteTokensDisabledOk returns a tuple with the BotChallengeCompleteTokensDisabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensDisabled -`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensDisabled(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensDisabled(v int64)` SetBotChallengeCompleteTokensDisabled sets BotChallengeCompleteTokensDisabled field to given value. @@ -5847,20 +5847,20 @@ HasBotChallengeCompleteTokensDisabled returns a boolean if a field has been set. ### GetBotChallengesIssued -`func (o *RealtimeEntryAggregated) GetBotChallengesIssued() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengesIssued() int64` GetBotChallengesIssued returns the BotChallengesIssued field if non-nil, zero value otherwise. ### GetBotChallengesIssuedOk -`func (o *RealtimeEntryAggregated) GetBotChallengesIssuedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengesIssuedOk() (*int64, bool)` GetBotChallengesIssuedOk returns a tuple with the BotChallengesIssued field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesIssued -`func (o *RealtimeEntryAggregated) SetBotChallengesIssued(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengesIssued(v int64)` SetBotChallengesIssued sets BotChallengesIssued field to given value. @@ -5872,20 +5872,20 @@ HasBotChallengesIssued returns a boolean if a field has been set. ### GetBotChallengesSucceeded -`func (o *RealtimeEntryAggregated) GetBotChallengesSucceeded() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengesSucceeded() int64` GetBotChallengesSucceeded returns the BotChallengesSucceeded field if non-nil, zero value otherwise. ### GetBotChallengesSucceededOk -`func (o *RealtimeEntryAggregated) GetBotChallengesSucceededOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengesSucceededOk() (*int64, bool)` GetBotChallengesSucceededOk returns a tuple with the BotChallengesSucceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesSucceeded -`func (o *RealtimeEntryAggregated) SetBotChallengesSucceeded(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengesSucceeded(v int64)` SetBotChallengesSucceeded sets BotChallengesSucceeded field to given value. @@ -5897,20 +5897,20 @@ HasBotChallengesSucceeded returns a boolean if a field has been set. ### GetBotChallengesFailed -`func (o *RealtimeEntryAggregated) GetBotChallengesFailed() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengesFailed() int64` GetBotChallengesFailed returns the BotChallengesFailed field if non-nil, zero value otherwise. ### GetBotChallengesFailedOk -`func (o *RealtimeEntryAggregated) GetBotChallengesFailedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengesFailedOk() (*int64, bool)` GetBotChallengesFailedOk returns a tuple with the BotChallengesFailed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesFailed -`func (o *RealtimeEntryAggregated) SetBotChallengesFailed(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengesFailed(v int64)` SetBotChallengesFailed sets BotChallengesFailed field to given value. @@ -5922,20 +5922,20 @@ HasBotChallengesFailed returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensIssued -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssued() int32` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssued() int64` GetBotChallengeCompleteTokensIssued returns the BotChallengeCompleteTokensIssued field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensIssuedOk -`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssuedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssuedOk() (*int64, bool)` GetBotChallengeCompleteTokensIssuedOk returns a tuple with the BotChallengeCompleteTokensIssued field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensIssued -`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensIssued(v int32)` +`func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensIssued(v int64)` SetBotChallengeCompleteTokensIssued sets BotChallengeCompleteTokensIssued field to given value. @@ -5947,20 +5947,20 @@ HasBotChallengeCompleteTokensIssued returns a boolean if a field has been set. ### GetDdosActionDowngrade -`func (o *RealtimeEntryAggregated) GetDdosActionDowngrade() int32` +`func (o *RealtimeEntryAggregated) GetDdosActionDowngrade() int64` GetDdosActionDowngrade returns the DdosActionDowngrade field if non-nil, zero value otherwise. ### GetDdosActionDowngradeOk -`func (o *RealtimeEntryAggregated) GetDdosActionDowngradeOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDdosActionDowngradeOk() (*int64, bool)` GetDdosActionDowngradeOk returns a tuple with the DdosActionDowngrade field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionDowngrade -`func (o *RealtimeEntryAggregated) SetDdosActionDowngrade(v int32)` +`func (o *RealtimeEntryAggregated) SetDdosActionDowngrade(v int64)` SetDdosActionDowngrade sets DdosActionDowngrade field to given value. @@ -5972,20 +5972,20 @@ HasDdosActionDowngrade returns a boolean if a field has been set. ### GetDdosActionDowngradedConnections -`func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnections() int32` +`func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnections() int64` GetDdosActionDowngradedConnections returns the DdosActionDowngradedConnections field if non-nil, zero value otherwise. ### GetDdosActionDowngradedConnectionsOk -`func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnectionsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnectionsOk() (*int64, bool)` GetDdosActionDowngradedConnectionsOk returns a tuple with the DdosActionDowngradedConnections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionDowngradedConnections -`func (o *RealtimeEntryAggregated) SetDdosActionDowngradedConnections(v int32)` +`func (o *RealtimeEntryAggregated) SetDdosActionDowngradedConnections(v int64)` SetDdosActionDowngradedConnections sets DdosActionDowngradedConnections field to given value. @@ -5997,20 +5997,20 @@ HasDdosActionDowngradedConnections returns a boolean if a field has been set. ### GetAllHitRequests -`func (o *RealtimeEntryAggregated) GetAllHitRequests() int32` +`func (o *RealtimeEntryAggregated) GetAllHitRequests() int64` GetAllHitRequests returns the AllHitRequests field if non-nil, zero value otherwise. ### GetAllHitRequestsOk -`func (o *RealtimeEntryAggregated) GetAllHitRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllHitRequestsOk() (*int64, bool)` GetAllHitRequestsOk returns a tuple with the AllHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllHitRequests -`func (o *RealtimeEntryAggregated) SetAllHitRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetAllHitRequests(v int64)` SetAllHitRequests sets AllHitRequests field to given value. @@ -6022,20 +6022,20 @@ HasAllHitRequests returns a boolean if a field has been set. ### GetAllMissRequests -`func (o *RealtimeEntryAggregated) GetAllMissRequests() int32` +`func (o *RealtimeEntryAggregated) GetAllMissRequests() int64` GetAllMissRequests returns the AllMissRequests field if non-nil, zero value otherwise. ### GetAllMissRequestsOk -`func (o *RealtimeEntryAggregated) GetAllMissRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllMissRequestsOk() (*int64, bool)` GetAllMissRequestsOk returns a tuple with the AllMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllMissRequests -`func (o *RealtimeEntryAggregated) SetAllMissRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetAllMissRequests(v int64)` SetAllMissRequests sets AllMissRequests field to given value. @@ -6047,20 +6047,20 @@ HasAllMissRequests returns a boolean if a field has been set. ### GetAllPassRequests -`func (o *RealtimeEntryAggregated) GetAllPassRequests() int32` +`func (o *RealtimeEntryAggregated) GetAllPassRequests() int64` GetAllPassRequests returns the AllPassRequests field if non-nil, zero value otherwise. ### GetAllPassRequestsOk -`func (o *RealtimeEntryAggregated) GetAllPassRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllPassRequestsOk() (*int64, bool)` GetAllPassRequestsOk returns a tuple with the AllPassRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllPassRequests -`func (o *RealtimeEntryAggregated) SetAllPassRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetAllPassRequests(v int64)` SetAllPassRequests sets AllPassRequests field to given value. @@ -6072,20 +6072,20 @@ HasAllPassRequests returns a boolean if a field has been set. ### GetAllErrorRequests -`func (o *RealtimeEntryAggregated) GetAllErrorRequests() int32` +`func (o *RealtimeEntryAggregated) GetAllErrorRequests() int64` GetAllErrorRequests returns the AllErrorRequests field if non-nil, zero value otherwise. ### GetAllErrorRequestsOk -`func (o *RealtimeEntryAggregated) GetAllErrorRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllErrorRequestsOk() (*int64, bool)` GetAllErrorRequestsOk returns a tuple with the AllErrorRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllErrorRequests -`func (o *RealtimeEntryAggregated) SetAllErrorRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetAllErrorRequests(v int64)` SetAllErrorRequests sets AllErrorRequests field to given value. @@ -6097,20 +6097,20 @@ HasAllErrorRequests returns a boolean if a field has been set. ### GetAllSynthRequests -`func (o *RealtimeEntryAggregated) GetAllSynthRequests() int32` +`func (o *RealtimeEntryAggregated) GetAllSynthRequests() int64` GetAllSynthRequests returns the AllSynthRequests field if non-nil, zero value otherwise. ### GetAllSynthRequestsOk -`func (o *RealtimeEntryAggregated) GetAllSynthRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllSynthRequestsOk() (*int64, bool)` GetAllSynthRequestsOk returns a tuple with the AllSynthRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllSynthRequests -`func (o *RealtimeEntryAggregated) SetAllSynthRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetAllSynthRequests(v int64)` SetAllSynthRequests sets AllSynthRequests field to given value. @@ -6122,20 +6122,20 @@ HasAllSynthRequests returns a boolean if a field has been set. ### GetAllEdgeHitRequests -`func (o *RealtimeEntryAggregated) GetAllEdgeHitRequests() int32` +`func (o *RealtimeEntryAggregated) GetAllEdgeHitRequests() int64` GetAllEdgeHitRequests returns the AllEdgeHitRequests field if non-nil, zero value otherwise. ### GetAllEdgeHitRequestsOk -`func (o *RealtimeEntryAggregated) GetAllEdgeHitRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllEdgeHitRequestsOk() (*int64, bool)` GetAllEdgeHitRequestsOk returns a tuple with the AllEdgeHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllEdgeHitRequests -`func (o *RealtimeEntryAggregated) SetAllEdgeHitRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetAllEdgeHitRequests(v int64)` SetAllEdgeHitRequests sets AllEdgeHitRequests field to given value. @@ -6147,20 +6147,20 @@ HasAllEdgeHitRequests returns a boolean if a field has been set. ### GetAllEdgeMissRequests -`func (o *RealtimeEntryAggregated) GetAllEdgeMissRequests() int32` +`func (o *RealtimeEntryAggregated) GetAllEdgeMissRequests() int64` GetAllEdgeMissRequests returns the AllEdgeMissRequests field if non-nil, zero value otherwise. ### GetAllEdgeMissRequestsOk -`func (o *RealtimeEntryAggregated) GetAllEdgeMissRequestsOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllEdgeMissRequestsOk() (*int64, bool)` GetAllEdgeMissRequestsOk returns a tuple with the AllEdgeMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllEdgeMissRequests -`func (o *RealtimeEntryAggregated) SetAllEdgeMissRequests(v int32)` +`func (o *RealtimeEntryAggregated) SetAllEdgeMissRequests(v int64)` SetAllEdgeMissRequests sets AllEdgeMissRequests field to given value. @@ -6172,20 +6172,20 @@ HasAllEdgeMissRequests returns a boolean if a field has been set. ### GetAllStatus1xx -`func (o *RealtimeEntryAggregated) GetAllStatus1xx() int32` +`func (o *RealtimeEntryAggregated) GetAllStatus1xx() int64` GetAllStatus1xx returns the AllStatus1xx field if non-nil, zero value otherwise. ### GetAllStatus1xxOk -`func (o *RealtimeEntryAggregated) GetAllStatus1xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllStatus1xxOk() (*int64, bool)` GetAllStatus1xxOk returns a tuple with the AllStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus1xx -`func (o *RealtimeEntryAggregated) SetAllStatus1xx(v int32)` +`func (o *RealtimeEntryAggregated) SetAllStatus1xx(v int64)` SetAllStatus1xx sets AllStatus1xx field to given value. @@ -6197,20 +6197,20 @@ HasAllStatus1xx returns a boolean if a field has been set. ### GetAllStatus2xx -`func (o *RealtimeEntryAggregated) GetAllStatus2xx() int32` +`func (o *RealtimeEntryAggregated) GetAllStatus2xx() int64` GetAllStatus2xx returns the AllStatus2xx field if non-nil, zero value otherwise. ### GetAllStatus2xxOk -`func (o *RealtimeEntryAggregated) GetAllStatus2xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllStatus2xxOk() (*int64, bool)` GetAllStatus2xxOk returns a tuple with the AllStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus2xx -`func (o *RealtimeEntryAggregated) SetAllStatus2xx(v int32)` +`func (o *RealtimeEntryAggregated) SetAllStatus2xx(v int64)` SetAllStatus2xx sets AllStatus2xx field to given value. @@ -6222,20 +6222,20 @@ HasAllStatus2xx returns a boolean if a field has been set. ### GetAllStatus3xx -`func (o *RealtimeEntryAggregated) GetAllStatus3xx() int32` +`func (o *RealtimeEntryAggregated) GetAllStatus3xx() int64` GetAllStatus3xx returns the AllStatus3xx field if non-nil, zero value otherwise. ### GetAllStatus3xxOk -`func (o *RealtimeEntryAggregated) GetAllStatus3xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllStatus3xxOk() (*int64, bool)` GetAllStatus3xxOk returns a tuple with the AllStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus3xx -`func (o *RealtimeEntryAggregated) SetAllStatus3xx(v int32)` +`func (o *RealtimeEntryAggregated) SetAllStatus3xx(v int64)` SetAllStatus3xx sets AllStatus3xx field to given value. @@ -6247,20 +6247,20 @@ HasAllStatus3xx returns a boolean if a field has been set. ### GetAllStatus4xx -`func (o *RealtimeEntryAggregated) GetAllStatus4xx() int32` +`func (o *RealtimeEntryAggregated) GetAllStatus4xx() int64` GetAllStatus4xx returns the AllStatus4xx field if non-nil, zero value otherwise. ### GetAllStatus4xxOk -`func (o *RealtimeEntryAggregated) GetAllStatus4xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllStatus4xxOk() (*int64, bool)` GetAllStatus4xxOk returns a tuple with the AllStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus4xx -`func (o *RealtimeEntryAggregated) SetAllStatus4xx(v int32)` +`func (o *RealtimeEntryAggregated) SetAllStatus4xx(v int64)` SetAllStatus4xx sets AllStatus4xx field to given value. @@ -6272,20 +6272,20 @@ HasAllStatus4xx returns a boolean if a field has been set. ### GetAllStatus5xx -`func (o *RealtimeEntryAggregated) GetAllStatus5xx() int32` +`func (o *RealtimeEntryAggregated) GetAllStatus5xx() int64` GetAllStatus5xx returns the AllStatus5xx field if non-nil, zero value otherwise. ### GetAllStatus5xxOk -`func (o *RealtimeEntryAggregated) GetAllStatus5xxOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetAllStatus5xxOk() (*int64, bool)` GetAllStatus5xxOk returns a tuple with the AllStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus5xx -`func (o *RealtimeEntryAggregated) SetAllStatus5xx(v int32)` +`func (o *RealtimeEntryAggregated) SetAllStatus5xx(v int64)` SetAllStatus5xx sets AllStatus5xx field to given value. @@ -6322,20 +6322,20 @@ HasOriginOffload returns a boolean if a field has been set. ### GetRequestDeniedGetHeadBody -`func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBody() int32` +`func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBody() int64` GetRequestDeniedGetHeadBody returns the RequestDeniedGetHeadBody field if non-nil, zero value otherwise. ### GetRequestDeniedGetHeadBodyOk -`func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBodyOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBodyOk() (*int64, bool)` GetRequestDeniedGetHeadBodyOk returns a tuple with the RequestDeniedGetHeadBody field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRequestDeniedGetHeadBody -`func (o *RealtimeEntryAggregated) SetRequestDeniedGetHeadBody(v int32)` +`func (o *RealtimeEntryAggregated) SetRequestDeniedGetHeadBody(v int64)` SetRequestDeniedGetHeadBody sets RequestDeniedGetHeadBody field to given value. @@ -6347,20 +6347,20 @@ HasRequestDeniedGetHeadBody returns a boolean if a field has been set. ### GetServiceDdosRequestsDetected -`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetected() int32` +`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetected() int64` GetServiceDdosRequestsDetected returns the ServiceDdosRequestsDetected field if non-nil, zero value otherwise. ### GetServiceDdosRequestsDetectedOk -`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetectedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetectedOk() (*int64, bool)` GetServiceDdosRequestsDetectedOk returns a tuple with the ServiceDdosRequestsDetected field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsDetected -`func (o *RealtimeEntryAggregated) SetServiceDdosRequestsDetected(v int32)` +`func (o *RealtimeEntryAggregated) SetServiceDdosRequestsDetected(v int64)` SetServiceDdosRequestsDetected sets ServiceDdosRequestsDetected field to given value. @@ -6372,20 +6372,20 @@ HasServiceDdosRequestsDetected returns a boolean if a field has been set. ### GetServiceDdosRequestsMitigated -`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigated() int32` +`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigated() int64` GetServiceDdosRequestsMitigated returns the ServiceDdosRequestsMitigated field if non-nil, zero value otherwise. ### GetServiceDdosRequestsMitigatedOk -`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigatedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigatedOk() (*int64, bool)` GetServiceDdosRequestsMitigatedOk returns a tuple with the ServiceDdosRequestsMitigated field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsMitigated -`func (o *RealtimeEntryAggregated) SetServiceDdosRequestsMitigated(v int32)` +`func (o *RealtimeEntryAggregated) SetServiceDdosRequestsMitigated(v int64)` SetServiceDdosRequestsMitigated sets ServiceDdosRequestsMitigated field to given value. @@ -6397,20 +6397,20 @@ HasServiceDdosRequestsMitigated returns a boolean if a field has been set. ### GetServiceDdosRequestsAllowed -`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowed() int32` +`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowed() int64` GetServiceDdosRequestsAllowed returns the ServiceDdosRequestsAllowed field if non-nil, zero value otherwise. ### GetServiceDdosRequestsAllowedOk -`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowedOk() (*int32, bool)` +`func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowedOk() (*int64, bool)` GetServiceDdosRequestsAllowedOk returns a tuple with the ServiceDdosRequestsAllowed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsAllowed -`func (o *RealtimeEntryAggregated) SetServiceDdosRequestsAllowed(v int32)` +`func (o *RealtimeEntryAggregated) SetServiceDdosRequestsAllowed(v int64)` SetServiceDdosRequestsAllowed sets ServiceDdosRequestsAllowed field to given value. diff --git a/docs/RealtimeMeasurements.md b/docs/RealtimeMeasurements.md index 6a34718..a3b074e 100644 --- a/docs/RealtimeMeasurements.md +++ b/docs/RealtimeMeasurements.md @@ -4,252 +4,252 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**Requests** | Pointer to **int32** | Number of requests processed. | [optional] -**Logging** | Pointer to **int32** | Number of log lines sent (alias for `log`). | [optional] -**Log** | Pointer to **int32** | Number of log lines sent. | [optional] -**RespHeaderBytes** | Pointer to **int32** | Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). | [optional] -**HeaderSize** | Pointer to **int32** | Total header bytes delivered (alias for resp_header_bytes). | [optional] -**RespBodyBytes** | Pointer to **int32** | Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). | [optional] -**BodySize** | Pointer to **int32** | Total body bytes delivered (alias for resp_body_bytes). | [optional] -**Hits** | Pointer to **int32** | Number of cache hits. | [optional] -**Miss** | Pointer to **int32** | Number of cache misses. | [optional] -**Pass** | Pointer to **int32** | Number of requests that passed through the CDN without being cached. | [optional] -**Synth** | Pointer to **int32** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). | [optional] -**Errors** | Pointer to **int32** | Number of cache errors. | [optional] +**Requests** | Pointer to **int64** | Number of requests processed. | [optional] +**Logging** | Pointer to **int64** | Number of log lines sent (alias for `log`). | [optional] +**Log** | Pointer to **int64** | Number of log lines sent. | [optional] +**RespHeaderBytes** | Pointer to **int64** | Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). | [optional] +**HeaderSize** | Pointer to **int64** | Total header bytes delivered (alias for resp_header_bytes). | [optional] +**RespBodyBytes** | Pointer to **int64** | Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). | [optional] +**BodySize** | Pointer to **int64** | Total body bytes delivered (alias for resp_body_bytes). | [optional] +**Hits** | Pointer to **int64** | Number of cache hits. | [optional] +**Miss** | Pointer to **int64** | Number of cache misses. | [optional] +**Pass** | Pointer to **int64** | Number of requests that passed through the CDN without being cached. | [optional] +**Synth** | Pointer to **int64** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). | [optional] +**Errors** | Pointer to **int64** | Number of cache errors. | [optional] **HitsTime** | Pointer to **float32** | Total amount of time spent processing cache hits (in seconds). | [optional] **MissTime** | Pointer to **float32** | Total amount of time spent processing cache misses (in seconds). | [optional] **MissHistogram** | Pointer to **map[string]map[string]any** | A histogram. The value in each bucket is the number of requests to the origin whose responses arrived during the time period represented by the bucket. The key of each bucket represents the upper bound (in response time) of that bucket. The buckets vary in width and cover the time periods 0-10ms (in 1ms increments), 10-250ms (in 10ms increments), 250-1,000ms (in 50ms increments), 1,000-3,000ms (in 100ms increments), 3,000-10,000ms (in 500 ms increments), 10,000-20,000ms (in 1,000ms increments), 20,000-60,000ms (in 5,000ms increments), and 60,000ms through infinity (in a single bucket). | [optional] -**ComputeRequests** | Pointer to **int32** | The total number of requests that were received for your service by Fastly. | [optional] +**ComputeRequests** | Pointer to **int64** | The total number of requests that were received for your service by Fastly. | [optional] **ComputeExecutionTimeMs** | Pointer to **float32** | The amount of active CPU time used to process your requests (in milliseconds). | [optional] -**ComputeRAMUsed** | Pointer to **int32** | The amount of RAM used for your service by Fastly (in bytes). | [optional] +**ComputeRAMUsed** | Pointer to **int64** | The amount of RAM used for your service by Fastly (in bytes). | [optional] **ComputeRequestTimeMs** | Pointer to **float32** | The total, actual amount of time used to process your requests, including active CPU time (in milliseconds). | [optional] **ComputeRequestTimeBilledMs** | Pointer to **float32** | The total amount of request processing time you will be billed for, measured in 50 millisecond increments. | [optional] -**Shield** | Pointer to **int32** | Number of requests from edge to the shield POP. | [optional] -**Ipv6** | Pointer to **int32** | Number of requests that were received over IPv6. | [optional] -**Imgopto** | Pointer to **int32** | Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. | [optional] -**ImgoptoShield** | Pointer to **int32** | Number of responses that came from the Fastly Image Optimizer service via a shield. | [optional] -**ImgoptoTransforms** | Pointer to **int32** | Number of transforms performed by the Fastly Image Optimizer service. | [optional] -**Otfp** | Pointer to **int32** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpShield** | Pointer to **int32** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand via a shield. | [optional] -**OtfpManifests** | Pointer to **int32** | Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**Video** | Pointer to **int32** | Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). | [optional] -**Pci** | Pointer to **int32** | Number of responses with the PCI flag turned on. | [optional] -**HTTP2** | Pointer to **int32** | Number of requests received over HTTP/2. | [optional] -**HTTP3** | Pointer to **int32** | Number of requests received over HTTP/3. | [optional] -**Restarts** | Pointer to **int32** | Number of restarts performed. | [optional] -**ReqHeaderBytes** | Pointer to **int32** | Total header bytes received. | [optional] -**ReqBodyBytes** | Pointer to **int32** | Total body bytes received. | [optional] -**BereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to origin. | [optional] -**BereqBodyBytes** | Pointer to **int32** | Total body bytes sent to origin. | [optional] -**WafBlocked** | Pointer to **int32** | Number of requests that triggered a WAF rule and were blocked. | [optional] -**WafLogged** | Pointer to **int32** | Number of requests that triggered a WAF rule and were logged. | [optional] -**WafPassed** | Pointer to **int32** | Number of requests that triggered a WAF rule and were passed. | [optional] -**AttackReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule. | [optional] -**AttackReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule. | [optional] -**AttackRespSynthBytes** | Pointer to **int32** | Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. | [optional] -**AttackLoggedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was logged. | [optional] -**AttackLoggedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was logged. | [optional] -**AttackBlockedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was blocked. | [optional] -**AttackBlockedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was blocked. | [optional] -**AttackPassedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was passed. | [optional] -**AttackPassedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was passed. | [optional] -**ShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield. | [optional] -**ShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield. | [optional] -**OtfpRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**Shield** | Pointer to **int64** | Number of requests from edge to the shield POP. | [optional] +**Ipv6** | Pointer to **int64** | Number of requests that were received over IPv6. | [optional] +**Imgopto** | Pointer to **int64** | Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. | [optional] +**ImgoptoShield** | Pointer to **int64** | Number of responses that came from the Fastly Image Optimizer service via a shield. | [optional] +**ImgoptoTransforms** | Pointer to **int64** | Number of transforms performed by the Fastly Image Optimizer service. | [optional] +**Otfp** | Pointer to **int64** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpShield** | Pointer to **int64** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand via a shield. | [optional] +**OtfpManifests** | Pointer to **int64** | Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**Video** | Pointer to **int64** | Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). | [optional] +**Pci** | Pointer to **int64** | Number of responses with the PCI flag turned on. | [optional] +**HTTP2** | Pointer to **int64** | Number of requests received over HTTP/2. | [optional] +**HTTP3** | Pointer to **int64** | Number of requests received over HTTP/3. | [optional] +**Restarts** | Pointer to **int64** | Number of restarts performed. | [optional] +**ReqHeaderBytes** | Pointer to **int64** | Total header bytes received. | [optional] +**ReqBodyBytes** | Pointer to **int64** | Total body bytes received. | [optional] +**BereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to origin. | [optional] +**BereqBodyBytes** | Pointer to **int64** | Total body bytes sent to origin. | [optional] +**WafBlocked** | Pointer to **int64** | Number of requests that triggered a WAF rule and were blocked. | [optional] +**WafLogged** | Pointer to **int64** | Number of requests that triggered a WAF rule and were logged. | [optional] +**WafPassed** | Pointer to **int64** | Number of requests that triggered a WAF rule and were passed. | [optional] +**AttackReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule. | [optional] +**AttackReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule. | [optional] +**AttackRespSynthBytes** | Pointer to **int64** | Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. | [optional] +**AttackLoggedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was logged. | [optional] +**AttackLoggedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was logged. | [optional] +**AttackBlockedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was blocked. | [optional] +**AttackBlockedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was blocked. | [optional] +**AttackPassedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was passed. | [optional] +**AttackPassedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was passed. | [optional] +**ShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield. | [optional] +**ShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield. | [optional] +**OtfpRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] **OtfpShieldTime** | Pointer to **float32** | Total amount of time spent delivering a response via a shield from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). | [optional] **OtfpDeliverTime** | Pointer to **float32** | Total amount of time spent delivering a response from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). | [optional] -**ImgoptoRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] -**ImgoptoRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] -**ImgoptoShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] -**ImgoptoShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] -**Status1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered. | [optional] -**Status2xx** | Pointer to **int32** | Number of \"Success\" status codes delivered. | [optional] -**Status3xx** | Pointer to **int32** | Number of \"Redirection\" codes delivered. | [optional] -**Status4xx** | Pointer to **int32** | Number of \"Client Error\" codes delivered. | [optional] -**Status5xx** | Pointer to **int32** | Number of \"Server Error\" codes delivered. | [optional] -**Status200** | Pointer to **int32** | Number of responses sent with status code 200 (Success). | [optional] -**Status204** | Pointer to **int32** | Number of responses sent with status code 204 (No Content). | [optional] -**Status206** | Pointer to **int32** | Number of responses sent with status code 206 (Partial Content). | [optional] -**Status301** | Pointer to **int32** | Number of responses sent with status code 301 (Moved Permanently). | [optional] -**Status302** | Pointer to **int32** | Number of responses sent with status code 302 (Found). | [optional] -**Status304** | Pointer to **int32** | Number of responses sent with status code 304 (Not Modified). | [optional] -**Status400** | Pointer to **int32** | Number of responses sent with status code 400 (Bad Request). | [optional] -**Status401** | Pointer to **int32** | Number of responses sent with status code 401 (Unauthorized). | [optional] -**Status403** | Pointer to **int32** | Number of responses sent with status code 403 (Forbidden). | [optional] -**Status404** | Pointer to **int32** | Number of responses sent with status code 404 (Not Found). | [optional] -**Status406** | Pointer to **int32** | Number of responses sent with status code 406 (Not Acceptable). | [optional] -**Status416** | Pointer to **int32** | Number of responses sent with status code 416 (Range Not Satisfiable). | [optional] -**Status429** | Pointer to **int32** | Number of responses sent with status code 429 (Too Many Requests). | [optional] -**Status500** | Pointer to **int32** | Number of responses sent with status code 500 (Internal Server Error). | [optional] -**Status501** | Pointer to **int32** | Number of responses sent with status code 501 (Not Implemented). | [optional] -**Status502** | Pointer to **int32** | Number of responses sent with status code 502 (Bad Gateway). | [optional] -**Status503** | Pointer to **int32** | Number of responses sent with status code 503 (Service Unavailable). | [optional] -**Status504** | Pointer to **int32** | Number of responses sent with status code 504 (Gateway Timeout). | [optional] -**Status505** | Pointer to **int32** | Number of responses sent with status code 505 (HTTP Version Not Supported). | [optional] -**Uncacheable** | Pointer to **int32** | Number of requests that were designated uncachable. | [optional] +**ImgoptoRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] +**ImgoptoRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] +**ImgoptoShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] +**ImgoptoShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] +**Status1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered. | [optional] +**Status2xx** | Pointer to **int64** | Number of \"Success\" status codes delivered. | [optional] +**Status3xx** | Pointer to **int64** | Number of \"Redirection\" codes delivered. | [optional] +**Status4xx** | Pointer to **int64** | Number of \"Client Error\" codes delivered. | [optional] +**Status5xx** | Pointer to **int64** | Number of \"Server Error\" codes delivered. | [optional] +**Status200** | Pointer to **int64** | Number of responses sent with status code 200 (Success). | [optional] +**Status204** | Pointer to **int64** | Number of responses sent with status code 204 (No Content). | [optional] +**Status206** | Pointer to **int64** | Number of responses sent with status code 206 (Partial Content). | [optional] +**Status301** | Pointer to **int64** | Number of responses sent with status code 301 (Moved Permanently). | [optional] +**Status302** | Pointer to **int64** | Number of responses sent with status code 302 (Found). | [optional] +**Status304** | Pointer to **int64** | Number of responses sent with status code 304 (Not Modified). | [optional] +**Status400** | Pointer to **int64** | Number of responses sent with status code 400 (Bad Request). | [optional] +**Status401** | Pointer to **int64** | Number of responses sent with status code 401 (Unauthorized). | [optional] +**Status403** | Pointer to **int64** | Number of responses sent with status code 403 (Forbidden). | [optional] +**Status404** | Pointer to **int64** | Number of responses sent with status code 404 (Not Found). | [optional] +**Status406** | Pointer to **int64** | Number of responses sent with status code 406 (Not Acceptable). | [optional] +**Status416** | Pointer to **int64** | Number of responses sent with status code 416 (Range Not Satisfiable). | [optional] +**Status429** | Pointer to **int64** | Number of responses sent with status code 429 (Too Many Requests). | [optional] +**Status500** | Pointer to **int64** | Number of responses sent with status code 500 (Internal Server Error). | [optional] +**Status501** | Pointer to **int64** | Number of responses sent with status code 501 (Not Implemented). | [optional] +**Status502** | Pointer to **int64** | Number of responses sent with status code 502 (Bad Gateway). | [optional] +**Status503** | Pointer to **int64** | Number of responses sent with status code 503 (Service Unavailable). | [optional] +**Status504** | Pointer to **int64** | Number of responses sent with status code 504 (Gateway Timeout). | [optional] +**Status505** | Pointer to **int64** | Number of responses sent with status code 505 (HTTP Version Not Supported). | [optional] +**Uncacheable** | Pointer to **int64** | Number of requests that were designated uncachable. | [optional] **PassTime** | Pointer to **float32** | Total amount of time spent processing cache passes (in seconds). | [optional] -**TLS** | Pointer to **int32** | Number of requests that were received over TLS. | [optional] -**TLSV10** | Pointer to **int32** | Number of requests received over TLS 1.0. | [optional] -**TLSV11** | Pointer to **int32** | Number of requests received over TLS 1.1. | [optional] -**TLSV12** | Pointer to **int32** | Number of requests received over TLS 1.2. | [optional] -**TLSV13** | Pointer to **int32** | Number of requests received over TLS 1.3. | [optional] -**ObjectSize1k** | Pointer to **int32** | Number of objects served that were under 1KB in size. | [optional] -**ObjectSize10k** | Pointer to **int32** | Number of objects served that were between 1KB and 10KB in size. | [optional] -**ObjectSize100k** | Pointer to **int32** | Number of objects served that were between 10KB and 100KB in size. | [optional] -**ObjectSize1m** | Pointer to **int32** | Number of objects served that were between 100KB and 1MB in size. | [optional] -**ObjectSize10m** | Pointer to **int32** | Number of objects served that were between 1MB and 10MB in size. | [optional] -**ObjectSize100m** | Pointer to **int32** | Number of objects served that were between 10MB and 100MB in size. | [optional] -**ObjectSize1g** | Pointer to **int32** | Number of objects served that were between 100MB and 1GB in size. | [optional] -**ObjectSizeOther** | Pointer to **int32** | Number of objects served that were larger than 1GB in size. | [optional] +**TLS** | Pointer to **int64** | Number of requests that were received over TLS. | [optional] +**TLSV10** | Pointer to **int64** | Number of requests received over TLS 1.0. | [optional] +**TLSV11** | Pointer to **int64** | Number of requests received over TLS 1.1. | [optional] +**TLSV12** | Pointer to **int64** | Number of requests received over TLS 1.2. | [optional] +**TLSV13** | Pointer to **int64** | Number of requests received over TLS 1.3. | [optional] +**ObjectSize1k** | Pointer to **int64** | Number of objects served that were under 1KB in size. | [optional] +**ObjectSize10k** | Pointer to **int64** | Number of objects served that were between 1KB and 10KB in size. | [optional] +**ObjectSize100k** | Pointer to **int64** | Number of objects served that were between 10KB and 100KB in size. | [optional] +**ObjectSize1m** | Pointer to **int64** | Number of objects served that were between 100KB and 1MB in size. | [optional] +**ObjectSize10m** | Pointer to **int64** | Number of objects served that were between 1MB and 10MB in size. | [optional] +**ObjectSize100m** | Pointer to **int64** | Number of objects served that were between 10MB and 100MB in size. | [optional] +**ObjectSize1g** | Pointer to **int64** | Number of objects served that were between 100MB and 1GB in size. | [optional] +**ObjectSizeOther** | Pointer to **int64** | Number of objects served that were larger than 1GB in size. | [optional] **RecvSubTime** | Pointer to **float32** | Time spent inside the `vcl_recv` Varnish subroutine (in nanoseconds). | [optional] -**RecvSubCount** | Pointer to **int32** | Number of executions of the `vcl_recv` Varnish subroutine. | [optional] +**RecvSubCount** | Pointer to **int64** | Number of executions of the `vcl_recv` Varnish subroutine. | [optional] **HashSubTime** | Pointer to **float32** | Time spent inside the `vcl_hash` Varnish subroutine (in nanoseconds). | [optional] -**HashSubCount** | Pointer to **int32** | Number of executions of the `vcl_hash` Varnish subroutine. | [optional] +**HashSubCount** | Pointer to **int64** | Number of executions of the `vcl_hash` Varnish subroutine. | [optional] **MissSubTime** | Pointer to **float32** | Time spent inside the `vcl_miss` Varnish subroutine (in nanoseconds). | [optional] -**MissSubCount** | Pointer to **int32** | Number of executions of the `vcl_miss` Varnish subroutine. | [optional] +**MissSubCount** | Pointer to **int64** | Number of executions of the `vcl_miss` Varnish subroutine. | [optional] **FetchSubTime** | Pointer to **float32** | Time spent inside the `vcl_fetch` Varnish subroutine (in nanoseconds). | [optional] -**FetchSubCount** | Pointer to **int32** | Number of executions of the `vcl_fetch` Varnish subroutine. | [optional] +**FetchSubCount** | Pointer to **int64** | Number of executions of the `vcl_fetch` Varnish subroutine. | [optional] **PassSubTime** | Pointer to **float32** | Time spent inside the `vcl_pass` Varnish subroutine (in nanoseconds). | [optional] -**PassSubCount** | Pointer to **int32** | Number of executions of the `vcl_pass` Varnish subroutine. | [optional] +**PassSubCount** | Pointer to **int64** | Number of executions of the `vcl_pass` Varnish subroutine. | [optional] **PipeSubTime** | Pointer to **float32** | Time spent inside the `vcl_pipe` Varnish subroutine (in nanoseconds). | [optional] -**PipeSubCount** | Pointer to **int32** | Number of executions of the `vcl_pipe` Varnish subroutine. | [optional] +**PipeSubCount** | Pointer to **int64** | Number of executions of the `vcl_pipe` Varnish subroutine. | [optional] **DeliverSubTime** | Pointer to **float32** | Time spent inside the `vcl_deliver` Varnish subroutine (in nanoseconds). | [optional] -**DeliverSubCount** | Pointer to **int32** | Number of executions of the `vcl_deliver` Varnish subroutine. | [optional] +**DeliverSubCount** | Pointer to **int64** | Number of executions of the `vcl_deliver` Varnish subroutine. | [optional] **ErrorSubTime** | Pointer to **float32** | Time spent inside the `vcl_error` Varnish subroutine (in nanoseconds). | [optional] -**ErrorSubCount** | Pointer to **int32** | Number of executions of the `vcl_error` Varnish subroutine. | [optional] +**ErrorSubCount** | Pointer to **int64** | Number of executions of the `vcl_error` Varnish subroutine. | [optional] **HitSubTime** | Pointer to **float32** | Time spent inside the `vcl_hit` Varnish subroutine (in nanoseconds). | [optional] -**HitSubCount** | Pointer to **int32** | Number of executions of the `vcl_hit` Varnish subroutine. | [optional] +**HitSubCount** | Pointer to **int64** | Number of executions of the `vcl_hit` Varnish subroutine. | [optional] **PrehashSubTime** | Pointer to **float32** | Time spent inside the `vcl_prehash` Varnish subroutine (in nanoseconds). | [optional] -**PrehashSubCount** | Pointer to **int32** | Number of executions of the `vcl_prehash` Varnish subroutine. | [optional] +**PrehashSubCount** | Pointer to **int64** | Number of executions of the `vcl_prehash` Varnish subroutine. | [optional] **PredeliverSubTime** | Pointer to **float32** | Time spent inside the `vcl_predeliver` Varnish subroutine (in nanoseconds). | [optional] -**PredeliverSubCount** | Pointer to **int32** | Number of executions of the `vcl_predeliver` Varnish subroutine. | [optional] -**HitRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache hits. | [optional] -**MissRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache misses. | [optional] -**PassRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache passes. | [optional] -**ComputeReqHeaderBytes** | Pointer to **int32** | Total header bytes received by the Compute platform. | [optional] -**ComputeReqBodyBytes** | Pointer to **int32** | Total body bytes received by the Compute platform. | [optional] -**ComputeRespHeaderBytes** | Pointer to **int32** | Total header bytes sent from Compute to end user. | [optional] -**ComputeRespBodyBytes** | Pointer to **int32** | Total body bytes sent from Compute to end user. | [optional] -**Imgvideo** | Pointer to **int32** | Number of video responses that came from the Fastly Image Optimizer service. | [optional] -**ImgvideoFrames** | Pointer to **int32** | Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] -**ImgvideoRespHeaderBytes** | Pointer to **int32** | Total header bytes of video delivered from the Fastly Image Optimizer service. | [optional] -**ImgvideoRespBodyBytes** | Pointer to **int32** | Total body bytes of video delivered from the Fastly Image Optimizer service. | [optional] -**ImgvideoShield** | Pointer to **int32** | Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. | [optional] -**ImgvideoShieldFrames** | Pointer to **int32** | Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] -**ImgvideoShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] -**ImgvideoShieldRespBodyBytes** | Pointer to **int32** | Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] -**LogBytes** | Pointer to **int32** | Total log bytes sent. | [optional] -**EdgeRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly. | [optional] -**EdgeRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from Fastly to the end user. | [optional] -**EdgeRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from Fastly to the end user. | [optional] -**OriginRevalidations** | Pointer to **int32** | Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. | [optional] -**OriginFetches** | Pointer to **int32** | Number of requests sent to origin. | [optional] -**OriginFetchHeaderBytes** | Pointer to **int32** | Total request header bytes sent to origin. | [optional] -**OriginFetchBodyBytes** | Pointer to **int32** | Total request body bytes sent to origin. | [optional] -**OriginFetchRespHeaderBytes** | Pointer to **int32** | Total header bytes received from origin. | [optional] -**OriginFetchRespBodyBytes** | Pointer to **int32** | Total body bytes received from origin. | [optional] -**ShieldRevalidations** | Pointer to **int32** | Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. | [optional] -**ShieldFetches** | Pointer to **int32** | Number of requests made from one Fastly POP to another, as part of shielding. | [optional] -**ShieldFetchHeaderBytes** | Pointer to **int32** | Total request header bytes sent to a shield. | [optional] -**ShieldFetchBodyBytes** | Pointer to **int32** | Total request body bytes sent to a shield. | [optional] -**ShieldFetchRespHeaderBytes** | Pointer to **int32** | Total response header bytes sent from a shield to the edge. | [optional] -**ShieldFetchRespBodyBytes** | Pointer to **int32** | Total response body bytes sent from a shield to the edge. | [optional] -**SegblockOriginFetches** | Pointer to **int32** | Number of `Range` requests to origin for segments of resources when using segmented caching. | [optional] -**SegblockShieldFetches** | Pointer to **int32** | Number of `Range` requests to a shield for segments of resources when using segmented caching. | [optional] -**ComputeRespStatus1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus2xx** | Pointer to **int32** | Number of \"Success\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus3xx** | Pointer to **int32** | Number of \"Redirection\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus4xx** | Pointer to **int32** | Number of \"Client Error\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus5xx** | Pointer to **int32** | Number of \"Server Error\" category status codes delivered by the Compute platform. | [optional] -**EdgeHitRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] -**EdgeMissRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] -**ComputeBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] -**ComputeBereqBodyBytes** | Pointer to **int32** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] -**ComputeBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends (origins) by the Compute platform. | [optional] -**ComputeBerespBodyBytes** | Pointer to **int32** | Total body bytes received from backends (origins) by the Compute platform. | [optional] -**OriginCacheFetches** | Pointer to **int32** | The total number of completed requests made to backends (origins) that returned cacheable content. | [optional] -**ShieldCacheFetches** | Pointer to **int32** | The total number of completed requests made to shields that returned cacheable content. | [optional] -**ComputeBereqs** | Pointer to **int32** | Number of backend requests started. | [optional] -**ComputeBereqErrors** | Pointer to **int32** | Number of backend request errors, including timeouts. | [optional] -**ComputeResourceLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. | [optional] -**ComputeHeapLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its heap limit. | [optional] -**ComputeStackLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its stack limit. | [optional] -**ComputeGlobalsLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its globals limit. | [optional] -**ComputeGuestErrors** | Pointer to **int32** | Number of times a service experienced a guest code error. | [optional] -**ComputeRuntimeErrors** | Pointer to **int32** | Number of times a service experienced a guest runtime error. | [optional] -**EdgeHitRespBodyBytes** | Pointer to **int32** | Body bytes delivered for edge hits. | [optional] -**EdgeHitRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for edge hits. | [optional] -**EdgeMissRespBodyBytes** | Pointer to **int32** | Body bytes delivered for edge misses. | [optional] -**EdgeMissRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for edge misses. | [optional] -**OriginCacheFetchRespBodyBytes** | Pointer to **int32** | Body bytes received from origin for cacheable content. | [optional] -**OriginCacheFetchRespHeaderBytes** | Pointer to **int32** | Header bytes received from an origin for cacheable content. | [optional] -**ShieldHitRequests** | Pointer to **int32** | Number of requests that resulted in a hit at a shield. | [optional] -**ShieldMissRequests** | Pointer to **int32** | Number of requests that resulted in a miss at a shield. | [optional] -**ShieldHitRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for shield hits. | [optional] -**ShieldHitRespBodyBytes** | Pointer to **int32** | Body bytes delivered for shield hits. | [optional] -**ShieldMissRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for shield misses. | [optional] -**ShieldMissRespBodyBytes** | Pointer to **int32** | Body bytes delivered for shield misses. | [optional] -**WebsocketReqHeaderBytes** | Pointer to **int32** | Total header bytes received from end users over passthrough WebSocket connections. | [optional] -**WebsocketReqBodyBytes** | Pointer to **int32** | Total message content bytes received from end users over passthrough WebSocket connections. | [optional] -**WebsocketRespHeaderBytes** | Pointer to **int32** | Total header bytes sent to end users over passthrough WebSocket connections. | [optional] -**WebsocketBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends over passthrough WebSocket connections. | [optional] -**WebsocketBereqBodyBytes** | Pointer to **int32** | Total message content bytes sent to backends over passthrough WebSocket connections. | [optional] -**WebsocketBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends over passthrough WebSocket connections. | [optional] -**WebsocketBerespBodyBytes** | Pointer to **int32** | Total message content bytes received from backends over passthrough WebSocket connections. | [optional] -**WebsocketConnTimeMs** | Pointer to **int32** | Total duration of passthrough WebSocket connections with end users. | [optional] -**WebsocketRespBodyBytes** | Pointer to **int32** | Total message content bytes sent to end users over passthrough WebSocket connections. | [optional] -**FanoutRecvPublishes** | Pointer to **int32** | Total published messages received from the publish API endpoint. | [optional] -**FanoutSendPublishes** | Pointer to **int32** | Total published messages sent to end users. | [optional] -**KvStoreClassAOperations** | Pointer to **int32** | The total number of class a operations for the KV store. | [optional] -**KvStoreClassBOperations** | Pointer to **int32** | The total number of class b operations for the KV store. | [optional] -**ObjectStoreClassAOperations** | Pointer to **int32** | Use kv_store_class_a_operations. | [optional] -**ObjectStoreClassBOperations** | Pointer to **int32** | Use kv_store_class_b_operations. | [optional] -**FanoutReqHeaderBytes** | Pointer to **int32** | Total header bytes received from end users over Fanout connections. | [optional] -**FanoutReqBodyBytes** | Pointer to **int32** | Total body or message content bytes received from end users over Fanout connections. | [optional] -**FanoutRespHeaderBytes** | Pointer to **int32** | Total header bytes sent to end users over Fanout connections. | [optional] -**FanoutRespBodyBytes** | Pointer to **int32** | Total body or message content bytes sent to end users over Fanout connections, excluding published message content. | [optional] -**FanoutBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends over Fanout connections. | [optional] -**FanoutBereqBodyBytes** | Pointer to **int32** | Total body or message content bytes sent to backends over Fanout connections. | [optional] -**FanoutBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends over Fanout connections. | [optional] -**FanoutBerespBodyBytes** | Pointer to **int32** | Total body or message content bytes received from backends over Fanout connections. | [optional] -**FanoutConnTimeMs** | Pointer to **int32** | Total duration of Fanout connections with end users. | [optional] -**DdosActionLimitStreamsConnections** | Pointer to **int32** | For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] -**DdosActionLimitStreamsRequests** | Pointer to **int32** | For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] -**DdosActionTarpitAccept** | Pointer to **int32** | The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. | [optional] -**DdosActionTarpit** | Pointer to **int32** | The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. | [optional] -**DdosActionClose** | Pointer to **int32** | The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. | [optional] -**DdosActionBlackhole** | Pointer to **int32** | The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). | [optional] -**BotChallengeStarts** | Pointer to **int32** | The number of challenge-start tokens created. | [optional] -**BotChallengeCompleteTokensPassed** | Pointer to **int32** | The number of challenge-complete tokens that passed validation. | [optional] -**BotChallengeCompleteTokensFailed** | Pointer to **int32** | The number of challenge-complete tokens that failed validation. | [optional] -**BotChallengeCompleteTokensChecked** | Pointer to **int32** | The number of challenge-complete tokens checked. | [optional] -**BotChallengeCompleteTokensDisabled** | Pointer to **int32** | The number of challenge-complete tokens not checked because the feature was disabled. | [optional] -**BotChallengesIssued** | Pointer to **int32** | The number of challenges issued. For example, the issuance of a CAPTCHA challenge. | [optional] -**BotChallengesSucceeded** | Pointer to **int32** | The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. | [optional] -**BotChallengesFailed** | Pointer to **int32** | The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. | [optional] -**BotChallengeCompleteTokensIssued** | Pointer to **int32** | The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. | [optional] -**DdosActionDowngrade** | Pointer to **int32** | The number of times the downgrade action was taken. The downgrade action restricts the client to http1. | [optional] -**DdosActionDowngradedConnections** | Pointer to **int32** | The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. | [optional] -**AllHitRequests** | Pointer to **int32** | Number of cache hits for a VCL service. | [optional] -**AllMissRequests** | Pointer to **int32** | Number of cache misses for a VCL service. | [optional] -**AllPassRequests** | Pointer to **int32** | Number of requests that passed through the CDN without being cached for a VCL service. | [optional] -**AllErrorRequests** | Pointer to **int32** | Number of cache errors for a VCL service. | [optional] -**AllSynthRequests** | Pointer to **int32** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. | [optional] -**AllEdgeHitRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. | [optional] -**AllEdgeMissRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. | [optional] -**AllStatus1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered for all sources. | [optional] -**AllStatus2xx** | Pointer to **int32** | Number of \"Success\" status codes delivered for all sources. | [optional] -**AllStatus3xx** | Pointer to **int32** | Number of \"Redirection\" codes delivered for all sources. | [optional] -**AllStatus4xx** | Pointer to **int32** | Number of \"Client Error\" codes delivered for all sources. | [optional] -**AllStatus5xx** | Pointer to **int32** | Number of \"Server Error\" codes delivered for all sources. | [optional] +**PredeliverSubCount** | Pointer to **int64** | Number of executions of the `vcl_predeliver` Varnish subroutine. | [optional] +**HitRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache hits. | [optional] +**MissRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache misses. | [optional] +**PassRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache passes. | [optional] +**ComputeReqHeaderBytes** | Pointer to **int64** | Total header bytes received by the Compute platform. | [optional] +**ComputeReqBodyBytes** | Pointer to **int64** | Total body bytes received by the Compute platform. | [optional] +**ComputeRespHeaderBytes** | Pointer to **int64** | Total header bytes sent from Compute to end user. | [optional] +**ComputeRespBodyBytes** | Pointer to **int64** | Total body bytes sent from Compute to end user. | [optional] +**Imgvideo** | Pointer to **int64** | Number of video responses that came from the Fastly Image Optimizer service. | [optional] +**ImgvideoFrames** | Pointer to **int64** | Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] +**ImgvideoRespHeaderBytes** | Pointer to **int64** | Total header bytes of video delivered from the Fastly Image Optimizer service. | [optional] +**ImgvideoRespBodyBytes** | Pointer to **int64** | Total body bytes of video delivered from the Fastly Image Optimizer service. | [optional] +**ImgvideoShield** | Pointer to **int64** | Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. | [optional] +**ImgvideoShieldFrames** | Pointer to **int64** | Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] +**ImgvideoShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] +**ImgvideoShieldRespBodyBytes** | Pointer to **int64** | Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] +**LogBytes** | Pointer to **int64** | Total log bytes sent. | [optional] +**EdgeRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly. | [optional] +**EdgeRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from Fastly to the end user. | [optional] +**EdgeRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from Fastly to the end user. | [optional] +**OriginRevalidations** | Pointer to **int64** | Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. | [optional] +**OriginFetches** | Pointer to **int64** | Number of requests sent to origin. | [optional] +**OriginFetchHeaderBytes** | Pointer to **int64** | Total request header bytes sent to origin. | [optional] +**OriginFetchBodyBytes** | Pointer to **int64** | Total request body bytes sent to origin. | [optional] +**OriginFetchRespHeaderBytes** | Pointer to **int64** | Total header bytes received from origin. | [optional] +**OriginFetchRespBodyBytes** | Pointer to **int64** | Total body bytes received from origin. | [optional] +**ShieldRevalidations** | Pointer to **int64** | Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. | [optional] +**ShieldFetches** | Pointer to **int64** | Number of requests made from one Fastly POP to another, as part of shielding. | [optional] +**ShieldFetchHeaderBytes** | Pointer to **int64** | Total request header bytes sent to a shield. | [optional] +**ShieldFetchBodyBytes** | Pointer to **int64** | Total request body bytes sent to a shield. | [optional] +**ShieldFetchRespHeaderBytes** | Pointer to **int64** | Total response header bytes sent from a shield to the edge. | [optional] +**ShieldFetchRespBodyBytes** | Pointer to **int64** | Total response body bytes sent from a shield to the edge. | [optional] +**SegblockOriginFetches** | Pointer to **int64** | Number of `Range` requests to origin for segments of resources when using segmented caching. | [optional] +**SegblockShieldFetches** | Pointer to **int64** | Number of `Range` requests to a shield for segments of resources when using segmented caching. | [optional] +**ComputeRespStatus1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus2xx** | Pointer to **int64** | Number of \"Success\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus3xx** | Pointer to **int64** | Number of \"Redirection\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus4xx** | Pointer to **int64** | Number of \"Client Error\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus5xx** | Pointer to **int64** | Number of \"Server Error\" category status codes delivered by the Compute platform. | [optional] +**EdgeHitRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] +**EdgeMissRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] +**ComputeBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] +**ComputeBereqBodyBytes** | Pointer to **int64** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] +**ComputeBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends (origins) by the Compute platform. | [optional] +**ComputeBerespBodyBytes** | Pointer to **int64** | Total body bytes received from backends (origins) by the Compute platform. | [optional] +**OriginCacheFetches** | Pointer to **int64** | The total number of completed requests made to backends (origins) that returned cacheable content. | [optional] +**ShieldCacheFetches** | Pointer to **int64** | The total number of completed requests made to shields that returned cacheable content. | [optional] +**ComputeBereqs** | Pointer to **int64** | Number of backend requests started. | [optional] +**ComputeBereqErrors** | Pointer to **int64** | Number of backend request errors, including timeouts. | [optional] +**ComputeResourceLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. | [optional] +**ComputeHeapLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its heap limit. | [optional] +**ComputeStackLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its stack limit. | [optional] +**ComputeGlobalsLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its globals limit. | [optional] +**ComputeGuestErrors** | Pointer to **int64** | Number of times a service experienced a guest code error. | [optional] +**ComputeRuntimeErrors** | Pointer to **int64** | Number of times a service experienced a guest runtime error. | [optional] +**EdgeHitRespBodyBytes** | Pointer to **int64** | Body bytes delivered for edge hits. | [optional] +**EdgeHitRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for edge hits. | [optional] +**EdgeMissRespBodyBytes** | Pointer to **int64** | Body bytes delivered for edge misses. | [optional] +**EdgeMissRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for edge misses. | [optional] +**OriginCacheFetchRespBodyBytes** | Pointer to **int64** | Body bytes received from origin for cacheable content. | [optional] +**OriginCacheFetchRespHeaderBytes** | Pointer to **int64** | Header bytes received from an origin for cacheable content. | [optional] +**ShieldHitRequests** | Pointer to **int64** | Number of requests that resulted in a hit at a shield. | [optional] +**ShieldMissRequests** | Pointer to **int64** | Number of requests that resulted in a miss at a shield. | [optional] +**ShieldHitRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for shield hits. | [optional] +**ShieldHitRespBodyBytes** | Pointer to **int64** | Body bytes delivered for shield hits. | [optional] +**ShieldMissRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for shield misses. | [optional] +**ShieldMissRespBodyBytes** | Pointer to **int64** | Body bytes delivered for shield misses. | [optional] +**WebsocketReqHeaderBytes** | Pointer to **int64** | Total header bytes received from end users over passthrough WebSocket connections. | [optional] +**WebsocketReqBodyBytes** | Pointer to **int64** | Total message content bytes received from end users over passthrough WebSocket connections. | [optional] +**WebsocketRespHeaderBytes** | Pointer to **int64** | Total header bytes sent to end users over passthrough WebSocket connections. | [optional] +**WebsocketBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends over passthrough WebSocket connections. | [optional] +**WebsocketBereqBodyBytes** | Pointer to **int64** | Total message content bytes sent to backends over passthrough WebSocket connections. | [optional] +**WebsocketBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends over passthrough WebSocket connections. | [optional] +**WebsocketBerespBodyBytes** | Pointer to **int64** | Total message content bytes received from backends over passthrough WebSocket connections. | [optional] +**WebsocketConnTimeMs** | Pointer to **int64** | Total duration of passthrough WebSocket connections with end users. | [optional] +**WebsocketRespBodyBytes** | Pointer to **int64** | Total message content bytes sent to end users over passthrough WebSocket connections. | [optional] +**FanoutRecvPublishes** | Pointer to **int64** | Total published messages received from the publish API endpoint. | [optional] +**FanoutSendPublishes** | Pointer to **int64** | Total published messages sent to end users. | [optional] +**KvStoreClassAOperations** | Pointer to **int64** | The total number of class a operations for the KV store. | [optional] +**KvStoreClassBOperations** | Pointer to **int64** | The total number of class b operations for the KV store. | [optional] +**ObjectStoreClassAOperations** | Pointer to **int64** | Use kv_store_class_a_operations. | [optional] +**ObjectStoreClassBOperations** | Pointer to **int64** | Use kv_store_class_b_operations. | [optional] +**FanoutReqHeaderBytes** | Pointer to **int64** | Total header bytes received from end users over Fanout connections. | [optional] +**FanoutReqBodyBytes** | Pointer to **int64** | Total body or message content bytes received from end users over Fanout connections. | [optional] +**FanoutRespHeaderBytes** | Pointer to **int64** | Total header bytes sent to end users over Fanout connections. | [optional] +**FanoutRespBodyBytes** | Pointer to **int64** | Total body or message content bytes sent to end users over Fanout connections, excluding published message content. | [optional] +**FanoutBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends over Fanout connections. | [optional] +**FanoutBereqBodyBytes** | Pointer to **int64** | Total body or message content bytes sent to backends over Fanout connections. | [optional] +**FanoutBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends over Fanout connections. | [optional] +**FanoutBerespBodyBytes** | Pointer to **int64** | Total body or message content bytes received from backends over Fanout connections. | [optional] +**FanoutConnTimeMs** | Pointer to **int64** | Total duration of Fanout connections with end users. | [optional] +**DdosActionLimitStreamsConnections** | Pointer to **int64** | For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] +**DdosActionLimitStreamsRequests** | Pointer to **int64** | For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] +**DdosActionTarpitAccept** | Pointer to **int64** | The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. | [optional] +**DdosActionTarpit** | Pointer to **int64** | The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. | [optional] +**DdosActionClose** | Pointer to **int64** | The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. | [optional] +**DdosActionBlackhole** | Pointer to **int64** | The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). | [optional] +**BotChallengeStarts** | Pointer to **int64** | The number of challenge-start tokens created. | [optional] +**BotChallengeCompleteTokensPassed** | Pointer to **int64** | The number of challenge-complete tokens that passed validation. | [optional] +**BotChallengeCompleteTokensFailed** | Pointer to **int64** | The number of challenge-complete tokens that failed validation. | [optional] +**BotChallengeCompleteTokensChecked** | Pointer to **int64** | The number of challenge-complete tokens checked. | [optional] +**BotChallengeCompleteTokensDisabled** | Pointer to **int64** | The number of challenge-complete tokens not checked because the feature was disabled. | [optional] +**BotChallengesIssued** | Pointer to **int64** | The number of challenges issued. For example, the issuance of a CAPTCHA challenge. | [optional] +**BotChallengesSucceeded** | Pointer to **int64** | The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. | [optional] +**BotChallengesFailed** | Pointer to **int64** | The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. | [optional] +**BotChallengeCompleteTokensIssued** | Pointer to **int64** | The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. | [optional] +**DdosActionDowngrade** | Pointer to **int64** | The number of times the downgrade action was taken. The downgrade action restricts the client to http1. | [optional] +**DdosActionDowngradedConnections** | Pointer to **int64** | The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. | [optional] +**AllHitRequests** | Pointer to **int64** | Number of cache hits for a VCL service. | [optional] +**AllMissRequests** | Pointer to **int64** | Number of cache misses for a VCL service. | [optional] +**AllPassRequests** | Pointer to **int64** | Number of requests that passed through the CDN without being cached for a VCL service. | [optional] +**AllErrorRequests** | Pointer to **int64** | Number of cache errors for a VCL service. | [optional] +**AllSynthRequests** | Pointer to **int64** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. | [optional] +**AllEdgeHitRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. | [optional] +**AllEdgeMissRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. | [optional] +**AllStatus1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered for all sources. | [optional] +**AllStatus2xx** | Pointer to **int64** | Number of \"Success\" status codes delivered for all sources. | [optional] +**AllStatus3xx** | Pointer to **int64** | Number of \"Redirection\" codes delivered for all sources. | [optional] +**AllStatus4xx** | Pointer to **int64** | Number of \"Client Error\" codes delivered for all sources. | [optional] +**AllStatus5xx** | Pointer to **int64** | Number of \"Server Error\" codes delivered for all sources. | [optional] **OriginOffload** | Pointer to **float32** | Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). | [optional] -**RequestDeniedGetHeadBody** | Pointer to **int32** | Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. | [optional] -**ServiceDdosRequestsDetected** | Pointer to **int32** | Number of requests classified as a DDoS attack against a customer origin or service. | [optional] -**ServiceDdosRequestsMitigated** | Pointer to **int32** | Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. | [optional] -**ServiceDdosRequestsAllowed** | Pointer to **int32** | Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. | [optional] +**RequestDeniedGetHeadBody** | Pointer to **int64** | Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. | [optional] +**ServiceDdosRequestsDetected** | Pointer to **int64** | Number of requests classified as a DDoS attack against a customer origin or service. | [optional] +**ServiceDdosRequestsMitigated** | Pointer to **int64** | Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. | [optional] +**ServiceDdosRequestsAllowed** | Pointer to **int64** | Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. | [optional] ## Methods @@ -272,20 +272,20 @@ but it doesn't guarantee that properties required by API are set ### GetRequests -`func (o *RealtimeMeasurements) GetRequests() int32` +`func (o *RealtimeMeasurements) GetRequests() int64` GetRequests returns the Requests field if non-nil, zero value otherwise. ### GetRequestsOk -`func (o *RealtimeMeasurements) GetRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetRequestsOk() (*int64, bool)` GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRequests -`func (o *RealtimeMeasurements) SetRequests(v int32)` +`func (o *RealtimeMeasurements) SetRequests(v int64)` SetRequests sets Requests field to given value. @@ -297,20 +297,20 @@ HasRequests returns a boolean if a field has been set. ### GetLogging -`func (o *RealtimeMeasurements) GetLogging() int32` +`func (o *RealtimeMeasurements) GetLogging() int64` GetLogging returns the Logging field if non-nil, zero value otherwise. ### GetLoggingOk -`func (o *RealtimeMeasurements) GetLoggingOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetLoggingOk() (*int64, bool)` GetLoggingOk returns a tuple with the Logging field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLogging -`func (o *RealtimeMeasurements) SetLogging(v int32)` +`func (o *RealtimeMeasurements) SetLogging(v int64)` SetLogging sets Logging field to given value. @@ -322,20 +322,20 @@ HasLogging returns a boolean if a field has been set. ### GetLog -`func (o *RealtimeMeasurements) GetLog() int32` +`func (o *RealtimeMeasurements) GetLog() int64` GetLog returns the Log field if non-nil, zero value otherwise. ### GetLogOk -`func (o *RealtimeMeasurements) GetLogOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetLogOk() (*int64, bool)` GetLogOk returns a tuple with the Log field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLog -`func (o *RealtimeMeasurements) SetLog(v int32)` +`func (o *RealtimeMeasurements) SetLog(v int64)` SetLog sets Log field to given value. @@ -347,20 +347,20 @@ HasLog returns a boolean if a field has been set. ### GetRespHeaderBytes -`func (o *RealtimeMeasurements) GetRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetRespHeaderBytes() int64` GetRespHeaderBytes returns the RespHeaderBytes field if non-nil, zero value otherwise. ### GetRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetRespHeaderBytesOk() (*int64, bool)` GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespHeaderBytes -`func (o *RealtimeMeasurements) SetRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetRespHeaderBytes(v int64)` SetRespHeaderBytes sets RespHeaderBytes field to given value. @@ -372,20 +372,20 @@ HasRespHeaderBytes returns a boolean if a field has been set. ### GetHeaderSize -`func (o *RealtimeMeasurements) GetHeaderSize() int32` +`func (o *RealtimeMeasurements) GetHeaderSize() int64` GetHeaderSize returns the HeaderSize field if non-nil, zero value otherwise. ### GetHeaderSizeOk -`func (o *RealtimeMeasurements) GetHeaderSizeOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetHeaderSizeOk() (*int64, bool)` GetHeaderSizeOk returns a tuple with the HeaderSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHeaderSize -`func (o *RealtimeMeasurements) SetHeaderSize(v int32)` +`func (o *RealtimeMeasurements) SetHeaderSize(v int64)` SetHeaderSize sets HeaderSize field to given value. @@ -397,20 +397,20 @@ HasHeaderSize returns a boolean if a field has been set. ### GetRespBodyBytes -`func (o *RealtimeMeasurements) GetRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetRespBodyBytes() int64` GetRespBodyBytes returns the RespBodyBytes field if non-nil, zero value otherwise. ### GetRespBodyBytesOk -`func (o *RealtimeMeasurements) GetRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetRespBodyBytesOk() (*int64, bool)` GetRespBodyBytesOk returns a tuple with the RespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespBodyBytes -`func (o *RealtimeMeasurements) SetRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetRespBodyBytes(v int64)` SetRespBodyBytes sets RespBodyBytes field to given value. @@ -422,20 +422,20 @@ HasRespBodyBytes returns a boolean if a field has been set. ### GetBodySize -`func (o *RealtimeMeasurements) GetBodySize() int32` +`func (o *RealtimeMeasurements) GetBodySize() int64` GetBodySize returns the BodySize field if non-nil, zero value otherwise. ### GetBodySizeOk -`func (o *RealtimeMeasurements) GetBodySizeOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBodySizeOk() (*int64, bool)` GetBodySizeOk returns a tuple with the BodySize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBodySize -`func (o *RealtimeMeasurements) SetBodySize(v int32)` +`func (o *RealtimeMeasurements) SetBodySize(v int64)` SetBodySize sets BodySize field to given value. @@ -447,20 +447,20 @@ HasBodySize returns a boolean if a field has been set. ### GetHits -`func (o *RealtimeMeasurements) GetHits() int32` +`func (o *RealtimeMeasurements) GetHits() int64` GetHits returns the Hits field if non-nil, zero value otherwise. ### GetHitsOk -`func (o *RealtimeMeasurements) GetHitsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetHitsOk() (*int64, bool)` GetHitsOk returns a tuple with the Hits field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHits -`func (o *RealtimeMeasurements) SetHits(v int32)` +`func (o *RealtimeMeasurements) SetHits(v int64)` SetHits sets Hits field to given value. @@ -472,20 +472,20 @@ HasHits returns a boolean if a field has been set. ### GetMiss -`func (o *RealtimeMeasurements) GetMiss() int32` +`func (o *RealtimeMeasurements) GetMiss() int64` GetMiss returns the Miss field if non-nil, zero value otherwise. ### GetMissOk -`func (o *RealtimeMeasurements) GetMissOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetMissOk() (*int64, bool)` GetMissOk returns a tuple with the Miss field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMiss -`func (o *RealtimeMeasurements) SetMiss(v int32)` +`func (o *RealtimeMeasurements) SetMiss(v int64)` SetMiss sets Miss field to given value. @@ -497,20 +497,20 @@ HasMiss returns a boolean if a field has been set. ### GetPass -`func (o *RealtimeMeasurements) GetPass() int32` +`func (o *RealtimeMeasurements) GetPass() int64` GetPass returns the Pass field if non-nil, zero value otherwise. ### GetPassOk -`func (o *RealtimeMeasurements) GetPassOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetPassOk() (*int64, bool)` GetPassOk returns a tuple with the Pass field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPass -`func (o *RealtimeMeasurements) SetPass(v int32)` +`func (o *RealtimeMeasurements) SetPass(v int64)` SetPass sets Pass field to given value. @@ -522,20 +522,20 @@ HasPass returns a boolean if a field has been set. ### GetSynth -`func (o *RealtimeMeasurements) GetSynth() int32` +`func (o *RealtimeMeasurements) GetSynth() int64` GetSynth returns the Synth field if non-nil, zero value otherwise. ### GetSynthOk -`func (o *RealtimeMeasurements) GetSynthOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetSynthOk() (*int64, bool)` GetSynthOk returns a tuple with the Synth field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSynth -`func (o *RealtimeMeasurements) SetSynth(v int32)` +`func (o *RealtimeMeasurements) SetSynth(v int64)` SetSynth sets Synth field to given value. @@ -547,20 +547,20 @@ HasSynth returns a boolean if a field has been set. ### GetErrors -`func (o *RealtimeMeasurements) GetErrors() int32` +`func (o *RealtimeMeasurements) GetErrors() int64` GetErrors returns the Errors field if non-nil, zero value otherwise. ### GetErrorsOk -`func (o *RealtimeMeasurements) GetErrorsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetErrorsOk() (*int64, bool)` GetErrorsOk returns a tuple with the Errors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetErrors -`func (o *RealtimeMeasurements) SetErrors(v int32)` +`func (o *RealtimeMeasurements) SetErrors(v int64)` SetErrors sets Errors field to given value. @@ -647,20 +647,20 @@ HasMissHistogram returns a boolean if a field has been set. ### GetComputeRequests -`func (o *RealtimeMeasurements) GetComputeRequests() int32` +`func (o *RealtimeMeasurements) GetComputeRequests() int64` GetComputeRequests returns the ComputeRequests field if non-nil, zero value otherwise. ### GetComputeRequestsOk -`func (o *RealtimeMeasurements) GetComputeRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRequestsOk() (*int64, bool)` GetComputeRequestsOk returns a tuple with the ComputeRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRequests -`func (o *RealtimeMeasurements) SetComputeRequests(v int32)` +`func (o *RealtimeMeasurements) SetComputeRequests(v int64)` SetComputeRequests sets ComputeRequests field to given value. @@ -697,20 +697,20 @@ HasComputeExecutionTimeMs returns a boolean if a field has been set. ### GetComputeRAMUsed -`func (o *RealtimeMeasurements) GetComputeRAMUsed() int32` +`func (o *RealtimeMeasurements) GetComputeRAMUsed() int64` GetComputeRAMUsed returns the ComputeRAMUsed field if non-nil, zero value otherwise. ### GetComputeRAMUsedOk -`func (o *RealtimeMeasurements) GetComputeRAMUsedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRAMUsedOk() (*int64, bool)` GetComputeRAMUsedOk returns a tuple with the ComputeRAMUsed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRAMUsed -`func (o *RealtimeMeasurements) SetComputeRAMUsed(v int32)` +`func (o *RealtimeMeasurements) SetComputeRAMUsed(v int64)` SetComputeRAMUsed sets ComputeRAMUsed field to given value. @@ -772,20 +772,20 @@ HasComputeRequestTimeBilledMs returns a boolean if a field has been set. ### GetShield -`func (o *RealtimeMeasurements) GetShield() int32` +`func (o *RealtimeMeasurements) GetShield() int64` GetShield returns the Shield field if non-nil, zero value otherwise. ### GetShieldOk -`func (o *RealtimeMeasurements) GetShieldOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldOk() (*int64, bool)` GetShieldOk returns a tuple with the Shield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShield -`func (o *RealtimeMeasurements) SetShield(v int32)` +`func (o *RealtimeMeasurements) SetShield(v int64)` SetShield sets Shield field to given value. @@ -797,20 +797,20 @@ HasShield returns a boolean if a field has been set. ### GetIpv6 -`func (o *RealtimeMeasurements) GetIpv6() int32` +`func (o *RealtimeMeasurements) GetIpv6() int64` GetIpv6 returns the Ipv6 field if non-nil, zero value otherwise. ### GetIpv6Ok -`func (o *RealtimeMeasurements) GetIpv6Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetIpv6Ok() (*int64, bool)` GetIpv6Ok returns a tuple with the Ipv6 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetIpv6 -`func (o *RealtimeMeasurements) SetIpv6(v int32)` +`func (o *RealtimeMeasurements) SetIpv6(v int64)` SetIpv6 sets Ipv6 field to given value. @@ -822,20 +822,20 @@ HasIpv6 returns a boolean if a field has been set. ### GetImgopto -`func (o *RealtimeMeasurements) GetImgopto() int32` +`func (o *RealtimeMeasurements) GetImgopto() int64` GetImgopto returns the Imgopto field if non-nil, zero value otherwise. ### GetImgoptoOk -`func (o *RealtimeMeasurements) GetImgoptoOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgoptoOk() (*int64, bool)` GetImgoptoOk returns a tuple with the Imgopto field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgopto -`func (o *RealtimeMeasurements) SetImgopto(v int32)` +`func (o *RealtimeMeasurements) SetImgopto(v int64)` SetImgopto sets Imgopto field to given value. @@ -847,20 +847,20 @@ HasImgopto returns a boolean if a field has been set. ### GetImgoptoShield -`func (o *RealtimeMeasurements) GetImgoptoShield() int32` +`func (o *RealtimeMeasurements) GetImgoptoShield() int64` GetImgoptoShield returns the ImgoptoShield field if non-nil, zero value otherwise. ### GetImgoptoShieldOk -`func (o *RealtimeMeasurements) GetImgoptoShieldOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgoptoShieldOk() (*int64, bool)` GetImgoptoShieldOk returns a tuple with the ImgoptoShield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShield -`func (o *RealtimeMeasurements) SetImgoptoShield(v int32)` +`func (o *RealtimeMeasurements) SetImgoptoShield(v int64)` SetImgoptoShield sets ImgoptoShield field to given value. @@ -872,20 +872,20 @@ HasImgoptoShield returns a boolean if a field has been set. ### GetImgoptoTransforms -`func (o *RealtimeMeasurements) GetImgoptoTransforms() int32` +`func (o *RealtimeMeasurements) GetImgoptoTransforms() int64` GetImgoptoTransforms returns the ImgoptoTransforms field if non-nil, zero value otherwise. ### GetImgoptoTransformsOk -`func (o *RealtimeMeasurements) GetImgoptoTransformsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgoptoTransformsOk() (*int64, bool)` GetImgoptoTransformsOk returns a tuple with the ImgoptoTransforms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoTransforms -`func (o *RealtimeMeasurements) SetImgoptoTransforms(v int32)` +`func (o *RealtimeMeasurements) SetImgoptoTransforms(v int64)` SetImgoptoTransforms sets ImgoptoTransforms field to given value. @@ -897,20 +897,20 @@ HasImgoptoTransforms returns a boolean if a field has been set. ### GetOtfp -`func (o *RealtimeMeasurements) GetOtfp() int32` +`func (o *RealtimeMeasurements) GetOtfp() int64` GetOtfp returns the Otfp field if non-nil, zero value otherwise. ### GetOtfpOk -`func (o *RealtimeMeasurements) GetOtfpOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOtfpOk() (*int64, bool)` GetOtfpOk returns a tuple with the Otfp field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfp -`func (o *RealtimeMeasurements) SetOtfp(v int32)` +`func (o *RealtimeMeasurements) SetOtfp(v int64)` SetOtfp sets Otfp field to given value. @@ -922,20 +922,20 @@ HasOtfp returns a boolean if a field has been set. ### GetOtfpShield -`func (o *RealtimeMeasurements) GetOtfpShield() int32` +`func (o *RealtimeMeasurements) GetOtfpShield() int64` GetOtfpShield returns the OtfpShield field if non-nil, zero value otherwise. ### GetOtfpShieldOk -`func (o *RealtimeMeasurements) GetOtfpShieldOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOtfpShieldOk() (*int64, bool)` GetOtfpShieldOk returns a tuple with the OtfpShield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpShield -`func (o *RealtimeMeasurements) SetOtfpShield(v int32)` +`func (o *RealtimeMeasurements) SetOtfpShield(v int64)` SetOtfpShield sets OtfpShield field to given value. @@ -947,20 +947,20 @@ HasOtfpShield returns a boolean if a field has been set. ### GetOtfpManifests -`func (o *RealtimeMeasurements) GetOtfpManifests() int32` +`func (o *RealtimeMeasurements) GetOtfpManifests() int64` GetOtfpManifests returns the OtfpManifests field if non-nil, zero value otherwise. ### GetOtfpManifestsOk -`func (o *RealtimeMeasurements) GetOtfpManifestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOtfpManifestsOk() (*int64, bool)` GetOtfpManifestsOk returns a tuple with the OtfpManifests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpManifests -`func (o *RealtimeMeasurements) SetOtfpManifests(v int32)` +`func (o *RealtimeMeasurements) SetOtfpManifests(v int64)` SetOtfpManifests sets OtfpManifests field to given value. @@ -972,20 +972,20 @@ HasOtfpManifests returns a boolean if a field has been set. ### GetVideo -`func (o *RealtimeMeasurements) GetVideo() int32` +`func (o *RealtimeMeasurements) GetVideo() int64` GetVideo returns the Video field if non-nil, zero value otherwise. ### GetVideoOk -`func (o *RealtimeMeasurements) GetVideoOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetVideoOk() (*int64, bool)` GetVideoOk returns a tuple with the Video field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetVideo -`func (o *RealtimeMeasurements) SetVideo(v int32)` +`func (o *RealtimeMeasurements) SetVideo(v int64)` SetVideo sets Video field to given value. @@ -997,20 +997,20 @@ HasVideo returns a boolean if a field has been set. ### GetPci -`func (o *RealtimeMeasurements) GetPci() int32` +`func (o *RealtimeMeasurements) GetPci() int64` GetPci returns the Pci field if non-nil, zero value otherwise. ### GetPciOk -`func (o *RealtimeMeasurements) GetPciOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetPciOk() (*int64, bool)` GetPciOk returns a tuple with the Pci field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPci -`func (o *RealtimeMeasurements) SetPci(v int32)` +`func (o *RealtimeMeasurements) SetPci(v int64)` SetPci sets Pci field to given value. @@ -1022,20 +1022,20 @@ HasPci returns a boolean if a field has been set. ### GetHTTP2 -`func (o *RealtimeMeasurements) GetHTTP2() int32` +`func (o *RealtimeMeasurements) GetHTTP2() int64` GetHTTP2 returns the HTTP2 field if non-nil, zero value otherwise. ### GetHTTP2Ok -`func (o *RealtimeMeasurements) GetHTTP2Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetHTTP2Ok() (*int64, bool)` GetHTTP2Ok returns a tuple with the HTTP2 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHTTP2 -`func (o *RealtimeMeasurements) SetHTTP2(v int32)` +`func (o *RealtimeMeasurements) SetHTTP2(v int64)` SetHTTP2 sets HTTP2 field to given value. @@ -1047,20 +1047,20 @@ HasHTTP2 returns a boolean if a field has been set. ### GetHTTP3 -`func (o *RealtimeMeasurements) GetHTTP3() int32` +`func (o *RealtimeMeasurements) GetHTTP3() int64` GetHTTP3 returns the HTTP3 field if non-nil, zero value otherwise. ### GetHTTP3Ok -`func (o *RealtimeMeasurements) GetHTTP3Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetHTTP3Ok() (*int64, bool)` GetHTTP3Ok returns a tuple with the HTTP3 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHTTP3 -`func (o *RealtimeMeasurements) SetHTTP3(v int32)` +`func (o *RealtimeMeasurements) SetHTTP3(v int64)` SetHTTP3 sets HTTP3 field to given value. @@ -1072,20 +1072,20 @@ HasHTTP3 returns a boolean if a field has been set. ### GetRestarts -`func (o *RealtimeMeasurements) GetRestarts() int32` +`func (o *RealtimeMeasurements) GetRestarts() int64` GetRestarts returns the Restarts field if non-nil, zero value otherwise. ### GetRestartsOk -`func (o *RealtimeMeasurements) GetRestartsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetRestartsOk() (*int64, bool)` GetRestartsOk returns a tuple with the Restarts field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRestarts -`func (o *RealtimeMeasurements) SetRestarts(v int32)` +`func (o *RealtimeMeasurements) SetRestarts(v int64)` SetRestarts sets Restarts field to given value. @@ -1097,20 +1097,20 @@ HasRestarts returns a boolean if a field has been set. ### GetReqHeaderBytes -`func (o *RealtimeMeasurements) GetReqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetReqHeaderBytes() int64` GetReqHeaderBytes returns the ReqHeaderBytes field if non-nil, zero value otherwise. ### GetReqHeaderBytesOk -`func (o *RealtimeMeasurements) GetReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetReqHeaderBytesOk() (*int64, bool)` GetReqHeaderBytesOk returns a tuple with the ReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetReqHeaderBytes -`func (o *RealtimeMeasurements) SetReqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetReqHeaderBytes(v int64)` SetReqHeaderBytes sets ReqHeaderBytes field to given value. @@ -1122,20 +1122,20 @@ HasReqHeaderBytes returns a boolean if a field has been set. ### GetReqBodyBytes -`func (o *RealtimeMeasurements) GetReqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetReqBodyBytes() int64` GetReqBodyBytes returns the ReqBodyBytes field if non-nil, zero value otherwise. ### GetReqBodyBytesOk -`func (o *RealtimeMeasurements) GetReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetReqBodyBytesOk() (*int64, bool)` GetReqBodyBytesOk returns a tuple with the ReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetReqBodyBytes -`func (o *RealtimeMeasurements) SetReqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetReqBodyBytes(v int64)` SetReqBodyBytes sets ReqBodyBytes field to given value. @@ -1147,20 +1147,20 @@ HasReqBodyBytes returns a boolean if a field has been set. ### GetBereqHeaderBytes -`func (o *RealtimeMeasurements) GetBereqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetBereqHeaderBytes() int64` GetBereqHeaderBytes returns the BereqHeaderBytes field if non-nil, zero value otherwise. ### GetBereqHeaderBytesOk -`func (o *RealtimeMeasurements) GetBereqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBereqHeaderBytesOk() (*int64, bool)` GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqHeaderBytes -`func (o *RealtimeMeasurements) SetBereqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetBereqHeaderBytes(v int64)` SetBereqHeaderBytes sets BereqHeaderBytes field to given value. @@ -1172,20 +1172,20 @@ HasBereqHeaderBytes returns a boolean if a field has been set. ### GetBereqBodyBytes -`func (o *RealtimeMeasurements) GetBereqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetBereqBodyBytes() int64` GetBereqBodyBytes returns the BereqBodyBytes field if non-nil, zero value otherwise. ### GetBereqBodyBytesOk -`func (o *RealtimeMeasurements) GetBereqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBereqBodyBytesOk() (*int64, bool)` GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqBodyBytes -`func (o *RealtimeMeasurements) SetBereqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetBereqBodyBytes(v int64)` SetBereqBodyBytes sets BereqBodyBytes field to given value. @@ -1197,20 +1197,20 @@ HasBereqBodyBytes returns a boolean if a field has been set. ### GetWafBlocked -`func (o *RealtimeMeasurements) GetWafBlocked() int32` +`func (o *RealtimeMeasurements) GetWafBlocked() int64` GetWafBlocked returns the WafBlocked field if non-nil, zero value otherwise. ### GetWafBlockedOk -`func (o *RealtimeMeasurements) GetWafBlockedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWafBlockedOk() (*int64, bool)` GetWafBlockedOk returns a tuple with the WafBlocked field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafBlocked -`func (o *RealtimeMeasurements) SetWafBlocked(v int32)` +`func (o *RealtimeMeasurements) SetWafBlocked(v int64)` SetWafBlocked sets WafBlocked field to given value. @@ -1222,20 +1222,20 @@ HasWafBlocked returns a boolean if a field has been set. ### GetWafLogged -`func (o *RealtimeMeasurements) GetWafLogged() int32` +`func (o *RealtimeMeasurements) GetWafLogged() int64` GetWafLogged returns the WafLogged field if non-nil, zero value otherwise. ### GetWafLoggedOk -`func (o *RealtimeMeasurements) GetWafLoggedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWafLoggedOk() (*int64, bool)` GetWafLoggedOk returns a tuple with the WafLogged field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLogged -`func (o *RealtimeMeasurements) SetWafLogged(v int32)` +`func (o *RealtimeMeasurements) SetWafLogged(v int64)` SetWafLogged sets WafLogged field to given value. @@ -1247,20 +1247,20 @@ HasWafLogged returns a boolean if a field has been set. ### GetWafPassed -`func (o *RealtimeMeasurements) GetWafPassed() int32` +`func (o *RealtimeMeasurements) GetWafPassed() int64` GetWafPassed returns the WafPassed field if non-nil, zero value otherwise. ### GetWafPassedOk -`func (o *RealtimeMeasurements) GetWafPassedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWafPassedOk() (*int64, bool)` GetWafPassedOk returns a tuple with the WafPassed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafPassed -`func (o *RealtimeMeasurements) SetWafPassed(v int32)` +`func (o *RealtimeMeasurements) SetWafPassed(v int64)` SetWafPassed sets WafPassed field to given value. @@ -1272,20 +1272,20 @@ HasWafPassed returns a boolean if a field has been set. ### GetAttackReqHeaderBytes -`func (o *RealtimeMeasurements) GetAttackReqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetAttackReqHeaderBytes() int64` GetAttackReqHeaderBytes returns the AttackReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackReqHeaderBytesOk -`func (o *RealtimeMeasurements) GetAttackReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackReqHeaderBytesOk() (*int64, bool)` GetAttackReqHeaderBytesOk returns a tuple with the AttackReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackReqHeaderBytes -`func (o *RealtimeMeasurements) SetAttackReqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackReqHeaderBytes(v int64)` SetAttackReqHeaderBytes sets AttackReqHeaderBytes field to given value. @@ -1297,20 +1297,20 @@ HasAttackReqHeaderBytes returns a boolean if a field has been set. ### GetAttackReqBodyBytes -`func (o *RealtimeMeasurements) GetAttackReqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetAttackReqBodyBytes() int64` GetAttackReqBodyBytes returns the AttackReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackReqBodyBytesOk -`func (o *RealtimeMeasurements) GetAttackReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackReqBodyBytesOk() (*int64, bool)` GetAttackReqBodyBytesOk returns a tuple with the AttackReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackReqBodyBytes -`func (o *RealtimeMeasurements) SetAttackReqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackReqBodyBytes(v int64)` SetAttackReqBodyBytes sets AttackReqBodyBytes field to given value. @@ -1322,20 +1322,20 @@ HasAttackReqBodyBytes returns a boolean if a field has been set. ### GetAttackRespSynthBytes -`func (o *RealtimeMeasurements) GetAttackRespSynthBytes() int32` +`func (o *RealtimeMeasurements) GetAttackRespSynthBytes() int64` GetAttackRespSynthBytes returns the AttackRespSynthBytes field if non-nil, zero value otherwise. ### GetAttackRespSynthBytesOk -`func (o *RealtimeMeasurements) GetAttackRespSynthBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackRespSynthBytesOk() (*int64, bool)` GetAttackRespSynthBytesOk returns a tuple with the AttackRespSynthBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackRespSynthBytes -`func (o *RealtimeMeasurements) SetAttackRespSynthBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackRespSynthBytes(v int64)` SetAttackRespSynthBytes sets AttackRespSynthBytes field to given value. @@ -1347,20 +1347,20 @@ HasAttackRespSynthBytes returns a boolean if a field has been set. ### GetAttackLoggedReqHeaderBytes -`func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytes() int64` GetAttackLoggedReqHeaderBytes returns the AttackLoggedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackLoggedReqHeaderBytesOk -`func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytesOk() (*int64, bool)` GetAttackLoggedReqHeaderBytesOk returns a tuple with the AttackLoggedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackLoggedReqHeaderBytes -`func (o *RealtimeMeasurements) SetAttackLoggedReqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackLoggedReqHeaderBytes(v int64)` SetAttackLoggedReqHeaderBytes sets AttackLoggedReqHeaderBytes field to given value. @@ -1372,20 +1372,20 @@ HasAttackLoggedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackLoggedReqBodyBytes -`func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytes() int64` GetAttackLoggedReqBodyBytes returns the AttackLoggedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackLoggedReqBodyBytesOk -`func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytesOk() (*int64, bool)` GetAttackLoggedReqBodyBytesOk returns a tuple with the AttackLoggedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackLoggedReqBodyBytes -`func (o *RealtimeMeasurements) SetAttackLoggedReqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackLoggedReqBodyBytes(v int64)` SetAttackLoggedReqBodyBytes sets AttackLoggedReqBodyBytes field to given value. @@ -1397,20 +1397,20 @@ HasAttackLoggedReqBodyBytes returns a boolean if a field has been set. ### GetAttackBlockedReqHeaderBytes -`func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytes() int64` GetAttackBlockedReqHeaderBytes returns the AttackBlockedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackBlockedReqHeaderBytesOk -`func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytesOk() (*int64, bool)` GetAttackBlockedReqHeaderBytesOk returns a tuple with the AttackBlockedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackBlockedReqHeaderBytes -`func (o *RealtimeMeasurements) SetAttackBlockedReqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackBlockedReqHeaderBytes(v int64)` SetAttackBlockedReqHeaderBytes sets AttackBlockedReqHeaderBytes field to given value. @@ -1422,20 +1422,20 @@ HasAttackBlockedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackBlockedReqBodyBytes -`func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytes() int64` GetAttackBlockedReqBodyBytes returns the AttackBlockedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackBlockedReqBodyBytesOk -`func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytesOk() (*int64, bool)` GetAttackBlockedReqBodyBytesOk returns a tuple with the AttackBlockedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackBlockedReqBodyBytes -`func (o *RealtimeMeasurements) SetAttackBlockedReqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackBlockedReqBodyBytes(v int64)` SetAttackBlockedReqBodyBytes sets AttackBlockedReqBodyBytes field to given value. @@ -1447,20 +1447,20 @@ HasAttackBlockedReqBodyBytes returns a boolean if a field has been set. ### GetAttackPassedReqHeaderBytes -`func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytes() int64` GetAttackPassedReqHeaderBytes returns the AttackPassedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackPassedReqHeaderBytesOk -`func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytesOk() (*int64, bool)` GetAttackPassedReqHeaderBytesOk returns a tuple with the AttackPassedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackPassedReqHeaderBytes -`func (o *RealtimeMeasurements) SetAttackPassedReqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackPassedReqHeaderBytes(v int64)` SetAttackPassedReqHeaderBytes sets AttackPassedReqHeaderBytes field to given value. @@ -1472,20 +1472,20 @@ HasAttackPassedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackPassedReqBodyBytes -`func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytes() int64` GetAttackPassedReqBodyBytes returns the AttackPassedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackPassedReqBodyBytesOk -`func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytesOk() (*int64, bool)` GetAttackPassedReqBodyBytesOk returns a tuple with the AttackPassedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackPassedReqBodyBytes -`func (o *RealtimeMeasurements) SetAttackPassedReqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetAttackPassedReqBodyBytes(v int64)` SetAttackPassedReqBodyBytes sets AttackPassedReqBodyBytes field to given value. @@ -1497,20 +1497,20 @@ HasAttackPassedReqBodyBytes returns a boolean if a field has been set. ### GetShieldRespHeaderBytes -`func (o *RealtimeMeasurements) GetShieldRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetShieldRespHeaderBytes() int64` GetShieldRespHeaderBytes returns the ShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldRespHeaderBytesOk() (*int64, bool)` GetShieldRespHeaderBytesOk returns a tuple with the ShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRespHeaderBytes -`func (o *RealtimeMeasurements) SetShieldRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldRespHeaderBytes(v int64)` SetShieldRespHeaderBytes sets ShieldRespHeaderBytes field to given value. @@ -1522,20 +1522,20 @@ HasShieldRespHeaderBytes returns a boolean if a field has been set. ### GetShieldRespBodyBytes -`func (o *RealtimeMeasurements) GetShieldRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetShieldRespBodyBytes() int64` GetShieldRespBodyBytes returns the ShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldRespBodyBytesOk -`func (o *RealtimeMeasurements) GetShieldRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldRespBodyBytesOk() (*int64, bool)` GetShieldRespBodyBytesOk returns a tuple with the ShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRespBodyBytes -`func (o *RealtimeMeasurements) SetShieldRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldRespBodyBytes(v int64)` SetShieldRespBodyBytes sets ShieldRespBodyBytes field to given value. @@ -1547,20 +1547,20 @@ HasShieldRespBodyBytes returns a boolean if a field has been set. ### GetOtfpRespHeaderBytes -`func (o *RealtimeMeasurements) GetOtfpRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetOtfpRespHeaderBytes() int64` GetOtfpRespHeaderBytes returns the OtfpRespHeaderBytes field if non-nil, zero value otherwise. ### GetOtfpRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetOtfpRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOtfpRespHeaderBytesOk() (*int64, bool)` GetOtfpRespHeaderBytesOk returns a tuple with the OtfpRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpRespHeaderBytes -`func (o *RealtimeMeasurements) SetOtfpRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetOtfpRespHeaderBytes(v int64)` SetOtfpRespHeaderBytes sets OtfpRespHeaderBytes field to given value. @@ -1572,20 +1572,20 @@ HasOtfpRespHeaderBytes returns a boolean if a field has been set. ### GetOtfpRespBodyBytes -`func (o *RealtimeMeasurements) GetOtfpRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetOtfpRespBodyBytes() int64` GetOtfpRespBodyBytes returns the OtfpRespBodyBytes field if non-nil, zero value otherwise. ### GetOtfpRespBodyBytesOk -`func (o *RealtimeMeasurements) GetOtfpRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOtfpRespBodyBytesOk() (*int64, bool)` GetOtfpRespBodyBytesOk returns a tuple with the OtfpRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpRespBodyBytes -`func (o *RealtimeMeasurements) SetOtfpRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetOtfpRespBodyBytes(v int64)` SetOtfpRespBodyBytes sets OtfpRespBodyBytes field to given value. @@ -1597,20 +1597,20 @@ HasOtfpRespBodyBytes returns a boolean if a field has been set. ### GetOtfpShieldRespHeaderBytes -`func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytes() int64` GetOtfpShieldRespHeaderBytes returns the OtfpShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetOtfpShieldRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytesOk() (*int64, bool)` GetOtfpShieldRespHeaderBytesOk returns a tuple with the OtfpShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpShieldRespHeaderBytes -`func (o *RealtimeMeasurements) SetOtfpShieldRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetOtfpShieldRespHeaderBytes(v int64)` SetOtfpShieldRespHeaderBytes sets OtfpShieldRespHeaderBytes field to given value. @@ -1622,20 +1622,20 @@ HasOtfpShieldRespHeaderBytes returns a boolean if a field has been set. ### GetOtfpShieldRespBodyBytes -`func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytes() int64` GetOtfpShieldRespBodyBytes returns the OtfpShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetOtfpShieldRespBodyBytesOk -`func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytesOk() (*int64, bool)` GetOtfpShieldRespBodyBytesOk returns a tuple with the OtfpShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpShieldRespBodyBytes -`func (o *RealtimeMeasurements) SetOtfpShieldRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetOtfpShieldRespBodyBytes(v int64)` SetOtfpShieldRespBodyBytes sets OtfpShieldRespBodyBytes field to given value. @@ -1697,20 +1697,20 @@ HasOtfpDeliverTime returns a boolean if a field has been set. ### GetImgoptoRespHeaderBytes -`func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytes() int64` GetImgoptoRespHeaderBytes returns the ImgoptoRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgoptoRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytesOk() (*int64, bool)` GetImgoptoRespHeaderBytesOk returns a tuple with the ImgoptoRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoRespHeaderBytes -`func (o *RealtimeMeasurements) SetImgoptoRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetImgoptoRespHeaderBytes(v int64)` SetImgoptoRespHeaderBytes sets ImgoptoRespHeaderBytes field to given value. @@ -1722,20 +1722,20 @@ HasImgoptoRespHeaderBytes returns a boolean if a field has been set. ### GetImgoptoRespBodyBytes -`func (o *RealtimeMeasurements) GetImgoptoRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetImgoptoRespBodyBytes() int64` GetImgoptoRespBodyBytes returns the ImgoptoRespBodyBytes field if non-nil, zero value otherwise. ### GetImgoptoRespBodyBytesOk -`func (o *RealtimeMeasurements) GetImgoptoRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgoptoRespBodyBytesOk() (*int64, bool)` GetImgoptoRespBodyBytesOk returns a tuple with the ImgoptoRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoRespBodyBytes -`func (o *RealtimeMeasurements) SetImgoptoRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetImgoptoRespBodyBytes(v int64)` SetImgoptoRespBodyBytes sets ImgoptoRespBodyBytes field to given value. @@ -1747,20 +1747,20 @@ HasImgoptoRespBodyBytes returns a boolean if a field has been set. ### GetImgoptoShieldRespHeaderBytes -`func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytes() int64` GetImgoptoShieldRespHeaderBytes returns the ImgoptoShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgoptoShieldRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytesOk() (*int64, bool)` GetImgoptoShieldRespHeaderBytesOk returns a tuple with the ImgoptoShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShieldRespHeaderBytes -`func (o *RealtimeMeasurements) SetImgoptoShieldRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetImgoptoShieldRespHeaderBytes(v int64)` SetImgoptoShieldRespHeaderBytes sets ImgoptoShieldRespHeaderBytes field to given value. @@ -1772,20 +1772,20 @@ HasImgoptoShieldRespHeaderBytes returns a boolean if a field has been set. ### GetImgoptoShieldRespBodyBytes -`func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytes() int64` GetImgoptoShieldRespBodyBytes returns the ImgoptoShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetImgoptoShieldRespBodyBytesOk -`func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytesOk() (*int64, bool)` GetImgoptoShieldRespBodyBytesOk returns a tuple with the ImgoptoShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShieldRespBodyBytes -`func (o *RealtimeMeasurements) SetImgoptoShieldRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetImgoptoShieldRespBodyBytes(v int64)` SetImgoptoShieldRespBodyBytes sets ImgoptoShieldRespBodyBytes field to given value. @@ -1797,20 +1797,20 @@ HasImgoptoShieldRespBodyBytes returns a boolean if a field has been set. ### GetStatus1xx -`func (o *RealtimeMeasurements) GetStatus1xx() int32` +`func (o *RealtimeMeasurements) GetStatus1xx() int64` GetStatus1xx returns the Status1xx field if non-nil, zero value otherwise. ### GetStatus1xxOk -`func (o *RealtimeMeasurements) GetStatus1xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus1xxOk() (*int64, bool)` GetStatus1xxOk returns a tuple with the Status1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus1xx -`func (o *RealtimeMeasurements) SetStatus1xx(v int32)` +`func (o *RealtimeMeasurements) SetStatus1xx(v int64)` SetStatus1xx sets Status1xx field to given value. @@ -1822,20 +1822,20 @@ HasStatus1xx returns a boolean if a field has been set. ### GetStatus2xx -`func (o *RealtimeMeasurements) GetStatus2xx() int32` +`func (o *RealtimeMeasurements) GetStatus2xx() int64` GetStatus2xx returns the Status2xx field if non-nil, zero value otherwise. ### GetStatus2xxOk -`func (o *RealtimeMeasurements) GetStatus2xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus2xxOk() (*int64, bool)` GetStatus2xxOk returns a tuple with the Status2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus2xx -`func (o *RealtimeMeasurements) SetStatus2xx(v int32)` +`func (o *RealtimeMeasurements) SetStatus2xx(v int64)` SetStatus2xx sets Status2xx field to given value. @@ -1847,20 +1847,20 @@ HasStatus2xx returns a boolean if a field has been set. ### GetStatus3xx -`func (o *RealtimeMeasurements) GetStatus3xx() int32` +`func (o *RealtimeMeasurements) GetStatus3xx() int64` GetStatus3xx returns the Status3xx field if non-nil, zero value otherwise. ### GetStatus3xxOk -`func (o *RealtimeMeasurements) GetStatus3xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus3xxOk() (*int64, bool)` GetStatus3xxOk returns a tuple with the Status3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus3xx -`func (o *RealtimeMeasurements) SetStatus3xx(v int32)` +`func (o *RealtimeMeasurements) SetStatus3xx(v int64)` SetStatus3xx sets Status3xx field to given value. @@ -1872,20 +1872,20 @@ HasStatus3xx returns a boolean if a field has been set. ### GetStatus4xx -`func (o *RealtimeMeasurements) GetStatus4xx() int32` +`func (o *RealtimeMeasurements) GetStatus4xx() int64` GetStatus4xx returns the Status4xx field if non-nil, zero value otherwise. ### GetStatus4xxOk -`func (o *RealtimeMeasurements) GetStatus4xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus4xxOk() (*int64, bool)` GetStatus4xxOk returns a tuple with the Status4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus4xx -`func (o *RealtimeMeasurements) SetStatus4xx(v int32)` +`func (o *RealtimeMeasurements) SetStatus4xx(v int64)` SetStatus4xx sets Status4xx field to given value. @@ -1897,20 +1897,20 @@ HasStatus4xx returns a boolean if a field has been set. ### GetStatus5xx -`func (o *RealtimeMeasurements) GetStatus5xx() int32` +`func (o *RealtimeMeasurements) GetStatus5xx() int64` GetStatus5xx returns the Status5xx field if non-nil, zero value otherwise. ### GetStatus5xxOk -`func (o *RealtimeMeasurements) GetStatus5xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus5xxOk() (*int64, bool)` GetStatus5xxOk returns a tuple with the Status5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus5xx -`func (o *RealtimeMeasurements) SetStatus5xx(v int32)` +`func (o *RealtimeMeasurements) SetStatus5xx(v int64)` SetStatus5xx sets Status5xx field to given value. @@ -1922,20 +1922,20 @@ HasStatus5xx returns a boolean if a field has been set. ### GetStatus200 -`func (o *RealtimeMeasurements) GetStatus200() int32` +`func (o *RealtimeMeasurements) GetStatus200() int64` GetStatus200 returns the Status200 field if non-nil, zero value otherwise. ### GetStatus200Ok -`func (o *RealtimeMeasurements) GetStatus200Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus200Ok() (*int64, bool)` GetStatus200Ok returns a tuple with the Status200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus200 -`func (o *RealtimeMeasurements) SetStatus200(v int32)` +`func (o *RealtimeMeasurements) SetStatus200(v int64)` SetStatus200 sets Status200 field to given value. @@ -1947,20 +1947,20 @@ HasStatus200 returns a boolean if a field has been set. ### GetStatus204 -`func (o *RealtimeMeasurements) GetStatus204() int32` +`func (o *RealtimeMeasurements) GetStatus204() int64` GetStatus204 returns the Status204 field if non-nil, zero value otherwise. ### GetStatus204Ok -`func (o *RealtimeMeasurements) GetStatus204Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus204Ok() (*int64, bool)` GetStatus204Ok returns a tuple with the Status204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus204 -`func (o *RealtimeMeasurements) SetStatus204(v int32)` +`func (o *RealtimeMeasurements) SetStatus204(v int64)` SetStatus204 sets Status204 field to given value. @@ -1972,20 +1972,20 @@ HasStatus204 returns a boolean if a field has been set. ### GetStatus206 -`func (o *RealtimeMeasurements) GetStatus206() int32` +`func (o *RealtimeMeasurements) GetStatus206() int64` GetStatus206 returns the Status206 field if non-nil, zero value otherwise. ### GetStatus206Ok -`func (o *RealtimeMeasurements) GetStatus206Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus206Ok() (*int64, bool)` GetStatus206Ok returns a tuple with the Status206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus206 -`func (o *RealtimeMeasurements) SetStatus206(v int32)` +`func (o *RealtimeMeasurements) SetStatus206(v int64)` SetStatus206 sets Status206 field to given value. @@ -1997,20 +1997,20 @@ HasStatus206 returns a boolean if a field has been set. ### GetStatus301 -`func (o *RealtimeMeasurements) GetStatus301() int32` +`func (o *RealtimeMeasurements) GetStatus301() int64` GetStatus301 returns the Status301 field if non-nil, zero value otherwise. ### GetStatus301Ok -`func (o *RealtimeMeasurements) GetStatus301Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus301Ok() (*int64, bool)` GetStatus301Ok returns a tuple with the Status301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus301 -`func (o *RealtimeMeasurements) SetStatus301(v int32)` +`func (o *RealtimeMeasurements) SetStatus301(v int64)` SetStatus301 sets Status301 field to given value. @@ -2022,20 +2022,20 @@ HasStatus301 returns a boolean if a field has been set. ### GetStatus302 -`func (o *RealtimeMeasurements) GetStatus302() int32` +`func (o *RealtimeMeasurements) GetStatus302() int64` GetStatus302 returns the Status302 field if non-nil, zero value otherwise. ### GetStatus302Ok -`func (o *RealtimeMeasurements) GetStatus302Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus302Ok() (*int64, bool)` GetStatus302Ok returns a tuple with the Status302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus302 -`func (o *RealtimeMeasurements) SetStatus302(v int32)` +`func (o *RealtimeMeasurements) SetStatus302(v int64)` SetStatus302 sets Status302 field to given value. @@ -2047,20 +2047,20 @@ HasStatus302 returns a boolean if a field has been set. ### GetStatus304 -`func (o *RealtimeMeasurements) GetStatus304() int32` +`func (o *RealtimeMeasurements) GetStatus304() int64` GetStatus304 returns the Status304 field if non-nil, zero value otherwise. ### GetStatus304Ok -`func (o *RealtimeMeasurements) GetStatus304Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus304Ok() (*int64, bool)` GetStatus304Ok returns a tuple with the Status304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus304 -`func (o *RealtimeMeasurements) SetStatus304(v int32)` +`func (o *RealtimeMeasurements) SetStatus304(v int64)` SetStatus304 sets Status304 field to given value. @@ -2072,20 +2072,20 @@ HasStatus304 returns a boolean if a field has been set. ### GetStatus400 -`func (o *RealtimeMeasurements) GetStatus400() int32` +`func (o *RealtimeMeasurements) GetStatus400() int64` GetStatus400 returns the Status400 field if non-nil, zero value otherwise. ### GetStatus400Ok -`func (o *RealtimeMeasurements) GetStatus400Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus400Ok() (*int64, bool)` GetStatus400Ok returns a tuple with the Status400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus400 -`func (o *RealtimeMeasurements) SetStatus400(v int32)` +`func (o *RealtimeMeasurements) SetStatus400(v int64)` SetStatus400 sets Status400 field to given value. @@ -2097,20 +2097,20 @@ HasStatus400 returns a boolean if a field has been set. ### GetStatus401 -`func (o *RealtimeMeasurements) GetStatus401() int32` +`func (o *RealtimeMeasurements) GetStatus401() int64` GetStatus401 returns the Status401 field if non-nil, zero value otherwise. ### GetStatus401Ok -`func (o *RealtimeMeasurements) GetStatus401Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus401Ok() (*int64, bool)` GetStatus401Ok returns a tuple with the Status401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus401 -`func (o *RealtimeMeasurements) SetStatus401(v int32)` +`func (o *RealtimeMeasurements) SetStatus401(v int64)` SetStatus401 sets Status401 field to given value. @@ -2122,20 +2122,20 @@ HasStatus401 returns a boolean if a field has been set. ### GetStatus403 -`func (o *RealtimeMeasurements) GetStatus403() int32` +`func (o *RealtimeMeasurements) GetStatus403() int64` GetStatus403 returns the Status403 field if non-nil, zero value otherwise. ### GetStatus403Ok -`func (o *RealtimeMeasurements) GetStatus403Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus403Ok() (*int64, bool)` GetStatus403Ok returns a tuple with the Status403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus403 -`func (o *RealtimeMeasurements) SetStatus403(v int32)` +`func (o *RealtimeMeasurements) SetStatus403(v int64)` SetStatus403 sets Status403 field to given value. @@ -2147,20 +2147,20 @@ HasStatus403 returns a boolean if a field has been set. ### GetStatus404 -`func (o *RealtimeMeasurements) GetStatus404() int32` +`func (o *RealtimeMeasurements) GetStatus404() int64` GetStatus404 returns the Status404 field if non-nil, zero value otherwise. ### GetStatus404Ok -`func (o *RealtimeMeasurements) GetStatus404Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus404Ok() (*int64, bool)` GetStatus404Ok returns a tuple with the Status404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus404 -`func (o *RealtimeMeasurements) SetStatus404(v int32)` +`func (o *RealtimeMeasurements) SetStatus404(v int64)` SetStatus404 sets Status404 field to given value. @@ -2172,20 +2172,20 @@ HasStatus404 returns a boolean if a field has been set. ### GetStatus406 -`func (o *RealtimeMeasurements) GetStatus406() int32` +`func (o *RealtimeMeasurements) GetStatus406() int64` GetStatus406 returns the Status406 field if non-nil, zero value otherwise. ### GetStatus406Ok -`func (o *RealtimeMeasurements) GetStatus406Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus406Ok() (*int64, bool)` GetStatus406Ok returns a tuple with the Status406 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus406 -`func (o *RealtimeMeasurements) SetStatus406(v int32)` +`func (o *RealtimeMeasurements) SetStatus406(v int64)` SetStatus406 sets Status406 field to given value. @@ -2197,20 +2197,20 @@ HasStatus406 returns a boolean if a field has been set. ### GetStatus416 -`func (o *RealtimeMeasurements) GetStatus416() int32` +`func (o *RealtimeMeasurements) GetStatus416() int64` GetStatus416 returns the Status416 field if non-nil, zero value otherwise. ### GetStatus416Ok -`func (o *RealtimeMeasurements) GetStatus416Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus416Ok() (*int64, bool)` GetStatus416Ok returns a tuple with the Status416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus416 -`func (o *RealtimeMeasurements) SetStatus416(v int32)` +`func (o *RealtimeMeasurements) SetStatus416(v int64)` SetStatus416 sets Status416 field to given value. @@ -2222,20 +2222,20 @@ HasStatus416 returns a boolean if a field has been set. ### GetStatus429 -`func (o *RealtimeMeasurements) GetStatus429() int32` +`func (o *RealtimeMeasurements) GetStatus429() int64` GetStatus429 returns the Status429 field if non-nil, zero value otherwise. ### GetStatus429Ok -`func (o *RealtimeMeasurements) GetStatus429Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus429Ok() (*int64, bool)` GetStatus429Ok returns a tuple with the Status429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus429 -`func (o *RealtimeMeasurements) SetStatus429(v int32)` +`func (o *RealtimeMeasurements) SetStatus429(v int64)` SetStatus429 sets Status429 field to given value. @@ -2247,20 +2247,20 @@ HasStatus429 returns a boolean if a field has been set. ### GetStatus500 -`func (o *RealtimeMeasurements) GetStatus500() int32` +`func (o *RealtimeMeasurements) GetStatus500() int64` GetStatus500 returns the Status500 field if non-nil, zero value otherwise. ### GetStatus500Ok -`func (o *RealtimeMeasurements) GetStatus500Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus500Ok() (*int64, bool)` GetStatus500Ok returns a tuple with the Status500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus500 -`func (o *RealtimeMeasurements) SetStatus500(v int32)` +`func (o *RealtimeMeasurements) SetStatus500(v int64)` SetStatus500 sets Status500 field to given value. @@ -2272,20 +2272,20 @@ HasStatus500 returns a boolean if a field has been set. ### GetStatus501 -`func (o *RealtimeMeasurements) GetStatus501() int32` +`func (o *RealtimeMeasurements) GetStatus501() int64` GetStatus501 returns the Status501 field if non-nil, zero value otherwise. ### GetStatus501Ok -`func (o *RealtimeMeasurements) GetStatus501Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus501Ok() (*int64, bool)` GetStatus501Ok returns a tuple with the Status501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus501 -`func (o *RealtimeMeasurements) SetStatus501(v int32)` +`func (o *RealtimeMeasurements) SetStatus501(v int64)` SetStatus501 sets Status501 field to given value. @@ -2297,20 +2297,20 @@ HasStatus501 returns a boolean if a field has been set. ### GetStatus502 -`func (o *RealtimeMeasurements) GetStatus502() int32` +`func (o *RealtimeMeasurements) GetStatus502() int64` GetStatus502 returns the Status502 field if non-nil, zero value otherwise. ### GetStatus502Ok -`func (o *RealtimeMeasurements) GetStatus502Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus502Ok() (*int64, bool)` GetStatus502Ok returns a tuple with the Status502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus502 -`func (o *RealtimeMeasurements) SetStatus502(v int32)` +`func (o *RealtimeMeasurements) SetStatus502(v int64)` SetStatus502 sets Status502 field to given value. @@ -2322,20 +2322,20 @@ HasStatus502 returns a boolean if a field has been set. ### GetStatus503 -`func (o *RealtimeMeasurements) GetStatus503() int32` +`func (o *RealtimeMeasurements) GetStatus503() int64` GetStatus503 returns the Status503 field if non-nil, zero value otherwise. ### GetStatus503Ok -`func (o *RealtimeMeasurements) GetStatus503Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus503Ok() (*int64, bool)` GetStatus503Ok returns a tuple with the Status503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus503 -`func (o *RealtimeMeasurements) SetStatus503(v int32)` +`func (o *RealtimeMeasurements) SetStatus503(v int64)` SetStatus503 sets Status503 field to given value. @@ -2347,20 +2347,20 @@ HasStatus503 returns a boolean if a field has been set. ### GetStatus504 -`func (o *RealtimeMeasurements) GetStatus504() int32` +`func (o *RealtimeMeasurements) GetStatus504() int64` GetStatus504 returns the Status504 field if non-nil, zero value otherwise. ### GetStatus504Ok -`func (o *RealtimeMeasurements) GetStatus504Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus504Ok() (*int64, bool)` GetStatus504Ok returns a tuple with the Status504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus504 -`func (o *RealtimeMeasurements) SetStatus504(v int32)` +`func (o *RealtimeMeasurements) SetStatus504(v int64)` SetStatus504 sets Status504 field to given value. @@ -2372,20 +2372,20 @@ HasStatus504 returns a boolean if a field has been set. ### GetStatus505 -`func (o *RealtimeMeasurements) GetStatus505() int32` +`func (o *RealtimeMeasurements) GetStatus505() int64` GetStatus505 returns the Status505 field if non-nil, zero value otherwise. ### GetStatus505Ok -`func (o *RealtimeMeasurements) GetStatus505Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetStatus505Ok() (*int64, bool)` GetStatus505Ok returns a tuple with the Status505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus505 -`func (o *RealtimeMeasurements) SetStatus505(v int32)` +`func (o *RealtimeMeasurements) SetStatus505(v int64)` SetStatus505 sets Status505 field to given value. @@ -2397,20 +2397,20 @@ HasStatus505 returns a boolean if a field has been set. ### GetUncacheable -`func (o *RealtimeMeasurements) GetUncacheable() int32` +`func (o *RealtimeMeasurements) GetUncacheable() int64` GetUncacheable returns the Uncacheable field if non-nil, zero value otherwise. ### GetUncacheableOk -`func (o *RealtimeMeasurements) GetUncacheableOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetUncacheableOk() (*int64, bool)` GetUncacheableOk returns a tuple with the Uncacheable field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetUncacheable -`func (o *RealtimeMeasurements) SetUncacheable(v int32)` +`func (o *RealtimeMeasurements) SetUncacheable(v int64)` SetUncacheable sets Uncacheable field to given value. @@ -2447,20 +2447,20 @@ HasPassTime returns a boolean if a field has been set. ### GetTLS -`func (o *RealtimeMeasurements) GetTLS() int32` +`func (o *RealtimeMeasurements) GetTLS() int64` GetTLS returns the TLS field if non-nil, zero value otherwise. ### GetTLSOk -`func (o *RealtimeMeasurements) GetTLSOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetTLSOk() (*int64, bool)` GetTLSOk returns a tuple with the TLS field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLS -`func (o *RealtimeMeasurements) SetTLS(v int32)` +`func (o *RealtimeMeasurements) SetTLS(v int64)` SetTLS sets TLS field to given value. @@ -2472,20 +2472,20 @@ HasTLS returns a boolean if a field has been set. ### GetTLSV10 -`func (o *RealtimeMeasurements) GetTLSV10() int32` +`func (o *RealtimeMeasurements) GetTLSV10() int64` GetTLSV10 returns the TLSV10 field if non-nil, zero value otherwise. ### GetTLSV10Ok -`func (o *RealtimeMeasurements) GetTLSV10Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetTLSV10Ok() (*int64, bool)` GetTLSV10Ok returns a tuple with the TLSV10 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV10 -`func (o *RealtimeMeasurements) SetTLSV10(v int32)` +`func (o *RealtimeMeasurements) SetTLSV10(v int64)` SetTLSV10 sets TLSV10 field to given value. @@ -2497,20 +2497,20 @@ HasTLSV10 returns a boolean if a field has been set. ### GetTLSV11 -`func (o *RealtimeMeasurements) GetTLSV11() int32` +`func (o *RealtimeMeasurements) GetTLSV11() int64` GetTLSV11 returns the TLSV11 field if non-nil, zero value otherwise. ### GetTLSV11Ok -`func (o *RealtimeMeasurements) GetTLSV11Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetTLSV11Ok() (*int64, bool)` GetTLSV11Ok returns a tuple with the TLSV11 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV11 -`func (o *RealtimeMeasurements) SetTLSV11(v int32)` +`func (o *RealtimeMeasurements) SetTLSV11(v int64)` SetTLSV11 sets TLSV11 field to given value. @@ -2522,20 +2522,20 @@ HasTLSV11 returns a boolean if a field has been set. ### GetTLSV12 -`func (o *RealtimeMeasurements) GetTLSV12() int32` +`func (o *RealtimeMeasurements) GetTLSV12() int64` GetTLSV12 returns the TLSV12 field if non-nil, zero value otherwise. ### GetTLSV12Ok -`func (o *RealtimeMeasurements) GetTLSV12Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetTLSV12Ok() (*int64, bool)` GetTLSV12Ok returns a tuple with the TLSV12 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV12 -`func (o *RealtimeMeasurements) SetTLSV12(v int32)` +`func (o *RealtimeMeasurements) SetTLSV12(v int64)` SetTLSV12 sets TLSV12 field to given value. @@ -2547,20 +2547,20 @@ HasTLSV12 returns a boolean if a field has been set. ### GetTLSV13 -`func (o *RealtimeMeasurements) GetTLSV13() int32` +`func (o *RealtimeMeasurements) GetTLSV13() int64` GetTLSV13 returns the TLSV13 field if non-nil, zero value otherwise. ### GetTLSV13Ok -`func (o *RealtimeMeasurements) GetTLSV13Ok() (*int32, bool)` +`func (o *RealtimeMeasurements) GetTLSV13Ok() (*int64, bool)` GetTLSV13Ok returns a tuple with the TLSV13 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV13 -`func (o *RealtimeMeasurements) SetTLSV13(v int32)` +`func (o *RealtimeMeasurements) SetTLSV13(v int64)` SetTLSV13 sets TLSV13 field to given value. @@ -2572,20 +2572,20 @@ HasTLSV13 returns a boolean if a field has been set. ### GetObjectSize1k -`func (o *RealtimeMeasurements) GetObjectSize1k() int32` +`func (o *RealtimeMeasurements) GetObjectSize1k() int64` GetObjectSize1k returns the ObjectSize1k field if non-nil, zero value otherwise. ### GetObjectSize1kOk -`func (o *RealtimeMeasurements) GetObjectSize1kOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectSize1kOk() (*int64, bool)` GetObjectSize1kOk returns a tuple with the ObjectSize1k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1k -`func (o *RealtimeMeasurements) SetObjectSize1k(v int32)` +`func (o *RealtimeMeasurements) SetObjectSize1k(v int64)` SetObjectSize1k sets ObjectSize1k field to given value. @@ -2597,20 +2597,20 @@ HasObjectSize1k returns a boolean if a field has been set. ### GetObjectSize10k -`func (o *RealtimeMeasurements) GetObjectSize10k() int32` +`func (o *RealtimeMeasurements) GetObjectSize10k() int64` GetObjectSize10k returns the ObjectSize10k field if non-nil, zero value otherwise. ### GetObjectSize10kOk -`func (o *RealtimeMeasurements) GetObjectSize10kOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectSize10kOk() (*int64, bool)` GetObjectSize10kOk returns a tuple with the ObjectSize10k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize10k -`func (o *RealtimeMeasurements) SetObjectSize10k(v int32)` +`func (o *RealtimeMeasurements) SetObjectSize10k(v int64)` SetObjectSize10k sets ObjectSize10k field to given value. @@ -2622,20 +2622,20 @@ HasObjectSize10k returns a boolean if a field has been set. ### GetObjectSize100k -`func (o *RealtimeMeasurements) GetObjectSize100k() int32` +`func (o *RealtimeMeasurements) GetObjectSize100k() int64` GetObjectSize100k returns the ObjectSize100k field if non-nil, zero value otherwise. ### GetObjectSize100kOk -`func (o *RealtimeMeasurements) GetObjectSize100kOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectSize100kOk() (*int64, bool)` GetObjectSize100kOk returns a tuple with the ObjectSize100k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize100k -`func (o *RealtimeMeasurements) SetObjectSize100k(v int32)` +`func (o *RealtimeMeasurements) SetObjectSize100k(v int64)` SetObjectSize100k sets ObjectSize100k field to given value. @@ -2647,20 +2647,20 @@ HasObjectSize100k returns a boolean if a field has been set. ### GetObjectSize1m -`func (o *RealtimeMeasurements) GetObjectSize1m() int32` +`func (o *RealtimeMeasurements) GetObjectSize1m() int64` GetObjectSize1m returns the ObjectSize1m field if non-nil, zero value otherwise. ### GetObjectSize1mOk -`func (o *RealtimeMeasurements) GetObjectSize1mOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectSize1mOk() (*int64, bool)` GetObjectSize1mOk returns a tuple with the ObjectSize1m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1m -`func (o *RealtimeMeasurements) SetObjectSize1m(v int32)` +`func (o *RealtimeMeasurements) SetObjectSize1m(v int64)` SetObjectSize1m sets ObjectSize1m field to given value. @@ -2672,20 +2672,20 @@ HasObjectSize1m returns a boolean if a field has been set. ### GetObjectSize10m -`func (o *RealtimeMeasurements) GetObjectSize10m() int32` +`func (o *RealtimeMeasurements) GetObjectSize10m() int64` GetObjectSize10m returns the ObjectSize10m field if non-nil, zero value otherwise. ### GetObjectSize10mOk -`func (o *RealtimeMeasurements) GetObjectSize10mOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectSize10mOk() (*int64, bool)` GetObjectSize10mOk returns a tuple with the ObjectSize10m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize10m -`func (o *RealtimeMeasurements) SetObjectSize10m(v int32)` +`func (o *RealtimeMeasurements) SetObjectSize10m(v int64)` SetObjectSize10m sets ObjectSize10m field to given value. @@ -2697,20 +2697,20 @@ HasObjectSize10m returns a boolean if a field has been set. ### GetObjectSize100m -`func (o *RealtimeMeasurements) GetObjectSize100m() int32` +`func (o *RealtimeMeasurements) GetObjectSize100m() int64` GetObjectSize100m returns the ObjectSize100m field if non-nil, zero value otherwise. ### GetObjectSize100mOk -`func (o *RealtimeMeasurements) GetObjectSize100mOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectSize100mOk() (*int64, bool)` GetObjectSize100mOk returns a tuple with the ObjectSize100m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize100m -`func (o *RealtimeMeasurements) SetObjectSize100m(v int32)` +`func (o *RealtimeMeasurements) SetObjectSize100m(v int64)` SetObjectSize100m sets ObjectSize100m field to given value. @@ -2722,20 +2722,20 @@ HasObjectSize100m returns a boolean if a field has been set. ### GetObjectSize1g -`func (o *RealtimeMeasurements) GetObjectSize1g() int32` +`func (o *RealtimeMeasurements) GetObjectSize1g() int64` GetObjectSize1g returns the ObjectSize1g field if non-nil, zero value otherwise. ### GetObjectSize1gOk -`func (o *RealtimeMeasurements) GetObjectSize1gOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectSize1gOk() (*int64, bool)` GetObjectSize1gOk returns a tuple with the ObjectSize1g field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1g -`func (o *RealtimeMeasurements) SetObjectSize1g(v int32)` +`func (o *RealtimeMeasurements) SetObjectSize1g(v int64)` SetObjectSize1g sets ObjectSize1g field to given value. @@ -2747,20 +2747,20 @@ HasObjectSize1g returns a boolean if a field has been set. ### GetObjectSizeOther -`func (o *RealtimeMeasurements) GetObjectSizeOther() int32` +`func (o *RealtimeMeasurements) GetObjectSizeOther() int64` GetObjectSizeOther returns the ObjectSizeOther field if non-nil, zero value otherwise. ### GetObjectSizeOtherOk -`func (o *RealtimeMeasurements) GetObjectSizeOtherOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectSizeOtherOk() (*int64, bool)` GetObjectSizeOtherOk returns a tuple with the ObjectSizeOther field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSizeOther -`func (o *RealtimeMeasurements) SetObjectSizeOther(v int32)` +`func (o *RealtimeMeasurements) SetObjectSizeOther(v int64)` SetObjectSizeOther sets ObjectSizeOther field to given value. @@ -2797,20 +2797,20 @@ HasRecvSubTime returns a boolean if a field has been set. ### GetRecvSubCount -`func (o *RealtimeMeasurements) GetRecvSubCount() int32` +`func (o *RealtimeMeasurements) GetRecvSubCount() int64` GetRecvSubCount returns the RecvSubCount field if non-nil, zero value otherwise. ### GetRecvSubCountOk -`func (o *RealtimeMeasurements) GetRecvSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetRecvSubCountOk() (*int64, bool)` GetRecvSubCountOk returns a tuple with the RecvSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRecvSubCount -`func (o *RealtimeMeasurements) SetRecvSubCount(v int32)` +`func (o *RealtimeMeasurements) SetRecvSubCount(v int64)` SetRecvSubCount sets RecvSubCount field to given value. @@ -2847,20 +2847,20 @@ HasHashSubTime returns a boolean if a field has been set. ### GetHashSubCount -`func (o *RealtimeMeasurements) GetHashSubCount() int32` +`func (o *RealtimeMeasurements) GetHashSubCount() int64` GetHashSubCount returns the HashSubCount field if non-nil, zero value otherwise. ### GetHashSubCountOk -`func (o *RealtimeMeasurements) GetHashSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetHashSubCountOk() (*int64, bool)` GetHashSubCountOk returns a tuple with the HashSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHashSubCount -`func (o *RealtimeMeasurements) SetHashSubCount(v int32)` +`func (o *RealtimeMeasurements) SetHashSubCount(v int64)` SetHashSubCount sets HashSubCount field to given value. @@ -2897,20 +2897,20 @@ HasMissSubTime returns a boolean if a field has been set. ### GetMissSubCount -`func (o *RealtimeMeasurements) GetMissSubCount() int32` +`func (o *RealtimeMeasurements) GetMissSubCount() int64` GetMissSubCount returns the MissSubCount field if non-nil, zero value otherwise. ### GetMissSubCountOk -`func (o *RealtimeMeasurements) GetMissSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetMissSubCountOk() (*int64, bool)` GetMissSubCountOk returns a tuple with the MissSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMissSubCount -`func (o *RealtimeMeasurements) SetMissSubCount(v int32)` +`func (o *RealtimeMeasurements) SetMissSubCount(v int64)` SetMissSubCount sets MissSubCount field to given value. @@ -2947,20 +2947,20 @@ HasFetchSubTime returns a boolean if a field has been set. ### GetFetchSubCount -`func (o *RealtimeMeasurements) GetFetchSubCount() int32` +`func (o *RealtimeMeasurements) GetFetchSubCount() int64` GetFetchSubCount returns the FetchSubCount field if non-nil, zero value otherwise. ### GetFetchSubCountOk -`func (o *RealtimeMeasurements) GetFetchSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFetchSubCountOk() (*int64, bool)` GetFetchSubCountOk returns a tuple with the FetchSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFetchSubCount -`func (o *RealtimeMeasurements) SetFetchSubCount(v int32)` +`func (o *RealtimeMeasurements) SetFetchSubCount(v int64)` SetFetchSubCount sets FetchSubCount field to given value. @@ -2997,20 +2997,20 @@ HasPassSubTime returns a boolean if a field has been set. ### GetPassSubCount -`func (o *RealtimeMeasurements) GetPassSubCount() int32` +`func (o *RealtimeMeasurements) GetPassSubCount() int64` GetPassSubCount returns the PassSubCount field if non-nil, zero value otherwise. ### GetPassSubCountOk -`func (o *RealtimeMeasurements) GetPassSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetPassSubCountOk() (*int64, bool)` GetPassSubCountOk returns a tuple with the PassSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPassSubCount -`func (o *RealtimeMeasurements) SetPassSubCount(v int32)` +`func (o *RealtimeMeasurements) SetPassSubCount(v int64)` SetPassSubCount sets PassSubCount field to given value. @@ -3047,20 +3047,20 @@ HasPipeSubTime returns a boolean if a field has been set. ### GetPipeSubCount -`func (o *RealtimeMeasurements) GetPipeSubCount() int32` +`func (o *RealtimeMeasurements) GetPipeSubCount() int64` GetPipeSubCount returns the PipeSubCount field if non-nil, zero value otherwise. ### GetPipeSubCountOk -`func (o *RealtimeMeasurements) GetPipeSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetPipeSubCountOk() (*int64, bool)` GetPipeSubCountOk returns a tuple with the PipeSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPipeSubCount -`func (o *RealtimeMeasurements) SetPipeSubCount(v int32)` +`func (o *RealtimeMeasurements) SetPipeSubCount(v int64)` SetPipeSubCount sets PipeSubCount field to given value. @@ -3097,20 +3097,20 @@ HasDeliverSubTime returns a boolean if a field has been set. ### GetDeliverSubCount -`func (o *RealtimeMeasurements) GetDeliverSubCount() int32` +`func (o *RealtimeMeasurements) GetDeliverSubCount() int64` GetDeliverSubCount returns the DeliverSubCount field if non-nil, zero value otherwise. ### GetDeliverSubCountOk -`func (o *RealtimeMeasurements) GetDeliverSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDeliverSubCountOk() (*int64, bool)` GetDeliverSubCountOk returns a tuple with the DeliverSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDeliverSubCount -`func (o *RealtimeMeasurements) SetDeliverSubCount(v int32)` +`func (o *RealtimeMeasurements) SetDeliverSubCount(v int64)` SetDeliverSubCount sets DeliverSubCount field to given value. @@ -3147,20 +3147,20 @@ HasErrorSubTime returns a boolean if a field has been set. ### GetErrorSubCount -`func (o *RealtimeMeasurements) GetErrorSubCount() int32` +`func (o *RealtimeMeasurements) GetErrorSubCount() int64` GetErrorSubCount returns the ErrorSubCount field if non-nil, zero value otherwise. ### GetErrorSubCountOk -`func (o *RealtimeMeasurements) GetErrorSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetErrorSubCountOk() (*int64, bool)` GetErrorSubCountOk returns a tuple with the ErrorSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetErrorSubCount -`func (o *RealtimeMeasurements) SetErrorSubCount(v int32)` +`func (o *RealtimeMeasurements) SetErrorSubCount(v int64)` SetErrorSubCount sets ErrorSubCount field to given value. @@ -3197,20 +3197,20 @@ HasHitSubTime returns a boolean if a field has been set. ### GetHitSubCount -`func (o *RealtimeMeasurements) GetHitSubCount() int32` +`func (o *RealtimeMeasurements) GetHitSubCount() int64` GetHitSubCount returns the HitSubCount field if non-nil, zero value otherwise. ### GetHitSubCountOk -`func (o *RealtimeMeasurements) GetHitSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetHitSubCountOk() (*int64, bool)` GetHitSubCountOk returns a tuple with the HitSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHitSubCount -`func (o *RealtimeMeasurements) SetHitSubCount(v int32)` +`func (o *RealtimeMeasurements) SetHitSubCount(v int64)` SetHitSubCount sets HitSubCount field to given value. @@ -3247,20 +3247,20 @@ HasPrehashSubTime returns a boolean if a field has been set. ### GetPrehashSubCount -`func (o *RealtimeMeasurements) GetPrehashSubCount() int32` +`func (o *RealtimeMeasurements) GetPrehashSubCount() int64` GetPrehashSubCount returns the PrehashSubCount field if non-nil, zero value otherwise. ### GetPrehashSubCountOk -`func (o *RealtimeMeasurements) GetPrehashSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetPrehashSubCountOk() (*int64, bool)` GetPrehashSubCountOk returns a tuple with the PrehashSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPrehashSubCount -`func (o *RealtimeMeasurements) SetPrehashSubCount(v int32)` +`func (o *RealtimeMeasurements) SetPrehashSubCount(v int64)` SetPrehashSubCount sets PrehashSubCount field to given value. @@ -3297,20 +3297,20 @@ HasPredeliverSubTime returns a boolean if a field has been set. ### GetPredeliverSubCount -`func (o *RealtimeMeasurements) GetPredeliverSubCount() int32` +`func (o *RealtimeMeasurements) GetPredeliverSubCount() int64` GetPredeliverSubCount returns the PredeliverSubCount field if non-nil, zero value otherwise. ### GetPredeliverSubCountOk -`func (o *RealtimeMeasurements) GetPredeliverSubCountOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetPredeliverSubCountOk() (*int64, bool)` GetPredeliverSubCountOk returns a tuple with the PredeliverSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPredeliverSubCount -`func (o *RealtimeMeasurements) SetPredeliverSubCount(v int32)` +`func (o *RealtimeMeasurements) SetPredeliverSubCount(v int64)` SetPredeliverSubCount sets PredeliverSubCount field to given value. @@ -3322,20 +3322,20 @@ HasPredeliverSubCount returns a boolean if a field has been set. ### GetHitRespBodyBytes -`func (o *RealtimeMeasurements) GetHitRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetHitRespBodyBytes() int64` GetHitRespBodyBytes returns the HitRespBodyBytes field if non-nil, zero value otherwise. ### GetHitRespBodyBytesOk -`func (o *RealtimeMeasurements) GetHitRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetHitRespBodyBytesOk() (*int64, bool)` GetHitRespBodyBytesOk returns a tuple with the HitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHitRespBodyBytes -`func (o *RealtimeMeasurements) SetHitRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetHitRespBodyBytes(v int64)` SetHitRespBodyBytes sets HitRespBodyBytes field to given value. @@ -3347,20 +3347,20 @@ HasHitRespBodyBytes returns a boolean if a field has been set. ### GetMissRespBodyBytes -`func (o *RealtimeMeasurements) GetMissRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetMissRespBodyBytes() int64` GetMissRespBodyBytes returns the MissRespBodyBytes field if non-nil, zero value otherwise. ### GetMissRespBodyBytesOk -`func (o *RealtimeMeasurements) GetMissRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetMissRespBodyBytesOk() (*int64, bool)` GetMissRespBodyBytesOk returns a tuple with the MissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMissRespBodyBytes -`func (o *RealtimeMeasurements) SetMissRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetMissRespBodyBytes(v int64)` SetMissRespBodyBytes sets MissRespBodyBytes field to given value. @@ -3372,20 +3372,20 @@ HasMissRespBodyBytes returns a boolean if a field has been set. ### GetPassRespBodyBytes -`func (o *RealtimeMeasurements) GetPassRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetPassRespBodyBytes() int64` GetPassRespBodyBytes returns the PassRespBodyBytes field if non-nil, zero value otherwise. ### GetPassRespBodyBytesOk -`func (o *RealtimeMeasurements) GetPassRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetPassRespBodyBytesOk() (*int64, bool)` GetPassRespBodyBytesOk returns a tuple with the PassRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPassRespBodyBytes -`func (o *RealtimeMeasurements) SetPassRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetPassRespBodyBytes(v int64)` SetPassRespBodyBytes sets PassRespBodyBytes field to given value. @@ -3397,20 +3397,20 @@ HasPassRespBodyBytes returns a boolean if a field has been set. ### GetComputeReqHeaderBytes -`func (o *RealtimeMeasurements) GetComputeReqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetComputeReqHeaderBytes() int64` GetComputeReqHeaderBytes returns the ComputeReqHeaderBytes field if non-nil, zero value otherwise. ### GetComputeReqHeaderBytesOk -`func (o *RealtimeMeasurements) GetComputeReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeReqHeaderBytesOk() (*int64, bool)` GetComputeReqHeaderBytesOk returns a tuple with the ComputeReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeReqHeaderBytes -`func (o *RealtimeMeasurements) SetComputeReqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetComputeReqHeaderBytes(v int64)` SetComputeReqHeaderBytes sets ComputeReqHeaderBytes field to given value. @@ -3422,20 +3422,20 @@ HasComputeReqHeaderBytes returns a boolean if a field has been set. ### GetComputeReqBodyBytes -`func (o *RealtimeMeasurements) GetComputeReqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetComputeReqBodyBytes() int64` GetComputeReqBodyBytes returns the ComputeReqBodyBytes field if non-nil, zero value otherwise. ### GetComputeReqBodyBytesOk -`func (o *RealtimeMeasurements) GetComputeReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeReqBodyBytesOk() (*int64, bool)` GetComputeReqBodyBytesOk returns a tuple with the ComputeReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeReqBodyBytes -`func (o *RealtimeMeasurements) SetComputeReqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetComputeReqBodyBytes(v int64)` SetComputeReqBodyBytes sets ComputeReqBodyBytes field to given value. @@ -3447,20 +3447,20 @@ HasComputeReqBodyBytes returns a boolean if a field has been set. ### GetComputeRespHeaderBytes -`func (o *RealtimeMeasurements) GetComputeRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetComputeRespHeaderBytes() int64` GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field if non-nil, zero value otherwise. ### GetComputeRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetComputeRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRespHeaderBytesOk() (*int64, bool)` GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespHeaderBytes -`func (o *RealtimeMeasurements) SetComputeRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetComputeRespHeaderBytes(v int64)` SetComputeRespHeaderBytes sets ComputeRespHeaderBytes field to given value. @@ -3472,20 +3472,20 @@ HasComputeRespHeaderBytes returns a boolean if a field has been set. ### GetComputeRespBodyBytes -`func (o *RealtimeMeasurements) GetComputeRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetComputeRespBodyBytes() int64` GetComputeRespBodyBytes returns the ComputeRespBodyBytes field if non-nil, zero value otherwise. ### GetComputeRespBodyBytesOk -`func (o *RealtimeMeasurements) GetComputeRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRespBodyBytesOk() (*int64, bool)` GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespBodyBytes -`func (o *RealtimeMeasurements) SetComputeRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetComputeRespBodyBytes(v int64)` SetComputeRespBodyBytes sets ComputeRespBodyBytes field to given value. @@ -3497,20 +3497,20 @@ HasComputeRespBodyBytes returns a boolean if a field has been set. ### GetImgvideo -`func (o *RealtimeMeasurements) GetImgvideo() int32` +`func (o *RealtimeMeasurements) GetImgvideo() int64` GetImgvideo returns the Imgvideo field if non-nil, zero value otherwise. ### GetImgvideoOk -`func (o *RealtimeMeasurements) GetImgvideoOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgvideoOk() (*int64, bool)` GetImgvideoOk returns a tuple with the Imgvideo field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideo -`func (o *RealtimeMeasurements) SetImgvideo(v int32)` +`func (o *RealtimeMeasurements) SetImgvideo(v int64)` SetImgvideo sets Imgvideo field to given value. @@ -3522,20 +3522,20 @@ HasImgvideo returns a boolean if a field has been set. ### GetImgvideoFrames -`func (o *RealtimeMeasurements) GetImgvideoFrames() int32` +`func (o *RealtimeMeasurements) GetImgvideoFrames() int64` GetImgvideoFrames returns the ImgvideoFrames field if non-nil, zero value otherwise. ### GetImgvideoFramesOk -`func (o *RealtimeMeasurements) GetImgvideoFramesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgvideoFramesOk() (*int64, bool)` GetImgvideoFramesOk returns a tuple with the ImgvideoFrames field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoFrames -`func (o *RealtimeMeasurements) SetImgvideoFrames(v int32)` +`func (o *RealtimeMeasurements) SetImgvideoFrames(v int64)` SetImgvideoFrames sets ImgvideoFrames field to given value. @@ -3547,20 +3547,20 @@ HasImgvideoFrames returns a boolean if a field has been set. ### GetImgvideoRespHeaderBytes -`func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytes() int64` GetImgvideoRespHeaderBytes returns the ImgvideoRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgvideoRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytesOk() (*int64, bool)` GetImgvideoRespHeaderBytesOk returns a tuple with the ImgvideoRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoRespHeaderBytes -`func (o *RealtimeMeasurements) SetImgvideoRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetImgvideoRespHeaderBytes(v int64)` SetImgvideoRespHeaderBytes sets ImgvideoRespHeaderBytes field to given value. @@ -3572,20 +3572,20 @@ HasImgvideoRespHeaderBytes returns a boolean if a field has been set. ### GetImgvideoRespBodyBytes -`func (o *RealtimeMeasurements) GetImgvideoRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetImgvideoRespBodyBytes() int64` GetImgvideoRespBodyBytes returns the ImgvideoRespBodyBytes field if non-nil, zero value otherwise. ### GetImgvideoRespBodyBytesOk -`func (o *RealtimeMeasurements) GetImgvideoRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgvideoRespBodyBytesOk() (*int64, bool)` GetImgvideoRespBodyBytesOk returns a tuple with the ImgvideoRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoRespBodyBytes -`func (o *RealtimeMeasurements) SetImgvideoRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetImgvideoRespBodyBytes(v int64)` SetImgvideoRespBodyBytes sets ImgvideoRespBodyBytes field to given value. @@ -3597,20 +3597,20 @@ HasImgvideoRespBodyBytes returns a boolean if a field has been set. ### GetImgvideoShield -`func (o *RealtimeMeasurements) GetImgvideoShield() int32` +`func (o *RealtimeMeasurements) GetImgvideoShield() int64` GetImgvideoShield returns the ImgvideoShield field if non-nil, zero value otherwise. ### GetImgvideoShieldOk -`func (o *RealtimeMeasurements) GetImgvideoShieldOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgvideoShieldOk() (*int64, bool)` GetImgvideoShieldOk returns a tuple with the ImgvideoShield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShield -`func (o *RealtimeMeasurements) SetImgvideoShield(v int32)` +`func (o *RealtimeMeasurements) SetImgvideoShield(v int64)` SetImgvideoShield sets ImgvideoShield field to given value. @@ -3622,20 +3622,20 @@ HasImgvideoShield returns a boolean if a field has been set. ### GetImgvideoShieldFrames -`func (o *RealtimeMeasurements) GetImgvideoShieldFrames() int32` +`func (o *RealtimeMeasurements) GetImgvideoShieldFrames() int64` GetImgvideoShieldFrames returns the ImgvideoShieldFrames field if non-nil, zero value otherwise. ### GetImgvideoShieldFramesOk -`func (o *RealtimeMeasurements) GetImgvideoShieldFramesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgvideoShieldFramesOk() (*int64, bool)` GetImgvideoShieldFramesOk returns a tuple with the ImgvideoShieldFrames field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldFrames -`func (o *RealtimeMeasurements) SetImgvideoShieldFrames(v int32)` +`func (o *RealtimeMeasurements) SetImgvideoShieldFrames(v int64)` SetImgvideoShieldFrames sets ImgvideoShieldFrames field to given value. @@ -3647,20 +3647,20 @@ HasImgvideoShieldFrames returns a boolean if a field has been set. ### GetImgvideoShieldRespHeaderBytes -`func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytes() int64` GetImgvideoShieldRespHeaderBytes returns the ImgvideoShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgvideoShieldRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytesOk() (*int64, bool)` GetImgvideoShieldRespHeaderBytesOk returns a tuple with the ImgvideoShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldRespHeaderBytes -`func (o *RealtimeMeasurements) SetImgvideoShieldRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetImgvideoShieldRespHeaderBytes(v int64)` SetImgvideoShieldRespHeaderBytes sets ImgvideoShieldRespHeaderBytes field to given value. @@ -3672,20 +3672,20 @@ HasImgvideoShieldRespHeaderBytes returns a boolean if a field has been set. ### GetImgvideoShieldRespBodyBytes -`func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytes() int64` GetImgvideoShieldRespBodyBytes returns the ImgvideoShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetImgvideoShieldRespBodyBytesOk -`func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytesOk() (*int64, bool)` GetImgvideoShieldRespBodyBytesOk returns a tuple with the ImgvideoShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldRespBodyBytes -`func (o *RealtimeMeasurements) SetImgvideoShieldRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetImgvideoShieldRespBodyBytes(v int64)` SetImgvideoShieldRespBodyBytes sets ImgvideoShieldRespBodyBytes field to given value. @@ -3697,20 +3697,20 @@ HasImgvideoShieldRespBodyBytes returns a boolean if a field has been set. ### GetLogBytes -`func (o *RealtimeMeasurements) GetLogBytes() int32` +`func (o *RealtimeMeasurements) GetLogBytes() int64` GetLogBytes returns the LogBytes field if non-nil, zero value otherwise. ### GetLogBytesOk -`func (o *RealtimeMeasurements) GetLogBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetLogBytesOk() (*int64, bool)` GetLogBytesOk returns a tuple with the LogBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLogBytes -`func (o *RealtimeMeasurements) SetLogBytes(v int32)` +`func (o *RealtimeMeasurements) SetLogBytes(v int64)` SetLogBytes sets LogBytes field to given value. @@ -3722,20 +3722,20 @@ HasLogBytes returns a boolean if a field has been set. ### GetEdgeRequests -`func (o *RealtimeMeasurements) GetEdgeRequests() int32` +`func (o *RealtimeMeasurements) GetEdgeRequests() int64` GetEdgeRequests returns the EdgeRequests field if non-nil, zero value otherwise. ### GetEdgeRequestsOk -`func (o *RealtimeMeasurements) GetEdgeRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeRequestsOk() (*int64, bool)` GetEdgeRequestsOk returns a tuple with the EdgeRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRequests -`func (o *RealtimeMeasurements) SetEdgeRequests(v int32)` +`func (o *RealtimeMeasurements) SetEdgeRequests(v int64)` SetEdgeRequests sets EdgeRequests field to given value. @@ -3747,20 +3747,20 @@ HasEdgeRequests returns a boolean if a field has been set. ### GetEdgeRespHeaderBytes -`func (o *RealtimeMeasurements) GetEdgeRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetEdgeRespHeaderBytes() int64` GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetEdgeRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeRespHeaderBytesOk() (*int64, bool)` GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespHeaderBytes -`func (o *RealtimeMeasurements) SetEdgeRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetEdgeRespHeaderBytes(v int64)` SetEdgeRespHeaderBytes sets EdgeRespHeaderBytes field to given value. @@ -3772,20 +3772,20 @@ HasEdgeRespHeaderBytes returns a boolean if a field has been set. ### GetEdgeRespBodyBytes -`func (o *RealtimeMeasurements) GetEdgeRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetEdgeRespBodyBytes() int64` GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeRespBodyBytesOk -`func (o *RealtimeMeasurements) GetEdgeRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeRespBodyBytesOk() (*int64, bool)` GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespBodyBytes -`func (o *RealtimeMeasurements) SetEdgeRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetEdgeRespBodyBytes(v int64)` SetEdgeRespBodyBytes sets EdgeRespBodyBytes field to given value. @@ -3797,20 +3797,20 @@ HasEdgeRespBodyBytes returns a boolean if a field has been set. ### GetOriginRevalidations -`func (o *RealtimeMeasurements) GetOriginRevalidations() int32` +`func (o *RealtimeMeasurements) GetOriginRevalidations() int64` GetOriginRevalidations returns the OriginRevalidations field if non-nil, zero value otherwise. ### GetOriginRevalidationsOk -`func (o *RealtimeMeasurements) GetOriginRevalidationsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginRevalidationsOk() (*int64, bool)` GetOriginRevalidationsOk returns a tuple with the OriginRevalidations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginRevalidations -`func (o *RealtimeMeasurements) SetOriginRevalidations(v int32)` +`func (o *RealtimeMeasurements) SetOriginRevalidations(v int64)` SetOriginRevalidations sets OriginRevalidations field to given value. @@ -3822,20 +3822,20 @@ HasOriginRevalidations returns a boolean if a field has been set. ### GetOriginFetches -`func (o *RealtimeMeasurements) GetOriginFetches() int32` +`func (o *RealtimeMeasurements) GetOriginFetches() int64` GetOriginFetches returns the OriginFetches field if non-nil, zero value otherwise. ### GetOriginFetchesOk -`func (o *RealtimeMeasurements) GetOriginFetchesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginFetchesOk() (*int64, bool)` GetOriginFetchesOk returns a tuple with the OriginFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetches -`func (o *RealtimeMeasurements) SetOriginFetches(v int32)` +`func (o *RealtimeMeasurements) SetOriginFetches(v int64)` SetOriginFetches sets OriginFetches field to given value. @@ -3847,20 +3847,20 @@ HasOriginFetches returns a boolean if a field has been set. ### GetOriginFetchHeaderBytes -`func (o *RealtimeMeasurements) GetOriginFetchHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetOriginFetchHeaderBytes() int64` GetOriginFetchHeaderBytes returns the OriginFetchHeaderBytes field if non-nil, zero value otherwise. ### GetOriginFetchHeaderBytesOk -`func (o *RealtimeMeasurements) GetOriginFetchHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginFetchHeaderBytesOk() (*int64, bool)` GetOriginFetchHeaderBytesOk returns a tuple with the OriginFetchHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchHeaderBytes -`func (o *RealtimeMeasurements) SetOriginFetchHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetOriginFetchHeaderBytes(v int64)` SetOriginFetchHeaderBytes sets OriginFetchHeaderBytes field to given value. @@ -3872,20 +3872,20 @@ HasOriginFetchHeaderBytes returns a boolean if a field has been set. ### GetOriginFetchBodyBytes -`func (o *RealtimeMeasurements) GetOriginFetchBodyBytes() int32` +`func (o *RealtimeMeasurements) GetOriginFetchBodyBytes() int64` GetOriginFetchBodyBytes returns the OriginFetchBodyBytes field if non-nil, zero value otherwise. ### GetOriginFetchBodyBytesOk -`func (o *RealtimeMeasurements) GetOriginFetchBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginFetchBodyBytesOk() (*int64, bool)` GetOriginFetchBodyBytesOk returns a tuple with the OriginFetchBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchBodyBytes -`func (o *RealtimeMeasurements) SetOriginFetchBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetOriginFetchBodyBytes(v int64)` SetOriginFetchBodyBytes sets OriginFetchBodyBytes field to given value. @@ -3897,20 +3897,20 @@ HasOriginFetchBodyBytes returns a boolean if a field has been set. ### GetOriginFetchRespHeaderBytes -`func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytes() int64` GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytesOk() (*int64, bool)` GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespHeaderBytes -`func (o *RealtimeMeasurements) SetOriginFetchRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetOriginFetchRespHeaderBytes(v int64)` SetOriginFetchRespHeaderBytes sets OriginFetchRespHeaderBytes field to given value. @@ -3922,20 +3922,20 @@ HasOriginFetchRespHeaderBytes returns a boolean if a field has been set. ### GetOriginFetchRespBodyBytes -`func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytes() int64` GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespBodyBytesOk -`func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytesOk() (*int64, bool)` GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespBodyBytes -`func (o *RealtimeMeasurements) SetOriginFetchRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetOriginFetchRespBodyBytes(v int64)` SetOriginFetchRespBodyBytes sets OriginFetchRespBodyBytes field to given value. @@ -3947,20 +3947,20 @@ HasOriginFetchRespBodyBytes returns a boolean if a field has been set. ### GetShieldRevalidations -`func (o *RealtimeMeasurements) GetShieldRevalidations() int32` +`func (o *RealtimeMeasurements) GetShieldRevalidations() int64` GetShieldRevalidations returns the ShieldRevalidations field if non-nil, zero value otherwise. ### GetShieldRevalidationsOk -`func (o *RealtimeMeasurements) GetShieldRevalidationsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldRevalidationsOk() (*int64, bool)` GetShieldRevalidationsOk returns a tuple with the ShieldRevalidations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRevalidations -`func (o *RealtimeMeasurements) SetShieldRevalidations(v int32)` +`func (o *RealtimeMeasurements) SetShieldRevalidations(v int64)` SetShieldRevalidations sets ShieldRevalidations field to given value. @@ -3972,20 +3972,20 @@ HasShieldRevalidations returns a boolean if a field has been set. ### GetShieldFetches -`func (o *RealtimeMeasurements) GetShieldFetches() int32` +`func (o *RealtimeMeasurements) GetShieldFetches() int64` GetShieldFetches returns the ShieldFetches field if non-nil, zero value otherwise. ### GetShieldFetchesOk -`func (o *RealtimeMeasurements) GetShieldFetchesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldFetchesOk() (*int64, bool)` GetShieldFetchesOk returns a tuple with the ShieldFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetches -`func (o *RealtimeMeasurements) SetShieldFetches(v int32)` +`func (o *RealtimeMeasurements) SetShieldFetches(v int64)` SetShieldFetches sets ShieldFetches field to given value. @@ -3997,20 +3997,20 @@ HasShieldFetches returns a boolean if a field has been set. ### GetShieldFetchHeaderBytes -`func (o *RealtimeMeasurements) GetShieldFetchHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetShieldFetchHeaderBytes() int64` GetShieldFetchHeaderBytes returns the ShieldFetchHeaderBytes field if non-nil, zero value otherwise. ### GetShieldFetchHeaderBytesOk -`func (o *RealtimeMeasurements) GetShieldFetchHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldFetchHeaderBytesOk() (*int64, bool)` GetShieldFetchHeaderBytesOk returns a tuple with the ShieldFetchHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchHeaderBytes -`func (o *RealtimeMeasurements) SetShieldFetchHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldFetchHeaderBytes(v int64)` SetShieldFetchHeaderBytes sets ShieldFetchHeaderBytes field to given value. @@ -4022,20 +4022,20 @@ HasShieldFetchHeaderBytes returns a boolean if a field has been set. ### GetShieldFetchBodyBytes -`func (o *RealtimeMeasurements) GetShieldFetchBodyBytes() int32` +`func (o *RealtimeMeasurements) GetShieldFetchBodyBytes() int64` GetShieldFetchBodyBytes returns the ShieldFetchBodyBytes field if non-nil, zero value otherwise. ### GetShieldFetchBodyBytesOk -`func (o *RealtimeMeasurements) GetShieldFetchBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldFetchBodyBytesOk() (*int64, bool)` GetShieldFetchBodyBytesOk returns a tuple with the ShieldFetchBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchBodyBytes -`func (o *RealtimeMeasurements) SetShieldFetchBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldFetchBodyBytes(v int64)` SetShieldFetchBodyBytes sets ShieldFetchBodyBytes field to given value. @@ -4047,20 +4047,20 @@ HasShieldFetchBodyBytes returns a boolean if a field has been set. ### GetShieldFetchRespHeaderBytes -`func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytes() int64` GetShieldFetchRespHeaderBytes returns the ShieldFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldFetchRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytesOk() (*int64, bool)` GetShieldFetchRespHeaderBytesOk returns a tuple with the ShieldFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchRespHeaderBytes -`func (o *RealtimeMeasurements) SetShieldFetchRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldFetchRespHeaderBytes(v int64)` SetShieldFetchRespHeaderBytes sets ShieldFetchRespHeaderBytes field to given value. @@ -4072,20 +4072,20 @@ HasShieldFetchRespHeaderBytes returns a boolean if a field has been set. ### GetShieldFetchRespBodyBytes -`func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytes() int64` GetShieldFetchRespBodyBytes returns the ShieldFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldFetchRespBodyBytesOk -`func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytesOk() (*int64, bool)` GetShieldFetchRespBodyBytesOk returns a tuple with the ShieldFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchRespBodyBytes -`func (o *RealtimeMeasurements) SetShieldFetchRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldFetchRespBodyBytes(v int64)` SetShieldFetchRespBodyBytes sets ShieldFetchRespBodyBytes field to given value. @@ -4097,20 +4097,20 @@ HasShieldFetchRespBodyBytes returns a boolean if a field has been set. ### GetSegblockOriginFetches -`func (o *RealtimeMeasurements) GetSegblockOriginFetches() int32` +`func (o *RealtimeMeasurements) GetSegblockOriginFetches() int64` GetSegblockOriginFetches returns the SegblockOriginFetches field if non-nil, zero value otherwise. ### GetSegblockOriginFetchesOk -`func (o *RealtimeMeasurements) GetSegblockOriginFetchesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetSegblockOriginFetchesOk() (*int64, bool)` GetSegblockOriginFetchesOk returns a tuple with the SegblockOriginFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSegblockOriginFetches -`func (o *RealtimeMeasurements) SetSegblockOriginFetches(v int32)` +`func (o *RealtimeMeasurements) SetSegblockOriginFetches(v int64)` SetSegblockOriginFetches sets SegblockOriginFetches field to given value. @@ -4122,20 +4122,20 @@ HasSegblockOriginFetches returns a boolean if a field has been set. ### GetSegblockShieldFetches -`func (o *RealtimeMeasurements) GetSegblockShieldFetches() int32` +`func (o *RealtimeMeasurements) GetSegblockShieldFetches() int64` GetSegblockShieldFetches returns the SegblockShieldFetches field if non-nil, zero value otherwise. ### GetSegblockShieldFetchesOk -`func (o *RealtimeMeasurements) GetSegblockShieldFetchesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetSegblockShieldFetchesOk() (*int64, bool)` GetSegblockShieldFetchesOk returns a tuple with the SegblockShieldFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSegblockShieldFetches -`func (o *RealtimeMeasurements) SetSegblockShieldFetches(v int32)` +`func (o *RealtimeMeasurements) SetSegblockShieldFetches(v int64)` SetSegblockShieldFetches sets SegblockShieldFetches field to given value. @@ -4147,20 +4147,20 @@ HasSegblockShieldFetches returns a boolean if a field has been set. ### GetComputeRespStatus1xx -`func (o *RealtimeMeasurements) GetComputeRespStatus1xx() int32` +`func (o *RealtimeMeasurements) GetComputeRespStatus1xx() int64` GetComputeRespStatus1xx returns the ComputeRespStatus1xx field if non-nil, zero value otherwise. ### GetComputeRespStatus1xxOk -`func (o *RealtimeMeasurements) GetComputeRespStatus1xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRespStatus1xxOk() (*int64, bool)` GetComputeRespStatus1xxOk returns a tuple with the ComputeRespStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus1xx -`func (o *RealtimeMeasurements) SetComputeRespStatus1xx(v int32)` +`func (o *RealtimeMeasurements) SetComputeRespStatus1xx(v int64)` SetComputeRespStatus1xx sets ComputeRespStatus1xx field to given value. @@ -4172,20 +4172,20 @@ HasComputeRespStatus1xx returns a boolean if a field has been set. ### GetComputeRespStatus2xx -`func (o *RealtimeMeasurements) GetComputeRespStatus2xx() int32` +`func (o *RealtimeMeasurements) GetComputeRespStatus2xx() int64` GetComputeRespStatus2xx returns the ComputeRespStatus2xx field if non-nil, zero value otherwise. ### GetComputeRespStatus2xxOk -`func (o *RealtimeMeasurements) GetComputeRespStatus2xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRespStatus2xxOk() (*int64, bool)` GetComputeRespStatus2xxOk returns a tuple with the ComputeRespStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus2xx -`func (o *RealtimeMeasurements) SetComputeRespStatus2xx(v int32)` +`func (o *RealtimeMeasurements) SetComputeRespStatus2xx(v int64)` SetComputeRespStatus2xx sets ComputeRespStatus2xx field to given value. @@ -4197,20 +4197,20 @@ HasComputeRespStatus2xx returns a boolean if a field has been set. ### GetComputeRespStatus3xx -`func (o *RealtimeMeasurements) GetComputeRespStatus3xx() int32` +`func (o *RealtimeMeasurements) GetComputeRespStatus3xx() int64` GetComputeRespStatus3xx returns the ComputeRespStatus3xx field if non-nil, zero value otherwise. ### GetComputeRespStatus3xxOk -`func (o *RealtimeMeasurements) GetComputeRespStatus3xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRespStatus3xxOk() (*int64, bool)` GetComputeRespStatus3xxOk returns a tuple with the ComputeRespStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus3xx -`func (o *RealtimeMeasurements) SetComputeRespStatus3xx(v int32)` +`func (o *RealtimeMeasurements) SetComputeRespStatus3xx(v int64)` SetComputeRespStatus3xx sets ComputeRespStatus3xx field to given value. @@ -4222,20 +4222,20 @@ HasComputeRespStatus3xx returns a boolean if a field has been set. ### GetComputeRespStatus4xx -`func (o *RealtimeMeasurements) GetComputeRespStatus4xx() int32` +`func (o *RealtimeMeasurements) GetComputeRespStatus4xx() int64` GetComputeRespStatus4xx returns the ComputeRespStatus4xx field if non-nil, zero value otherwise. ### GetComputeRespStatus4xxOk -`func (o *RealtimeMeasurements) GetComputeRespStatus4xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRespStatus4xxOk() (*int64, bool)` GetComputeRespStatus4xxOk returns a tuple with the ComputeRespStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus4xx -`func (o *RealtimeMeasurements) SetComputeRespStatus4xx(v int32)` +`func (o *RealtimeMeasurements) SetComputeRespStatus4xx(v int64)` SetComputeRespStatus4xx sets ComputeRespStatus4xx field to given value. @@ -4247,20 +4247,20 @@ HasComputeRespStatus4xx returns a boolean if a field has been set. ### GetComputeRespStatus5xx -`func (o *RealtimeMeasurements) GetComputeRespStatus5xx() int32` +`func (o *RealtimeMeasurements) GetComputeRespStatus5xx() int64` GetComputeRespStatus5xx returns the ComputeRespStatus5xx field if non-nil, zero value otherwise. ### GetComputeRespStatus5xxOk -`func (o *RealtimeMeasurements) GetComputeRespStatus5xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRespStatus5xxOk() (*int64, bool)` GetComputeRespStatus5xxOk returns a tuple with the ComputeRespStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus5xx -`func (o *RealtimeMeasurements) SetComputeRespStatus5xx(v int32)` +`func (o *RealtimeMeasurements) SetComputeRespStatus5xx(v int64)` SetComputeRespStatus5xx sets ComputeRespStatus5xx field to given value. @@ -4272,20 +4272,20 @@ HasComputeRespStatus5xx returns a boolean if a field has been set. ### GetEdgeHitRequests -`func (o *RealtimeMeasurements) GetEdgeHitRequests() int32` +`func (o *RealtimeMeasurements) GetEdgeHitRequests() int64` GetEdgeHitRequests returns the EdgeHitRequests field if non-nil, zero value otherwise. ### GetEdgeHitRequestsOk -`func (o *RealtimeMeasurements) GetEdgeHitRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeHitRequestsOk() (*int64, bool)` GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRequests -`func (o *RealtimeMeasurements) SetEdgeHitRequests(v int32)` +`func (o *RealtimeMeasurements) SetEdgeHitRequests(v int64)` SetEdgeHitRequests sets EdgeHitRequests field to given value. @@ -4297,20 +4297,20 @@ HasEdgeHitRequests returns a boolean if a field has been set. ### GetEdgeMissRequests -`func (o *RealtimeMeasurements) GetEdgeMissRequests() int32` +`func (o *RealtimeMeasurements) GetEdgeMissRequests() int64` GetEdgeMissRequests returns the EdgeMissRequests field if non-nil, zero value otherwise. ### GetEdgeMissRequestsOk -`func (o *RealtimeMeasurements) GetEdgeMissRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeMissRequestsOk() (*int64, bool)` GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRequests -`func (o *RealtimeMeasurements) SetEdgeMissRequests(v int32)` +`func (o *RealtimeMeasurements) SetEdgeMissRequests(v int64)` SetEdgeMissRequests sets EdgeMissRequests field to given value. @@ -4322,20 +4322,20 @@ HasEdgeMissRequests returns a boolean if a field has been set. ### GetComputeBereqHeaderBytes -`func (o *RealtimeMeasurements) GetComputeBereqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetComputeBereqHeaderBytes() int64` GetComputeBereqHeaderBytes returns the ComputeBereqHeaderBytes field if non-nil, zero value otherwise. ### GetComputeBereqHeaderBytesOk -`func (o *RealtimeMeasurements) GetComputeBereqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeBereqHeaderBytesOk() (*int64, bool)` GetComputeBereqHeaderBytesOk returns a tuple with the ComputeBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqHeaderBytes -`func (o *RealtimeMeasurements) SetComputeBereqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetComputeBereqHeaderBytes(v int64)` SetComputeBereqHeaderBytes sets ComputeBereqHeaderBytes field to given value. @@ -4347,20 +4347,20 @@ HasComputeBereqHeaderBytes returns a boolean if a field has been set. ### GetComputeBereqBodyBytes -`func (o *RealtimeMeasurements) GetComputeBereqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetComputeBereqBodyBytes() int64` GetComputeBereqBodyBytes returns the ComputeBereqBodyBytes field if non-nil, zero value otherwise. ### GetComputeBereqBodyBytesOk -`func (o *RealtimeMeasurements) GetComputeBereqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeBereqBodyBytesOk() (*int64, bool)` GetComputeBereqBodyBytesOk returns a tuple with the ComputeBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqBodyBytes -`func (o *RealtimeMeasurements) SetComputeBereqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetComputeBereqBodyBytes(v int64)` SetComputeBereqBodyBytes sets ComputeBereqBodyBytes field to given value. @@ -4372,20 +4372,20 @@ HasComputeBereqBodyBytes returns a boolean if a field has been set. ### GetComputeBerespHeaderBytes -`func (o *RealtimeMeasurements) GetComputeBerespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetComputeBerespHeaderBytes() int64` GetComputeBerespHeaderBytes returns the ComputeBerespHeaderBytes field if non-nil, zero value otherwise. ### GetComputeBerespHeaderBytesOk -`func (o *RealtimeMeasurements) GetComputeBerespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeBerespHeaderBytesOk() (*int64, bool)` GetComputeBerespHeaderBytesOk returns a tuple with the ComputeBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBerespHeaderBytes -`func (o *RealtimeMeasurements) SetComputeBerespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetComputeBerespHeaderBytes(v int64)` SetComputeBerespHeaderBytes sets ComputeBerespHeaderBytes field to given value. @@ -4397,20 +4397,20 @@ HasComputeBerespHeaderBytes returns a boolean if a field has been set. ### GetComputeBerespBodyBytes -`func (o *RealtimeMeasurements) GetComputeBerespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetComputeBerespBodyBytes() int64` GetComputeBerespBodyBytes returns the ComputeBerespBodyBytes field if non-nil, zero value otherwise. ### GetComputeBerespBodyBytesOk -`func (o *RealtimeMeasurements) GetComputeBerespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeBerespBodyBytesOk() (*int64, bool)` GetComputeBerespBodyBytesOk returns a tuple with the ComputeBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBerespBodyBytes -`func (o *RealtimeMeasurements) SetComputeBerespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetComputeBerespBodyBytes(v int64)` SetComputeBerespBodyBytes sets ComputeBerespBodyBytes field to given value. @@ -4422,20 +4422,20 @@ HasComputeBerespBodyBytes returns a boolean if a field has been set. ### GetOriginCacheFetches -`func (o *RealtimeMeasurements) GetOriginCacheFetches() int32` +`func (o *RealtimeMeasurements) GetOriginCacheFetches() int64` GetOriginCacheFetches returns the OriginCacheFetches field if non-nil, zero value otherwise. ### GetOriginCacheFetchesOk -`func (o *RealtimeMeasurements) GetOriginCacheFetchesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginCacheFetchesOk() (*int64, bool)` GetOriginCacheFetchesOk returns a tuple with the OriginCacheFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetches -`func (o *RealtimeMeasurements) SetOriginCacheFetches(v int32)` +`func (o *RealtimeMeasurements) SetOriginCacheFetches(v int64)` SetOriginCacheFetches sets OriginCacheFetches field to given value. @@ -4447,20 +4447,20 @@ HasOriginCacheFetches returns a boolean if a field has been set. ### GetShieldCacheFetches -`func (o *RealtimeMeasurements) GetShieldCacheFetches() int32` +`func (o *RealtimeMeasurements) GetShieldCacheFetches() int64` GetShieldCacheFetches returns the ShieldCacheFetches field if non-nil, zero value otherwise. ### GetShieldCacheFetchesOk -`func (o *RealtimeMeasurements) GetShieldCacheFetchesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldCacheFetchesOk() (*int64, bool)` GetShieldCacheFetchesOk returns a tuple with the ShieldCacheFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldCacheFetches -`func (o *RealtimeMeasurements) SetShieldCacheFetches(v int32)` +`func (o *RealtimeMeasurements) SetShieldCacheFetches(v int64)` SetShieldCacheFetches sets ShieldCacheFetches field to given value. @@ -4472,20 +4472,20 @@ HasShieldCacheFetches returns a boolean if a field has been set. ### GetComputeBereqs -`func (o *RealtimeMeasurements) GetComputeBereqs() int32` +`func (o *RealtimeMeasurements) GetComputeBereqs() int64` GetComputeBereqs returns the ComputeBereqs field if non-nil, zero value otherwise. ### GetComputeBereqsOk -`func (o *RealtimeMeasurements) GetComputeBereqsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeBereqsOk() (*int64, bool)` GetComputeBereqsOk returns a tuple with the ComputeBereqs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqs -`func (o *RealtimeMeasurements) SetComputeBereqs(v int32)` +`func (o *RealtimeMeasurements) SetComputeBereqs(v int64)` SetComputeBereqs sets ComputeBereqs field to given value. @@ -4497,20 +4497,20 @@ HasComputeBereqs returns a boolean if a field has been set. ### GetComputeBereqErrors -`func (o *RealtimeMeasurements) GetComputeBereqErrors() int32` +`func (o *RealtimeMeasurements) GetComputeBereqErrors() int64` GetComputeBereqErrors returns the ComputeBereqErrors field if non-nil, zero value otherwise. ### GetComputeBereqErrorsOk -`func (o *RealtimeMeasurements) GetComputeBereqErrorsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeBereqErrorsOk() (*int64, bool)` GetComputeBereqErrorsOk returns a tuple with the ComputeBereqErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqErrors -`func (o *RealtimeMeasurements) SetComputeBereqErrors(v int32)` +`func (o *RealtimeMeasurements) SetComputeBereqErrors(v int64)` SetComputeBereqErrors sets ComputeBereqErrors field to given value. @@ -4522,20 +4522,20 @@ HasComputeBereqErrors returns a boolean if a field has been set. ### GetComputeResourceLimitExceeded -`func (o *RealtimeMeasurements) GetComputeResourceLimitExceeded() int32` +`func (o *RealtimeMeasurements) GetComputeResourceLimitExceeded() int64` GetComputeResourceLimitExceeded returns the ComputeResourceLimitExceeded field if non-nil, zero value otherwise. ### GetComputeResourceLimitExceededOk -`func (o *RealtimeMeasurements) GetComputeResourceLimitExceededOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeResourceLimitExceededOk() (*int64, bool)` GetComputeResourceLimitExceededOk returns a tuple with the ComputeResourceLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeResourceLimitExceeded -`func (o *RealtimeMeasurements) SetComputeResourceLimitExceeded(v int32)` +`func (o *RealtimeMeasurements) SetComputeResourceLimitExceeded(v int64)` SetComputeResourceLimitExceeded sets ComputeResourceLimitExceeded field to given value. @@ -4547,20 +4547,20 @@ HasComputeResourceLimitExceeded returns a boolean if a field has been set. ### GetComputeHeapLimitExceeded -`func (o *RealtimeMeasurements) GetComputeHeapLimitExceeded() int32` +`func (o *RealtimeMeasurements) GetComputeHeapLimitExceeded() int64` GetComputeHeapLimitExceeded returns the ComputeHeapLimitExceeded field if non-nil, zero value otherwise. ### GetComputeHeapLimitExceededOk -`func (o *RealtimeMeasurements) GetComputeHeapLimitExceededOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeHeapLimitExceededOk() (*int64, bool)` GetComputeHeapLimitExceededOk returns a tuple with the ComputeHeapLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeHeapLimitExceeded -`func (o *RealtimeMeasurements) SetComputeHeapLimitExceeded(v int32)` +`func (o *RealtimeMeasurements) SetComputeHeapLimitExceeded(v int64)` SetComputeHeapLimitExceeded sets ComputeHeapLimitExceeded field to given value. @@ -4572,20 +4572,20 @@ HasComputeHeapLimitExceeded returns a boolean if a field has been set. ### GetComputeStackLimitExceeded -`func (o *RealtimeMeasurements) GetComputeStackLimitExceeded() int32` +`func (o *RealtimeMeasurements) GetComputeStackLimitExceeded() int64` GetComputeStackLimitExceeded returns the ComputeStackLimitExceeded field if non-nil, zero value otherwise. ### GetComputeStackLimitExceededOk -`func (o *RealtimeMeasurements) GetComputeStackLimitExceededOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeStackLimitExceededOk() (*int64, bool)` GetComputeStackLimitExceededOk returns a tuple with the ComputeStackLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStackLimitExceeded -`func (o *RealtimeMeasurements) SetComputeStackLimitExceeded(v int32)` +`func (o *RealtimeMeasurements) SetComputeStackLimitExceeded(v int64)` SetComputeStackLimitExceeded sets ComputeStackLimitExceeded field to given value. @@ -4597,20 +4597,20 @@ HasComputeStackLimitExceeded returns a boolean if a field has been set. ### GetComputeGlobalsLimitExceeded -`func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceeded() int32` +`func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceeded() int64` GetComputeGlobalsLimitExceeded returns the ComputeGlobalsLimitExceeded field if non-nil, zero value otherwise. ### GetComputeGlobalsLimitExceededOk -`func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceededOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceededOk() (*int64, bool)` GetComputeGlobalsLimitExceededOk returns a tuple with the ComputeGlobalsLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeGlobalsLimitExceeded -`func (o *RealtimeMeasurements) SetComputeGlobalsLimitExceeded(v int32)` +`func (o *RealtimeMeasurements) SetComputeGlobalsLimitExceeded(v int64)` SetComputeGlobalsLimitExceeded sets ComputeGlobalsLimitExceeded field to given value. @@ -4622,20 +4622,20 @@ HasComputeGlobalsLimitExceeded returns a boolean if a field has been set. ### GetComputeGuestErrors -`func (o *RealtimeMeasurements) GetComputeGuestErrors() int32` +`func (o *RealtimeMeasurements) GetComputeGuestErrors() int64` GetComputeGuestErrors returns the ComputeGuestErrors field if non-nil, zero value otherwise. ### GetComputeGuestErrorsOk -`func (o *RealtimeMeasurements) GetComputeGuestErrorsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeGuestErrorsOk() (*int64, bool)` GetComputeGuestErrorsOk returns a tuple with the ComputeGuestErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeGuestErrors -`func (o *RealtimeMeasurements) SetComputeGuestErrors(v int32)` +`func (o *RealtimeMeasurements) SetComputeGuestErrors(v int64)` SetComputeGuestErrors sets ComputeGuestErrors field to given value. @@ -4647,20 +4647,20 @@ HasComputeGuestErrors returns a boolean if a field has been set. ### GetComputeRuntimeErrors -`func (o *RealtimeMeasurements) GetComputeRuntimeErrors() int32` +`func (o *RealtimeMeasurements) GetComputeRuntimeErrors() int64` GetComputeRuntimeErrors returns the ComputeRuntimeErrors field if non-nil, zero value otherwise. ### GetComputeRuntimeErrorsOk -`func (o *RealtimeMeasurements) GetComputeRuntimeErrorsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetComputeRuntimeErrorsOk() (*int64, bool)` GetComputeRuntimeErrorsOk returns a tuple with the ComputeRuntimeErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRuntimeErrors -`func (o *RealtimeMeasurements) SetComputeRuntimeErrors(v int32)` +`func (o *RealtimeMeasurements) SetComputeRuntimeErrors(v int64)` SetComputeRuntimeErrors sets ComputeRuntimeErrors field to given value. @@ -4672,20 +4672,20 @@ HasComputeRuntimeErrors returns a boolean if a field has been set. ### GetEdgeHitRespBodyBytes -`func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytes() int64` GetEdgeHitRespBodyBytes returns the EdgeHitRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeHitRespBodyBytesOk -`func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytesOk() (*int64, bool)` GetEdgeHitRespBodyBytesOk returns a tuple with the EdgeHitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRespBodyBytes -`func (o *RealtimeMeasurements) SetEdgeHitRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetEdgeHitRespBodyBytes(v int64)` SetEdgeHitRespBodyBytes sets EdgeHitRespBodyBytes field to given value. @@ -4697,20 +4697,20 @@ HasEdgeHitRespBodyBytes returns a boolean if a field has been set. ### GetEdgeHitRespHeaderBytes -`func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytes() int64` GetEdgeHitRespHeaderBytes returns the EdgeHitRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeHitRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytesOk() (*int64, bool)` GetEdgeHitRespHeaderBytesOk returns a tuple with the EdgeHitRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRespHeaderBytes -`func (o *RealtimeMeasurements) SetEdgeHitRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetEdgeHitRespHeaderBytes(v int64)` SetEdgeHitRespHeaderBytes sets EdgeHitRespHeaderBytes field to given value. @@ -4722,20 +4722,20 @@ HasEdgeHitRespHeaderBytes returns a boolean if a field has been set. ### GetEdgeMissRespBodyBytes -`func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytes() int64` GetEdgeMissRespBodyBytes returns the EdgeMissRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeMissRespBodyBytesOk -`func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytesOk() (*int64, bool)` GetEdgeMissRespBodyBytesOk returns a tuple with the EdgeMissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRespBodyBytes -`func (o *RealtimeMeasurements) SetEdgeMissRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetEdgeMissRespBodyBytes(v int64)` SetEdgeMissRespBodyBytes sets EdgeMissRespBodyBytes field to given value. @@ -4747,20 +4747,20 @@ HasEdgeMissRespBodyBytes returns a boolean if a field has been set. ### GetEdgeMissRespHeaderBytes -`func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytes() int64` GetEdgeMissRespHeaderBytes returns the EdgeMissRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeMissRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytesOk() (*int64, bool)` GetEdgeMissRespHeaderBytesOk returns a tuple with the EdgeMissRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRespHeaderBytes -`func (o *RealtimeMeasurements) SetEdgeMissRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetEdgeMissRespHeaderBytes(v int64)` SetEdgeMissRespHeaderBytes sets EdgeMissRespHeaderBytes field to given value. @@ -4772,20 +4772,20 @@ HasEdgeMissRespHeaderBytes returns a boolean if a field has been set. ### GetOriginCacheFetchRespBodyBytes -`func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytes() int64` GetOriginCacheFetchRespBodyBytes returns the OriginCacheFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetOriginCacheFetchRespBodyBytesOk -`func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytesOk() (*int64, bool)` GetOriginCacheFetchRespBodyBytesOk returns a tuple with the OriginCacheFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetchRespBodyBytes -`func (o *RealtimeMeasurements) SetOriginCacheFetchRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetOriginCacheFetchRespBodyBytes(v int64)` SetOriginCacheFetchRespBodyBytes sets OriginCacheFetchRespBodyBytes field to given value. @@ -4797,20 +4797,20 @@ HasOriginCacheFetchRespBodyBytes returns a boolean if a field has been set. ### GetOriginCacheFetchRespHeaderBytes -`func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytes() int64` GetOriginCacheFetchRespHeaderBytes returns the OriginCacheFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetOriginCacheFetchRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytesOk() (*int64, bool)` GetOriginCacheFetchRespHeaderBytesOk returns a tuple with the OriginCacheFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetchRespHeaderBytes -`func (o *RealtimeMeasurements) SetOriginCacheFetchRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetOriginCacheFetchRespHeaderBytes(v int64)` SetOriginCacheFetchRespHeaderBytes sets OriginCacheFetchRespHeaderBytes field to given value. @@ -4822,20 +4822,20 @@ HasOriginCacheFetchRespHeaderBytes returns a boolean if a field has been set. ### GetShieldHitRequests -`func (o *RealtimeMeasurements) GetShieldHitRequests() int32` +`func (o *RealtimeMeasurements) GetShieldHitRequests() int64` GetShieldHitRequests returns the ShieldHitRequests field if non-nil, zero value otherwise. ### GetShieldHitRequestsOk -`func (o *RealtimeMeasurements) GetShieldHitRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldHitRequestsOk() (*int64, bool)` GetShieldHitRequestsOk returns a tuple with the ShieldHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRequests -`func (o *RealtimeMeasurements) SetShieldHitRequests(v int32)` +`func (o *RealtimeMeasurements) SetShieldHitRequests(v int64)` SetShieldHitRequests sets ShieldHitRequests field to given value. @@ -4847,20 +4847,20 @@ HasShieldHitRequests returns a boolean if a field has been set. ### GetShieldMissRequests -`func (o *RealtimeMeasurements) GetShieldMissRequests() int32` +`func (o *RealtimeMeasurements) GetShieldMissRequests() int64` GetShieldMissRequests returns the ShieldMissRequests field if non-nil, zero value otherwise. ### GetShieldMissRequestsOk -`func (o *RealtimeMeasurements) GetShieldMissRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldMissRequestsOk() (*int64, bool)` GetShieldMissRequestsOk returns a tuple with the ShieldMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRequests -`func (o *RealtimeMeasurements) SetShieldMissRequests(v int32)` +`func (o *RealtimeMeasurements) SetShieldMissRequests(v int64)` SetShieldMissRequests sets ShieldMissRequests field to given value. @@ -4872,20 +4872,20 @@ HasShieldMissRequests returns a boolean if a field has been set. ### GetShieldHitRespHeaderBytes -`func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytes() int64` GetShieldHitRespHeaderBytes returns the ShieldHitRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldHitRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytesOk() (*int64, bool)` GetShieldHitRespHeaderBytesOk returns a tuple with the ShieldHitRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRespHeaderBytes -`func (o *RealtimeMeasurements) SetShieldHitRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldHitRespHeaderBytes(v int64)` SetShieldHitRespHeaderBytes sets ShieldHitRespHeaderBytes field to given value. @@ -4897,20 +4897,20 @@ HasShieldHitRespHeaderBytes returns a boolean if a field has been set. ### GetShieldHitRespBodyBytes -`func (o *RealtimeMeasurements) GetShieldHitRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetShieldHitRespBodyBytes() int64` GetShieldHitRespBodyBytes returns the ShieldHitRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldHitRespBodyBytesOk -`func (o *RealtimeMeasurements) GetShieldHitRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldHitRespBodyBytesOk() (*int64, bool)` GetShieldHitRespBodyBytesOk returns a tuple with the ShieldHitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRespBodyBytes -`func (o *RealtimeMeasurements) SetShieldHitRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldHitRespBodyBytes(v int64)` SetShieldHitRespBodyBytes sets ShieldHitRespBodyBytes field to given value. @@ -4922,20 +4922,20 @@ HasShieldHitRespBodyBytes returns a boolean if a field has been set. ### GetShieldMissRespHeaderBytes -`func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytes() int64` GetShieldMissRespHeaderBytes returns the ShieldMissRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldMissRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytesOk() (*int64, bool)` GetShieldMissRespHeaderBytesOk returns a tuple with the ShieldMissRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRespHeaderBytes -`func (o *RealtimeMeasurements) SetShieldMissRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldMissRespHeaderBytes(v int64)` SetShieldMissRespHeaderBytes sets ShieldMissRespHeaderBytes field to given value. @@ -4947,20 +4947,20 @@ HasShieldMissRespHeaderBytes returns a boolean if a field has been set. ### GetShieldMissRespBodyBytes -`func (o *RealtimeMeasurements) GetShieldMissRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetShieldMissRespBodyBytes() int64` GetShieldMissRespBodyBytes returns the ShieldMissRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldMissRespBodyBytesOk -`func (o *RealtimeMeasurements) GetShieldMissRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetShieldMissRespBodyBytesOk() (*int64, bool)` GetShieldMissRespBodyBytesOk returns a tuple with the ShieldMissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRespBodyBytes -`func (o *RealtimeMeasurements) SetShieldMissRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetShieldMissRespBodyBytes(v int64)` SetShieldMissRespBodyBytes sets ShieldMissRespBodyBytes field to given value. @@ -4972,20 +4972,20 @@ HasShieldMissRespBodyBytes returns a boolean if a field has been set. ### GetWebsocketReqHeaderBytes -`func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytes() int64` GetWebsocketReqHeaderBytes returns the WebsocketReqHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketReqHeaderBytesOk -`func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytesOk() (*int64, bool)` GetWebsocketReqHeaderBytesOk returns a tuple with the WebsocketReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketReqHeaderBytes -`func (o *RealtimeMeasurements) SetWebsocketReqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketReqHeaderBytes(v int64)` SetWebsocketReqHeaderBytes sets WebsocketReqHeaderBytes field to given value. @@ -4997,20 +4997,20 @@ HasWebsocketReqHeaderBytes returns a boolean if a field has been set. ### GetWebsocketReqBodyBytes -`func (o *RealtimeMeasurements) GetWebsocketReqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetWebsocketReqBodyBytes() int64` GetWebsocketReqBodyBytes returns the WebsocketReqBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketReqBodyBytesOk -`func (o *RealtimeMeasurements) GetWebsocketReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketReqBodyBytesOk() (*int64, bool)` GetWebsocketReqBodyBytesOk returns a tuple with the WebsocketReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketReqBodyBytes -`func (o *RealtimeMeasurements) SetWebsocketReqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketReqBodyBytes(v int64)` SetWebsocketReqBodyBytes sets WebsocketReqBodyBytes field to given value. @@ -5022,20 +5022,20 @@ HasWebsocketReqBodyBytes returns a boolean if a field has been set. ### GetWebsocketRespHeaderBytes -`func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytes() int64` GetWebsocketRespHeaderBytes returns the WebsocketRespHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytesOk() (*int64, bool)` GetWebsocketRespHeaderBytesOk returns a tuple with the WebsocketRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketRespHeaderBytes -`func (o *RealtimeMeasurements) SetWebsocketRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketRespHeaderBytes(v int64)` SetWebsocketRespHeaderBytes sets WebsocketRespHeaderBytes field to given value. @@ -5047,20 +5047,20 @@ HasWebsocketRespHeaderBytes returns a boolean if a field has been set. ### GetWebsocketBereqHeaderBytes -`func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytes() int64` GetWebsocketBereqHeaderBytes returns the WebsocketBereqHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketBereqHeaderBytesOk -`func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytesOk() (*int64, bool)` GetWebsocketBereqHeaderBytesOk returns a tuple with the WebsocketBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBereqHeaderBytes -`func (o *RealtimeMeasurements) SetWebsocketBereqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketBereqHeaderBytes(v int64)` SetWebsocketBereqHeaderBytes sets WebsocketBereqHeaderBytes field to given value. @@ -5072,20 +5072,20 @@ HasWebsocketBereqHeaderBytes returns a boolean if a field has been set. ### GetWebsocketBereqBodyBytes -`func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytes() int64` GetWebsocketBereqBodyBytes returns the WebsocketBereqBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketBereqBodyBytesOk -`func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytesOk() (*int64, bool)` GetWebsocketBereqBodyBytesOk returns a tuple with the WebsocketBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBereqBodyBytes -`func (o *RealtimeMeasurements) SetWebsocketBereqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketBereqBodyBytes(v int64)` SetWebsocketBereqBodyBytes sets WebsocketBereqBodyBytes field to given value. @@ -5097,20 +5097,20 @@ HasWebsocketBereqBodyBytes returns a boolean if a field has been set. ### GetWebsocketBerespHeaderBytes -`func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytes() int64` GetWebsocketBerespHeaderBytes returns the WebsocketBerespHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketBerespHeaderBytesOk -`func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytesOk() (*int64, bool)` GetWebsocketBerespHeaderBytesOk returns a tuple with the WebsocketBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBerespHeaderBytes -`func (o *RealtimeMeasurements) SetWebsocketBerespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketBerespHeaderBytes(v int64)` SetWebsocketBerespHeaderBytes sets WebsocketBerespHeaderBytes field to given value. @@ -5122,20 +5122,20 @@ HasWebsocketBerespHeaderBytes returns a boolean if a field has been set. ### GetWebsocketBerespBodyBytes -`func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytes() int64` GetWebsocketBerespBodyBytes returns the WebsocketBerespBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketBerespBodyBytesOk -`func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytesOk() (*int64, bool)` GetWebsocketBerespBodyBytesOk returns a tuple with the WebsocketBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBerespBodyBytes -`func (o *RealtimeMeasurements) SetWebsocketBerespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketBerespBodyBytes(v int64)` SetWebsocketBerespBodyBytes sets WebsocketBerespBodyBytes field to given value. @@ -5147,20 +5147,20 @@ HasWebsocketBerespBodyBytes returns a boolean if a field has been set. ### GetWebsocketConnTimeMs -`func (o *RealtimeMeasurements) GetWebsocketConnTimeMs() int32` +`func (o *RealtimeMeasurements) GetWebsocketConnTimeMs() int64` GetWebsocketConnTimeMs returns the WebsocketConnTimeMs field if non-nil, zero value otherwise. ### GetWebsocketConnTimeMsOk -`func (o *RealtimeMeasurements) GetWebsocketConnTimeMsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketConnTimeMsOk() (*int64, bool)` GetWebsocketConnTimeMsOk returns a tuple with the WebsocketConnTimeMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketConnTimeMs -`func (o *RealtimeMeasurements) SetWebsocketConnTimeMs(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketConnTimeMs(v int64)` SetWebsocketConnTimeMs sets WebsocketConnTimeMs field to given value. @@ -5172,20 +5172,20 @@ HasWebsocketConnTimeMs returns a boolean if a field has been set. ### GetWebsocketRespBodyBytes -`func (o *RealtimeMeasurements) GetWebsocketRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetWebsocketRespBodyBytes() int64` GetWebsocketRespBodyBytes returns the WebsocketRespBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketRespBodyBytesOk -`func (o *RealtimeMeasurements) GetWebsocketRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetWebsocketRespBodyBytesOk() (*int64, bool)` GetWebsocketRespBodyBytesOk returns a tuple with the WebsocketRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketRespBodyBytes -`func (o *RealtimeMeasurements) SetWebsocketRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetWebsocketRespBodyBytes(v int64)` SetWebsocketRespBodyBytes sets WebsocketRespBodyBytes field to given value. @@ -5197,20 +5197,20 @@ HasWebsocketRespBodyBytes returns a boolean if a field has been set. ### GetFanoutRecvPublishes -`func (o *RealtimeMeasurements) GetFanoutRecvPublishes() int32` +`func (o *RealtimeMeasurements) GetFanoutRecvPublishes() int64` GetFanoutRecvPublishes returns the FanoutRecvPublishes field if non-nil, zero value otherwise. ### GetFanoutRecvPublishesOk -`func (o *RealtimeMeasurements) GetFanoutRecvPublishesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutRecvPublishesOk() (*int64, bool)` GetFanoutRecvPublishesOk returns a tuple with the FanoutRecvPublishes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRecvPublishes -`func (o *RealtimeMeasurements) SetFanoutRecvPublishes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutRecvPublishes(v int64)` SetFanoutRecvPublishes sets FanoutRecvPublishes field to given value. @@ -5222,20 +5222,20 @@ HasFanoutRecvPublishes returns a boolean if a field has been set. ### GetFanoutSendPublishes -`func (o *RealtimeMeasurements) GetFanoutSendPublishes() int32` +`func (o *RealtimeMeasurements) GetFanoutSendPublishes() int64` GetFanoutSendPublishes returns the FanoutSendPublishes field if non-nil, zero value otherwise. ### GetFanoutSendPublishesOk -`func (o *RealtimeMeasurements) GetFanoutSendPublishesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutSendPublishesOk() (*int64, bool)` GetFanoutSendPublishesOk returns a tuple with the FanoutSendPublishes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutSendPublishes -`func (o *RealtimeMeasurements) SetFanoutSendPublishes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutSendPublishes(v int64)` SetFanoutSendPublishes sets FanoutSendPublishes field to given value. @@ -5247,20 +5247,20 @@ HasFanoutSendPublishes returns a boolean if a field has been set. ### GetKvStoreClassAOperations -`func (o *RealtimeMeasurements) GetKvStoreClassAOperations() int32` +`func (o *RealtimeMeasurements) GetKvStoreClassAOperations() int64` GetKvStoreClassAOperations returns the KvStoreClassAOperations field if non-nil, zero value otherwise. ### GetKvStoreClassAOperationsOk -`func (o *RealtimeMeasurements) GetKvStoreClassAOperationsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetKvStoreClassAOperationsOk() (*int64, bool)` GetKvStoreClassAOperationsOk returns a tuple with the KvStoreClassAOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetKvStoreClassAOperations -`func (o *RealtimeMeasurements) SetKvStoreClassAOperations(v int32)` +`func (o *RealtimeMeasurements) SetKvStoreClassAOperations(v int64)` SetKvStoreClassAOperations sets KvStoreClassAOperations field to given value. @@ -5272,20 +5272,20 @@ HasKvStoreClassAOperations returns a boolean if a field has been set. ### GetKvStoreClassBOperations -`func (o *RealtimeMeasurements) GetKvStoreClassBOperations() int32` +`func (o *RealtimeMeasurements) GetKvStoreClassBOperations() int64` GetKvStoreClassBOperations returns the KvStoreClassBOperations field if non-nil, zero value otherwise. ### GetKvStoreClassBOperationsOk -`func (o *RealtimeMeasurements) GetKvStoreClassBOperationsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetKvStoreClassBOperationsOk() (*int64, bool)` GetKvStoreClassBOperationsOk returns a tuple with the KvStoreClassBOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetKvStoreClassBOperations -`func (o *RealtimeMeasurements) SetKvStoreClassBOperations(v int32)` +`func (o *RealtimeMeasurements) SetKvStoreClassBOperations(v int64)` SetKvStoreClassBOperations sets KvStoreClassBOperations field to given value. @@ -5297,20 +5297,20 @@ HasKvStoreClassBOperations returns a boolean if a field has been set. ### GetObjectStoreClassAOperations -`func (o *RealtimeMeasurements) GetObjectStoreClassAOperations() int32` +`func (o *RealtimeMeasurements) GetObjectStoreClassAOperations() int64` GetObjectStoreClassAOperations returns the ObjectStoreClassAOperations field if non-nil, zero value otherwise. ### GetObjectStoreClassAOperationsOk -`func (o *RealtimeMeasurements) GetObjectStoreClassAOperationsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectStoreClassAOperationsOk() (*int64, bool)` GetObjectStoreClassAOperationsOk returns a tuple with the ObjectStoreClassAOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectStoreClassAOperations -`func (o *RealtimeMeasurements) SetObjectStoreClassAOperations(v int32)` +`func (o *RealtimeMeasurements) SetObjectStoreClassAOperations(v int64)` SetObjectStoreClassAOperations sets ObjectStoreClassAOperations field to given value. @@ -5322,20 +5322,20 @@ HasObjectStoreClassAOperations returns a boolean if a field has been set. ### GetObjectStoreClassBOperations -`func (o *RealtimeMeasurements) GetObjectStoreClassBOperations() int32` +`func (o *RealtimeMeasurements) GetObjectStoreClassBOperations() int64` GetObjectStoreClassBOperations returns the ObjectStoreClassBOperations field if non-nil, zero value otherwise. ### GetObjectStoreClassBOperationsOk -`func (o *RealtimeMeasurements) GetObjectStoreClassBOperationsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetObjectStoreClassBOperationsOk() (*int64, bool)` GetObjectStoreClassBOperationsOk returns a tuple with the ObjectStoreClassBOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectStoreClassBOperations -`func (o *RealtimeMeasurements) SetObjectStoreClassBOperations(v int32)` +`func (o *RealtimeMeasurements) SetObjectStoreClassBOperations(v int64)` SetObjectStoreClassBOperations sets ObjectStoreClassBOperations field to given value. @@ -5347,20 +5347,20 @@ HasObjectStoreClassBOperations returns a boolean if a field has been set. ### GetFanoutReqHeaderBytes -`func (o *RealtimeMeasurements) GetFanoutReqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetFanoutReqHeaderBytes() int64` GetFanoutReqHeaderBytes returns the FanoutReqHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutReqHeaderBytesOk -`func (o *RealtimeMeasurements) GetFanoutReqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutReqHeaderBytesOk() (*int64, bool)` GetFanoutReqHeaderBytesOk returns a tuple with the FanoutReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutReqHeaderBytes -`func (o *RealtimeMeasurements) SetFanoutReqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutReqHeaderBytes(v int64)` SetFanoutReqHeaderBytes sets FanoutReqHeaderBytes field to given value. @@ -5372,20 +5372,20 @@ HasFanoutReqHeaderBytes returns a boolean if a field has been set. ### GetFanoutReqBodyBytes -`func (o *RealtimeMeasurements) GetFanoutReqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetFanoutReqBodyBytes() int64` GetFanoutReqBodyBytes returns the FanoutReqBodyBytes field if non-nil, zero value otherwise. ### GetFanoutReqBodyBytesOk -`func (o *RealtimeMeasurements) GetFanoutReqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutReqBodyBytesOk() (*int64, bool)` GetFanoutReqBodyBytesOk returns a tuple with the FanoutReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutReqBodyBytes -`func (o *RealtimeMeasurements) SetFanoutReqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutReqBodyBytes(v int64)` SetFanoutReqBodyBytes sets FanoutReqBodyBytes field to given value. @@ -5397,20 +5397,20 @@ HasFanoutReqBodyBytes returns a boolean if a field has been set. ### GetFanoutRespHeaderBytes -`func (o *RealtimeMeasurements) GetFanoutRespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetFanoutRespHeaderBytes() int64` GetFanoutRespHeaderBytes returns the FanoutRespHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutRespHeaderBytesOk -`func (o *RealtimeMeasurements) GetFanoutRespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutRespHeaderBytesOk() (*int64, bool)` GetFanoutRespHeaderBytesOk returns a tuple with the FanoutRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRespHeaderBytes -`func (o *RealtimeMeasurements) SetFanoutRespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutRespHeaderBytes(v int64)` SetFanoutRespHeaderBytes sets FanoutRespHeaderBytes field to given value. @@ -5422,20 +5422,20 @@ HasFanoutRespHeaderBytes returns a boolean if a field has been set. ### GetFanoutRespBodyBytes -`func (o *RealtimeMeasurements) GetFanoutRespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetFanoutRespBodyBytes() int64` GetFanoutRespBodyBytes returns the FanoutRespBodyBytes field if non-nil, zero value otherwise. ### GetFanoutRespBodyBytesOk -`func (o *RealtimeMeasurements) GetFanoutRespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutRespBodyBytesOk() (*int64, bool)` GetFanoutRespBodyBytesOk returns a tuple with the FanoutRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRespBodyBytes -`func (o *RealtimeMeasurements) SetFanoutRespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutRespBodyBytes(v int64)` SetFanoutRespBodyBytes sets FanoutRespBodyBytes field to given value. @@ -5447,20 +5447,20 @@ HasFanoutRespBodyBytes returns a boolean if a field has been set. ### GetFanoutBereqHeaderBytes -`func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytes() int64` GetFanoutBereqHeaderBytes returns the FanoutBereqHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutBereqHeaderBytesOk -`func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytesOk() (*int64, bool)` GetFanoutBereqHeaderBytesOk returns a tuple with the FanoutBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBereqHeaderBytes -`func (o *RealtimeMeasurements) SetFanoutBereqHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutBereqHeaderBytes(v int64)` SetFanoutBereqHeaderBytes sets FanoutBereqHeaderBytes field to given value. @@ -5472,20 +5472,20 @@ HasFanoutBereqHeaderBytes returns a boolean if a field has been set. ### GetFanoutBereqBodyBytes -`func (o *RealtimeMeasurements) GetFanoutBereqBodyBytes() int32` +`func (o *RealtimeMeasurements) GetFanoutBereqBodyBytes() int64` GetFanoutBereqBodyBytes returns the FanoutBereqBodyBytes field if non-nil, zero value otherwise. ### GetFanoutBereqBodyBytesOk -`func (o *RealtimeMeasurements) GetFanoutBereqBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutBereqBodyBytesOk() (*int64, bool)` GetFanoutBereqBodyBytesOk returns a tuple with the FanoutBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBereqBodyBytes -`func (o *RealtimeMeasurements) SetFanoutBereqBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutBereqBodyBytes(v int64)` SetFanoutBereqBodyBytes sets FanoutBereqBodyBytes field to given value. @@ -5497,20 +5497,20 @@ HasFanoutBereqBodyBytes returns a boolean if a field has been set. ### GetFanoutBerespHeaderBytes -`func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytes() int32` +`func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytes() int64` GetFanoutBerespHeaderBytes returns the FanoutBerespHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutBerespHeaderBytesOk -`func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytesOk() (*int64, bool)` GetFanoutBerespHeaderBytesOk returns a tuple with the FanoutBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBerespHeaderBytes -`func (o *RealtimeMeasurements) SetFanoutBerespHeaderBytes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutBerespHeaderBytes(v int64)` SetFanoutBerespHeaderBytes sets FanoutBerespHeaderBytes field to given value. @@ -5522,20 +5522,20 @@ HasFanoutBerespHeaderBytes returns a boolean if a field has been set. ### GetFanoutBerespBodyBytes -`func (o *RealtimeMeasurements) GetFanoutBerespBodyBytes() int32` +`func (o *RealtimeMeasurements) GetFanoutBerespBodyBytes() int64` GetFanoutBerespBodyBytes returns the FanoutBerespBodyBytes field if non-nil, zero value otherwise. ### GetFanoutBerespBodyBytesOk -`func (o *RealtimeMeasurements) GetFanoutBerespBodyBytesOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutBerespBodyBytesOk() (*int64, bool)` GetFanoutBerespBodyBytesOk returns a tuple with the FanoutBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBerespBodyBytes -`func (o *RealtimeMeasurements) SetFanoutBerespBodyBytes(v int32)` +`func (o *RealtimeMeasurements) SetFanoutBerespBodyBytes(v int64)` SetFanoutBerespBodyBytes sets FanoutBerespBodyBytes field to given value. @@ -5547,20 +5547,20 @@ HasFanoutBerespBodyBytes returns a boolean if a field has been set. ### GetFanoutConnTimeMs -`func (o *RealtimeMeasurements) GetFanoutConnTimeMs() int32` +`func (o *RealtimeMeasurements) GetFanoutConnTimeMs() int64` GetFanoutConnTimeMs returns the FanoutConnTimeMs field if non-nil, zero value otherwise. ### GetFanoutConnTimeMsOk -`func (o *RealtimeMeasurements) GetFanoutConnTimeMsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetFanoutConnTimeMsOk() (*int64, bool)` GetFanoutConnTimeMsOk returns a tuple with the FanoutConnTimeMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutConnTimeMs -`func (o *RealtimeMeasurements) SetFanoutConnTimeMs(v int32)` +`func (o *RealtimeMeasurements) SetFanoutConnTimeMs(v int64)` SetFanoutConnTimeMs sets FanoutConnTimeMs field to given value. @@ -5572,20 +5572,20 @@ HasFanoutConnTimeMs returns a boolean if a field has been set. ### GetDdosActionLimitStreamsConnections -`func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnections() int32` +`func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnections() int64` GetDdosActionLimitStreamsConnections returns the DdosActionLimitStreamsConnections field if non-nil, zero value otherwise. ### GetDdosActionLimitStreamsConnectionsOk -`func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnectionsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnectionsOk() (*int64, bool)` GetDdosActionLimitStreamsConnectionsOk returns a tuple with the DdosActionLimitStreamsConnections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionLimitStreamsConnections -`func (o *RealtimeMeasurements) SetDdosActionLimitStreamsConnections(v int32)` +`func (o *RealtimeMeasurements) SetDdosActionLimitStreamsConnections(v int64)` SetDdosActionLimitStreamsConnections sets DdosActionLimitStreamsConnections field to given value. @@ -5597,20 +5597,20 @@ HasDdosActionLimitStreamsConnections returns a boolean if a field has been set. ### GetDdosActionLimitStreamsRequests -`func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequests() int32` +`func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequests() int64` GetDdosActionLimitStreamsRequests returns the DdosActionLimitStreamsRequests field if non-nil, zero value otherwise. ### GetDdosActionLimitStreamsRequestsOk -`func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequestsOk() (*int64, bool)` GetDdosActionLimitStreamsRequestsOk returns a tuple with the DdosActionLimitStreamsRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionLimitStreamsRequests -`func (o *RealtimeMeasurements) SetDdosActionLimitStreamsRequests(v int32)` +`func (o *RealtimeMeasurements) SetDdosActionLimitStreamsRequests(v int64)` SetDdosActionLimitStreamsRequests sets DdosActionLimitStreamsRequests field to given value. @@ -5622,20 +5622,20 @@ HasDdosActionLimitStreamsRequests returns a boolean if a field has been set. ### GetDdosActionTarpitAccept -`func (o *RealtimeMeasurements) GetDdosActionTarpitAccept() int32` +`func (o *RealtimeMeasurements) GetDdosActionTarpitAccept() int64` GetDdosActionTarpitAccept returns the DdosActionTarpitAccept field if non-nil, zero value otherwise. ### GetDdosActionTarpitAcceptOk -`func (o *RealtimeMeasurements) GetDdosActionTarpitAcceptOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDdosActionTarpitAcceptOk() (*int64, bool)` GetDdosActionTarpitAcceptOk returns a tuple with the DdosActionTarpitAccept field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionTarpitAccept -`func (o *RealtimeMeasurements) SetDdosActionTarpitAccept(v int32)` +`func (o *RealtimeMeasurements) SetDdosActionTarpitAccept(v int64)` SetDdosActionTarpitAccept sets DdosActionTarpitAccept field to given value. @@ -5647,20 +5647,20 @@ HasDdosActionTarpitAccept returns a boolean if a field has been set. ### GetDdosActionTarpit -`func (o *RealtimeMeasurements) GetDdosActionTarpit() int32` +`func (o *RealtimeMeasurements) GetDdosActionTarpit() int64` GetDdosActionTarpit returns the DdosActionTarpit field if non-nil, zero value otherwise. ### GetDdosActionTarpitOk -`func (o *RealtimeMeasurements) GetDdosActionTarpitOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDdosActionTarpitOk() (*int64, bool)` GetDdosActionTarpitOk returns a tuple with the DdosActionTarpit field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionTarpit -`func (o *RealtimeMeasurements) SetDdosActionTarpit(v int32)` +`func (o *RealtimeMeasurements) SetDdosActionTarpit(v int64)` SetDdosActionTarpit sets DdosActionTarpit field to given value. @@ -5672,20 +5672,20 @@ HasDdosActionTarpit returns a boolean if a field has been set. ### GetDdosActionClose -`func (o *RealtimeMeasurements) GetDdosActionClose() int32` +`func (o *RealtimeMeasurements) GetDdosActionClose() int64` GetDdosActionClose returns the DdosActionClose field if non-nil, zero value otherwise. ### GetDdosActionCloseOk -`func (o *RealtimeMeasurements) GetDdosActionCloseOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDdosActionCloseOk() (*int64, bool)` GetDdosActionCloseOk returns a tuple with the DdosActionClose field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionClose -`func (o *RealtimeMeasurements) SetDdosActionClose(v int32)` +`func (o *RealtimeMeasurements) SetDdosActionClose(v int64)` SetDdosActionClose sets DdosActionClose field to given value. @@ -5697,20 +5697,20 @@ HasDdosActionClose returns a boolean if a field has been set. ### GetDdosActionBlackhole -`func (o *RealtimeMeasurements) GetDdosActionBlackhole() int32` +`func (o *RealtimeMeasurements) GetDdosActionBlackhole() int64` GetDdosActionBlackhole returns the DdosActionBlackhole field if non-nil, zero value otherwise. ### GetDdosActionBlackholeOk -`func (o *RealtimeMeasurements) GetDdosActionBlackholeOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDdosActionBlackholeOk() (*int64, bool)` GetDdosActionBlackholeOk returns a tuple with the DdosActionBlackhole field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionBlackhole -`func (o *RealtimeMeasurements) SetDdosActionBlackhole(v int32)` +`func (o *RealtimeMeasurements) SetDdosActionBlackhole(v int64)` SetDdosActionBlackhole sets DdosActionBlackhole field to given value. @@ -5722,20 +5722,20 @@ HasDdosActionBlackhole returns a boolean if a field has been set. ### GetBotChallengeStarts -`func (o *RealtimeMeasurements) GetBotChallengeStarts() int32` +`func (o *RealtimeMeasurements) GetBotChallengeStarts() int64` GetBotChallengeStarts returns the BotChallengeStarts field if non-nil, zero value otherwise. ### GetBotChallengeStartsOk -`func (o *RealtimeMeasurements) GetBotChallengeStartsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengeStartsOk() (*int64, bool)` GetBotChallengeStartsOk returns a tuple with the BotChallengeStarts field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeStarts -`func (o *RealtimeMeasurements) SetBotChallengeStarts(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengeStarts(v int64)` SetBotChallengeStarts sets BotChallengeStarts field to given value. @@ -5747,20 +5747,20 @@ HasBotChallengeStarts returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensPassed -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassed() int32` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassed() int64` GetBotChallengeCompleteTokensPassed returns the BotChallengeCompleteTokensPassed field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensPassedOk -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassedOk() (*int64, bool)` GetBotChallengeCompleteTokensPassedOk returns a tuple with the BotChallengeCompleteTokensPassed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensPassed -`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensPassed(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensPassed(v int64)` SetBotChallengeCompleteTokensPassed sets BotChallengeCompleteTokensPassed field to given value. @@ -5772,20 +5772,20 @@ HasBotChallengeCompleteTokensPassed returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensFailed -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailed() int32` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailed() int64` GetBotChallengeCompleteTokensFailed returns the BotChallengeCompleteTokensFailed field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensFailedOk -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailedOk() (*int64, bool)` GetBotChallengeCompleteTokensFailedOk returns a tuple with the BotChallengeCompleteTokensFailed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensFailed -`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensFailed(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensFailed(v int64)` SetBotChallengeCompleteTokensFailed sets BotChallengeCompleteTokensFailed field to given value. @@ -5797,20 +5797,20 @@ HasBotChallengeCompleteTokensFailed returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensChecked -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensChecked() int32` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensChecked() int64` GetBotChallengeCompleteTokensChecked returns the BotChallengeCompleteTokensChecked field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensCheckedOk -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensCheckedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensCheckedOk() (*int64, bool)` GetBotChallengeCompleteTokensCheckedOk returns a tuple with the BotChallengeCompleteTokensChecked field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensChecked -`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensChecked(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensChecked(v int64)` SetBotChallengeCompleteTokensChecked sets BotChallengeCompleteTokensChecked field to given value. @@ -5822,20 +5822,20 @@ HasBotChallengeCompleteTokensChecked returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensDisabled -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabled() int32` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabled() int64` GetBotChallengeCompleteTokensDisabled returns the BotChallengeCompleteTokensDisabled field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensDisabledOk -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabledOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabledOk() (*int64, bool)` GetBotChallengeCompleteTokensDisabledOk returns a tuple with the BotChallengeCompleteTokensDisabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensDisabled -`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensDisabled(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensDisabled(v int64)` SetBotChallengeCompleteTokensDisabled sets BotChallengeCompleteTokensDisabled field to given value. @@ -5847,20 +5847,20 @@ HasBotChallengeCompleteTokensDisabled returns a boolean if a field has been set. ### GetBotChallengesIssued -`func (o *RealtimeMeasurements) GetBotChallengesIssued() int32` +`func (o *RealtimeMeasurements) GetBotChallengesIssued() int64` GetBotChallengesIssued returns the BotChallengesIssued field if non-nil, zero value otherwise. ### GetBotChallengesIssuedOk -`func (o *RealtimeMeasurements) GetBotChallengesIssuedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengesIssuedOk() (*int64, bool)` GetBotChallengesIssuedOk returns a tuple with the BotChallengesIssued field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesIssued -`func (o *RealtimeMeasurements) SetBotChallengesIssued(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengesIssued(v int64)` SetBotChallengesIssued sets BotChallengesIssued field to given value. @@ -5872,20 +5872,20 @@ HasBotChallengesIssued returns a boolean if a field has been set. ### GetBotChallengesSucceeded -`func (o *RealtimeMeasurements) GetBotChallengesSucceeded() int32` +`func (o *RealtimeMeasurements) GetBotChallengesSucceeded() int64` GetBotChallengesSucceeded returns the BotChallengesSucceeded field if non-nil, zero value otherwise. ### GetBotChallengesSucceededOk -`func (o *RealtimeMeasurements) GetBotChallengesSucceededOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengesSucceededOk() (*int64, bool)` GetBotChallengesSucceededOk returns a tuple with the BotChallengesSucceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesSucceeded -`func (o *RealtimeMeasurements) SetBotChallengesSucceeded(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengesSucceeded(v int64)` SetBotChallengesSucceeded sets BotChallengesSucceeded field to given value. @@ -5897,20 +5897,20 @@ HasBotChallengesSucceeded returns a boolean if a field has been set. ### GetBotChallengesFailed -`func (o *RealtimeMeasurements) GetBotChallengesFailed() int32` +`func (o *RealtimeMeasurements) GetBotChallengesFailed() int64` GetBotChallengesFailed returns the BotChallengesFailed field if non-nil, zero value otherwise. ### GetBotChallengesFailedOk -`func (o *RealtimeMeasurements) GetBotChallengesFailedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengesFailedOk() (*int64, bool)` GetBotChallengesFailedOk returns a tuple with the BotChallengesFailed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesFailed -`func (o *RealtimeMeasurements) SetBotChallengesFailed(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengesFailed(v int64)` SetBotChallengesFailed sets BotChallengesFailed field to given value. @@ -5922,20 +5922,20 @@ HasBotChallengesFailed returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensIssued -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssued() int32` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssued() int64` GetBotChallengeCompleteTokensIssued returns the BotChallengeCompleteTokensIssued field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensIssuedOk -`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssuedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssuedOk() (*int64, bool)` GetBotChallengeCompleteTokensIssuedOk returns a tuple with the BotChallengeCompleteTokensIssued field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensIssued -`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensIssued(v int32)` +`func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensIssued(v int64)` SetBotChallengeCompleteTokensIssued sets BotChallengeCompleteTokensIssued field to given value. @@ -5947,20 +5947,20 @@ HasBotChallengeCompleteTokensIssued returns a boolean if a field has been set. ### GetDdosActionDowngrade -`func (o *RealtimeMeasurements) GetDdosActionDowngrade() int32` +`func (o *RealtimeMeasurements) GetDdosActionDowngrade() int64` GetDdosActionDowngrade returns the DdosActionDowngrade field if non-nil, zero value otherwise. ### GetDdosActionDowngradeOk -`func (o *RealtimeMeasurements) GetDdosActionDowngradeOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDdosActionDowngradeOk() (*int64, bool)` GetDdosActionDowngradeOk returns a tuple with the DdosActionDowngrade field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionDowngrade -`func (o *RealtimeMeasurements) SetDdosActionDowngrade(v int32)` +`func (o *RealtimeMeasurements) SetDdosActionDowngrade(v int64)` SetDdosActionDowngrade sets DdosActionDowngrade field to given value. @@ -5972,20 +5972,20 @@ HasDdosActionDowngrade returns a boolean if a field has been set. ### GetDdosActionDowngradedConnections -`func (o *RealtimeMeasurements) GetDdosActionDowngradedConnections() int32` +`func (o *RealtimeMeasurements) GetDdosActionDowngradedConnections() int64` GetDdosActionDowngradedConnections returns the DdosActionDowngradedConnections field if non-nil, zero value otherwise. ### GetDdosActionDowngradedConnectionsOk -`func (o *RealtimeMeasurements) GetDdosActionDowngradedConnectionsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetDdosActionDowngradedConnectionsOk() (*int64, bool)` GetDdosActionDowngradedConnectionsOk returns a tuple with the DdosActionDowngradedConnections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionDowngradedConnections -`func (o *RealtimeMeasurements) SetDdosActionDowngradedConnections(v int32)` +`func (o *RealtimeMeasurements) SetDdosActionDowngradedConnections(v int64)` SetDdosActionDowngradedConnections sets DdosActionDowngradedConnections field to given value. @@ -5997,20 +5997,20 @@ HasDdosActionDowngradedConnections returns a boolean if a field has been set. ### GetAllHitRequests -`func (o *RealtimeMeasurements) GetAllHitRequests() int32` +`func (o *RealtimeMeasurements) GetAllHitRequests() int64` GetAllHitRequests returns the AllHitRequests field if non-nil, zero value otherwise. ### GetAllHitRequestsOk -`func (o *RealtimeMeasurements) GetAllHitRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllHitRequestsOk() (*int64, bool)` GetAllHitRequestsOk returns a tuple with the AllHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllHitRequests -`func (o *RealtimeMeasurements) SetAllHitRequests(v int32)` +`func (o *RealtimeMeasurements) SetAllHitRequests(v int64)` SetAllHitRequests sets AllHitRequests field to given value. @@ -6022,20 +6022,20 @@ HasAllHitRequests returns a boolean if a field has been set. ### GetAllMissRequests -`func (o *RealtimeMeasurements) GetAllMissRequests() int32` +`func (o *RealtimeMeasurements) GetAllMissRequests() int64` GetAllMissRequests returns the AllMissRequests field if non-nil, zero value otherwise. ### GetAllMissRequestsOk -`func (o *RealtimeMeasurements) GetAllMissRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllMissRequestsOk() (*int64, bool)` GetAllMissRequestsOk returns a tuple with the AllMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllMissRequests -`func (o *RealtimeMeasurements) SetAllMissRequests(v int32)` +`func (o *RealtimeMeasurements) SetAllMissRequests(v int64)` SetAllMissRequests sets AllMissRequests field to given value. @@ -6047,20 +6047,20 @@ HasAllMissRequests returns a boolean if a field has been set. ### GetAllPassRequests -`func (o *RealtimeMeasurements) GetAllPassRequests() int32` +`func (o *RealtimeMeasurements) GetAllPassRequests() int64` GetAllPassRequests returns the AllPassRequests field if non-nil, zero value otherwise. ### GetAllPassRequestsOk -`func (o *RealtimeMeasurements) GetAllPassRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllPassRequestsOk() (*int64, bool)` GetAllPassRequestsOk returns a tuple with the AllPassRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllPassRequests -`func (o *RealtimeMeasurements) SetAllPassRequests(v int32)` +`func (o *RealtimeMeasurements) SetAllPassRequests(v int64)` SetAllPassRequests sets AllPassRequests field to given value. @@ -6072,20 +6072,20 @@ HasAllPassRequests returns a boolean if a field has been set. ### GetAllErrorRequests -`func (o *RealtimeMeasurements) GetAllErrorRequests() int32` +`func (o *RealtimeMeasurements) GetAllErrorRequests() int64` GetAllErrorRequests returns the AllErrorRequests field if non-nil, zero value otherwise. ### GetAllErrorRequestsOk -`func (o *RealtimeMeasurements) GetAllErrorRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllErrorRequestsOk() (*int64, bool)` GetAllErrorRequestsOk returns a tuple with the AllErrorRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllErrorRequests -`func (o *RealtimeMeasurements) SetAllErrorRequests(v int32)` +`func (o *RealtimeMeasurements) SetAllErrorRequests(v int64)` SetAllErrorRequests sets AllErrorRequests field to given value. @@ -6097,20 +6097,20 @@ HasAllErrorRequests returns a boolean if a field has been set. ### GetAllSynthRequests -`func (o *RealtimeMeasurements) GetAllSynthRequests() int32` +`func (o *RealtimeMeasurements) GetAllSynthRequests() int64` GetAllSynthRequests returns the AllSynthRequests field if non-nil, zero value otherwise. ### GetAllSynthRequestsOk -`func (o *RealtimeMeasurements) GetAllSynthRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllSynthRequestsOk() (*int64, bool)` GetAllSynthRequestsOk returns a tuple with the AllSynthRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllSynthRequests -`func (o *RealtimeMeasurements) SetAllSynthRequests(v int32)` +`func (o *RealtimeMeasurements) SetAllSynthRequests(v int64)` SetAllSynthRequests sets AllSynthRequests field to given value. @@ -6122,20 +6122,20 @@ HasAllSynthRequests returns a boolean if a field has been set. ### GetAllEdgeHitRequests -`func (o *RealtimeMeasurements) GetAllEdgeHitRequests() int32` +`func (o *RealtimeMeasurements) GetAllEdgeHitRequests() int64` GetAllEdgeHitRequests returns the AllEdgeHitRequests field if non-nil, zero value otherwise. ### GetAllEdgeHitRequestsOk -`func (o *RealtimeMeasurements) GetAllEdgeHitRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllEdgeHitRequestsOk() (*int64, bool)` GetAllEdgeHitRequestsOk returns a tuple with the AllEdgeHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllEdgeHitRequests -`func (o *RealtimeMeasurements) SetAllEdgeHitRequests(v int32)` +`func (o *RealtimeMeasurements) SetAllEdgeHitRequests(v int64)` SetAllEdgeHitRequests sets AllEdgeHitRequests field to given value. @@ -6147,20 +6147,20 @@ HasAllEdgeHitRequests returns a boolean if a field has been set. ### GetAllEdgeMissRequests -`func (o *RealtimeMeasurements) GetAllEdgeMissRequests() int32` +`func (o *RealtimeMeasurements) GetAllEdgeMissRequests() int64` GetAllEdgeMissRequests returns the AllEdgeMissRequests field if non-nil, zero value otherwise. ### GetAllEdgeMissRequestsOk -`func (o *RealtimeMeasurements) GetAllEdgeMissRequestsOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllEdgeMissRequestsOk() (*int64, bool)` GetAllEdgeMissRequestsOk returns a tuple with the AllEdgeMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllEdgeMissRequests -`func (o *RealtimeMeasurements) SetAllEdgeMissRequests(v int32)` +`func (o *RealtimeMeasurements) SetAllEdgeMissRequests(v int64)` SetAllEdgeMissRequests sets AllEdgeMissRequests field to given value. @@ -6172,20 +6172,20 @@ HasAllEdgeMissRequests returns a boolean if a field has been set. ### GetAllStatus1xx -`func (o *RealtimeMeasurements) GetAllStatus1xx() int32` +`func (o *RealtimeMeasurements) GetAllStatus1xx() int64` GetAllStatus1xx returns the AllStatus1xx field if non-nil, zero value otherwise. ### GetAllStatus1xxOk -`func (o *RealtimeMeasurements) GetAllStatus1xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllStatus1xxOk() (*int64, bool)` GetAllStatus1xxOk returns a tuple with the AllStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus1xx -`func (o *RealtimeMeasurements) SetAllStatus1xx(v int32)` +`func (o *RealtimeMeasurements) SetAllStatus1xx(v int64)` SetAllStatus1xx sets AllStatus1xx field to given value. @@ -6197,20 +6197,20 @@ HasAllStatus1xx returns a boolean if a field has been set. ### GetAllStatus2xx -`func (o *RealtimeMeasurements) GetAllStatus2xx() int32` +`func (o *RealtimeMeasurements) GetAllStatus2xx() int64` GetAllStatus2xx returns the AllStatus2xx field if non-nil, zero value otherwise. ### GetAllStatus2xxOk -`func (o *RealtimeMeasurements) GetAllStatus2xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllStatus2xxOk() (*int64, bool)` GetAllStatus2xxOk returns a tuple with the AllStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus2xx -`func (o *RealtimeMeasurements) SetAllStatus2xx(v int32)` +`func (o *RealtimeMeasurements) SetAllStatus2xx(v int64)` SetAllStatus2xx sets AllStatus2xx field to given value. @@ -6222,20 +6222,20 @@ HasAllStatus2xx returns a boolean if a field has been set. ### GetAllStatus3xx -`func (o *RealtimeMeasurements) GetAllStatus3xx() int32` +`func (o *RealtimeMeasurements) GetAllStatus3xx() int64` GetAllStatus3xx returns the AllStatus3xx field if non-nil, zero value otherwise. ### GetAllStatus3xxOk -`func (o *RealtimeMeasurements) GetAllStatus3xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllStatus3xxOk() (*int64, bool)` GetAllStatus3xxOk returns a tuple with the AllStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus3xx -`func (o *RealtimeMeasurements) SetAllStatus3xx(v int32)` +`func (o *RealtimeMeasurements) SetAllStatus3xx(v int64)` SetAllStatus3xx sets AllStatus3xx field to given value. @@ -6247,20 +6247,20 @@ HasAllStatus3xx returns a boolean if a field has been set. ### GetAllStatus4xx -`func (o *RealtimeMeasurements) GetAllStatus4xx() int32` +`func (o *RealtimeMeasurements) GetAllStatus4xx() int64` GetAllStatus4xx returns the AllStatus4xx field if non-nil, zero value otherwise. ### GetAllStatus4xxOk -`func (o *RealtimeMeasurements) GetAllStatus4xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllStatus4xxOk() (*int64, bool)` GetAllStatus4xxOk returns a tuple with the AllStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus4xx -`func (o *RealtimeMeasurements) SetAllStatus4xx(v int32)` +`func (o *RealtimeMeasurements) SetAllStatus4xx(v int64)` SetAllStatus4xx sets AllStatus4xx field to given value. @@ -6272,20 +6272,20 @@ HasAllStatus4xx returns a boolean if a field has been set. ### GetAllStatus5xx -`func (o *RealtimeMeasurements) GetAllStatus5xx() int32` +`func (o *RealtimeMeasurements) GetAllStatus5xx() int64` GetAllStatus5xx returns the AllStatus5xx field if non-nil, zero value otherwise. ### GetAllStatus5xxOk -`func (o *RealtimeMeasurements) GetAllStatus5xxOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetAllStatus5xxOk() (*int64, bool)` GetAllStatus5xxOk returns a tuple with the AllStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus5xx -`func (o *RealtimeMeasurements) SetAllStatus5xx(v int32)` +`func (o *RealtimeMeasurements) SetAllStatus5xx(v int64)` SetAllStatus5xx sets AllStatus5xx field to given value. @@ -6322,20 +6322,20 @@ HasOriginOffload returns a boolean if a field has been set. ### GetRequestDeniedGetHeadBody -`func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBody() int32` +`func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBody() int64` GetRequestDeniedGetHeadBody returns the RequestDeniedGetHeadBody field if non-nil, zero value otherwise. ### GetRequestDeniedGetHeadBodyOk -`func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBodyOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBodyOk() (*int64, bool)` GetRequestDeniedGetHeadBodyOk returns a tuple with the RequestDeniedGetHeadBody field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRequestDeniedGetHeadBody -`func (o *RealtimeMeasurements) SetRequestDeniedGetHeadBody(v int32)` +`func (o *RealtimeMeasurements) SetRequestDeniedGetHeadBody(v int64)` SetRequestDeniedGetHeadBody sets RequestDeniedGetHeadBody field to given value. @@ -6347,20 +6347,20 @@ HasRequestDeniedGetHeadBody returns a boolean if a field has been set. ### GetServiceDdosRequestsDetected -`func (o *RealtimeMeasurements) GetServiceDdosRequestsDetected() int32` +`func (o *RealtimeMeasurements) GetServiceDdosRequestsDetected() int64` GetServiceDdosRequestsDetected returns the ServiceDdosRequestsDetected field if non-nil, zero value otherwise. ### GetServiceDdosRequestsDetectedOk -`func (o *RealtimeMeasurements) GetServiceDdosRequestsDetectedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetServiceDdosRequestsDetectedOk() (*int64, bool)` GetServiceDdosRequestsDetectedOk returns a tuple with the ServiceDdosRequestsDetected field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsDetected -`func (o *RealtimeMeasurements) SetServiceDdosRequestsDetected(v int32)` +`func (o *RealtimeMeasurements) SetServiceDdosRequestsDetected(v int64)` SetServiceDdosRequestsDetected sets ServiceDdosRequestsDetected field to given value. @@ -6372,20 +6372,20 @@ HasServiceDdosRequestsDetected returns a boolean if a field has been set. ### GetServiceDdosRequestsMitigated -`func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigated() int32` +`func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigated() int64` GetServiceDdosRequestsMitigated returns the ServiceDdosRequestsMitigated field if non-nil, zero value otherwise. ### GetServiceDdosRequestsMitigatedOk -`func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigatedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigatedOk() (*int64, bool)` GetServiceDdosRequestsMitigatedOk returns a tuple with the ServiceDdosRequestsMitigated field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsMitigated -`func (o *RealtimeMeasurements) SetServiceDdosRequestsMitigated(v int32)` +`func (o *RealtimeMeasurements) SetServiceDdosRequestsMitigated(v int64)` SetServiceDdosRequestsMitigated sets ServiceDdosRequestsMitigated field to given value. @@ -6397,20 +6397,20 @@ HasServiceDdosRequestsMitigated returns a boolean if a field has been set. ### GetServiceDdosRequestsAllowed -`func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowed() int32` +`func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowed() int64` GetServiceDdosRequestsAllowed returns the ServiceDdosRequestsAllowed field if non-nil, zero value otherwise. ### GetServiceDdosRequestsAllowedOk -`func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowedOk() (*int32, bool)` +`func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowedOk() (*int64, bool)` GetServiceDdosRequestsAllowedOk returns a tuple with the ServiceDdosRequestsAllowed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsAllowed -`func (o *RealtimeMeasurements) SetServiceDdosRequestsAllowed(v int32)` +`func (o *RealtimeMeasurements) SetServiceDdosRequestsAllowed(v int64)` SetServiceDdosRequestsAllowed sets ServiceDdosRequestsAllowed field to given value. diff --git a/docs/Results.md b/docs/Results.md index ab47de8..59765b4 100644 --- a/docs/Results.md +++ b/docs/Results.md @@ -4,254 +4,254 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**Requests** | Pointer to **int32** | Number of requests processed. | [optional] -**Hits** | Pointer to **int32** | Number of cache hits. | [optional] +**Requests** | Pointer to **int64** | Number of requests processed. | [optional] +**Hits** | Pointer to **int64** | Number of cache hits. | [optional] **HitsTime** | Pointer to **float32** | Total amount of time spent processing cache hits (in seconds). | [optional] -**Miss** | Pointer to **int32** | Number of cache misses. | [optional] +**Miss** | Pointer to **int64** | Number of cache misses. | [optional] **MissTime** | Pointer to **float32** | Total amount of time spent processing cache misses (in seconds). | [optional] -**Pass** | Pointer to **int32** | Number of requests that passed through the CDN without being cached. | [optional] +**Pass** | Pointer to **int64** | Number of requests that passed through the CDN without being cached. | [optional] **PassTime** | Pointer to **float32** | Total amount of time spent processing cache passes (in seconds). | [optional] -**Errors** | Pointer to **int32** | Number of cache errors. | [optional] -**Restarts** | Pointer to **int32** | Number of restarts performed. | [optional] +**Errors** | Pointer to **int64** | Number of cache errors. | [optional] +**Restarts** | Pointer to **int64** | Number of restarts performed. | [optional] **HitRatio** | Pointer to **NullableFloat32** | Ratio of cache hits to cache misses (between 0 and 1). | [optional] -**Bandwidth** | Pointer to **int32** | Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes` + `compute_resp_header_bytes` + `compute_resp_body_bytes` + `compute_bereq_header_bytes` + `compute_bereq_body_bytes` + `websocket_resp_header_bytes` + `websocket_resp_body_bytes` + `websocket_bereq_header_bytes` + `websocket_bereq_body_bytes` + `fanout_resp_header_bytes` + `fanout_resp_body_bytes` + `fanout_bereq_header_bytes` + `fanout_bereq_body_bytes`). | [optional] -**BodySize** | Pointer to **int32** | Total body bytes delivered (alias for resp_body_bytes). | [optional] -**HeaderSize** | Pointer to **int32** | Total header bytes delivered (alias for resp_header_bytes). | [optional] -**ReqBodyBytes** | Pointer to **int32** | Total body bytes received. | [optional] -**ReqHeaderBytes** | Pointer to **int32** | Total header bytes received. | [optional] -**RespBodyBytes** | Pointer to **int32** | Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). | [optional] -**RespHeaderBytes** | Pointer to **int32** | Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). | [optional] -**BereqBodyBytes** | Pointer to **int32** | Total body bytes sent to origin. | [optional] -**BereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to origin. | [optional] -**Uncacheable** | Pointer to **int32** | Number of requests that were designated uncachable. | [optional] -**Pipe** | Pointer to **int32** | Optional. Pipe operations performed (legacy feature). | [optional] -**Synth** | Pointer to **int32** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). | [optional] -**TLS** | Pointer to **int32** | Number of requests that were received over TLS. | [optional] -**TLSV10** | Pointer to **int32** | Number of requests received over TLS 1.0. | [optional] -**TLSV11** | Pointer to **int32** | Number of requests received over TLS 1.1. | [optional] -**TLSV12** | Pointer to **int32** | Number of requests received over TLS 1.2. | [optional] -**TLSV13** | Pointer to **int32** | Number of requests received over TLS 1.3. | [optional] -**EdgeRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly. | [optional] -**EdgeRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from Fastly to the end user. | [optional] -**EdgeRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from Fastly to the end user. | [optional] -**EdgeHitRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] -**EdgeMissRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] -**OriginFetches** | Pointer to **int32** | Number of requests sent to origin. | [optional] -**OriginFetchHeaderBytes** | Pointer to **int32** | Total request header bytes sent to origin. | [optional] -**OriginFetchBodyBytes** | Pointer to **int32** | Total request body bytes sent to origin. | [optional] -**OriginFetchRespHeaderBytes** | Pointer to **int32** | Total header bytes received from origin. | [optional] -**OriginFetchRespBodyBytes** | Pointer to **int32** | Total body bytes received from origin. | [optional] -**OriginRevalidations** | Pointer to **int32** | Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. | [optional] -**OriginCacheFetches** | Pointer to **int32** | The total number of completed requests made to backends (origins) that returned cacheable content. | [optional] -**Shield** | Pointer to **int32** | Number of requests from edge to the shield POP. | [optional] -**ShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield. | [optional] -**ShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield. | [optional] -**ShieldFetches** | Pointer to **int32** | Number of requests made from one Fastly POP to another, as part of shielding. | [optional] -**ShieldFetchHeaderBytes** | Pointer to **int32** | Total request header bytes sent to a shield. | [optional] -**ShieldFetchBodyBytes** | Pointer to **int32** | Total request body bytes sent to a shield. | [optional] -**ShieldFetchRespHeaderBytes** | Pointer to **int32** | Total response header bytes sent from a shield to the edge. | [optional] -**ShieldFetchRespBodyBytes** | Pointer to **int32** | Total response body bytes sent from a shield to the edge. | [optional] -**ShieldRevalidations** | Pointer to **int32** | Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. | [optional] -**ShieldCacheFetches** | Pointer to **int32** | The total number of completed requests made to shields that returned cacheable content. | [optional] -**Ipv6** | Pointer to **int32** | Number of requests that were received over IPv6. | [optional] -**Otfp** | Pointer to **int32** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] -**OtfpManifests** | Pointer to **int32** | Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**Bandwidth** | Pointer to **int64** | Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes` + `compute_resp_header_bytes` + `compute_resp_body_bytes` + `compute_bereq_header_bytes` + `compute_bereq_body_bytes` + `websocket_resp_header_bytes` + `websocket_resp_body_bytes` + `websocket_bereq_header_bytes` + `websocket_bereq_body_bytes` + `fanout_resp_header_bytes` + `fanout_resp_body_bytes` + `fanout_bereq_header_bytes` + `fanout_bereq_body_bytes`). | [optional] +**BodySize** | Pointer to **int64** | Total body bytes delivered (alias for resp_body_bytes). | [optional] +**HeaderSize** | Pointer to **int64** | Total header bytes delivered (alias for resp_header_bytes). | [optional] +**ReqBodyBytes** | Pointer to **int64** | Total body bytes received. | [optional] +**ReqHeaderBytes** | Pointer to **int64** | Total header bytes received. | [optional] +**RespBodyBytes** | Pointer to **int64** | Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). | [optional] +**RespHeaderBytes** | Pointer to **int64** | Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). | [optional] +**BereqBodyBytes** | Pointer to **int64** | Total body bytes sent to origin. | [optional] +**BereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to origin. | [optional] +**Uncacheable** | Pointer to **int64** | Number of requests that were designated uncachable. | [optional] +**Pipe** | Pointer to **int64** | Optional. Pipe operations performed (legacy feature). | [optional] +**Synth** | Pointer to **int64** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). | [optional] +**TLS** | Pointer to **int64** | Number of requests that were received over TLS. | [optional] +**TLSV10** | Pointer to **int64** | Number of requests received over TLS 1.0. | [optional] +**TLSV11** | Pointer to **int64** | Number of requests received over TLS 1.1. | [optional] +**TLSV12** | Pointer to **int64** | Number of requests received over TLS 1.2. | [optional] +**TLSV13** | Pointer to **int64** | Number of requests received over TLS 1.3. | [optional] +**EdgeRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly. | [optional] +**EdgeRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from Fastly to the end user. | [optional] +**EdgeRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from Fastly to the end user. | [optional] +**EdgeHitRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] +**EdgeMissRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] +**OriginFetches** | Pointer to **int64** | Number of requests sent to origin. | [optional] +**OriginFetchHeaderBytes** | Pointer to **int64** | Total request header bytes sent to origin. | [optional] +**OriginFetchBodyBytes** | Pointer to **int64** | Total request body bytes sent to origin. | [optional] +**OriginFetchRespHeaderBytes** | Pointer to **int64** | Total header bytes received from origin. | [optional] +**OriginFetchRespBodyBytes** | Pointer to **int64** | Total body bytes received from origin. | [optional] +**OriginRevalidations** | Pointer to **int64** | Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. | [optional] +**OriginCacheFetches** | Pointer to **int64** | The total number of completed requests made to backends (origins) that returned cacheable content. | [optional] +**Shield** | Pointer to **int64** | Number of requests from edge to the shield POP. | [optional] +**ShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield. | [optional] +**ShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield. | [optional] +**ShieldFetches** | Pointer to **int64** | Number of requests made from one Fastly POP to another, as part of shielding. | [optional] +**ShieldFetchHeaderBytes** | Pointer to **int64** | Total request header bytes sent to a shield. | [optional] +**ShieldFetchBodyBytes** | Pointer to **int64** | Total request body bytes sent to a shield. | [optional] +**ShieldFetchRespHeaderBytes** | Pointer to **int64** | Total response header bytes sent from a shield to the edge. | [optional] +**ShieldFetchRespBodyBytes** | Pointer to **int64** | Total response body bytes sent from a shield to the edge. | [optional] +**ShieldRevalidations** | Pointer to **int64** | Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. | [optional] +**ShieldCacheFetches** | Pointer to **int64** | The total number of completed requests made to shields that returned cacheable content. | [optional] +**Ipv6** | Pointer to **int64** | Number of requests that were received over IPv6. | [optional] +**Otfp** | Pointer to **int64** | Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] +**OtfpManifests** | Pointer to **int64** | Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. | [optional] **OtfpDeliverTime** | Pointer to **float32** | Total amount of time spent delivering a response from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). | [optional] **OtfpShieldTime** | Pointer to **float32** | Total amount of time spent delivering a response via a shield from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). | [optional] -**Video** | Pointer to **int32** | Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). | [optional] -**Pci** | Pointer to **int32** | Number of responses with the PCI flag turned on. | [optional] -**Log** | Pointer to **int32** | Number of log lines sent. | [optional] -**LogBytes** | Pointer to **int32** | Total log bytes sent. | [optional] -**HTTP2** | Pointer to **int32** | Number of requests received over HTTP/2. | [optional] -**HTTP3** | Pointer to **int32** | Number of requests received over HTTP/3. | [optional] -**WafLogged** | Pointer to **int32** | Number of requests that triggered a WAF rule and were logged. | [optional] -**WafBlocked** | Pointer to **int32** | Number of requests that triggered a WAF rule and were blocked. | [optional] -**WafPassed** | Pointer to **int32** | Number of requests that triggered a WAF rule and were passed. | [optional] -**AttackReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule. | [optional] -**AttackReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule. | [optional] -**AttackLoggedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was logged. | [optional] -**AttackLoggedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was logged. | [optional] -**AttackBlockedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was blocked. | [optional] -**AttackBlockedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was blocked. | [optional] -**AttackPassedReqBodyBytes** | Pointer to **int32** | Total body bytes received from requests that triggered a WAF rule that was passed. | [optional] -**AttackPassedReqHeaderBytes** | Pointer to **int32** | Total header bytes received from requests that triggered a WAF rule that was passed. | [optional] -**AttackRespSynthBytes** | Pointer to **int32** | Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. | [optional] -**Imgopto** | Pointer to **int32** | Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. | [optional] -**ImgoptoRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] -**ImgoptoRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] -**ImgoptoShield** | Pointer to **int32** | Number of responses that came from the Fastly Image Optimizer service via a shield. | [optional] -**ImgoptoShieldRespBodyBytes** | Pointer to **int32** | Total body bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] -**ImgoptoShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] -**ImgoptoTransforms** | Pointer to **int32** | Number of transforms performed by the Fastly Image Optimizer service. | [optional] -**Imgvideo** | Pointer to **int32** | Number of video responses that came from the Fastly Image Optimizer service. | [optional] -**ImgvideoFrames** | Pointer to **int32** | Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] -**ImgvideoRespHeaderBytes** | Pointer to **int32** | Total header bytes of video delivered from the Fastly Image Optimizer service. | [optional] -**ImgvideoRespBodyBytes** | Pointer to **int32** | Total body bytes of video delivered from the Fastly Image Optimizer service. | [optional] -**ImgvideoShieldRespHeaderBytes** | Pointer to **int32** | Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] -**ImgvideoShieldRespBodyBytes** | Pointer to **int32** | Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] -**ImgvideoShield** | Pointer to **int32** | Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. | [optional] -**ImgvideoShieldFrames** | Pointer to **int32** | Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] -**Status200** | Pointer to **int32** | Number of responses sent with status code 200 (Success). | [optional] -**Status204** | Pointer to **int32** | Number of responses sent with status code 204 (No Content). | [optional] -**Status206** | Pointer to **int32** | Number of responses sent with status code 206 (Partial Content). | [optional] -**Status301** | Pointer to **int32** | Number of responses sent with status code 301 (Moved Permanently). | [optional] -**Status302** | Pointer to **int32** | Number of responses sent with status code 302 (Found). | [optional] -**Status304** | Pointer to **int32** | Number of responses sent with status code 304 (Not Modified). | [optional] -**Status400** | Pointer to **int32** | Number of responses sent with status code 400 (Bad Request). | [optional] -**Status401** | Pointer to **int32** | Number of responses sent with status code 401 (Unauthorized). | [optional] -**Status403** | Pointer to **int32** | Number of responses sent with status code 403 (Forbidden). | [optional] -**Status404** | Pointer to **int32** | Number of responses sent with status code 404 (Not Found). | [optional] -**Status406** | Pointer to **int32** | Number of responses sent with status code 406 (Not Acceptable). | [optional] -**Status416** | Pointer to **int32** | Number of responses sent with status code 416 (Range Not Satisfiable). | [optional] -**Status429** | Pointer to **int32** | Number of responses sent with status code 429 (Too Many Requests). | [optional] -**Status500** | Pointer to **int32** | Number of responses sent with status code 500 (Internal Server Error). | [optional] -**Status501** | Pointer to **int32** | Number of responses sent with status code 501 (Not Implemented). | [optional] -**Status502** | Pointer to **int32** | Number of responses sent with status code 502 (Bad Gateway). | [optional] -**Status503** | Pointer to **int32** | Number of responses sent with status code 503 (Service Unavailable). | [optional] -**Status504** | Pointer to **int32** | Number of responses sent with status code 504 (Gateway Timeout). | [optional] -**Status505** | Pointer to **int32** | Number of responses sent with status code 505 (HTTP Version Not Supported). | [optional] -**Status1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered. | [optional] -**Status2xx** | Pointer to **int32** | Number of \"Success\" status codes delivered. | [optional] -**Status3xx** | Pointer to **int32** | Number of \"Redirection\" codes delivered. | [optional] -**Status4xx** | Pointer to **int32** | Number of \"Client Error\" codes delivered. | [optional] -**Status5xx** | Pointer to **int32** | Number of \"Server Error\" codes delivered. | [optional] -**ObjectSize1k** | Pointer to **int32** | Number of objects served that were under 1KB in size. | [optional] -**ObjectSize10k** | Pointer to **int32** | Number of objects served that were between 1KB and 10KB in size. | [optional] -**ObjectSize100k** | Pointer to **int32** | Number of objects served that were between 10KB and 100KB in size. | [optional] -**ObjectSize1m** | Pointer to **int32** | Number of objects served that were between 100KB and 1MB in size. | [optional] -**ObjectSize10m** | Pointer to **int32** | Number of objects served that were between 1MB and 10MB in size. | [optional] -**ObjectSize100m** | Pointer to **int32** | Number of objects served that were between 10MB and 100MB in size. | [optional] -**ObjectSize1g** | Pointer to **int32** | Number of objects served that were between 100MB and 1GB in size. | [optional] +**Video** | Pointer to **int64** | Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). | [optional] +**Pci** | Pointer to **int64** | Number of responses with the PCI flag turned on. | [optional] +**Log** | Pointer to **int64** | Number of log lines sent. | [optional] +**LogBytes** | Pointer to **int64** | Total log bytes sent. | [optional] +**HTTP2** | Pointer to **int64** | Number of requests received over HTTP/2. | [optional] +**HTTP3** | Pointer to **int64** | Number of requests received over HTTP/3. | [optional] +**WafLogged** | Pointer to **int64** | Number of requests that triggered a WAF rule and were logged. | [optional] +**WafBlocked** | Pointer to **int64** | Number of requests that triggered a WAF rule and were blocked. | [optional] +**WafPassed** | Pointer to **int64** | Number of requests that triggered a WAF rule and were passed. | [optional] +**AttackReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule. | [optional] +**AttackReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule. | [optional] +**AttackLoggedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was logged. | [optional] +**AttackLoggedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was logged. | [optional] +**AttackBlockedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was blocked. | [optional] +**AttackBlockedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was blocked. | [optional] +**AttackPassedReqBodyBytes** | Pointer to **int64** | Total body bytes received from requests that triggered a WAF rule that was passed. | [optional] +**AttackPassedReqHeaderBytes** | Pointer to **int64** | Total header bytes received from requests that triggered a WAF rule that was passed. | [optional] +**AttackRespSynthBytes** | Pointer to **int64** | Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. | [optional] +**Imgopto** | Pointer to **int64** | Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. | [optional] +**ImgoptoRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] +**ImgoptoRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. | [optional] +**ImgoptoShield** | Pointer to **int64** | Number of responses that came from the Fastly Image Optimizer service via a shield. | [optional] +**ImgoptoShieldRespBodyBytes** | Pointer to **int64** | Total body bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] +**ImgoptoShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered via a shield from the Fastly Image Optimizer service. | [optional] +**ImgoptoTransforms** | Pointer to **int64** | Number of transforms performed by the Fastly Image Optimizer service. | [optional] +**Imgvideo** | Pointer to **int64** | Number of video responses that came from the Fastly Image Optimizer service. | [optional] +**ImgvideoFrames** | Pointer to **int64** | Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] +**ImgvideoRespHeaderBytes** | Pointer to **int64** | Total header bytes of video delivered from the Fastly Image Optimizer service. | [optional] +**ImgvideoRespBodyBytes** | Pointer to **int64** | Total body bytes of video delivered from the Fastly Image Optimizer service. | [optional] +**ImgvideoShieldRespHeaderBytes** | Pointer to **int64** | Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] +**ImgvideoShieldRespBodyBytes** | Pointer to **int64** | Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. | [optional] +**ImgvideoShield** | Pointer to **int64** | Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. | [optional] +**ImgvideoShieldFrames** | Pointer to **int64** | Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. | [optional] +**Status200** | Pointer to **int64** | Number of responses sent with status code 200 (Success). | [optional] +**Status204** | Pointer to **int64** | Number of responses sent with status code 204 (No Content). | [optional] +**Status206** | Pointer to **int64** | Number of responses sent with status code 206 (Partial Content). | [optional] +**Status301** | Pointer to **int64** | Number of responses sent with status code 301 (Moved Permanently). | [optional] +**Status302** | Pointer to **int64** | Number of responses sent with status code 302 (Found). | [optional] +**Status304** | Pointer to **int64** | Number of responses sent with status code 304 (Not Modified). | [optional] +**Status400** | Pointer to **int64** | Number of responses sent with status code 400 (Bad Request). | [optional] +**Status401** | Pointer to **int64** | Number of responses sent with status code 401 (Unauthorized). | [optional] +**Status403** | Pointer to **int64** | Number of responses sent with status code 403 (Forbidden). | [optional] +**Status404** | Pointer to **int64** | Number of responses sent with status code 404 (Not Found). | [optional] +**Status406** | Pointer to **int64** | Number of responses sent with status code 406 (Not Acceptable). | [optional] +**Status416** | Pointer to **int64** | Number of responses sent with status code 416 (Range Not Satisfiable). | [optional] +**Status429** | Pointer to **int64** | Number of responses sent with status code 429 (Too Many Requests). | [optional] +**Status500** | Pointer to **int64** | Number of responses sent with status code 500 (Internal Server Error). | [optional] +**Status501** | Pointer to **int64** | Number of responses sent with status code 501 (Not Implemented). | [optional] +**Status502** | Pointer to **int64** | Number of responses sent with status code 502 (Bad Gateway). | [optional] +**Status503** | Pointer to **int64** | Number of responses sent with status code 503 (Service Unavailable). | [optional] +**Status504** | Pointer to **int64** | Number of responses sent with status code 504 (Gateway Timeout). | [optional] +**Status505** | Pointer to **int64** | Number of responses sent with status code 505 (HTTP Version Not Supported). | [optional] +**Status1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered. | [optional] +**Status2xx** | Pointer to **int64** | Number of \"Success\" status codes delivered. | [optional] +**Status3xx** | Pointer to **int64** | Number of \"Redirection\" codes delivered. | [optional] +**Status4xx** | Pointer to **int64** | Number of \"Client Error\" codes delivered. | [optional] +**Status5xx** | Pointer to **int64** | Number of \"Server Error\" codes delivered. | [optional] +**ObjectSize1k** | Pointer to **int64** | Number of objects served that were under 1KB in size. | [optional] +**ObjectSize10k** | Pointer to **int64** | Number of objects served that were between 1KB and 10KB in size. | [optional] +**ObjectSize100k** | Pointer to **int64** | Number of objects served that were between 10KB and 100KB in size. | [optional] +**ObjectSize1m** | Pointer to **int64** | Number of objects served that were between 100KB and 1MB in size. | [optional] +**ObjectSize10m** | Pointer to **int64** | Number of objects served that were between 1MB and 10MB in size. | [optional] +**ObjectSize100m** | Pointer to **int64** | Number of objects served that were between 10MB and 100MB in size. | [optional] +**ObjectSize1g** | Pointer to **int64** | Number of objects served that were between 100MB and 1GB in size. | [optional] **RecvSubTime** | Pointer to **float32** | Time spent inside the `vcl_recv` Varnish subroutine (in seconds). | [optional] -**RecvSubCount** | Pointer to **int32** | Number of executions of the `vcl_recv` Varnish subroutine. | [optional] +**RecvSubCount** | Pointer to **int64** | Number of executions of the `vcl_recv` Varnish subroutine. | [optional] **HashSubTime** | Pointer to **float32** | Time spent inside the `vcl_hash` Varnish subroutine (in seconds). | [optional] -**HashSubCount** | Pointer to **int32** | Number of executions of the `vcl_hash` Varnish subroutine. | [optional] +**HashSubCount** | Pointer to **int64** | Number of executions of the `vcl_hash` Varnish subroutine. | [optional] **MissSubTime** | Pointer to **float32** | Time spent inside the `vcl_miss` Varnish subroutine (in seconds). | [optional] -**MissSubCount** | Pointer to **int32** | Number of executions of the `vcl_miss` Varnish subroutine. | [optional] +**MissSubCount** | Pointer to **int64** | Number of executions of the `vcl_miss` Varnish subroutine. | [optional] **FetchSubTime** | Pointer to **float32** | Time spent inside the `vcl_fetch` Varnish subroutine (in seconds). | [optional] -**FetchSubCount** | Pointer to **int32** | Number of executions of the `vcl_fetch` Varnish subroutine. | [optional] +**FetchSubCount** | Pointer to **int64** | Number of executions of the `vcl_fetch` Varnish subroutine. | [optional] **PassSubTime** | Pointer to **float32** | Time spent inside the `vcl_pass` Varnish subroutine (in seconds). | [optional] -**PassSubCount** | Pointer to **int32** | Number of executions of the `vcl_pass` Varnish subroutine. | [optional] +**PassSubCount** | Pointer to **int64** | Number of executions of the `vcl_pass` Varnish subroutine. | [optional] **PipeSubTime** | Pointer to **float32** | Time spent inside the `vcl_pipe` Varnish subroutine (in seconds). | [optional] -**PipeSubCount** | Pointer to **int32** | Number of executions of the `vcl_pipe` Varnish subroutine. | [optional] +**PipeSubCount** | Pointer to **int64** | Number of executions of the `vcl_pipe` Varnish subroutine. | [optional] **DeliverSubTime** | Pointer to **float32** | Time spent inside the `vcl_deliver` Varnish subroutine (in seconds). | [optional] -**DeliverSubCount** | Pointer to **int32** | Number of executions of the `vcl_deliver` Varnish subroutine. | [optional] +**DeliverSubCount** | Pointer to **int64** | Number of executions of the `vcl_deliver` Varnish subroutine. | [optional] **ErrorSubTime** | Pointer to **float32** | Time spent inside the `vcl_error` Varnish subroutine (in seconds). | [optional] -**ErrorSubCount** | Pointer to **int32** | Number of executions of the `vcl_error` Varnish subroutine. | [optional] +**ErrorSubCount** | Pointer to **int64** | Number of executions of the `vcl_error` Varnish subroutine. | [optional] **HitSubTime** | Pointer to **float32** | Time spent inside the `vcl_hit` Varnish subroutine (in seconds). | [optional] -**HitSubCount** | Pointer to **int32** | Number of executions of the `vcl_hit` Varnish subroutine. | [optional] +**HitSubCount** | Pointer to **int64** | Number of executions of the `vcl_hit` Varnish subroutine. | [optional] **PrehashSubTime** | Pointer to **float32** | Time spent inside the `vcl_prehash` Varnish subroutine (in seconds). | [optional] -**PrehashSubCount** | Pointer to **int32** | Number of executions of the `vcl_prehash` Varnish subroutine. | [optional] +**PrehashSubCount** | Pointer to **int64** | Number of executions of the `vcl_prehash` Varnish subroutine. | [optional] **PredeliverSubTime** | Pointer to **float32** | Time spent inside the `vcl_predeliver` Varnish subroutine (in seconds). | [optional] -**PredeliverSubCount** | Pointer to **int32** | Number of executions of the `vcl_predeliver` Varnish subroutine. | [optional] -**TLSHandshakeSentBytes** | Pointer to **int32** | Number of bytes transferred during TLS handshake. | [optional] -**HitRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache hits. | [optional] -**MissRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache misses. | [optional] -**PassRespBodyBytes** | Pointer to **int32** | Total body bytes delivered for cache passes. | [optional] -**SegblockOriginFetches** | Pointer to **int32** | Number of `Range` requests to origin for segments of resources when using segmented caching. | [optional] -**SegblockShieldFetches** | Pointer to **int32** | Number of `Range` requests to a shield for segments of resources when using segmented caching. | [optional] -**ComputeRequests** | Pointer to **int32** | The total number of requests that were received for your service by Fastly. | [optional] +**PredeliverSubCount** | Pointer to **int64** | Number of executions of the `vcl_predeliver` Varnish subroutine. | [optional] +**TLSHandshakeSentBytes** | Pointer to **int64** | Number of bytes transferred during TLS handshake. | [optional] +**HitRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache hits. | [optional] +**MissRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache misses. | [optional] +**PassRespBodyBytes** | Pointer to **int64** | Total body bytes delivered for cache passes. | [optional] +**SegblockOriginFetches** | Pointer to **int64** | Number of `Range` requests to origin for segments of resources when using segmented caching. | [optional] +**SegblockShieldFetches** | Pointer to **int64** | Number of `Range` requests to a shield for segments of resources when using segmented caching. | [optional] +**ComputeRequests** | Pointer to **int64** | The total number of requests that were received for your service by Fastly. | [optional] **ComputeRequestTimeMs** | Pointer to **float32** | The total, actual amount of time used to process your requests, including active CPU time (in milliseconds). | [optional] **ComputeRequestTimeBilledMs** | Pointer to **float32** | The total amount of request processing time you will be billed for, measured in 50 millisecond increments. | [optional] -**ComputeRAMUsed** | Pointer to **int32** | The amount of RAM used for your service by Fastly (in bytes). | [optional] +**ComputeRAMUsed** | Pointer to **int64** | The amount of RAM used for your service by Fastly (in bytes). | [optional] **ComputeExecutionTimeMs** | Pointer to **float32** | The amount of active CPU time used to process your requests (in milliseconds). | [optional] -**ComputeReqHeaderBytes** | Pointer to **int32** | Total header bytes received by the Compute platform. | [optional] -**ComputeReqBodyBytes** | Pointer to **int32** | Total body bytes received by the Compute platform. | [optional] -**ComputeRespHeaderBytes** | Pointer to **int32** | Total header bytes sent from Compute to end user. | [optional] -**ComputeRespBodyBytes** | Pointer to **int32** | Total body bytes sent from Compute to end user. | [optional] -**ComputeRespStatus1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus2xx** | Pointer to **int32** | Number of \"Success\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus3xx** | Pointer to **int32** | Number of \"Redirection\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus4xx** | Pointer to **int32** | Number of \"Client Error\" category status codes delivered by the Compute platform. | [optional] -**ComputeRespStatus5xx** | Pointer to **int32** | Number of \"Server Error\" category status codes delivered by the Compute platform. | [optional] -**ComputeBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] -**ComputeBereqBodyBytes** | Pointer to **int32** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] -**ComputeBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends (origins) by the Compute platform. | [optional] -**ComputeBerespBodyBytes** | Pointer to **int32** | Total body bytes received from backends (origins) by the Compute platform. | [optional] -**ComputeBereqs** | Pointer to **int32** | Number of backend requests started. | [optional] -**ComputeBereqErrors** | Pointer to **int32** | Number of backend request errors, including timeouts. | [optional] -**ComputeResourceLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. | [optional] -**ComputeHeapLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its heap limit. | [optional] -**ComputeStackLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its stack limit. | [optional] -**ComputeGlobalsLimitExceeded** | Pointer to **int32** | Number of times a guest exceeded its globals limit. | [optional] -**ComputeGuestErrors** | Pointer to **int32** | Number of times a service experienced a guest code error. | [optional] -**ComputeRuntimeErrors** | Pointer to **int32** | Number of times a service experienced a guest runtime error. | [optional] -**EdgeHitRespBodyBytes** | Pointer to **int32** | Body bytes delivered for edge hits. | [optional] -**EdgeHitRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for edge hits. | [optional] -**EdgeMissRespBodyBytes** | Pointer to **int32** | Body bytes delivered for edge misses. | [optional] -**EdgeMissRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for edge misses. | [optional] -**OriginCacheFetchRespBodyBytes** | Pointer to **int32** | Body bytes received from origin for cacheable content. | [optional] -**OriginCacheFetchRespHeaderBytes** | Pointer to **int32** | Header bytes received from an origin for cacheable content. | [optional] -**ShieldHitRequests** | Pointer to **int32** | Number of requests that resulted in a hit at a shield. | [optional] -**ShieldMissRequests** | Pointer to **int32** | Number of requests that resulted in a miss at a shield. | [optional] -**ShieldHitRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for shield hits. | [optional] -**ShieldHitRespBodyBytes** | Pointer to **int32** | Body bytes delivered for shield hits. | [optional] -**ShieldMissRespHeaderBytes** | Pointer to **int32** | Header bytes delivered for shield misses. | [optional] -**ShieldMissRespBodyBytes** | Pointer to **int32** | Body bytes delivered for shield misses. | [optional] -**WebsocketReqHeaderBytes** | Pointer to **int32** | Total header bytes received from end users over passthrough WebSocket connections. | [optional] -**WebsocketReqBodyBytes** | Pointer to **int32** | Total message content bytes received from end users over passthrough WebSocket connections. | [optional] -**WebsocketRespHeaderBytes** | Pointer to **int32** | Total header bytes sent to end users over passthrough WebSocket connections. | [optional] -**WebsocketRespBodyBytes** | Pointer to **int32** | Total message content bytes sent to end users over passthrough WebSocket connections. | [optional] -**WebsocketBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends over passthrough WebSocket connections. | [optional] -**WebsocketBereqBodyBytes** | Pointer to **int32** | Total message content bytes sent to backends over passthrough WebSocket connections. | [optional] -**WebsocketBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends over passthrough WebSocket connections. | [optional] -**WebsocketBerespBodyBytes** | Pointer to **int32** | Total message content bytes received from backends over passthrough WebSocket connections. | [optional] -**WebsocketConnTimeMs** | Pointer to **int32** | Total duration of passthrough WebSocket connections with end users. | [optional] -**FanoutRecvPublishes** | Pointer to **int32** | Total published messages received from the publish API endpoint. | [optional] -**FanoutSendPublishes** | Pointer to **int32** | Total published messages sent to end users. | [optional] -**KvStoreClassAOperations** | Pointer to **int32** | The total number of class a operations for the KV store. | [optional] -**KvStoreClassBOperations** | Pointer to **int32** | The total number of class b operations for the KV store. | [optional] -**ObjectStoreClassAOperations** | Pointer to **int32** | Use kv_store_class_a_operations. | [optional] -**ObjectStoreClassBOperations** | Pointer to **int32** | Use kv_store_class_b_operations. | [optional] -**FanoutReqHeaderBytes** | Pointer to **int32** | Total header bytes received from end users over Fanout connections. | [optional] -**FanoutReqBodyBytes** | Pointer to **int32** | Total body or message content bytes received from end users over Fanout connections. | [optional] -**FanoutRespHeaderBytes** | Pointer to **int32** | Total header bytes sent to end users over Fanout connections. | [optional] -**FanoutRespBodyBytes** | Pointer to **int32** | Total body or message content bytes sent to end users over Fanout connections, excluding published message content. | [optional] -**FanoutBereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to backends over Fanout connections. | [optional] -**FanoutBereqBodyBytes** | Pointer to **int32** | Total body or message content bytes sent to backends over Fanout connections. | [optional] -**FanoutBerespHeaderBytes** | Pointer to **int32** | Total header bytes received from backends over Fanout connections. | [optional] -**FanoutBerespBodyBytes** | Pointer to **int32** | Total body or message content bytes received from backends over Fanout connections. | [optional] -**FanoutConnTimeMs** | Pointer to **int32** | Total duration of Fanout connections with end users. | [optional] -**DdosActionLimitStreamsConnections** | Pointer to **int32** | For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] -**DdosActionLimitStreamsRequests** | Pointer to **int32** | For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] -**DdosActionTarpitAccept** | Pointer to **int32** | The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. | [optional] -**DdosActionTarpit** | Pointer to **int32** | The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. | [optional] -**DdosActionClose** | Pointer to **int32** | The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. | [optional] -**DdosActionBlackhole** | Pointer to **int32** | The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). | [optional] -**BotChallengeStarts** | Pointer to **int32** | The number of challenge-start tokens created. | [optional] -**BotChallengeCompleteTokensPassed** | Pointer to **int32** | The number of challenge-complete tokens that passed validation. | [optional] -**BotChallengeCompleteTokensFailed** | Pointer to **int32** | The number of challenge-complete tokens that failed validation. | [optional] -**BotChallengeCompleteTokensChecked** | Pointer to **int32** | The number of challenge-complete tokens checked. | [optional] -**BotChallengeCompleteTokensDisabled** | Pointer to **int32** | The number of challenge-complete tokens not checked because the feature was disabled. | [optional] -**BotChallengeCompleteTokensIssued** | Pointer to **int32** | The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. | [optional] -**BotChallengesIssued** | Pointer to **int32** | The number of challenges issued. For example, the issuance of a CAPTCHA challenge. | [optional] -**BotChallengesSucceeded** | Pointer to **int32** | The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. | [optional] -**BotChallengesFailed** | Pointer to **int32** | The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. | [optional] -**DdosActionDowngrade** | Pointer to **int32** | The number of times the downgrade action was taken. The downgrade action restricts the client to http1. | [optional] -**DdosActionDowngradedConnections** | Pointer to **int32** | The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. | [optional] -**AllHitRequests** | Pointer to **int32** | Number of cache hits for a VCL service. | [optional] -**AllMissRequests** | Pointer to **int32** | Number of cache misses for a VCL service. | [optional] -**AllPassRequests** | Pointer to **int32** | Number of requests that passed through the CDN without being cached for a VCL service. | [optional] -**AllErrorRequests** | Pointer to **int32** | Number of cache errors for a VCL service. | [optional] -**AllSynthRequests** | Pointer to **int32** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. | [optional] -**AllEdgeHitRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. | [optional] -**AllEdgeMissRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. | [optional] -**AllStatus1xx** | Pointer to **int32** | Number of \"Informational\" category status codes delivered for all sources. | [optional] -**AllStatus2xx** | Pointer to **int32** | Number of \"Success\" status codes delivered for all sources. | [optional] -**AllStatus3xx** | Pointer to **int32** | Number of \"Redirection\" codes delivered for all sources. | [optional] -**AllStatus4xx** | Pointer to **int32** | Number of \"Client Error\" codes delivered for all sources. | [optional] -**AllStatus5xx** | Pointer to **int32** | Number of \"Server Error\" codes delivered for all sources. | [optional] +**ComputeReqHeaderBytes** | Pointer to **int64** | Total header bytes received by the Compute platform. | [optional] +**ComputeReqBodyBytes** | Pointer to **int64** | Total body bytes received by the Compute platform. | [optional] +**ComputeRespHeaderBytes** | Pointer to **int64** | Total header bytes sent from Compute to end user. | [optional] +**ComputeRespBodyBytes** | Pointer to **int64** | Total body bytes sent from Compute to end user. | [optional] +**ComputeRespStatus1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus2xx** | Pointer to **int64** | Number of \"Success\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus3xx** | Pointer to **int64** | Number of \"Redirection\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus4xx** | Pointer to **int64** | Number of \"Client Error\" category status codes delivered by the Compute platform. | [optional] +**ComputeRespStatus5xx** | Pointer to **int64** | Number of \"Server Error\" category status codes delivered by the Compute platform. | [optional] +**ComputeBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends (origins) by the Compute platform. | [optional] +**ComputeBereqBodyBytes** | Pointer to **int64** | Total body bytes sent to backends (origins) by the Compute platform. | [optional] +**ComputeBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends (origins) by the Compute platform. | [optional] +**ComputeBerespBodyBytes** | Pointer to **int64** | Total body bytes received from backends (origins) by the Compute platform. | [optional] +**ComputeBereqs** | Pointer to **int64** | Number of backend requests started. | [optional] +**ComputeBereqErrors** | Pointer to **int64** | Number of backend request errors, including timeouts. | [optional] +**ComputeResourceLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. | [optional] +**ComputeHeapLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its heap limit. | [optional] +**ComputeStackLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its stack limit. | [optional] +**ComputeGlobalsLimitExceeded** | Pointer to **int64** | Number of times a guest exceeded its globals limit. | [optional] +**ComputeGuestErrors** | Pointer to **int64** | Number of times a service experienced a guest code error. | [optional] +**ComputeRuntimeErrors** | Pointer to **int64** | Number of times a service experienced a guest runtime error. | [optional] +**EdgeHitRespBodyBytes** | Pointer to **int64** | Body bytes delivered for edge hits. | [optional] +**EdgeHitRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for edge hits. | [optional] +**EdgeMissRespBodyBytes** | Pointer to **int64** | Body bytes delivered for edge misses. | [optional] +**EdgeMissRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for edge misses. | [optional] +**OriginCacheFetchRespBodyBytes** | Pointer to **int64** | Body bytes received from origin for cacheable content. | [optional] +**OriginCacheFetchRespHeaderBytes** | Pointer to **int64** | Header bytes received from an origin for cacheable content. | [optional] +**ShieldHitRequests** | Pointer to **int64** | Number of requests that resulted in a hit at a shield. | [optional] +**ShieldMissRequests** | Pointer to **int64** | Number of requests that resulted in a miss at a shield. | [optional] +**ShieldHitRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for shield hits. | [optional] +**ShieldHitRespBodyBytes** | Pointer to **int64** | Body bytes delivered for shield hits. | [optional] +**ShieldMissRespHeaderBytes** | Pointer to **int64** | Header bytes delivered for shield misses. | [optional] +**ShieldMissRespBodyBytes** | Pointer to **int64** | Body bytes delivered for shield misses. | [optional] +**WebsocketReqHeaderBytes** | Pointer to **int64** | Total header bytes received from end users over passthrough WebSocket connections. | [optional] +**WebsocketReqBodyBytes** | Pointer to **int64** | Total message content bytes received from end users over passthrough WebSocket connections. | [optional] +**WebsocketRespHeaderBytes** | Pointer to **int64** | Total header bytes sent to end users over passthrough WebSocket connections. | [optional] +**WebsocketRespBodyBytes** | Pointer to **int64** | Total message content bytes sent to end users over passthrough WebSocket connections. | [optional] +**WebsocketBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends over passthrough WebSocket connections. | [optional] +**WebsocketBereqBodyBytes** | Pointer to **int64** | Total message content bytes sent to backends over passthrough WebSocket connections. | [optional] +**WebsocketBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends over passthrough WebSocket connections. | [optional] +**WebsocketBerespBodyBytes** | Pointer to **int64** | Total message content bytes received from backends over passthrough WebSocket connections. | [optional] +**WebsocketConnTimeMs** | Pointer to **int64** | Total duration of passthrough WebSocket connections with end users. | [optional] +**FanoutRecvPublishes** | Pointer to **int64** | Total published messages received from the publish API endpoint. | [optional] +**FanoutSendPublishes** | Pointer to **int64** | Total published messages sent to end users. | [optional] +**KvStoreClassAOperations** | Pointer to **int64** | The total number of class a operations for the KV store. | [optional] +**KvStoreClassBOperations** | Pointer to **int64** | The total number of class b operations for the KV store. | [optional] +**ObjectStoreClassAOperations** | Pointer to **int64** | Use kv_store_class_a_operations. | [optional] +**ObjectStoreClassBOperations** | Pointer to **int64** | Use kv_store_class_b_operations. | [optional] +**FanoutReqHeaderBytes** | Pointer to **int64** | Total header bytes received from end users over Fanout connections. | [optional] +**FanoutReqBodyBytes** | Pointer to **int64** | Total body or message content bytes received from end users over Fanout connections. | [optional] +**FanoutRespHeaderBytes** | Pointer to **int64** | Total header bytes sent to end users over Fanout connections. | [optional] +**FanoutRespBodyBytes** | Pointer to **int64** | Total body or message content bytes sent to end users over Fanout connections, excluding published message content. | [optional] +**FanoutBereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to backends over Fanout connections. | [optional] +**FanoutBereqBodyBytes** | Pointer to **int64** | Total body or message content bytes sent to backends over Fanout connections. | [optional] +**FanoutBerespHeaderBytes** | Pointer to **int64** | Total header bytes received from backends over Fanout connections. | [optional] +**FanoutBerespBodyBytes** | Pointer to **int64** | Total body or message content bytes received from backends over Fanout connections. | [optional] +**FanoutConnTimeMs** | Pointer to **int64** | Total duration of Fanout connections with end users. | [optional] +**DdosActionLimitStreamsConnections** | Pointer to **int64** | For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] +**DdosActionLimitStreamsRequests** | Pointer to **int64** | For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. | [optional] +**DdosActionTarpitAccept** | Pointer to **int64** | The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. | [optional] +**DdosActionTarpit** | Pointer to **int64** | The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. | [optional] +**DdosActionClose** | Pointer to **int64** | The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. | [optional] +**DdosActionBlackhole** | Pointer to **int64** | The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). | [optional] +**BotChallengeStarts** | Pointer to **int64** | The number of challenge-start tokens created. | [optional] +**BotChallengeCompleteTokensPassed** | Pointer to **int64** | The number of challenge-complete tokens that passed validation. | [optional] +**BotChallengeCompleteTokensFailed** | Pointer to **int64** | The number of challenge-complete tokens that failed validation. | [optional] +**BotChallengeCompleteTokensChecked** | Pointer to **int64** | The number of challenge-complete tokens checked. | [optional] +**BotChallengeCompleteTokensDisabled** | Pointer to **int64** | The number of challenge-complete tokens not checked because the feature was disabled. | [optional] +**BotChallengeCompleteTokensIssued** | Pointer to **int64** | The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. | [optional] +**BotChallengesIssued** | Pointer to **int64** | The number of challenges issued. For example, the issuance of a CAPTCHA challenge. | [optional] +**BotChallengesSucceeded** | Pointer to **int64** | The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. | [optional] +**BotChallengesFailed** | Pointer to **int64** | The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. | [optional] +**DdosActionDowngrade** | Pointer to **int64** | The number of times the downgrade action was taken. The downgrade action restricts the client to http1. | [optional] +**DdosActionDowngradedConnections** | Pointer to **int64** | The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. | [optional] +**AllHitRequests** | Pointer to **int64** | Number of cache hits for a VCL service. | [optional] +**AllMissRequests** | Pointer to **int64** | Number of cache misses for a VCL service. | [optional] +**AllPassRequests** | Pointer to **int64** | Number of requests that passed through the CDN without being cached for a VCL service. | [optional] +**AllErrorRequests** | Pointer to **int64** | Number of cache errors for a VCL service. | [optional] +**AllSynthRequests** | Pointer to **int64** | Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. | [optional] +**AllEdgeHitRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. | [optional] +**AllEdgeMissRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. | [optional] +**AllStatus1xx** | Pointer to **int64** | Number of \"Informational\" category status codes delivered for all sources. | [optional] +**AllStatus2xx** | Pointer to **int64** | Number of \"Success\" status codes delivered for all sources. | [optional] +**AllStatus3xx** | Pointer to **int64** | Number of \"Redirection\" codes delivered for all sources. | [optional] +**AllStatus4xx** | Pointer to **int64** | Number of \"Client Error\" codes delivered for all sources. | [optional] +**AllStatus5xx** | Pointer to **int64** | Number of \"Server Error\" codes delivered for all sources. | [optional] **OriginOffload** | Pointer to **float32** | Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). | [optional] -**RequestDeniedGetHeadBody** | Pointer to **int32** | Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. | [optional] -**ServiceDdosRequestsDetected** | Pointer to **int32** | Number of requests classified as a DDoS attack against a customer origin or service. | [optional] -**ServiceDdosRequestsMitigated** | Pointer to **int32** | Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. | [optional] -**ServiceDdosRequestsAllowed** | Pointer to **int32** | Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. | [optional] +**RequestDeniedGetHeadBody** | Pointer to **int64** | Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. | [optional] +**ServiceDdosRequestsDetected** | Pointer to **int64** | Number of requests classified as a DDoS attack against a customer origin or service. | [optional] +**ServiceDdosRequestsMitigated** | Pointer to **int64** | Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. | [optional] +**ServiceDdosRequestsAllowed** | Pointer to **int64** | Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. | [optional] **ServiceID** | Pointer to **string** | | [optional] [readonly] -**StartTime** | Pointer to **int32** | Timestamp for the start of the time period being reported | [optional] +**StartTime** | Pointer to **int64** | Timestamp for the start of the time period being reported | [optional] ## Methods @@ -274,20 +274,20 @@ but it doesn't guarantee that properties required by API are set ### GetRequests -`func (o *Results) GetRequests() int32` +`func (o *Results) GetRequests() int64` GetRequests returns the Requests field if non-nil, zero value otherwise. ### GetRequestsOk -`func (o *Results) GetRequestsOk() (*int32, bool)` +`func (o *Results) GetRequestsOk() (*int64, bool)` GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRequests -`func (o *Results) SetRequests(v int32)` +`func (o *Results) SetRequests(v int64)` SetRequests sets Requests field to given value. @@ -299,20 +299,20 @@ HasRequests returns a boolean if a field has been set. ### GetHits -`func (o *Results) GetHits() int32` +`func (o *Results) GetHits() int64` GetHits returns the Hits field if non-nil, zero value otherwise. ### GetHitsOk -`func (o *Results) GetHitsOk() (*int32, bool)` +`func (o *Results) GetHitsOk() (*int64, bool)` GetHitsOk returns a tuple with the Hits field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHits -`func (o *Results) SetHits(v int32)` +`func (o *Results) SetHits(v int64)` SetHits sets Hits field to given value. @@ -349,20 +349,20 @@ HasHitsTime returns a boolean if a field has been set. ### GetMiss -`func (o *Results) GetMiss() int32` +`func (o *Results) GetMiss() int64` GetMiss returns the Miss field if non-nil, zero value otherwise. ### GetMissOk -`func (o *Results) GetMissOk() (*int32, bool)` +`func (o *Results) GetMissOk() (*int64, bool)` GetMissOk returns a tuple with the Miss field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMiss -`func (o *Results) SetMiss(v int32)` +`func (o *Results) SetMiss(v int64)` SetMiss sets Miss field to given value. @@ -399,20 +399,20 @@ HasMissTime returns a boolean if a field has been set. ### GetPass -`func (o *Results) GetPass() int32` +`func (o *Results) GetPass() int64` GetPass returns the Pass field if non-nil, zero value otherwise. ### GetPassOk -`func (o *Results) GetPassOk() (*int32, bool)` +`func (o *Results) GetPassOk() (*int64, bool)` GetPassOk returns a tuple with the Pass field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPass -`func (o *Results) SetPass(v int32)` +`func (o *Results) SetPass(v int64)` SetPass sets Pass field to given value. @@ -449,20 +449,20 @@ HasPassTime returns a boolean if a field has been set. ### GetErrors -`func (o *Results) GetErrors() int32` +`func (o *Results) GetErrors() int64` GetErrors returns the Errors field if non-nil, zero value otherwise. ### GetErrorsOk -`func (o *Results) GetErrorsOk() (*int32, bool)` +`func (o *Results) GetErrorsOk() (*int64, bool)` GetErrorsOk returns a tuple with the Errors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetErrors -`func (o *Results) SetErrors(v int32)` +`func (o *Results) SetErrors(v int64)` SetErrors sets Errors field to given value. @@ -474,20 +474,20 @@ HasErrors returns a boolean if a field has been set. ### GetRestarts -`func (o *Results) GetRestarts() int32` +`func (o *Results) GetRestarts() int64` GetRestarts returns the Restarts field if non-nil, zero value otherwise. ### GetRestartsOk -`func (o *Results) GetRestartsOk() (*int32, bool)` +`func (o *Results) GetRestartsOk() (*int64, bool)` GetRestartsOk returns a tuple with the Restarts field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRestarts -`func (o *Results) SetRestarts(v int32)` +`func (o *Results) SetRestarts(v int64)` SetRestarts sets Restarts field to given value. @@ -534,20 +534,20 @@ HasHitRatio returns a boolean if a field has been set. UnsetHitRatio ensures that no value is present for HitRatio, not even an explicit nil ### GetBandwidth -`func (o *Results) GetBandwidth() int32` +`func (o *Results) GetBandwidth() int64` GetBandwidth returns the Bandwidth field if non-nil, zero value otherwise. ### GetBandwidthOk -`func (o *Results) GetBandwidthOk() (*int32, bool)` +`func (o *Results) GetBandwidthOk() (*int64, bool)` GetBandwidthOk returns a tuple with the Bandwidth field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBandwidth -`func (o *Results) SetBandwidth(v int32)` +`func (o *Results) SetBandwidth(v int64)` SetBandwidth sets Bandwidth field to given value. @@ -559,20 +559,20 @@ HasBandwidth returns a boolean if a field has been set. ### GetBodySize -`func (o *Results) GetBodySize() int32` +`func (o *Results) GetBodySize() int64` GetBodySize returns the BodySize field if non-nil, zero value otherwise. ### GetBodySizeOk -`func (o *Results) GetBodySizeOk() (*int32, bool)` +`func (o *Results) GetBodySizeOk() (*int64, bool)` GetBodySizeOk returns a tuple with the BodySize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBodySize -`func (o *Results) SetBodySize(v int32)` +`func (o *Results) SetBodySize(v int64)` SetBodySize sets BodySize field to given value. @@ -584,20 +584,20 @@ HasBodySize returns a boolean if a field has been set. ### GetHeaderSize -`func (o *Results) GetHeaderSize() int32` +`func (o *Results) GetHeaderSize() int64` GetHeaderSize returns the HeaderSize field if non-nil, zero value otherwise. ### GetHeaderSizeOk -`func (o *Results) GetHeaderSizeOk() (*int32, bool)` +`func (o *Results) GetHeaderSizeOk() (*int64, bool)` GetHeaderSizeOk returns a tuple with the HeaderSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHeaderSize -`func (o *Results) SetHeaderSize(v int32)` +`func (o *Results) SetHeaderSize(v int64)` SetHeaderSize sets HeaderSize field to given value. @@ -609,20 +609,20 @@ HasHeaderSize returns a boolean if a field has been set. ### GetReqBodyBytes -`func (o *Results) GetReqBodyBytes() int32` +`func (o *Results) GetReqBodyBytes() int64` GetReqBodyBytes returns the ReqBodyBytes field if non-nil, zero value otherwise. ### GetReqBodyBytesOk -`func (o *Results) GetReqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetReqBodyBytesOk() (*int64, bool)` GetReqBodyBytesOk returns a tuple with the ReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetReqBodyBytes -`func (o *Results) SetReqBodyBytes(v int32)` +`func (o *Results) SetReqBodyBytes(v int64)` SetReqBodyBytes sets ReqBodyBytes field to given value. @@ -634,20 +634,20 @@ HasReqBodyBytes returns a boolean if a field has been set. ### GetReqHeaderBytes -`func (o *Results) GetReqHeaderBytes() int32` +`func (o *Results) GetReqHeaderBytes() int64` GetReqHeaderBytes returns the ReqHeaderBytes field if non-nil, zero value otherwise. ### GetReqHeaderBytesOk -`func (o *Results) GetReqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetReqHeaderBytesOk() (*int64, bool)` GetReqHeaderBytesOk returns a tuple with the ReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetReqHeaderBytes -`func (o *Results) SetReqHeaderBytes(v int32)` +`func (o *Results) SetReqHeaderBytes(v int64)` SetReqHeaderBytes sets ReqHeaderBytes field to given value. @@ -659,20 +659,20 @@ HasReqHeaderBytes returns a boolean if a field has been set. ### GetRespBodyBytes -`func (o *Results) GetRespBodyBytes() int32` +`func (o *Results) GetRespBodyBytes() int64` GetRespBodyBytes returns the RespBodyBytes field if non-nil, zero value otherwise. ### GetRespBodyBytesOk -`func (o *Results) GetRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetRespBodyBytesOk() (*int64, bool)` GetRespBodyBytesOk returns a tuple with the RespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespBodyBytes -`func (o *Results) SetRespBodyBytes(v int32)` +`func (o *Results) SetRespBodyBytes(v int64)` SetRespBodyBytes sets RespBodyBytes field to given value. @@ -684,20 +684,20 @@ HasRespBodyBytes returns a boolean if a field has been set. ### GetRespHeaderBytes -`func (o *Results) GetRespHeaderBytes() int32` +`func (o *Results) GetRespHeaderBytes() int64` GetRespHeaderBytes returns the RespHeaderBytes field if non-nil, zero value otherwise. ### GetRespHeaderBytesOk -`func (o *Results) GetRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetRespHeaderBytesOk() (*int64, bool)` GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespHeaderBytes -`func (o *Results) SetRespHeaderBytes(v int32)` +`func (o *Results) SetRespHeaderBytes(v int64)` SetRespHeaderBytes sets RespHeaderBytes field to given value. @@ -709,20 +709,20 @@ HasRespHeaderBytes returns a boolean if a field has been set. ### GetBereqBodyBytes -`func (o *Results) GetBereqBodyBytes() int32` +`func (o *Results) GetBereqBodyBytes() int64` GetBereqBodyBytes returns the BereqBodyBytes field if non-nil, zero value otherwise. ### GetBereqBodyBytesOk -`func (o *Results) GetBereqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetBereqBodyBytesOk() (*int64, bool)` GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqBodyBytes -`func (o *Results) SetBereqBodyBytes(v int32)` +`func (o *Results) SetBereqBodyBytes(v int64)` SetBereqBodyBytes sets BereqBodyBytes field to given value. @@ -734,20 +734,20 @@ HasBereqBodyBytes returns a boolean if a field has been set. ### GetBereqHeaderBytes -`func (o *Results) GetBereqHeaderBytes() int32` +`func (o *Results) GetBereqHeaderBytes() int64` GetBereqHeaderBytes returns the BereqHeaderBytes field if non-nil, zero value otherwise. ### GetBereqHeaderBytesOk -`func (o *Results) GetBereqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetBereqHeaderBytesOk() (*int64, bool)` GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqHeaderBytes -`func (o *Results) SetBereqHeaderBytes(v int32)` +`func (o *Results) SetBereqHeaderBytes(v int64)` SetBereqHeaderBytes sets BereqHeaderBytes field to given value. @@ -759,20 +759,20 @@ HasBereqHeaderBytes returns a boolean if a field has been set. ### GetUncacheable -`func (o *Results) GetUncacheable() int32` +`func (o *Results) GetUncacheable() int64` GetUncacheable returns the Uncacheable field if non-nil, zero value otherwise. ### GetUncacheableOk -`func (o *Results) GetUncacheableOk() (*int32, bool)` +`func (o *Results) GetUncacheableOk() (*int64, bool)` GetUncacheableOk returns a tuple with the Uncacheable field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetUncacheable -`func (o *Results) SetUncacheable(v int32)` +`func (o *Results) SetUncacheable(v int64)` SetUncacheable sets Uncacheable field to given value. @@ -784,20 +784,20 @@ HasUncacheable returns a boolean if a field has been set. ### GetPipe -`func (o *Results) GetPipe() int32` +`func (o *Results) GetPipe() int64` GetPipe returns the Pipe field if non-nil, zero value otherwise. ### GetPipeOk -`func (o *Results) GetPipeOk() (*int32, bool)` +`func (o *Results) GetPipeOk() (*int64, bool)` GetPipeOk returns a tuple with the Pipe field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPipe -`func (o *Results) SetPipe(v int32)` +`func (o *Results) SetPipe(v int64)` SetPipe sets Pipe field to given value. @@ -809,20 +809,20 @@ HasPipe returns a boolean if a field has been set. ### GetSynth -`func (o *Results) GetSynth() int32` +`func (o *Results) GetSynth() int64` GetSynth returns the Synth field if non-nil, zero value otherwise. ### GetSynthOk -`func (o *Results) GetSynthOk() (*int32, bool)` +`func (o *Results) GetSynthOk() (*int64, bool)` GetSynthOk returns a tuple with the Synth field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSynth -`func (o *Results) SetSynth(v int32)` +`func (o *Results) SetSynth(v int64)` SetSynth sets Synth field to given value. @@ -834,20 +834,20 @@ HasSynth returns a boolean if a field has been set. ### GetTLS -`func (o *Results) GetTLS() int32` +`func (o *Results) GetTLS() int64` GetTLS returns the TLS field if non-nil, zero value otherwise. ### GetTLSOk -`func (o *Results) GetTLSOk() (*int32, bool)` +`func (o *Results) GetTLSOk() (*int64, bool)` GetTLSOk returns a tuple with the TLS field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLS -`func (o *Results) SetTLS(v int32)` +`func (o *Results) SetTLS(v int64)` SetTLS sets TLS field to given value. @@ -859,20 +859,20 @@ HasTLS returns a boolean if a field has been set. ### GetTLSV10 -`func (o *Results) GetTLSV10() int32` +`func (o *Results) GetTLSV10() int64` GetTLSV10 returns the TLSV10 field if non-nil, zero value otherwise. ### GetTLSV10Ok -`func (o *Results) GetTLSV10Ok() (*int32, bool)` +`func (o *Results) GetTLSV10Ok() (*int64, bool)` GetTLSV10Ok returns a tuple with the TLSV10 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV10 -`func (o *Results) SetTLSV10(v int32)` +`func (o *Results) SetTLSV10(v int64)` SetTLSV10 sets TLSV10 field to given value. @@ -884,20 +884,20 @@ HasTLSV10 returns a boolean if a field has been set. ### GetTLSV11 -`func (o *Results) GetTLSV11() int32` +`func (o *Results) GetTLSV11() int64` GetTLSV11 returns the TLSV11 field if non-nil, zero value otherwise. ### GetTLSV11Ok -`func (o *Results) GetTLSV11Ok() (*int32, bool)` +`func (o *Results) GetTLSV11Ok() (*int64, bool)` GetTLSV11Ok returns a tuple with the TLSV11 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV11 -`func (o *Results) SetTLSV11(v int32)` +`func (o *Results) SetTLSV11(v int64)` SetTLSV11 sets TLSV11 field to given value. @@ -909,20 +909,20 @@ HasTLSV11 returns a boolean if a field has been set. ### GetTLSV12 -`func (o *Results) GetTLSV12() int32` +`func (o *Results) GetTLSV12() int64` GetTLSV12 returns the TLSV12 field if non-nil, zero value otherwise. ### GetTLSV12Ok -`func (o *Results) GetTLSV12Ok() (*int32, bool)` +`func (o *Results) GetTLSV12Ok() (*int64, bool)` GetTLSV12Ok returns a tuple with the TLSV12 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV12 -`func (o *Results) SetTLSV12(v int32)` +`func (o *Results) SetTLSV12(v int64)` SetTLSV12 sets TLSV12 field to given value. @@ -934,20 +934,20 @@ HasTLSV12 returns a boolean if a field has been set. ### GetTLSV13 -`func (o *Results) GetTLSV13() int32` +`func (o *Results) GetTLSV13() int64` GetTLSV13 returns the TLSV13 field if non-nil, zero value otherwise. ### GetTLSV13Ok -`func (o *Results) GetTLSV13Ok() (*int32, bool)` +`func (o *Results) GetTLSV13Ok() (*int64, bool)` GetTLSV13Ok returns a tuple with the TLSV13 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSV13 -`func (o *Results) SetTLSV13(v int32)` +`func (o *Results) SetTLSV13(v int64)` SetTLSV13 sets TLSV13 field to given value. @@ -959,20 +959,20 @@ HasTLSV13 returns a boolean if a field has been set. ### GetEdgeRequests -`func (o *Results) GetEdgeRequests() int32` +`func (o *Results) GetEdgeRequests() int64` GetEdgeRequests returns the EdgeRequests field if non-nil, zero value otherwise. ### GetEdgeRequestsOk -`func (o *Results) GetEdgeRequestsOk() (*int32, bool)` +`func (o *Results) GetEdgeRequestsOk() (*int64, bool)` GetEdgeRequestsOk returns a tuple with the EdgeRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRequests -`func (o *Results) SetEdgeRequests(v int32)` +`func (o *Results) SetEdgeRequests(v int64)` SetEdgeRequests sets EdgeRequests field to given value. @@ -984,20 +984,20 @@ HasEdgeRequests returns a boolean if a field has been set. ### GetEdgeRespHeaderBytes -`func (o *Results) GetEdgeRespHeaderBytes() int32` +`func (o *Results) GetEdgeRespHeaderBytes() int64` GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeRespHeaderBytesOk -`func (o *Results) GetEdgeRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetEdgeRespHeaderBytesOk() (*int64, bool)` GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespHeaderBytes -`func (o *Results) SetEdgeRespHeaderBytes(v int32)` +`func (o *Results) SetEdgeRespHeaderBytes(v int64)` SetEdgeRespHeaderBytes sets EdgeRespHeaderBytes field to given value. @@ -1009,20 +1009,20 @@ HasEdgeRespHeaderBytes returns a boolean if a field has been set. ### GetEdgeRespBodyBytes -`func (o *Results) GetEdgeRespBodyBytes() int32` +`func (o *Results) GetEdgeRespBodyBytes() int64` GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeRespBodyBytesOk -`func (o *Results) GetEdgeRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetEdgeRespBodyBytesOk() (*int64, bool)` GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespBodyBytes -`func (o *Results) SetEdgeRespBodyBytes(v int32)` +`func (o *Results) SetEdgeRespBodyBytes(v int64)` SetEdgeRespBodyBytes sets EdgeRespBodyBytes field to given value. @@ -1034,20 +1034,20 @@ HasEdgeRespBodyBytes returns a boolean if a field has been set. ### GetEdgeHitRequests -`func (o *Results) GetEdgeHitRequests() int32` +`func (o *Results) GetEdgeHitRequests() int64` GetEdgeHitRequests returns the EdgeHitRequests field if non-nil, zero value otherwise. ### GetEdgeHitRequestsOk -`func (o *Results) GetEdgeHitRequestsOk() (*int32, bool)` +`func (o *Results) GetEdgeHitRequestsOk() (*int64, bool)` GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRequests -`func (o *Results) SetEdgeHitRequests(v int32)` +`func (o *Results) SetEdgeHitRequests(v int64)` SetEdgeHitRequests sets EdgeHitRequests field to given value. @@ -1059,20 +1059,20 @@ HasEdgeHitRequests returns a boolean if a field has been set. ### GetEdgeMissRequests -`func (o *Results) GetEdgeMissRequests() int32` +`func (o *Results) GetEdgeMissRequests() int64` GetEdgeMissRequests returns the EdgeMissRequests field if non-nil, zero value otherwise. ### GetEdgeMissRequestsOk -`func (o *Results) GetEdgeMissRequestsOk() (*int32, bool)` +`func (o *Results) GetEdgeMissRequestsOk() (*int64, bool)` GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRequests -`func (o *Results) SetEdgeMissRequests(v int32)` +`func (o *Results) SetEdgeMissRequests(v int64)` SetEdgeMissRequests sets EdgeMissRequests field to given value. @@ -1084,20 +1084,20 @@ HasEdgeMissRequests returns a boolean if a field has been set. ### GetOriginFetches -`func (o *Results) GetOriginFetches() int32` +`func (o *Results) GetOriginFetches() int64` GetOriginFetches returns the OriginFetches field if non-nil, zero value otherwise. ### GetOriginFetchesOk -`func (o *Results) GetOriginFetchesOk() (*int32, bool)` +`func (o *Results) GetOriginFetchesOk() (*int64, bool)` GetOriginFetchesOk returns a tuple with the OriginFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetches -`func (o *Results) SetOriginFetches(v int32)` +`func (o *Results) SetOriginFetches(v int64)` SetOriginFetches sets OriginFetches field to given value. @@ -1109,20 +1109,20 @@ HasOriginFetches returns a boolean if a field has been set. ### GetOriginFetchHeaderBytes -`func (o *Results) GetOriginFetchHeaderBytes() int32` +`func (o *Results) GetOriginFetchHeaderBytes() int64` GetOriginFetchHeaderBytes returns the OriginFetchHeaderBytes field if non-nil, zero value otherwise. ### GetOriginFetchHeaderBytesOk -`func (o *Results) GetOriginFetchHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetOriginFetchHeaderBytesOk() (*int64, bool)` GetOriginFetchHeaderBytesOk returns a tuple with the OriginFetchHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchHeaderBytes -`func (o *Results) SetOriginFetchHeaderBytes(v int32)` +`func (o *Results) SetOriginFetchHeaderBytes(v int64)` SetOriginFetchHeaderBytes sets OriginFetchHeaderBytes field to given value. @@ -1134,20 +1134,20 @@ HasOriginFetchHeaderBytes returns a boolean if a field has been set. ### GetOriginFetchBodyBytes -`func (o *Results) GetOriginFetchBodyBytes() int32` +`func (o *Results) GetOriginFetchBodyBytes() int64` GetOriginFetchBodyBytes returns the OriginFetchBodyBytes field if non-nil, zero value otherwise. ### GetOriginFetchBodyBytesOk -`func (o *Results) GetOriginFetchBodyBytesOk() (*int32, bool)` +`func (o *Results) GetOriginFetchBodyBytesOk() (*int64, bool)` GetOriginFetchBodyBytesOk returns a tuple with the OriginFetchBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchBodyBytes -`func (o *Results) SetOriginFetchBodyBytes(v int32)` +`func (o *Results) SetOriginFetchBodyBytes(v int64)` SetOriginFetchBodyBytes sets OriginFetchBodyBytes field to given value. @@ -1159,20 +1159,20 @@ HasOriginFetchBodyBytes returns a boolean if a field has been set. ### GetOriginFetchRespHeaderBytes -`func (o *Results) GetOriginFetchRespHeaderBytes() int32` +`func (o *Results) GetOriginFetchRespHeaderBytes() int64` GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespHeaderBytesOk -`func (o *Results) GetOriginFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetOriginFetchRespHeaderBytesOk() (*int64, bool)` GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespHeaderBytes -`func (o *Results) SetOriginFetchRespHeaderBytes(v int32)` +`func (o *Results) SetOriginFetchRespHeaderBytes(v int64)` SetOriginFetchRespHeaderBytes sets OriginFetchRespHeaderBytes field to given value. @@ -1184,20 +1184,20 @@ HasOriginFetchRespHeaderBytes returns a boolean if a field has been set. ### GetOriginFetchRespBodyBytes -`func (o *Results) GetOriginFetchRespBodyBytes() int32` +`func (o *Results) GetOriginFetchRespBodyBytes() int64` GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespBodyBytesOk -`func (o *Results) GetOriginFetchRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetOriginFetchRespBodyBytesOk() (*int64, bool)` GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespBodyBytes -`func (o *Results) SetOriginFetchRespBodyBytes(v int32)` +`func (o *Results) SetOriginFetchRespBodyBytes(v int64)` SetOriginFetchRespBodyBytes sets OriginFetchRespBodyBytes field to given value. @@ -1209,20 +1209,20 @@ HasOriginFetchRespBodyBytes returns a boolean if a field has been set. ### GetOriginRevalidations -`func (o *Results) GetOriginRevalidations() int32` +`func (o *Results) GetOriginRevalidations() int64` GetOriginRevalidations returns the OriginRevalidations field if non-nil, zero value otherwise. ### GetOriginRevalidationsOk -`func (o *Results) GetOriginRevalidationsOk() (*int32, bool)` +`func (o *Results) GetOriginRevalidationsOk() (*int64, bool)` GetOriginRevalidationsOk returns a tuple with the OriginRevalidations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginRevalidations -`func (o *Results) SetOriginRevalidations(v int32)` +`func (o *Results) SetOriginRevalidations(v int64)` SetOriginRevalidations sets OriginRevalidations field to given value. @@ -1234,20 +1234,20 @@ HasOriginRevalidations returns a boolean if a field has been set. ### GetOriginCacheFetches -`func (o *Results) GetOriginCacheFetches() int32` +`func (o *Results) GetOriginCacheFetches() int64` GetOriginCacheFetches returns the OriginCacheFetches field if non-nil, zero value otherwise. ### GetOriginCacheFetchesOk -`func (o *Results) GetOriginCacheFetchesOk() (*int32, bool)` +`func (o *Results) GetOriginCacheFetchesOk() (*int64, bool)` GetOriginCacheFetchesOk returns a tuple with the OriginCacheFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetches -`func (o *Results) SetOriginCacheFetches(v int32)` +`func (o *Results) SetOriginCacheFetches(v int64)` SetOriginCacheFetches sets OriginCacheFetches field to given value. @@ -1259,20 +1259,20 @@ HasOriginCacheFetches returns a boolean if a field has been set. ### GetShield -`func (o *Results) GetShield() int32` +`func (o *Results) GetShield() int64` GetShield returns the Shield field if non-nil, zero value otherwise. ### GetShieldOk -`func (o *Results) GetShieldOk() (*int32, bool)` +`func (o *Results) GetShieldOk() (*int64, bool)` GetShieldOk returns a tuple with the Shield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShield -`func (o *Results) SetShield(v int32)` +`func (o *Results) SetShield(v int64)` SetShield sets Shield field to given value. @@ -1284,20 +1284,20 @@ HasShield returns a boolean if a field has been set. ### GetShieldRespBodyBytes -`func (o *Results) GetShieldRespBodyBytes() int32` +`func (o *Results) GetShieldRespBodyBytes() int64` GetShieldRespBodyBytes returns the ShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldRespBodyBytesOk -`func (o *Results) GetShieldRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetShieldRespBodyBytesOk() (*int64, bool)` GetShieldRespBodyBytesOk returns a tuple with the ShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRespBodyBytes -`func (o *Results) SetShieldRespBodyBytes(v int32)` +`func (o *Results) SetShieldRespBodyBytes(v int64)` SetShieldRespBodyBytes sets ShieldRespBodyBytes field to given value. @@ -1309,20 +1309,20 @@ HasShieldRespBodyBytes returns a boolean if a field has been set. ### GetShieldRespHeaderBytes -`func (o *Results) GetShieldRespHeaderBytes() int32` +`func (o *Results) GetShieldRespHeaderBytes() int64` GetShieldRespHeaderBytes returns the ShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldRespHeaderBytesOk -`func (o *Results) GetShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetShieldRespHeaderBytesOk() (*int64, bool)` GetShieldRespHeaderBytesOk returns a tuple with the ShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRespHeaderBytes -`func (o *Results) SetShieldRespHeaderBytes(v int32)` +`func (o *Results) SetShieldRespHeaderBytes(v int64)` SetShieldRespHeaderBytes sets ShieldRespHeaderBytes field to given value. @@ -1334,20 +1334,20 @@ HasShieldRespHeaderBytes returns a boolean if a field has been set. ### GetShieldFetches -`func (o *Results) GetShieldFetches() int32` +`func (o *Results) GetShieldFetches() int64` GetShieldFetches returns the ShieldFetches field if non-nil, zero value otherwise. ### GetShieldFetchesOk -`func (o *Results) GetShieldFetchesOk() (*int32, bool)` +`func (o *Results) GetShieldFetchesOk() (*int64, bool)` GetShieldFetchesOk returns a tuple with the ShieldFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetches -`func (o *Results) SetShieldFetches(v int32)` +`func (o *Results) SetShieldFetches(v int64)` SetShieldFetches sets ShieldFetches field to given value. @@ -1359,20 +1359,20 @@ HasShieldFetches returns a boolean if a field has been set. ### GetShieldFetchHeaderBytes -`func (o *Results) GetShieldFetchHeaderBytes() int32` +`func (o *Results) GetShieldFetchHeaderBytes() int64` GetShieldFetchHeaderBytes returns the ShieldFetchHeaderBytes field if non-nil, zero value otherwise. ### GetShieldFetchHeaderBytesOk -`func (o *Results) GetShieldFetchHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetShieldFetchHeaderBytesOk() (*int64, bool)` GetShieldFetchHeaderBytesOk returns a tuple with the ShieldFetchHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchHeaderBytes -`func (o *Results) SetShieldFetchHeaderBytes(v int32)` +`func (o *Results) SetShieldFetchHeaderBytes(v int64)` SetShieldFetchHeaderBytes sets ShieldFetchHeaderBytes field to given value. @@ -1384,20 +1384,20 @@ HasShieldFetchHeaderBytes returns a boolean if a field has been set. ### GetShieldFetchBodyBytes -`func (o *Results) GetShieldFetchBodyBytes() int32` +`func (o *Results) GetShieldFetchBodyBytes() int64` GetShieldFetchBodyBytes returns the ShieldFetchBodyBytes field if non-nil, zero value otherwise. ### GetShieldFetchBodyBytesOk -`func (o *Results) GetShieldFetchBodyBytesOk() (*int32, bool)` +`func (o *Results) GetShieldFetchBodyBytesOk() (*int64, bool)` GetShieldFetchBodyBytesOk returns a tuple with the ShieldFetchBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchBodyBytes -`func (o *Results) SetShieldFetchBodyBytes(v int32)` +`func (o *Results) SetShieldFetchBodyBytes(v int64)` SetShieldFetchBodyBytes sets ShieldFetchBodyBytes field to given value. @@ -1409,20 +1409,20 @@ HasShieldFetchBodyBytes returns a boolean if a field has been set. ### GetShieldFetchRespHeaderBytes -`func (o *Results) GetShieldFetchRespHeaderBytes() int32` +`func (o *Results) GetShieldFetchRespHeaderBytes() int64` GetShieldFetchRespHeaderBytes returns the ShieldFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldFetchRespHeaderBytesOk -`func (o *Results) GetShieldFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetShieldFetchRespHeaderBytesOk() (*int64, bool)` GetShieldFetchRespHeaderBytesOk returns a tuple with the ShieldFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchRespHeaderBytes -`func (o *Results) SetShieldFetchRespHeaderBytes(v int32)` +`func (o *Results) SetShieldFetchRespHeaderBytes(v int64)` SetShieldFetchRespHeaderBytes sets ShieldFetchRespHeaderBytes field to given value. @@ -1434,20 +1434,20 @@ HasShieldFetchRespHeaderBytes returns a boolean if a field has been set. ### GetShieldFetchRespBodyBytes -`func (o *Results) GetShieldFetchRespBodyBytes() int32` +`func (o *Results) GetShieldFetchRespBodyBytes() int64` GetShieldFetchRespBodyBytes returns the ShieldFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldFetchRespBodyBytesOk -`func (o *Results) GetShieldFetchRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetShieldFetchRespBodyBytesOk() (*int64, bool)` GetShieldFetchRespBodyBytesOk returns a tuple with the ShieldFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldFetchRespBodyBytes -`func (o *Results) SetShieldFetchRespBodyBytes(v int32)` +`func (o *Results) SetShieldFetchRespBodyBytes(v int64)` SetShieldFetchRespBodyBytes sets ShieldFetchRespBodyBytes field to given value. @@ -1459,20 +1459,20 @@ HasShieldFetchRespBodyBytes returns a boolean if a field has been set. ### GetShieldRevalidations -`func (o *Results) GetShieldRevalidations() int32` +`func (o *Results) GetShieldRevalidations() int64` GetShieldRevalidations returns the ShieldRevalidations field if non-nil, zero value otherwise. ### GetShieldRevalidationsOk -`func (o *Results) GetShieldRevalidationsOk() (*int32, bool)` +`func (o *Results) GetShieldRevalidationsOk() (*int64, bool)` GetShieldRevalidationsOk returns a tuple with the ShieldRevalidations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldRevalidations -`func (o *Results) SetShieldRevalidations(v int32)` +`func (o *Results) SetShieldRevalidations(v int64)` SetShieldRevalidations sets ShieldRevalidations field to given value. @@ -1484,20 +1484,20 @@ HasShieldRevalidations returns a boolean if a field has been set. ### GetShieldCacheFetches -`func (o *Results) GetShieldCacheFetches() int32` +`func (o *Results) GetShieldCacheFetches() int64` GetShieldCacheFetches returns the ShieldCacheFetches field if non-nil, zero value otherwise. ### GetShieldCacheFetchesOk -`func (o *Results) GetShieldCacheFetchesOk() (*int32, bool)` +`func (o *Results) GetShieldCacheFetchesOk() (*int64, bool)` GetShieldCacheFetchesOk returns a tuple with the ShieldCacheFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldCacheFetches -`func (o *Results) SetShieldCacheFetches(v int32)` +`func (o *Results) SetShieldCacheFetches(v int64)` SetShieldCacheFetches sets ShieldCacheFetches field to given value. @@ -1509,20 +1509,20 @@ HasShieldCacheFetches returns a boolean if a field has been set. ### GetIpv6 -`func (o *Results) GetIpv6() int32` +`func (o *Results) GetIpv6() int64` GetIpv6 returns the Ipv6 field if non-nil, zero value otherwise. ### GetIpv6Ok -`func (o *Results) GetIpv6Ok() (*int32, bool)` +`func (o *Results) GetIpv6Ok() (*int64, bool)` GetIpv6Ok returns a tuple with the Ipv6 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetIpv6 -`func (o *Results) SetIpv6(v int32)` +`func (o *Results) SetIpv6(v int64)` SetIpv6 sets Ipv6 field to given value. @@ -1534,20 +1534,20 @@ HasIpv6 returns a boolean if a field has been set. ### GetOtfp -`func (o *Results) GetOtfp() int32` +`func (o *Results) GetOtfp() int64` GetOtfp returns the Otfp field if non-nil, zero value otherwise. ### GetOtfpOk -`func (o *Results) GetOtfpOk() (*int32, bool)` +`func (o *Results) GetOtfpOk() (*int64, bool)` GetOtfpOk returns a tuple with the Otfp field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfp -`func (o *Results) SetOtfp(v int32)` +`func (o *Results) SetOtfp(v int64)` SetOtfp sets Otfp field to given value. @@ -1559,20 +1559,20 @@ HasOtfp returns a boolean if a field has been set. ### GetOtfpRespBodyBytes -`func (o *Results) GetOtfpRespBodyBytes() int32` +`func (o *Results) GetOtfpRespBodyBytes() int64` GetOtfpRespBodyBytes returns the OtfpRespBodyBytes field if non-nil, zero value otherwise. ### GetOtfpRespBodyBytesOk -`func (o *Results) GetOtfpRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetOtfpRespBodyBytesOk() (*int64, bool)` GetOtfpRespBodyBytesOk returns a tuple with the OtfpRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpRespBodyBytes -`func (o *Results) SetOtfpRespBodyBytes(v int32)` +`func (o *Results) SetOtfpRespBodyBytes(v int64)` SetOtfpRespBodyBytes sets OtfpRespBodyBytes field to given value. @@ -1584,20 +1584,20 @@ HasOtfpRespBodyBytes returns a boolean if a field has been set. ### GetOtfpRespHeaderBytes -`func (o *Results) GetOtfpRespHeaderBytes() int32` +`func (o *Results) GetOtfpRespHeaderBytes() int64` GetOtfpRespHeaderBytes returns the OtfpRespHeaderBytes field if non-nil, zero value otherwise. ### GetOtfpRespHeaderBytesOk -`func (o *Results) GetOtfpRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetOtfpRespHeaderBytesOk() (*int64, bool)` GetOtfpRespHeaderBytesOk returns a tuple with the OtfpRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpRespHeaderBytes -`func (o *Results) SetOtfpRespHeaderBytes(v int32)` +`func (o *Results) SetOtfpRespHeaderBytes(v int64)` SetOtfpRespHeaderBytes sets OtfpRespHeaderBytes field to given value. @@ -1609,20 +1609,20 @@ HasOtfpRespHeaderBytes returns a boolean if a field has been set. ### GetOtfpShieldRespBodyBytes -`func (o *Results) GetOtfpShieldRespBodyBytes() int32` +`func (o *Results) GetOtfpShieldRespBodyBytes() int64` GetOtfpShieldRespBodyBytes returns the OtfpShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetOtfpShieldRespBodyBytesOk -`func (o *Results) GetOtfpShieldRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetOtfpShieldRespBodyBytesOk() (*int64, bool)` GetOtfpShieldRespBodyBytesOk returns a tuple with the OtfpShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpShieldRespBodyBytes -`func (o *Results) SetOtfpShieldRespBodyBytes(v int32)` +`func (o *Results) SetOtfpShieldRespBodyBytes(v int64)` SetOtfpShieldRespBodyBytes sets OtfpShieldRespBodyBytes field to given value. @@ -1634,20 +1634,20 @@ HasOtfpShieldRespBodyBytes returns a boolean if a field has been set. ### GetOtfpShieldRespHeaderBytes -`func (o *Results) GetOtfpShieldRespHeaderBytes() int32` +`func (o *Results) GetOtfpShieldRespHeaderBytes() int64` GetOtfpShieldRespHeaderBytes returns the OtfpShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetOtfpShieldRespHeaderBytesOk -`func (o *Results) GetOtfpShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetOtfpShieldRespHeaderBytesOk() (*int64, bool)` GetOtfpShieldRespHeaderBytesOk returns a tuple with the OtfpShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpShieldRespHeaderBytes -`func (o *Results) SetOtfpShieldRespHeaderBytes(v int32)` +`func (o *Results) SetOtfpShieldRespHeaderBytes(v int64)` SetOtfpShieldRespHeaderBytes sets OtfpShieldRespHeaderBytes field to given value. @@ -1659,20 +1659,20 @@ HasOtfpShieldRespHeaderBytes returns a boolean if a field has been set. ### GetOtfpManifests -`func (o *Results) GetOtfpManifests() int32` +`func (o *Results) GetOtfpManifests() int64` GetOtfpManifests returns the OtfpManifests field if non-nil, zero value otherwise. ### GetOtfpManifestsOk -`func (o *Results) GetOtfpManifestsOk() (*int32, bool)` +`func (o *Results) GetOtfpManifestsOk() (*int64, bool)` GetOtfpManifestsOk returns a tuple with the OtfpManifests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOtfpManifests -`func (o *Results) SetOtfpManifests(v int32)` +`func (o *Results) SetOtfpManifests(v int64)` SetOtfpManifests sets OtfpManifests field to given value. @@ -1734,20 +1734,20 @@ HasOtfpShieldTime returns a boolean if a field has been set. ### GetVideo -`func (o *Results) GetVideo() int32` +`func (o *Results) GetVideo() int64` GetVideo returns the Video field if non-nil, zero value otherwise. ### GetVideoOk -`func (o *Results) GetVideoOk() (*int32, bool)` +`func (o *Results) GetVideoOk() (*int64, bool)` GetVideoOk returns a tuple with the Video field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetVideo -`func (o *Results) SetVideo(v int32)` +`func (o *Results) SetVideo(v int64)` SetVideo sets Video field to given value. @@ -1759,20 +1759,20 @@ HasVideo returns a boolean if a field has been set. ### GetPci -`func (o *Results) GetPci() int32` +`func (o *Results) GetPci() int64` GetPci returns the Pci field if non-nil, zero value otherwise. ### GetPciOk -`func (o *Results) GetPciOk() (*int32, bool)` +`func (o *Results) GetPciOk() (*int64, bool)` GetPciOk returns a tuple with the Pci field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPci -`func (o *Results) SetPci(v int32)` +`func (o *Results) SetPci(v int64)` SetPci sets Pci field to given value. @@ -1784,20 +1784,20 @@ HasPci returns a boolean if a field has been set. ### GetLog -`func (o *Results) GetLog() int32` +`func (o *Results) GetLog() int64` GetLog returns the Log field if non-nil, zero value otherwise. ### GetLogOk -`func (o *Results) GetLogOk() (*int32, bool)` +`func (o *Results) GetLogOk() (*int64, bool)` GetLogOk returns a tuple with the Log field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLog -`func (o *Results) SetLog(v int32)` +`func (o *Results) SetLog(v int64)` SetLog sets Log field to given value. @@ -1809,20 +1809,20 @@ HasLog returns a boolean if a field has been set. ### GetLogBytes -`func (o *Results) GetLogBytes() int32` +`func (o *Results) GetLogBytes() int64` GetLogBytes returns the LogBytes field if non-nil, zero value otherwise. ### GetLogBytesOk -`func (o *Results) GetLogBytesOk() (*int32, bool)` +`func (o *Results) GetLogBytesOk() (*int64, bool)` GetLogBytesOk returns a tuple with the LogBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetLogBytes -`func (o *Results) SetLogBytes(v int32)` +`func (o *Results) SetLogBytes(v int64)` SetLogBytes sets LogBytes field to given value. @@ -1834,20 +1834,20 @@ HasLogBytes returns a boolean if a field has been set. ### GetHTTP2 -`func (o *Results) GetHTTP2() int32` +`func (o *Results) GetHTTP2() int64` GetHTTP2 returns the HTTP2 field if non-nil, zero value otherwise. ### GetHTTP2Ok -`func (o *Results) GetHTTP2Ok() (*int32, bool)` +`func (o *Results) GetHTTP2Ok() (*int64, bool)` GetHTTP2Ok returns a tuple with the HTTP2 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHTTP2 -`func (o *Results) SetHTTP2(v int32)` +`func (o *Results) SetHTTP2(v int64)` SetHTTP2 sets HTTP2 field to given value. @@ -1859,20 +1859,20 @@ HasHTTP2 returns a boolean if a field has been set. ### GetHTTP3 -`func (o *Results) GetHTTP3() int32` +`func (o *Results) GetHTTP3() int64` GetHTTP3 returns the HTTP3 field if non-nil, zero value otherwise. ### GetHTTP3Ok -`func (o *Results) GetHTTP3Ok() (*int32, bool)` +`func (o *Results) GetHTTP3Ok() (*int64, bool)` GetHTTP3Ok returns a tuple with the HTTP3 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHTTP3 -`func (o *Results) SetHTTP3(v int32)` +`func (o *Results) SetHTTP3(v int64)` SetHTTP3 sets HTTP3 field to given value. @@ -1884,20 +1884,20 @@ HasHTTP3 returns a boolean if a field has been set. ### GetWafLogged -`func (o *Results) GetWafLogged() int32` +`func (o *Results) GetWafLogged() int64` GetWafLogged returns the WafLogged field if non-nil, zero value otherwise. ### GetWafLoggedOk -`func (o *Results) GetWafLoggedOk() (*int32, bool)` +`func (o *Results) GetWafLoggedOk() (*int64, bool)` GetWafLoggedOk returns a tuple with the WafLogged field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafLogged -`func (o *Results) SetWafLogged(v int32)` +`func (o *Results) SetWafLogged(v int64)` SetWafLogged sets WafLogged field to given value. @@ -1909,20 +1909,20 @@ HasWafLogged returns a boolean if a field has been set. ### GetWafBlocked -`func (o *Results) GetWafBlocked() int32` +`func (o *Results) GetWafBlocked() int64` GetWafBlocked returns the WafBlocked field if non-nil, zero value otherwise. ### GetWafBlockedOk -`func (o *Results) GetWafBlockedOk() (*int32, bool)` +`func (o *Results) GetWafBlockedOk() (*int64, bool)` GetWafBlockedOk returns a tuple with the WafBlocked field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafBlocked -`func (o *Results) SetWafBlocked(v int32)` +`func (o *Results) SetWafBlocked(v int64)` SetWafBlocked sets WafBlocked field to given value. @@ -1934,20 +1934,20 @@ HasWafBlocked returns a boolean if a field has been set. ### GetWafPassed -`func (o *Results) GetWafPassed() int32` +`func (o *Results) GetWafPassed() int64` GetWafPassed returns the WafPassed field if non-nil, zero value otherwise. ### GetWafPassedOk -`func (o *Results) GetWafPassedOk() (*int32, bool)` +`func (o *Results) GetWafPassedOk() (*int64, bool)` GetWafPassedOk returns a tuple with the WafPassed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWafPassed -`func (o *Results) SetWafPassed(v int32)` +`func (o *Results) SetWafPassed(v int64)` SetWafPassed sets WafPassed field to given value. @@ -1959,20 +1959,20 @@ HasWafPassed returns a boolean if a field has been set. ### GetAttackReqBodyBytes -`func (o *Results) GetAttackReqBodyBytes() int32` +`func (o *Results) GetAttackReqBodyBytes() int64` GetAttackReqBodyBytes returns the AttackReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackReqBodyBytesOk -`func (o *Results) GetAttackReqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetAttackReqBodyBytesOk() (*int64, bool)` GetAttackReqBodyBytesOk returns a tuple with the AttackReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackReqBodyBytes -`func (o *Results) SetAttackReqBodyBytes(v int32)` +`func (o *Results) SetAttackReqBodyBytes(v int64)` SetAttackReqBodyBytes sets AttackReqBodyBytes field to given value. @@ -1984,20 +1984,20 @@ HasAttackReqBodyBytes returns a boolean if a field has been set. ### GetAttackReqHeaderBytes -`func (o *Results) GetAttackReqHeaderBytes() int32` +`func (o *Results) GetAttackReqHeaderBytes() int64` GetAttackReqHeaderBytes returns the AttackReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackReqHeaderBytesOk -`func (o *Results) GetAttackReqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetAttackReqHeaderBytesOk() (*int64, bool)` GetAttackReqHeaderBytesOk returns a tuple with the AttackReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackReqHeaderBytes -`func (o *Results) SetAttackReqHeaderBytes(v int32)` +`func (o *Results) SetAttackReqHeaderBytes(v int64)` SetAttackReqHeaderBytes sets AttackReqHeaderBytes field to given value. @@ -2009,20 +2009,20 @@ HasAttackReqHeaderBytes returns a boolean if a field has been set. ### GetAttackLoggedReqBodyBytes -`func (o *Results) GetAttackLoggedReqBodyBytes() int32` +`func (o *Results) GetAttackLoggedReqBodyBytes() int64` GetAttackLoggedReqBodyBytes returns the AttackLoggedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackLoggedReqBodyBytesOk -`func (o *Results) GetAttackLoggedReqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetAttackLoggedReqBodyBytesOk() (*int64, bool)` GetAttackLoggedReqBodyBytesOk returns a tuple with the AttackLoggedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackLoggedReqBodyBytes -`func (o *Results) SetAttackLoggedReqBodyBytes(v int32)` +`func (o *Results) SetAttackLoggedReqBodyBytes(v int64)` SetAttackLoggedReqBodyBytes sets AttackLoggedReqBodyBytes field to given value. @@ -2034,20 +2034,20 @@ HasAttackLoggedReqBodyBytes returns a boolean if a field has been set. ### GetAttackLoggedReqHeaderBytes -`func (o *Results) GetAttackLoggedReqHeaderBytes() int32` +`func (o *Results) GetAttackLoggedReqHeaderBytes() int64` GetAttackLoggedReqHeaderBytes returns the AttackLoggedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackLoggedReqHeaderBytesOk -`func (o *Results) GetAttackLoggedReqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetAttackLoggedReqHeaderBytesOk() (*int64, bool)` GetAttackLoggedReqHeaderBytesOk returns a tuple with the AttackLoggedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackLoggedReqHeaderBytes -`func (o *Results) SetAttackLoggedReqHeaderBytes(v int32)` +`func (o *Results) SetAttackLoggedReqHeaderBytes(v int64)` SetAttackLoggedReqHeaderBytes sets AttackLoggedReqHeaderBytes field to given value. @@ -2059,20 +2059,20 @@ HasAttackLoggedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackBlockedReqBodyBytes -`func (o *Results) GetAttackBlockedReqBodyBytes() int32` +`func (o *Results) GetAttackBlockedReqBodyBytes() int64` GetAttackBlockedReqBodyBytes returns the AttackBlockedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackBlockedReqBodyBytesOk -`func (o *Results) GetAttackBlockedReqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetAttackBlockedReqBodyBytesOk() (*int64, bool)` GetAttackBlockedReqBodyBytesOk returns a tuple with the AttackBlockedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackBlockedReqBodyBytes -`func (o *Results) SetAttackBlockedReqBodyBytes(v int32)` +`func (o *Results) SetAttackBlockedReqBodyBytes(v int64)` SetAttackBlockedReqBodyBytes sets AttackBlockedReqBodyBytes field to given value. @@ -2084,20 +2084,20 @@ HasAttackBlockedReqBodyBytes returns a boolean if a field has been set. ### GetAttackBlockedReqHeaderBytes -`func (o *Results) GetAttackBlockedReqHeaderBytes() int32` +`func (o *Results) GetAttackBlockedReqHeaderBytes() int64` GetAttackBlockedReqHeaderBytes returns the AttackBlockedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackBlockedReqHeaderBytesOk -`func (o *Results) GetAttackBlockedReqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetAttackBlockedReqHeaderBytesOk() (*int64, bool)` GetAttackBlockedReqHeaderBytesOk returns a tuple with the AttackBlockedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackBlockedReqHeaderBytes -`func (o *Results) SetAttackBlockedReqHeaderBytes(v int32)` +`func (o *Results) SetAttackBlockedReqHeaderBytes(v int64)` SetAttackBlockedReqHeaderBytes sets AttackBlockedReqHeaderBytes field to given value. @@ -2109,20 +2109,20 @@ HasAttackBlockedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackPassedReqBodyBytes -`func (o *Results) GetAttackPassedReqBodyBytes() int32` +`func (o *Results) GetAttackPassedReqBodyBytes() int64` GetAttackPassedReqBodyBytes returns the AttackPassedReqBodyBytes field if non-nil, zero value otherwise. ### GetAttackPassedReqBodyBytesOk -`func (o *Results) GetAttackPassedReqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetAttackPassedReqBodyBytesOk() (*int64, bool)` GetAttackPassedReqBodyBytesOk returns a tuple with the AttackPassedReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackPassedReqBodyBytes -`func (o *Results) SetAttackPassedReqBodyBytes(v int32)` +`func (o *Results) SetAttackPassedReqBodyBytes(v int64)` SetAttackPassedReqBodyBytes sets AttackPassedReqBodyBytes field to given value. @@ -2134,20 +2134,20 @@ HasAttackPassedReqBodyBytes returns a boolean if a field has been set. ### GetAttackPassedReqHeaderBytes -`func (o *Results) GetAttackPassedReqHeaderBytes() int32` +`func (o *Results) GetAttackPassedReqHeaderBytes() int64` GetAttackPassedReqHeaderBytes returns the AttackPassedReqHeaderBytes field if non-nil, zero value otherwise. ### GetAttackPassedReqHeaderBytesOk -`func (o *Results) GetAttackPassedReqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetAttackPassedReqHeaderBytesOk() (*int64, bool)` GetAttackPassedReqHeaderBytesOk returns a tuple with the AttackPassedReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackPassedReqHeaderBytes -`func (o *Results) SetAttackPassedReqHeaderBytes(v int32)` +`func (o *Results) SetAttackPassedReqHeaderBytes(v int64)` SetAttackPassedReqHeaderBytes sets AttackPassedReqHeaderBytes field to given value. @@ -2159,20 +2159,20 @@ HasAttackPassedReqHeaderBytes returns a boolean if a field has been set. ### GetAttackRespSynthBytes -`func (o *Results) GetAttackRespSynthBytes() int32` +`func (o *Results) GetAttackRespSynthBytes() int64` GetAttackRespSynthBytes returns the AttackRespSynthBytes field if non-nil, zero value otherwise. ### GetAttackRespSynthBytesOk -`func (o *Results) GetAttackRespSynthBytesOk() (*int32, bool)` +`func (o *Results) GetAttackRespSynthBytesOk() (*int64, bool)` GetAttackRespSynthBytesOk returns a tuple with the AttackRespSynthBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAttackRespSynthBytes -`func (o *Results) SetAttackRespSynthBytes(v int32)` +`func (o *Results) SetAttackRespSynthBytes(v int64)` SetAttackRespSynthBytes sets AttackRespSynthBytes field to given value. @@ -2184,20 +2184,20 @@ HasAttackRespSynthBytes returns a boolean if a field has been set. ### GetImgopto -`func (o *Results) GetImgopto() int32` +`func (o *Results) GetImgopto() int64` GetImgopto returns the Imgopto field if non-nil, zero value otherwise. ### GetImgoptoOk -`func (o *Results) GetImgoptoOk() (*int32, bool)` +`func (o *Results) GetImgoptoOk() (*int64, bool)` GetImgoptoOk returns a tuple with the Imgopto field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgopto -`func (o *Results) SetImgopto(v int32)` +`func (o *Results) SetImgopto(v int64)` SetImgopto sets Imgopto field to given value. @@ -2209,20 +2209,20 @@ HasImgopto returns a boolean if a field has been set. ### GetImgoptoRespBodyBytes -`func (o *Results) GetImgoptoRespBodyBytes() int32` +`func (o *Results) GetImgoptoRespBodyBytes() int64` GetImgoptoRespBodyBytes returns the ImgoptoRespBodyBytes field if non-nil, zero value otherwise. ### GetImgoptoRespBodyBytesOk -`func (o *Results) GetImgoptoRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetImgoptoRespBodyBytesOk() (*int64, bool)` GetImgoptoRespBodyBytesOk returns a tuple with the ImgoptoRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoRespBodyBytes -`func (o *Results) SetImgoptoRespBodyBytes(v int32)` +`func (o *Results) SetImgoptoRespBodyBytes(v int64)` SetImgoptoRespBodyBytes sets ImgoptoRespBodyBytes field to given value. @@ -2234,20 +2234,20 @@ HasImgoptoRespBodyBytes returns a boolean if a field has been set. ### GetImgoptoRespHeaderBytes -`func (o *Results) GetImgoptoRespHeaderBytes() int32` +`func (o *Results) GetImgoptoRespHeaderBytes() int64` GetImgoptoRespHeaderBytes returns the ImgoptoRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgoptoRespHeaderBytesOk -`func (o *Results) GetImgoptoRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetImgoptoRespHeaderBytesOk() (*int64, bool)` GetImgoptoRespHeaderBytesOk returns a tuple with the ImgoptoRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoRespHeaderBytes -`func (o *Results) SetImgoptoRespHeaderBytes(v int32)` +`func (o *Results) SetImgoptoRespHeaderBytes(v int64)` SetImgoptoRespHeaderBytes sets ImgoptoRespHeaderBytes field to given value. @@ -2259,20 +2259,20 @@ HasImgoptoRespHeaderBytes returns a boolean if a field has been set. ### GetImgoptoShield -`func (o *Results) GetImgoptoShield() int32` +`func (o *Results) GetImgoptoShield() int64` GetImgoptoShield returns the ImgoptoShield field if non-nil, zero value otherwise. ### GetImgoptoShieldOk -`func (o *Results) GetImgoptoShieldOk() (*int32, bool)` +`func (o *Results) GetImgoptoShieldOk() (*int64, bool)` GetImgoptoShieldOk returns a tuple with the ImgoptoShield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShield -`func (o *Results) SetImgoptoShield(v int32)` +`func (o *Results) SetImgoptoShield(v int64)` SetImgoptoShield sets ImgoptoShield field to given value. @@ -2284,20 +2284,20 @@ HasImgoptoShield returns a boolean if a field has been set. ### GetImgoptoShieldRespBodyBytes -`func (o *Results) GetImgoptoShieldRespBodyBytes() int32` +`func (o *Results) GetImgoptoShieldRespBodyBytes() int64` GetImgoptoShieldRespBodyBytes returns the ImgoptoShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetImgoptoShieldRespBodyBytesOk -`func (o *Results) GetImgoptoShieldRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetImgoptoShieldRespBodyBytesOk() (*int64, bool)` GetImgoptoShieldRespBodyBytesOk returns a tuple with the ImgoptoShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShieldRespBodyBytes -`func (o *Results) SetImgoptoShieldRespBodyBytes(v int32)` +`func (o *Results) SetImgoptoShieldRespBodyBytes(v int64)` SetImgoptoShieldRespBodyBytes sets ImgoptoShieldRespBodyBytes field to given value. @@ -2309,20 +2309,20 @@ HasImgoptoShieldRespBodyBytes returns a boolean if a field has been set. ### GetImgoptoShieldRespHeaderBytes -`func (o *Results) GetImgoptoShieldRespHeaderBytes() int32` +`func (o *Results) GetImgoptoShieldRespHeaderBytes() int64` GetImgoptoShieldRespHeaderBytes returns the ImgoptoShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgoptoShieldRespHeaderBytesOk -`func (o *Results) GetImgoptoShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetImgoptoShieldRespHeaderBytesOk() (*int64, bool)` GetImgoptoShieldRespHeaderBytesOk returns a tuple with the ImgoptoShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoShieldRespHeaderBytes -`func (o *Results) SetImgoptoShieldRespHeaderBytes(v int32)` +`func (o *Results) SetImgoptoShieldRespHeaderBytes(v int64)` SetImgoptoShieldRespHeaderBytes sets ImgoptoShieldRespHeaderBytes field to given value. @@ -2334,20 +2334,20 @@ HasImgoptoShieldRespHeaderBytes returns a boolean if a field has been set. ### GetImgoptoTransforms -`func (o *Results) GetImgoptoTransforms() int32` +`func (o *Results) GetImgoptoTransforms() int64` GetImgoptoTransforms returns the ImgoptoTransforms field if non-nil, zero value otherwise. ### GetImgoptoTransformsOk -`func (o *Results) GetImgoptoTransformsOk() (*int32, bool)` +`func (o *Results) GetImgoptoTransformsOk() (*int64, bool)` GetImgoptoTransformsOk returns a tuple with the ImgoptoTransforms field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgoptoTransforms -`func (o *Results) SetImgoptoTransforms(v int32)` +`func (o *Results) SetImgoptoTransforms(v int64)` SetImgoptoTransforms sets ImgoptoTransforms field to given value. @@ -2359,20 +2359,20 @@ HasImgoptoTransforms returns a boolean if a field has been set. ### GetImgvideo -`func (o *Results) GetImgvideo() int32` +`func (o *Results) GetImgvideo() int64` GetImgvideo returns the Imgvideo field if non-nil, zero value otherwise. ### GetImgvideoOk -`func (o *Results) GetImgvideoOk() (*int32, bool)` +`func (o *Results) GetImgvideoOk() (*int64, bool)` GetImgvideoOk returns a tuple with the Imgvideo field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideo -`func (o *Results) SetImgvideo(v int32)` +`func (o *Results) SetImgvideo(v int64)` SetImgvideo sets Imgvideo field to given value. @@ -2384,20 +2384,20 @@ HasImgvideo returns a boolean if a field has been set. ### GetImgvideoFrames -`func (o *Results) GetImgvideoFrames() int32` +`func (o *Results) GetImgvideoFrames() int64` GetImgvideoFrames returns the ImgvideoFrames field if non-nil, zero value otherwise. ### GetImgvideoFramesOk -`func (o *Results) GetImgvideoFramesOk() (*int32, bool)` +`func (o *Results) GetImgvideoFramesOk() (*int64, bool)` GetImgvideoFramesOk returns a tuple with the ImgvideoFrames field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoFrames -`func (o *Results) SetImgvideoFrames(v int32)` +`func (o *Results) SetImgvideoFrames(v int64)` SetImgvideoFrames sets ImgvideoFrames field to given value. @@ -2409,20 +2409,20 @@ HasImgvideoFrames returns a boolean if a field has been set. ### GetImgvideoRespHeaderBytes -`func (o *Results) GetImgvideoRespHeaderBytes() int32` +`func (o *Results) GetImgvideoRespHeaderBytes() int64` GetImgvideoRespHeaderBytes returns the ImgvideoRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgvideoRespHeaderBytesOk -`func (o *Results) GetImgvideoRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetImgvideoRespHeaderBytesOk() (*int64, bool)` GetImgvideoRespHeaderBytesOk returns a tuple with the ImgvideoRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoRespHeaderBytes -`func (o *Results) SetImgvideoRespHeaderBytes(v int32)` +`func (o *Results) SetImgvideoRespHeaderBytes(v int64)` SetImgvideoRespHeaderBytes sets ImgvideoRespHeaderBytes field to given value. @@ -2434,20 +2434,20 @@ HasImgvideoRespHeaderBytes returns a boolean if a field has been set. ### GetImgvideoRespBodyBytes -`func (o *Results) GetImgvideoRespBodyBytes() int32` +`func (o *Results) GetImgvideoRespBodyBytes() int64` GetImgvideoRespBodyBytes returns the ImgvideoRespBodyBytes field if non-nil, zero value otherwise. ### GetImgvideoRespBodyBytesOk -`func (o *Results) GetImgvideoRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetImgvideoRespBodyBytesOk() (*int64, bool)` GetImgvideoRespBodyBytesOk returns a tuple with the ImgvideoRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoRespBodyBytes -`func (o *Results) SetImgvideoRespBodyBytes(v int32)` +`func (o *Results) SetImgvideoRespBodyBytes(v int64)` SetImgvideoRespBodyBytes sets ImgvideoRespBodyBytes field to given value. @@ -2459,20 +2459,20 @@ HasImgvideoRespBodyBytes returns a boolean if a field has been set. ### GetImgvideoShieldRespHeaderBytes -`func (o *Results) GetImgvideoShieldRespHeaderBytes() int32` +`func (o *Results) GetImgvideoShieldRespHeaderBytes() int64` GetImgvideoShieldRespHeaderBytes returns the ImgvideoShieldRespHeaderBytes field if non-nil, zero value otherwise. ### GetImgvideoShieldRespHeaderBytesOk -`func (o *Results) GetImgvideoShieldRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetImgvideoShieldRespHeaderBytesOk() (*int64, bool)` GetImgvideoShieldRespHeaderBytesOk returns a tuple with the ImgvideoShieldRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldRespHeaderBytes -`func (o *Results) SetImgvideoShieldRespHeaderBytes(v int32)` +`func (o *Results) SetImgvideoShieldRespHeaderBytes(v int64)` SetImgvideoShieldRespHeaderBytes sets ImgvideoShieldRespHeaderBytes field to given value. @@ -2484,20 +2484,20 @@ HasImgvideoShieldRespHeaderBytes returns a boolean if a field has been set. ### GetImgvideoShieldRespBodyBytes -`func (o *Results) GetImgvideoShieldRespBodyBytes() int32` +`func (o *Results) GetImgvideoShieldRespBodyBytes() int64` GetImgvideoShieldRespBodyBytes returns the ImgvideoShieldRespBodyBytes field if non-nil, zero value otherwise. ### GetImgvideoShieldRespBodyBytesOk -`func (o *Results) GetImgvideoShieldRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetImgvideoShieldRespBodyBytesOk() (*int64, bool)` GetImgvideoShieldRespBodyBytesOk returns a tuple with the ImgvideoShieldRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldRespBodyBytes -`func (o *Results) SetImgvideoShieldRespBodyBytes(v int32)` +`func (o *Results) SetImgvideoShieldRespBodyBytes(v int64)` SetImgvideoShieldRespBodyBytes sets ImgvideoShieldRespBodyBytes field to given value. @@ -2509,20 +2509,20 @@ HasImgvideoShieldRespBodyBytes returns a boolean if a field has been set. ### GetImgvideoShield -`func (o *Results) GetImgvideoShield() int32` +`func (o *Results) GetImgvideoShield() int64` GetImgvideoShield returns the ImgvideoShield field if non-nil, zero value otherwise. ### GetImgvideoShieldOk -`func (o *Results) GetImgvideoShieldOk() (*int32, bool)` +`func (o *Results) GetImgvideoShieldOk() (*int64, bool)` GetImgvideoShieldOk returns a tuple with the ImgvideoShield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShield -`func (o *Results) SetImgvideoShield(v int32)` +`func (o *Results) SetImgvideoShield(v int64)` SetImgvideoShield sets ImgvideoShield field to given value. @@ -2534,20 +2534,20 @@ HasImgvideoShield returns a boolean if a field has been set. ### GetImgvideoShieldFrames -`func (o *Results) GetImgvideoShieldFrames() int32` +`func (o *Results) GetImgvideoShieldFrames() int64` GetImgvideoShieldFrames returns the ImgvideoShieldFrames field if non-nil, zero value otherwise. ### GetImgvideoShieldFramesOk -`func (o *Results) GetImgvideoShieldFramesOk() (*int32, bool)` +`func (o *Results) GetImgvideoShieldFramesOk() (*int64, bool)` GetImgvideoShieldFramesOk returns a tuple with the ImgvideoShieldFrames field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetImgvideoShieldFrames -`func (o *Results) SetImgvideoShieldFrames(v int32)` +`func (o *Results) SetImgvideoShieldFrames(v int64)` SetImgvideoShieldFrames sets ImgvideoShieldFrames field to given value. @@ -2559,20 +2559,20 @@ HasImgvideoShieldFrames returns a boolean if a field has been set. ### GetStatus200 -`func (o *Results) GetStatus200() int32` +`func (o *Results) GetStatus200() int64` GetStatus200 returns the Status200 field if non-nil, zero value otherwise. ### GetStatus200Ok -`func (o *Results) GetStatus200Ok() (*int32, bool)` +`func (o *Results) GetStatus200Ok() (*int64, bool)` GetStatus200Ok returns a tuple with the Status200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus200 -`func (o *Results) SetStatus200(v int32)` +`func (o *Results) SetStatus200(v int64)` SetStatus200 sets Status200 field to given value. @@ -2584,20 +2584,20 @@ HasStatus200 returns a boolean if a field has been set. ### GetStatus204 -`func (o *Results) GetStatus204() int32` +`func (o *Results) GetStatus204() int64` GetStatus204 returns the Status204 field if non-nil, zero value otherwise. ### GetStatus204Ok -`func (o *Results) GetStatus204Ok() (*int32, bool)` +`func (o *Results) GetStatus204Ok() (*int64, bool)` GetStatus204Ok returns a tuple with the Status204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus204 -`func (o *Results) SetStatus204(v int32)` +`func (o *Results) SetStatus204(v int64)` SetStatus204 sets Status204 field to given value. @@ -2609,20 +2609,20 @@ HasStatus204 returns a boolean if a field has been set. ### GetStatus206 -`func (o *Results) GetStatus206() int32` +`func (o *Results) GetStatus206() int64` GetStatus206 returns the Status206 field if non-nil, zero value otherwise. ### GetStatus206Ok -`func (o *Results) GetStatus206Ok() (*int32, bool)` +`func (o *Results) GetStatus206Ok() (*int64, bool)` GetStatus206Ok returns a tuple with the Status206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus206 -`func (o *Results) SetStatus206(v int32)` +`func (o *Results) SetStatus206(v int64)` SetStatus206 sets Status206 field to given value. @@ -2634,20 +2634,20 @@ HasStatus206 returns a boolean if a field has been set. ### GetStatus301 -`func (o *Results) GetStatus301() int32` +`func (o *Results) GetStatus301() int64` GetStatus301 returns the Status301 field if non-nil, zero value otherwise. ### GetStatus301Ok -`func (o *Results) GetStatus301Ok() (*int32, bool)` +`func (o *Results) GetStatus301Ok() (*int64, bool)` GetStatus301Ok returns a tuple with the Status301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus301 -`func (o *Results) SetStatus301(v int32)` +`func (o *Results) SetStatus301(v int64)` SetStatus301 sets Status301 field to given value. @@ -2659,20 +2659,20 @@ HasStatus301 returns a boolean if a field has been set. ### GetStatus302 -`func (o *Results) GetStatus302() int32` +`func (o *Results) GetStatus302() int64` GetStatus302 returns the Status302 field if non-nil, zero value otherwise. ### GetStatus302Ok -`func (o *Results) GetStatus302Ok() (*int32, bool)` +`func (o *Results) GetStatus302Ok() (*int64, bool)` GetStatus302Ok returns a tuple with the Status302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus302 -`func (o *Results) SetStatus302(v int32)` +`func (o *Results) SetStatus302(v int64)` SetStatus302 sets Status302 field to given value. @@ -2684,20 +2684,20 @@ HasStatus302 returns a boolean if a field has been set. ### GetStatus304 -`func (o *Results) GetStatus304() int32` +`func (o *Results) GetStatus304() int64` GetStatus304 returns the Status304 field if non-nil, zero value otherwise. ### GetStatus304Ok -`func (o *Results) GetStatus304Ok() (*int32, bool)` +`func (o *Results) GetStatus304Ok() (*int64, bool)` GetStatus304Ok returns a tuple with the Status304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus304 -`func (o *Results) SetStatus304(v int32)` +`func (o *Results) SetStatus304(v int64)` SetStatus304 sets Status304 field to given value. @@ -2709,20 +2709,20 @@ HasStatus304 returns a boolean if a field has been set. ### GetStatus400 -`func (o *Results) GetStatus400() int32` +`func (o *Results) GetStatus400() int64` GetStatus400 returns the Status400 field if non-nil, zero value otherwise. ### GetStatus400Ok -`func (o *Results) GetStatus400Ok() (*int32, bool)` +`func (o *Results) GetStatus400Ok() (*int64, bool)` GetStatus400Ok returns a tuple with the Status400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus400 -`func (o *Results) SetStatus400(v int32)` +`func (o *Results) SetStatus400(v int64)` SetStatus400 sets Status400 field to given value. @@ -2734,20 +2734,20 @@ HasStatus400 returns a boolean if a field has been set. ### GetStatus401 -`func (o *Results) GetStatus401() int32` +`func (o *Results) GetStatus401() int64` GetStatus401 returns the Status401 field if non-nil, zero value otherwise. ### GetStatus401Ok -`func (o *Results) GetStatus401Ok() (*int32, bool)` +`func (o *Results) GetStatus401Ok() (*int64, bool)` GetStatus401Ok returns a tuple with the Status401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus401 -`func (o *Results) SetStatus401(v int32)` +`func (o *Results) SetStatus401(v int64)` SetStatus401 sets Status401 field to given value. @@ -2759,20 +2759,20 @@ HasStatus401 returns a boolean if a field has been set. ### GetStatus403 -`func (o *Results) GetStatus403() int32` +`func (o *Results) GetStatus403() int64` GetStatus403 returns the Status403 field if non-nil, zero value otherwise. ### GetStatus403Ok -`func (o *Results) GetStatus403Ok() (*int32, bool)` +`func (o *Results) GetStatus403Ok() (*int64, bool)` GetStatus403Ok returns a tuple with the Status403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus403 -`func (o *Results) SetStatus403(v int32)` +`func (o *Results) SetStatus403(v int64)` SetStatus403 sets Status403 field to given value. @@ -2784,20 +2784,20 @@ HasStatus403 returns a boolean if a field has been set. ### GetStatus404 -`func (o *Results) GetStatus404() int32` +`func (o *Results) GetStatus404() int64` GetStatus404 returns the Status404 field if non-nil, zero value otherwise. ### GetStatus404Ok -`func (o *Results) GetStatus404Ok() (*int32, bool)` +`func (o *Results) GetStatus404Ok() (*int64, bool)` GetStatus404Ok returns a tuple with the Status404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus404 -`func (o *Results) SetStatus404(v int32)` +`func (o *Results) SetStatus404(v int64)` SetStatus404 sets Status404 field to given value. @@ -2809,20 +2809,20 @@ HasStatus404 returns a boolean if a field has been set. ### GetStatus406 -`func (o *Results) GetStatus406() int32` +`func (o *Results) GetStatus406() int64` GetStatus406 returns the Status406 field if non-nil, zero value otherwise. ### GetStatus406Ok -`func (o *Results) GetStatus406Ok() (*int32, bool)` +`func (o *Results) GetStatus406Ok() (*int64, bool)` GetStatus406Ok returns a tuple with the Status406 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus406 -`func (o *Results) SetStatus406(v int32)` +`func (o *Results) SetStatus406(v int64)` SetStatus406 sets Status406 field to given value. @@ -2834,20 +2834,20 @@ HasStatus406 returns a boolean if a field has been set. ### GetStatus416 -`func (o *Results) GetStatus416() int32` +`func (o *Results) GetStatus416() int64` GetStatus416 returns the Status416 field if non-nil, zero value otherwise. ### GetStatus416Ok -`func (o *Results) GetStatus416Ok() (*int32, bool)` +`func (o *Results) GetStatus416Ok() (*int64, bool)` GetStatus416Ok returns a tuple with the Status416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus416 -`func (o *Results) SetStatus416(v int32)` +`func (o *Results) SetStatus416(v int64)` SetStatus416 sets Status416 field to given value. @@ -2859,20 +2859,20 @@ HasStatus416 returns a boolean if a field has been set. ### GetStatus429 -`func (o *Results) GetStatus429() int32` +`func (o *Results) GetStatus429() int64` GetStatus429 returns the Status429 field if non-nil, zero value otherwise. ### GetStatus429Ok -`func (o *Results) GetStatus429Ok() (*int32, bool)` +`func (o *Results) GetStatus429Ok() (*int64, bool)` GetStatus429Ok returns a tuple with the Status429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus429 -`func (o *Results) SetStatus429(v int32)` +`func (o *Results) SetStatus429(v int64)` SetStatus429 sets Status429 field to given value. @@ -2884,20 +2884,20 @@ HasStatus429 returns a boolean if a field has been set. ### GetStatus500 -`func (o *Results) GetStatus500() int32` +`func (o *Results) GetStatus500() int64` GetStatus500 returns the Status500 field if non-nil, zero value otherwise. ### GetStatus500Ok -`func (o *Results) GetStatus500Ok() (*int32, bool)` +`func (o *Results) GetStatus500Ok() (*int64, bool)` GetStatus500Ok returns a tuple with the Status500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus500 -`func (o *Results) SetStatus500(v int32)` +`func (o *Results) SetStatus500(v int64)` SetStatus500 sets Status500 field to given value. @@ -2909,20 +2909,20 @@ HasStatus500 returns a boolean if a field has been set. ### GetStatus501 -`func (o *Results) GetStatus501() int32` +`func (o *Results) GetStatus501() int64` GetStatus501 returns the Status501 field if non-nil, zero value otherwise. ### GetStatus501Ok -`func (o *Results) GetStatus501Ok() (*int32, bool)` +`func (o *Results) GetStatus501Ok() (*int64, bool)` GetStatus501Ok returns a tuple with the Status501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus501 -`func (o *Results) SetStatus501(v int32)` +`func (o *Results) SetStatus501(v int64)` SetStatus501 sets Status501 field to given value. @@ -2934,20 +2934,20 @@ HasStatus501 returns a boolean if a field has been set. ### GetStatus502 -`func (o *Results) GetStatus502() int32` +`func (o *Results) GetStatus502() int64` GetStatus502 returns the Status502 field if non-nil, zero value otherwise. ### GetStatus502Ok -`func (o *Results) GetStatus502Ok() (*int32, bool)` +`func (o *Results) GetStatus502Ok() (*int64, bool)` GetStatus502Ok returns a tuple with the Status502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus502 -`func (o *Results) SetStatus502(v int32)` +`func (o *Results) SetStatus502(v int64)` SetStatus502 sets Status502 field to given value. @@ -2959,20 +2959,20 @@ HasStatus502 returns a boolean if a field has been set. ### GetStatus503 -`func (o *Results) GetStatus503() int32` +`func (o *Results) GetStatus503() int64` GetStatus503 returns the Status503 field if non-nil, zero value otherwise. ### GetStatus503Ok -`func (o *Results) GetStatus503Ok() (*int32, bool)` +`func (o *Results) GetStatus503Ok() (*int64, bool)` GetStatus503Ok returns a tuple with the Status503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus503 -`func (o *Results) SetStatus503(v int32)` +`func (o *Results) SetStatus503(v int64)` SetStatus503 sets Status503 field to given value. @@ -2984,20 +2984,20 @@ HasStatus503 returns a boolean if a field has been set. ### GetStatus504 -`func (o *Results) GetStatus504() int32` +`func (o *Results) GetStatus504() int64` GetStatus504 returns the Status504 field if non-nil, zero value otherwise. ### GetStatus504Ok -`func (o *Results) GetStatus504Ok() (*int32, bool)` +`func (o *Results) GetStatus504Ok() (*int64, bool)` GetStatus504Ok returns a tuple with the Status504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus504 -`func (o *Results) SetStatus504(v int32)` +`func (o *Results) SetStatus504(v int64)` SetStatus504 sets Status504 field to given value. @@ -3009,20 +3009,20 @@ HasStatus504 returns a boolean if a field has been set. ### GetStatus505 -`func (o *Results) GetStatus505() int32` +`func (o *Results) GetStatus505() int64` GetStatus505 returns the Status505 field if non-nil, zero value otherwise. ### GetStatus505Ok -`func (o *Results) GetStatus505Ok() (*int32, bool)` +`func (o *Results) GetStatus505Ok() (*int64, bool)` GetStatus505Ok returns a tuple with the Status505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus505 -`func (o *Results) SetStatus505(v int32)` +`func (o *Results) SetStatus505(v int64)` SetStatus505 sets Status505 field to given value. @@ -3034,20 +3034,20 @@ HasStatus505 returns a boolean if a field has been set. ### GetStatus1xx -`func (o *Results) GetStatus1xx() int32` +`func (o *Results) GetStatus1xx() int64` GetStatus1xx returns the Status1xx field if non-nil, zero value otherwise. ### GetStatus1xxOk -`func (o *Results) GetStatus1xxOk() (*int32, bool)` +`func (o *Results) GetStatus1xxOk() (*int64, bool)` GetStatus1xxOk returns a tuple with the Status1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus1xx -`func (o *Results) SetStatus1xx(v int32)` +`func (o *Results) SetStatus1xx(v int64)` SetStatus1xx sets Status1xx field to given value. @@ -3059,20 +3059,20 @@ HasStatus1xx returns a boolean if a field has been set. ### GetStatus2xx -`func (o *Results) GetStatus2xx() int32` +`func (o *Results) GetStatus2xx() int64` GetStatus2xx returns the Status2xx field if non-nil, zero value otherwise. ### GetStatus2xxOk -`func (o *Results) GetStatus2xxOk() (*int32, bool)` +`func (o *Results) GetStatus2xxOk() (*int64, bool)` GetStatus2xxOk returns a tuple with the Status2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus2xx -`func (o *Results) SetStatus2xx(v int32)` +`func (o *Results) SetStatus2xx(v int64)` SetStatus2xx sets Status2xx field to given value. @@ -3084,20 +3084,20 @@ HasStatus2xx returns a boolean if a field has been set. ### GetStatus3xx -`func (o *Results) GetStatus3xx() int32` +`func (o *Results) GetStatus3xx() int64` GetStatus3xx returns the Status3xx field if non-nil, zero value otherwise. ### GetStatus3xxOk -`func (o *Results) GetStatus3xxOk() (*int32, bool)` +`func (o *Results) GetStatus3xxOk() (*int64, bool)` GetStatus3xxOk returns a tuple with the Status3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus3xx -`func (o *Results) SetStatus3xx(v int32)` +`func (o *Results) SetStatus3xx(v int64)` SetStatus3xx sets Status3xx field to given value. @@ -3109,20 +3109,20 @@ HasStatus3xx returns a boolean if a field has been set. ### GetStatus4xx -`func (o *Results) GetStatus4xx() int32` +`func (o *Results) GetStatus4xx() int64` GetStatus4xx returns the Status4xx field if non-nil, zero value otherwise. ### GetStatus4xxOk -`func (o *Results) GetStatus4xxOk() (*int32, bool)` +`func (o *Results) GetStatus4xxOk() (*int64, bool)` GetStatus4xxOk returns a tuple with the Status4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus4xx -`func (o *Results) SetStatus4xx(v int32)` +`func (o *Results) SetStatus4xx(v int64)` SetStatus4xx sets Status4xx field to given value. @@ -3134,20 +3134,20 @@ HasStatus4xx returns a boolean if a field has been set. ### GetStatus5xx -`func (o *Results) GetStatus5xx() int32` +`func (o *Results) GetStatus5xx() int64` GetStatus5xx returns the Status5xx field if non-nil, zero value otherwise. ### GetStatus5xxOk -`func (o *Results) GetStatus5xxOk() (*int32, bool)` +`func (o *Results) GetStatus5xxOk() (*int64, bool)` GetStatus5xxOk returns a tuple with the Status5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus5xx -`func (o *Results) SetStatus5xx(v int32)` +`func (o *Results) SetStatus5xx(v int64)` SetStatus5xx sets Status5xx field to given value. @@ -3159,20 +3159,20 @@ HasStatus5xx returns a boolean if a field has been set. ### GetObjectSize1k -`func (o *Results) GetObjectSize1k() int32` +`func (o *Results) GetObjectSize1k() int64` GetObjectSize1k returns the ObjectSize1k field if non-nil, zero value otherwise. ### GetObjectSize1kOk -`func (o *Results) GetObjectSize1kOk() (*int32, bool)` +`func (o *Results) GetObjectSize1kOk() (*int64, bool)` GetObjectSize1kOk returns a tuple with the ObjectSize1k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1k -`func (o *Results) SetObjectSize1k(v int32)` +`func (o *Results) SetObjectSize1k(v int64)` SetObjectSize1k sets ObjectSize1k field to given value. @@ -3184,20 +3184,20 @@ HasObjectSize1k returns a boolean if a field has been set. ### GetObjectSize10k -`func (o *Results) GetObjectSize10k() int32` +`func (o *Results) GetObjectSize10k() int64` GetObjectSize10k returns the ObjectSize10k field if non-nil, zero value otherwise. ### GetObjectSize10kOk -`func (o *Results) GetObjectSize10kOk() (*int32, bool)` +`func (o *Results) GetObjectSize10kOk() (*int64, bool)` GetObjectSize10kOk returns a tuple with the ObjectSize10k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize10k -`func (o *Results) SetObjectSize10k(v int32)` +`func (o *Results) SetObjectSize10k(v int64)` SetObjectSize10k sets ObjectSize10k field to given value. @@ -3209,20 +3209,20 @@ HasObjectSize10k returns a boolean if a field has been set. ### GetObjectSize100k -`func (o *Results) GetObjectSize100k() int32` +`func (o *Results) GetObjectSize100k() int64` GetObjectSize100k returns the ObjectSize100k field if non-nil, zero value otherwise. ### GetObjectSize100kOk -`func (o *Results) GetObjectSize100kOk() (*int32, bool)` +`func (o *Results) GetObjectSize100kOk() (*int64, bool)` GetObjectSize100kOk returns a tuple with the ObjectSize100k field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize100k -`func (o *Results) SetObjectSize100k(v int32)` +`func (o *Results) SetObjectSize100k(v int64)` SetObjectSize100k sets ObjectSize100k field to given value. @@ -3234,20 +3234,20 @@ HasObjectSize100k returns a boolean if a field has been set. ### GetObjectSize1m -`func (o *Results) GetObjectSize1m() int32` +`func (o *Results) GetObjectSize1m() int64` GetObjectSize1m returns the ObjectSize1m field if non-nil, zero value otherwise. ### GetObjectSize1mOk -`func (o *Results) GetObjectSize1mOk() (*int32, bool)` +`func (o *Results) GetObjectSize1mOk() (*int64, bool)` GetObjectSize1mOk returns a tuple with the ObjectSize1m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1m -`func (o *Results) SetObjectSize1m(v int32)` +`func (o *Results) SetObjectSize1m(v int64)` SetObjectSize1m sets ObjectSize1m field to given value. @@ -3259,20 +3259,20 @@ HasObjectSize1m returns a boolean if a field has been set. ### GetObjectSize10m -`func (o *Results) GetObjectSize10m() int32` +`func (o *Results) GetObjectSize10m() int64` GetObjectSize10m returns the ObjectSize10m field if non-nil, zero value otherwise. ### GetObjectSize10mOk -`func (o *Results) GetObjectSize10mOk() (*int32, bool)` +`func (o *Results) GetObjectSize10mOk() (*int64, bool)` GetObjectSize10mOk returns a tuple with the ObjectSize10m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize10m -`func (o *Results) SetObjectSize10m(v int32)` +`func (o *Results) SetObjectSize10m(v int64)` SetObjectSize10m sets ObjectSize10m field to given value. @@ -3284,20 +3284,20 @@ HasObjectSize10m returns a boolean if a field has been set. ### GetObjectSize100m -`func (o *Results) GetObjectSize100m() int32` +`func (o *Results) GetObjectSize100m() int64` GetObjectSize100m returns the ObjectSize100m field if non-nil, zero value otherwise. ### GetObjectSize100mOk -`func (o *Results) GetObjectSize100mOk() (*int32, bool)` +`func (o *Results) GetObjectSize100mOk() (*int64, bool)` GetObjectSize100mOk returns a tuple with the ObjectSize100m field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize100m -`func (o *Results) SetObjectSize100m(v int32)` +`func (o *Results) SetObjectSize100m(v int64)` SetObjectSize100m sets ObjectSize100m field to given value. @@ -3309,20 +3309,20 @@ HasObjectSize100m returns a boolean if a field has been set. ### GetObjectSize1g -`func (o *Results) GetObjectSize1g() int32` +`func (o *Results) GetObjectSize1g() int64` GetObjectSize1g returns the ObjectSize1g field if non-nil, zero value otherwise. ### GetObjectSize1gOk -`func (o *Results) GetObjectSize1gOk() (*int32, bool)` +`func (o *Results) GetObjectSize1gOk() (*int64, bool)` GetObjectSize1gOk returns a tuple with the ObjectSize1g field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectSize1g -`func (o *Results) SetObjectSize1g(v int32)` +`func (o *Results) SetObjectSize1g(v int64)` SetObjectSize1g sets ObjectSize1g field to given value. @@ -3359,20 +3359,20 @@ HasRecvSubTime returns a boolean if a field has been set. ### GetRecvSubCount -`func (o *Results) GetRecvSubCount() int32` +`func (o *Results) GetRecvSubCount() int64` GetRecvSubCount returns the RecvSubCount field if non-nil, zero value otherwise. ### GetRecvSubCountOk -`func (o *Results) GetRecvSubCountOk() (*int32, bool)` +`func (o *Results) GetRecvSubCountOk() (*int64, bool)` GetRecvSubCountOk returns a tuple with the RecvSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRecvSubCount -`func (o *Results) SetRecvSubCount(v int32)` +`func (o *Results) SetRecvSubCount(v int64)` SetRecvSubCount sets RecvSubCount field to given value. @@ -3409,20 +3409,20 @@ HasHashSubTime returns a boolean if a field has been set. ### GetHashSubCount -`func (o *Results) GetHashSubCount() int32` +`func (o *Results) GetHashSubCount() int64` GetHashSubCount returns the HashSubCount field if non-nil, zero value otherwise. ### GetHashSubCountOk -`func (o *Results) GetHashSubCountOk() (*int32, bool)` +`func (o *Results) GetHashSubCountOk() (*int64, bool)` GetHashSubCountOk returns a tuple with the HashSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHashSubCount -`func (o *Results) SetHashSubCount(v int32)` +`func (o *Results) SetHashSubCount(v int64)` SetHashSubCount sets HashSubCount field to given value. @@ -3459,20 +3459,20 @@ HasMissSubTime returns a boolean if a field has been set. ### GetMissSubCount -`func (o *Results) GetMissSubCount() int32` +`func (o *Results) GetMissSubCount() int64` GetMissSubCount returns the MissSubCount field if non-nil, zero value otherwise. ### GetMissSubCountOk -`func (o *Results) GetMissSubCountOk() (*int32, bool)` +`func (o *Results) GetMissSubCountOk() (*int64, bool)` GetMissSubCountOk returns a tuple with the MissSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMissSubCount -`func (o *Results) SetMissSubCount(v int32)` +`func (o *Results) SetMissSubCount(v int64)` SetMissSubCount sets MissSubCount field to given value. @@ -3509,20 +3509,20 @@ HasFetchSubTime returns a boolean if a field has been set. ### GetFetchSubCount -`func (o *Results) GetFetchSubCount() int32` +`func (o *Results) GetFetchSubCount() int64` GetFetchSubCount returns the FetchSubCount field if non-nil, zero value otherwise. ### GetFetchSubCountOk -`func (o *Results) GetFetchSubCountOk() (*int32, bool)` +`func (o *Results) GetFetchSubCountOk() (*int64, bool)` GetFetchSubCountOk returns a tuple with the FetchSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFetchSubCount -`func (o *Results) SetFetchSubCount(v int32)` +`func (o *Results) SetFetchSubCount(v int64)` SetFetchSubCount sets FetchSubCount field to given value. @@ -3559,20 +3559,20 @@ HasPassSubTime returns a boolean if a field has been set. ### GetPassSubCount -`func (o *Results) GetPassSubCount() int32` +`func (o *Results) GetPassSubCount() int64` GetPassSubCount returns the PassSubCount field if non-nil, zero value otherwise. ### GetPassSubCountOk -`func (o *Results) GetPassSubCountOk() (*int32, bool)` +`func (o *Results) GetPassSubCountOk() (*int64, bool)` GetPassSubCountOk returns a tuple with the PassSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPassSubCount -`func (o *Results) SetPassSubCount(v int32)` +`func (o *Results) SetPassSubCount(v int64)` SetPassSubCount sets PassSubCount field to given value. @@ -3609,20 +3609,20 @@ HasPipeSubTime returns a boolean if a field has been set. ### GetPipeSubCount -`func (o *Results) GetPipeSubCount() int32` +`func (o *Results) GetPipeSubCount() int64` GetPipeSubCount returns the PipeSubCount field if non-nil, zero value otherwise. ### GetPipeSubCountOk -`func (o *Results) GetPipeSubCountOk() (*int32, bool)` +`func (o *Results) GetPipeSubCountOk() (*int64, bool)` GetPipeSubCountOk returns a tuple with the PipeSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPipeSubCount -`func (o *Results) SetPipeSubCount(v int32)` +`func (o *Results) SetPipeSubCount(v int64)` SetPipeSubCount sets PipeSubCount field to given value. @@ -3659,20 +3659,20 @@ HasDeliverSubTime returns a boolean if a field has been set. ### GetDeliverSubCount -`func (o *Results) GetDeliverSubCount() int32` +`func (o *Results) GetDeliverSubCount() int64` GetDeliverSubCount returns the DeliverSubCount field if non-nil, zero value otherwise. ### GetDeliverSubCountOk -`func (o *Results) GetDeliverSubCountOk() (*int32, bool)` +`func (o *Results) GetDeliverSubCountOk() (*int64, bool)` GetDeliverSubCountOk returns a tuple with the DeliverSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDeliverSubCount -`func (o *Results) SetDeliverSubCount(v int32)` +`func (o *Results) SetDeliverSubCount(v int64)` SetDeliverSubCount sets DeliverSubCount field to given value. @@ -3709,20 +3709,20 @@ HasErrorSubTime returns a boolean if a field has been set. ### GetErrorSubCount -`func (o *Results) GetErrorSubCount() int32` +`func (o *Results) GetErrorSubCount() int64` GetErrorSubCount returns the ErrorSubCount field if non-nil, zero value otherwise. ### GetErrorSubCountOk -`func (o *Results) GetErrorSubCountOk() (*int32, bool)` +`func (o *Results) GetErrorSubCountOk() (*int64, bool)` GetErrorSubCountOk returns a tuple with the ErrorSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetErrorSubCount -`func (o *Results) SetErrorSubCount(v int32)` +`func (o *Results) SetErrorSubCount(v int64)` SetErrorSubCount sets ErrorSubCount field to given value. @@ -3759,20 +3759,20 @@ HasHitSubTime returns a boolean if a field has been set. ### GetHitSubCount -`func (o *Results) GetHitSubCount() int32` +`func (o *Results) GetHitSubCount() int64` GetHitSubCount returns the HitSubCount field if non-nil, zero value otherwise. ### GetHitSubCountOk -`func (o *Results) GetHitSubCountOk() (*int32, bool)` +`func (o *Results) GetHitSubCountOk() (*int64, bool)` GetHitSubCountOk returns a tuple with the HitSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHitSubCount -`func (o *Results) SetHitSubCount(v int32)` +`func (o *Results) SetHitSubCount(v int64)` SetHitSubCount sets HitSubCount field to given value. @@ -3809,20 +3809,20 @@ HasPrehashSubTime returns a boolean if a field has been set. ### GetPrehashSubCount -`func (o *Results) GetPrehashSubCount() int32` +`func (o *Results) GetPrehashSubCount() int64` GetPrehashSubCount returns the PrehashSubCount field if non-nil, zero value otherwise. ### GetPrehashSubCountOk -`func (o *Results) GetPrehashSubCountOk() (*int32, bool)` +`func (o *Results) GetPrehashSubCountOk() (*int64, bool)` GetPrehashSubCountOk returns a tuple with the PrehashSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPrehashSubCount -`func (o *Results) SetPrehashSubCount(v int32)` +`func (o *Results) SetPrehashSubCount(v int64)` SetPrehashSubCount sets PrehashSubCount field to given value. @@ -3859,20 +3859,20 @@ HasPredeliverSubTime returns a boolean if a field has been set. ### GetPredeliverSubCount -`func (o *Results) GetPredeliverSubCount() int32` +`func (o *Results) GetPredeliverSubCount() int64` GetPredeliverSubCount returns the PredeliverSubCount field if non-nil, zero value otherwise. ### GetPredeliverSubCountOk -`func (o *Results) GetPredeliverSubCountOk() (*int32, bool)` +`func (o *Results) GetPredeliverSubCountOk() (*int64, bool)` GetPredeliverSubCountOk returns a tuple with the PredeliverSubCount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPredeliverSubCount -`func (o *Results) SetPredeliverSubCount(v int32)` +`func (o *Results) SetPredeliverSubCount(v int64)` SetPredeliverSubCount sets PredeliverSubCount field to given value. @@ -3884,20 +3884,20 @@ HasPredeliverSubCount returns a boolean if a field has been set. ### GetTLSHandshakeSentBytes -`func (o *Results) GetTLSHandshakeSentBytes() int32` +`func (o *Results) GetTLSHandshakeSentBytes() int64` GetTLSHandshakeSentBytes returns the TLSHandshakeSentBytes field if non-nil, zero value otherwise. ### GetTLSHandshakeSentBytesOk -`func (o *Results) GetTLSHandshakeSentBytesOk() (*int32, bool)` +`func (o *Results) GetTLSHandshakeSentBytesOk() (*int64, bool)` GetTLSHandshakeSentBytesOk returns a tuple with the TLSHandshakeSentBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetTLSHandshakeSentBytes -`func (o *Results) SetTLSHandshakeSentBytes(v int32)` +`func (o *Results) SetTLSHandshakeSentBytes(v int64)` SetTLSHandshakeSentBytes sets TLSHandshakeSentBytes field to given value. @@ -3909,20 +3909,20 @@ HasTLSHandshakeSentBytes returns a boolean if a field has been set. ### GetHitRespBodyBytes -`func (o *Results) GetHitRespBodyBytes() int32` +`func (o *Results) GetHitRespBodyBytes() int64` GetHitRespBodyBytes returns the HitRespBodyBytes field if non-nil, zero value otherwise. ### GetHitRespBodyBytesOk -`func (o *Results) GetHitRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetHitRespBodyBytesOk() (*int64, bool)` GetHitRespBodyBytesOk returns a tuple with the HitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetHitRespBodyBytes -`func (o *Results) SetHitRespBodyBytes(v int32)` +`func (o *Results) SetHitRespBodyBytes(v int64)` SetHitRespBodyBytes sets HitRespBodyBytes field to given value. @@ -3934,20 +3934,20 @@ HasHitRespBodyBytes returns a boolean if a field has been set. ### GetMissRespBodyBytes -`func (o *Results) GetMissRespBodyBytes() int32` +`func (o *Results) GetMissRespBodyBytes() int64` GetMissRespBodyBytes returns the MissRespBodyBytes field if non-nil, zero value otherwise. ### GetMissRespBodyBytesOk -`func (o *Results) GetMissRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetMissRespBodyBytesOk() (*int64, bool)` GetMissRespBodyBytesOk returns a tuple with the MissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMissRespBodyBytes -`func (o *Results) SetMissRespBodyBytes(v int32)` +`func (o *Results) SetMissRespBodyBytes(v int64)` SetMissRespBodyBytes sets MissRespBodyBytes field to given value. @@ -3959,20 +3959,20 @@ HasMissRespBodyBytes returns a boolean if a field has been set. ### GetPassRespBodyBytes -`func (o *Results) GetPassRespBodyBytes() int32` +`func (o *Results) GetPassRespBodyBytes() int64` GetPassRespBodyBytes returns the PassRespBodyBytes field if non-nil, zero value otherwise. ### GetPassRespBodyBytesOk -`func (o *Results) GetPassRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetPassRespBodyBytesOk() (*int64, bool)` GetPassRespBodyBytesOk returns a tuple with the PassRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetPassRespBodyBytes -`func (o *Results) SetPassRespBodyBytes(v int32)` +`func (o *Results) SetPassRespBodyBytes(v int64)` SetPassRespBodyBytes sets PassRespBodyBytes field to given value. @@ -3984,20 +3984,20 @@ HasPassRespBodyBytes returns a boolean if a field has been set. ### GetSegblockOriginFetches -`func (o *Results) GetSegblockOriginFetches() int32` +`func (o *Results) GetSegblockOriginFetches() int64` GetSegblockOriginFetches returns the SegblockOriginFetches field if non-nil, zero value otherwise. ### GetSegblockOriginFetchesOk -`func (o *Results) GetSegblockOriginFetchesOk() (*int32, bool)` +`func (o *Results) GetSegblockOriginFetchesOk() (*int64, bool)` GetSegblockOriginFetchesOk returns a tuple with the SegblockOriginFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSegblockOriginFetches -`func (o *Results) SetSegblockOriginFetches(v int32)` +`func (o *Results) SetSegblockOriginFetches(v int64)` SetSegblockOriginFetches sets SegblockOriginFetches field to given value. @@ -4009,20 +4009,20 @@ HasSegblockOriginFetches returns a boolean if a field has been set. ### GetSegblockShieldFetches -`func (o *Results) GetSegblockShieldFetches() int32` +`func (o *Results) GetSegblockShieldFetches() int64` GetSegblockShieldFetches returns the SegblockShieldFetches field if non-nil, zero value otherwise. ### GetSegblockShieldFetchesOk -`func (o *Results) GetSegblockShieldFetchesOk() (*int32, bool)` +`func (o *Results) GetSegblockShieldFetchesOk() (*int64, bool)` GetSegblockShieldFetchesOk returns a tuple with the SegblockShieldFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSegblockShieldFetches -`func (o *Results) SetSegblockShieldFetches(v int32)` +`func (o *Results) SetSegblockShieldFetches(v int64)` SetSegblockShieldFetches sets SegblockShieldFetches field to given value. @@ -4034,20 +4034,20 @@ HasSegblockShieldFetches returns a boolean if a field has been set. ### GetComputeRequests -`func (o *Results) GetComputeRequests() int32` +`func (o *Results) GetComputeRequests() int64` GetComputeRequests returns the ComputeRequests field if non-nil, zero value otherwise. ### GetComputeRequestsOk -`func (o *Results) GetComputeRequestsOk() (*int32, bool)` +`func (o *Results) GetComputeRequestsOk() (*int64, bool)` GetComputeRequestsOk returns a tuple with the ComputeRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRequests -`func (o *Results) SetComputeRequests(v int32)` +`func (o *Results) SetComputeRequests(v int64)` SetComputeRequests sets ComputeRequests field to given value. @@ -4109,20 +4109,20 @@ HasComputeRequestTimeBilledMs returns a boolean if a field has been set. ### GetComputeRAMUsed -`func (o *Results) GetComputeRAMUsed() int32` +`func (o *Results) GetComputeRAMUsed() int64` GetComputeRAMUsed returns the ComputeRAMUsed field if non-nil, zero value otherwise. ### GetComputeRAMUsedOk -`func (o *Results) GetComputeRAMUsedOk() (*int32, bool)` +`func (o *Results) GetComputeRAMUsedOk() (*int64, bool)` GetComputeRAMUsedOk returns a tuple with the ComputeRAMUsed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRAMUsed -`func (o *Results) SetComputeRAMUsed(v int32)` +`func (o *Results) SetComputeRAMUsed(v int64)` SetComputeRAMUsed sets ComputeRAMUsed field to given value. @@ -4159,20 +4159,20 @@ HasComputeExecutionTimeMs returns a boolean if a field has been set. ### GetComputeReqHeaderBytes -`func (o *Results) GetComputeReqHeaderBytes() int32` +`func (o *Results) GetComputeReqHeaderBytes() int64` GetComputeReqHeaderBytes returns the ComputeReqHeaderBytes field if non-nil, zero value otherwise. ### GetComputeReqHeaderBytesOk -`func (o *Results) GetComputeReqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetComputeReqHeaderBytesOk() (*int64, bool)` GetComputeReqHeaderBytesOk returns a tuple with the ComputeReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeReqHeaderBytes -`func (o *Results) SetComputeReqHeaderBytes(v int32)` +`func (o *Results) SetComputeReqHeaderBytes(v int64)` SetComputeReqHeaderBytes sets ComputeReqHeaderBytes field to given value. @@ -4184,20 +4184,20 @@ HasComputeReqHeaderBytes returns a boolean if a field has been set. ### GetComputeReqBodyBytes -`func (o *Results) GetComputeReqBodyBytes() int32` +`func (o *Results) GetComputeReqBodyBytes() int64` GetComputeReqBodyBytes returns the ComputeReqBodyBytes field if non-nil, zero value otherwise. ### GetComputeReqBodyBytesOk -`func (o *Results) GetComputeReqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetComputeReqBodyBytesOk() (*int64, bool)` GetComputeReqBodyBytesOk returns a tuple with the ComputeReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeReqBodyBytes -`func (o *Results) SetComputeReqBodyBytes(v int32)` +`func (o *Results) SetComputeReqBodyBytes(v int64)` SetComputeReqBodyBytes sets ComputeReqBodyBytes field to given value. @@ -4209,20 +4209,20 @@ HasComputeReqBodyBytes returns a boolean if a field has been set. ### GetComputeRespHeaderBytes -`func (o *Results) GetComputeRespHeaderBytes() int32` +`func (o *Results) GetComputeRespHeaderBytes() int64` GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field if non-nil, zero value otherwise. ### GetComputeRespHeaderBytesOk -`func (o *Results) GetComputeRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetComputeRespHeaderBytesOk() (*int64, bool)` GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespHeaderBytes -`func (o *Results) SetComputeRespHeaderBytes(v int32)` +`func (o *Results) SetComputeRespHeaderBytes(v int64)` SetComputeRespHeaderBytes sets ComputeRespHeaderBytes field to given value. @@ -4234,20 +4234,20 @@ HasComputeRespHeaderBytes returns a boolean if a field has been set. ### GetComputeRespBodyBytes -`func (o *Results) GetComputeRespBodyBytes() int32` +`func (o *Results) GetComputeRespBodyBytes() int64` GetComputeRespBodyBytes returns the ComputeRespBodyBytes field if non-nil, zero value otherwise. ### GetComputeRespBodyBytesOk -`func (o *Results) GetComputeRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetComputeRespBodyBytesOk() (*int64, bool)` GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespBodyBytes -`func (o *Results) SetComputeRespBodyBytes(v int32)` +`func (o *Results) SetComputeRespBodyBytes(v int64)` SetComputeRespBodyBytes sets ComputeRespBodyBytes field to given value. @@ -4259,20 +4259,20 @@ HasComputeRespBodyBytes returns a boolean if a field has been set. ### GetComputeRespStatus1xx -`func (o *Results) GetComputeRespStatus1xx() int32` +`func (o *Results) GetComputeRespStatus1xx() int64` GetComputeRespStatus1xx returns the ComputeRespStatus1xx field if non-nil, zero value otherwise. ### GetComputeRespStatus1xxOk -`func (o *Results) GetComputeRespStatus1xxOk() (*int32, bool)` +`func (o *Results) GetComputeRespStatus1xxOk() (*int64, bool)` GetComputeRespStatus1xxOk returns a tuple with the ComputeRespStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus1xx -`func (o *Results) SetComputeRespStatus1xx(v int32)` +`func (o *Results) SetComputeRespStatus1xx(v int64)` SetComputeRespStatus1xx sets ComputeRespStatus1xx field to given value. @@ -4284,20 +4284,20 @@ HasComputeRespStatus1xx returns a boolean if a field has been set. ### GetComputeRespStatus2xx -`func (o *Results) GetComputeRespStatus2xx() int32` +`func (o *Results) GetComputeRespStatus2xx() int64` GetComputeRespStatus2xx returns the ComputeRespStatus2xx field if non-nil, zero value otherwise. ### GetComputeRespStatus2xxOk -`func (o *Results) GetComputeRespStatus2xxOk() (*int32, bool)` +`func (o *Results) GetComputeRespStatus2xxOk() (*int64, bool)` GetComputeRespStatus2xxOk returns a tuple with the ComputeRespStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus2xx -`func (o *Results) SetComputeRespStatus2xx(v int32)` +`func (o *Results) SetComputeRespStatus2xx(v int64)` SetComputeRespStatus2xx sets ComputeRespStatus2xx field to given value. @@ -4309,20 +4309,20 @@ HasComputeRespStatus2xx returns a boolean if a field has been set. ### GetComputeRespStatus3xx -`func (o *Results) GetComputeRespStatus3xx() int32` +`func (o *Results) GetComputeRespStatus3xx() int64` GetComputeRespStatus3xx returns the ComputeRespStatus3xx field if non-nil, zero value otherwise. ### GetComputeRespStatus3xxOk -`func (o *Results) GetComputeRespStatus3xxOk() (*int32, bool)` +`func (o *Results) GetComputeRespStatus3xxOk() (*int64, bool)` GetComputeRespStatus3xxOk returns a tuple with the ComputeRespStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus3xx -`func (o *Results) SetComputeRespStatus3xx(v int32)` +`func (o *Results) SetComputeRespStatus3xx(v int64)` SetComputeRespStatus3xx sets ComputeRespStatus3xx field to given value. @@ -4334,20 +4334,20 @@ HasComputeRespStatus3xx returns a boolean if a field has been set. ### GetComputeRespStatus4xx -`func (o *Results) GetComputeRespStatus4xx() int32` +`func (o *Results) GetComputeRespStatus4xx() int64` GetComputeRespStatus4xx returns the ComputeRespStatus4xx field if non-nil, zero value otherwise. ### GetComputeRespStatus4xxOk -`func (o *Results) GetComputeRespStatus4xxOk() (*int32, bool)` +`func (o *Results) GetComputeRespStatus4xxOk() (*int64, bool)` GetComputeRespStatus4xxOk returns a tuple with the ComputeRespStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus4xx -`func (o *Results) SetComputeRespStatus4xx(v int32)` +`func (o *Results) SetComputeRespStatus4xx(v int64)` SetComputeRespStatus4xx sets ComputeRespStatus4xx field to given value. @@ -4359,20 +4359,20 @@ HasComputeRespStatus4xx returns a boolean if a field has been set. ### GetComputeRespStatus5xx -`func (o *Results) GetComputeRespStatus5xx() int32` +`func (o *Results) GetComputeRespStatus5xx() int64` GetComputeRespStatus5xx returns the ComputeRespStatus5xx field if non-nil, zero value otherwise. ### GetComputeRespStatus5xxOk -`func (o *Results) GetComputeRespStatus5xxOk() (*int32, bool)` +`func (o *Results) GetComputeRespStatus5xxOk() (*int64, bool)` GetComputeRespStatus5xxOk returns a tuple with the ComputeRespStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRespStatus5xx -`func (o *Results) SetComputeRespStatus5xx(v int32)` +`func (o *Results) SetComputeRespStatus5xx(v int64)` SetComputeRespStatus5xx sets ComputeRespStatus5xx field to given value. @@ -4384,20 +4384,20 @@ HasComputeRespStatus5xx returns a boolean if a field has been set. ### GetComputeBereqHeaderBytes -`func (o *Results) GetComputeBereqHeaderBytes() int32` +`func (o *Results) GetComputeBereqHeaderBytes() int64` GetComputeBereqHeaderBytes returns the ComputeBereqHeaderBytes field if non-nil, zero value otherwise. ### GetComputeBereqHeaderBytesOk -`func (o *Results) GetComputeBereqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetComputeBereqHeaderBytesOk() (*int64, bool)` GetComputeBereqHeaderBytesOk returns a tuple with the ComputeBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqHeaderBytes -`func (o *Results) SetComputeBereqHeaderBytes(v int32)` +`func (o *Results) SetComputeBereqHeaderBytes(v int64)` SetComputeBereqHeaderBytes sets ComputeBereqHeaderBytes field to given value. @@ -4409,20 +4409,20 @@ HasComputeBereqHeaderBytes returns a boolean if a field has been set. ### GetComputeBereqBodyBytes -`func (o *Results) GetComputeBereqBodyBytes() int32` +`func (o *Results) GetComputeBereqBodyBytes() int64` GetComputeBereqBodyBytes returns the ComputeBereqBodyBytes field if non-nil, zero value otherwise. ### GetComputeBereqBodyBytesOk -`func (o *Results) GetComputeBereqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetComputeBereqBodyBytesOk() (*int64, bool)` GetComputeBereqBodyBytesOk returns a tuple with the ComputeBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqBodyBytes -`func (o *Results) SetComputeBereqBodyBytes(v int32)` +`func (o *Results) SetComputeBereqBodyBytes(v int64)` SetComputeBereqBodyBytes sets ComputeBereqBodyBytes field to given value. @@ -4434,20 +4434,20 @@ HasComputeBereqBodyBytes returns a boolean if a field has been set. ### GetComputeBerespHeaderBytes -`func (o *Results) GetComputeBerespHeaderBytes() int32` +`func (o *Results) GetComputeBerespHeaderBytes() int64` GetComputeBerespHeaderBytes returns the ComputeBerespHeaderBytes field if non-nil, zero value otherwise. ### GetComputeBerespHeaderBytesOk -`func (o *Results) GetComputeBerespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetComputeBerespHeaderBytesOk() (*int64, bool)` GetComputeBerespHeaderBytesOk returns a tuple with the ComputeBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBerespHeaderBytes -`func (o *Results) SetComputeBerespHeaderBytes(v int32)` +`func (o *Results) SetComputeBerespHeaderBytes(v int64)` SetComputeBerespHeaderBytes sets ComputeBerespHeaderBytes field to given value. @@ -4459,20 +4459,20 @@ HasComputeBerespHeaderBytes returns a boolean if a field has been set. ### GetComputeBerespBodyBytes -`func (o *Results) GetComputeBerespBodyBytes() int32` +`func (o *Results) GetComputeBerespBodyBytes() int64` GetComputeBerespBodyBytes returns the ComputeBerespBodyBytes field if non-nil, zero value otherwise. ### GetComputeBerespBodyBytesOk -`func (o *Results) GetComputeBerespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetComputeBerespBodyBytesOk() (*int64, bool)` GetComputeBerespBodyBytesOk returns a tuple with the ComputeBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBerespBodyBytes -`func (o *Results) SetComputeBerespBodyBytes(v int32)` +`func (o *Results) SetComputeBerespBodyBytes(v int64)` SetComputeBerespBodyBytes sets ComputeBerespBodyBytes field to given value. @@ -4484,20 +4484,20 @@ HasComputeBerespBodyBytes returns a boolean if a field has been set. ### GetComputeBereqs -`func (o *Results) GetComputeBereqs() int32` +`func (o *Results) GetComputeBereqs() int64` GetComputeBereqs returns the ComputeBereqs field if non-nil, zero value otherwise. ### GetComputeBereqsOk -`func (o *Results) GetComputeBereqsOk() (*int32, bool)` +`func (o *Results) GetComputeBereqsOk() (*int64, bool)` GetComputeBereqsOk returns a tuple with the ComputeBereqs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqs -`func (o *Results) SetComputeBereqs(v int32)` +`func (o *Results) SetComputeBereqs(v int64)` SetComputeBereqs sets ComputeBereqs field to given value. @@ -4509,20 +4509,20 @@ HasComputeBereqs returns a boolean if a field has been set. ### GetComputeBereqErrors -`func (o *Results) GetComputeBereqErrors() int32` +`func (o *Results) GetComputeBereqErrors() int64` GetComputeBereqErrors returns the ComputeBereqErrors field if non-nil, zero value otherwise. ### GetComputeBereqErrorsOk -`func (o *Results) GetComputeBereqErrorsOk() (*int32, bool)` +`func (o *Results) GetComputeBereqErrorsOk() (*int64, bool)` GetComputeBereqErrorsOk returns a tuple with the ComputeBereqErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeBereqErrors -`func (o *Results) SetComputeBereqErrors(v int32)` +`func (o *Results) SetComputeBereqErrors(v int64)` SetComputeBereqErrors sets ComputeBereqErrors field to given value. @@ -4534,20 +4534,20 @@ HasComputeBereqErrors returns a boolean if a field has been set. ### GetComputeResourceLimitExceeded -`func (o *Results) GetComputeResourceLimitExceeded() int32` +`func (o *Results) GetComputeResourceLimitExceeded() int64` GetComputeResourceLimitExceeded returns the ComputeResourceLimitExceeded field if non-nil, zero value otherwise. ### GetComputeResourceLimitExceededOk -`func (o *Results) GetComputeResourceLimitExceededOk() (*int32, bool)` +`func (o *Results) GetComputeResourceLimitExceededOk() (*int64, bool)` GetComputeResourceLimitExceededOk returns a tuple with the ComputeResourceLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeResourceLimitExceeded -`func (o *Results) SetComputeResourceLimitExceeded(v int32)` +`func (o *Results) SetComputeResourceLimitExceeded(v int64)` SetComputeResourceLimitExceeded sets ComputeResourceLimitExceeded field to given value. @@ -4559,20 +4559,20 @@ HasComputeResourceLimitExceeded returns a boolean if a field has been set. ### GetComputeHeapLimitExceeded -`func (o *Results) GetComputeHeapLimitExceeded() int32` +`func (o *Results) GetComputeHeapLimitExceeded() int64` GetComputeHeapLimitExceeded returns the ComputeHeapLimitExceeded field if non-nil, zero value otherwise. ### GetComputeHeapLimitExceededOk -`func (o *Results) GetComputeHeapLimitExceededOk() (*int32, bool)` +`func (o *Results) GetComputeHeapLimitExceededOk() (*int64, bool)` GetComputeHeapLimitExceededOk returns a tuple with the ComputeHeapLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeHeapLimitExceeded -`func (o *Results) SetComputeHeapLimitExceeded(v int32)` +`func (o *Results) SetComputeHeapLimitExceeded(v int64)` SetComputeHeapLimitExceeded sets ComputeHeapLimitExceeded field to given value. @@ -4584,20 +4584,20 @@ HasComputeHeapLimitExceeded returns a boolean if a field has been set. ### GetComputeStackLimitExceeded -`func (o *Results) GetComputeStackLimitExceeded() int32` +`func (o *Results) GetComputeStackLimitExceeded() int64` GetComputeStackLimitExceeded returns the ComputeStackLimitExceeded field if non-nil, zero value otherwise. ### GetComputeStackLimitExceededOk -`func (o *Results) GetComputeStackLimitExceededOk() (*int32, bool)` +`func (o *Results) GetComputeStackLimitExceededOk() (*int64, bool)` GetComputeStackLimitExceededOk returns a tuple with the ComputeStackLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeStackLimitExceeded -`func (o *Results) SetComputeStackLimitExceeded(v int32)` +`func (o *Results) SetComputeStackLimitExceeded(v int64)` SetComputeStackLimitExceeded sets ComputeStackLimitExceeded field to given value. @@ -4609,20 +4609,20 @@ HasComputeStackLimitExceeded returns a boolean if a field has been set. ### GetComputeGlobalsLimitExceeded -`func (o *Results) GetComputeGlobalsLimitExceeded() int32` +`func (o *Results) GetComputeGlobalsLimitExceeded() int64` GetComputeGlobalsLimitExceeded returns the ComputeGlobalsLimitExceeded field if non-nil, zero value otherwise. ### GetComputeGlobalsLimitExceededOk -`func (o *Results) GetComputeGlobalsLimitExceededOk() (*int32, bool)` +`func (o *Results) GetComputeGlobalsLimitExceededOk() (*int64, bool)` GetComputeGlobalsLimitExceededOk returns a tuple with the ComputeGlobalsLimitExceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeGlobalsLimitExceeded -`func (o *Results) SetComputeGlobalsLimitExceeded(v int32)` +`func (o *Results) SetComputeGlobalsLimitExceeded(v int64)` SetComputeGlobalsLimitExceeded sets ComputeGlobalsLimitExceeded field to given value. @@ -4634,20 +4634,20 @@ HasComputeGlobalsLimitExceeded returns a boolean if a field has been set. ### GetComputeGuestErrors -`func (o *Results) GetComputeGuestErrors() int32` +`func (o *Results) GetComputeGuestErrors() int64` GetComputeGuestErrors returns the ComputeGuestErrors field if non-nil, zero value otherwise. ### GetComputeGuestErrorsOk -`func (o *Results) GetComputeGuestErrorsOk() (*int32, bool)` +`func (o *Results) GetComputeGuestErrorsOk() (*int64, bool)` GetComputeGuestErrorsOk returns a tuple with the ComputeGuestErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeGuestErrors -`func (o *Results) SetComputeGuestErrors(v int32)` +`func (o *Results) SetComputeGuestErrors(v int64)` SetComputeGuestErrors sets ComputeGuestErrors field to given value. @@ -4659,20 +4659,20 @@ HasComputeGuestErrors returns a boolean if a field has been set. ### GetComputeRuntimeErrors -`func (o *Results) GetComputeRuntimeErrors() int32` +`func (o *Results) GetComputeRuntimeErrors() int64` GetComputeRuntimeErrors returns the ComputeRuntimeErrors field if non-nil, zero value otherwise. ### GetComputeRuntimeErrorsOk -`func (o *Results) GetComputeRuntimeErrorsOk() (*int32, bool)` +`func (o *Results) GetComputeRuntimeErrorsOk() (*int64, bool)` GetComputeRuntimeErrorsOk returns a tuple with the ComputeRuntimeErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetComputeRuntimeErrors -`func (o *Results) SetComputeRuntimeErrors(v int32)` +`func (o *Results) SetComputeRuntimeErrors(v int64)` SetComputeRuntimeErrors sets ComputeRuntimeErrors field to given value. @@ -4684,20 +4684,20 @@ HasComputeRuntimeErrors returns a boolean if a field has been set. ### GetEdgeHitRespBodyBytes -`func (o *Results) GetEdgeHitRespBodyBytes() int32` +`func (o *Results) GetEdgeHitRespBodyBytes() int64` GetEdgeHitRespBodyBytes returns the EdgeHitRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeHitRespBodyBytesOk -`func (o *Results) GetEdgeHitRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetEdgeHitRespBodyBytesOk() (*int64, bool)` GetEdgeHitRespBodyBytesOk returns a tuple with the EdgeHitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRespBodyBytes -`func (o *Results) SetEdgeHitRespBodyBytes(v int32)` +`func (o *Results) SetEdgeHitRespBodyBytes(v int64)` SetEdgeHitRespBodyBytes sets EdgeHitRespBodyBytes field to given value. @@ -4709,20 +4709,20 @@ HasEdgeHitRespBodyBytes returns a boolean if a field has been set. ### GetEdgeHitRespHeaderBytes -`func (o *Results) GetEdgeHitRespHeaderBytes() int32` +`func (o *Results) GetEdgeHitRespHeaderBytes() int64` GetEdgeHitRespHeaderBytes returns the EdgeHitRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeHitRespHeaderBytesOk -`func (o *Results) GetEdgeHitRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetEdgeHitRespHeaderBytesOk() (*int64, bool)` GetEdgeHitRespHeaderBytesOk returns a tuple with the EdgeHitRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRespHeaderBytes -`func (o *Results) SetEdgeHitRespHeaderBytes(v int32)` +`func (o *Results) SetEdgeHitRespHeaderBytes(v int64)` SetEdgeHitRespHeaderBytes sets EdgeHitRespHeaderBytes field to given value. @@ -4734,20 +4734,20 @@ HasEdgeHitRespHeaderBytes returns a boolean if a field has been set. ### GetEdgeMissRespBodyBytes -`func (o *Results) GetEdgeMissRespBodyBytes() int32` +`func (o *Results) GetEdgeMissRespBodyBytes() int64` GetEdgeMissRespBodyBytes returns the EdgeMissRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeMissRespBodyBytesOk -`func (o *Results) GetEdgeMissRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetEdgeMissRespBodyBytesOk() (*int64, bool)` GetEdgeMissRespBodyBytesOk returns a tuple with the EdgeMissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRespBodyBytes -`func (o *Results) SetEdgeMissRespBodyBytes(v int32)` +`func (o *Results) SetEdgeMissRespBodyBytes(v int64)` SetEdgeMissRespBodyBytes sets EdgeMissRespBodyBytes field to given value. @@ -4759,20 +4759,20 @@ HasEdgeMissRespBodyBytes returns a boolean if a field has been set. ### GetEdgeMissRespHeaderBytes -`func (o *Results) GetEdgeMissRespHeaderBytes() int32` +`func (o *Results) GetEdgeMissRespHeaderBytes() int64` GetEdgeMissRespHeaderBytes returns the EdgeMissRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeMissRespHeaderBytesOk -`func (o *Results) GetEdgeMissRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetEdgeMissRespHeaderBytesOk() (*int64, bool)` GetEdgeMissRespHeaderBytesOk returns a tuple with the EdgeMissRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRespHeaderBytes -`func (o *Results) SetEdgeMissRespHeaderBytes(v int32)` +`func (o *Results) SetEdgeMissRespHeaderBytes(v int64)` SetEdgeMissRespHeaderBytes sets EdgeMissRespHeaderBytes field to given value. @@ -4784,20 +4784,20 @@ HasEdgeMissRespHeaderBytes returns a boolean if a field has been set. ### GetOriginCacheFetchRespBodyBytes -`func (o *Results) GetOriginCacheFetchRespBodyBytes() int32` +`func (o *Results) GetOriginCacheFetchRespBodyBytes() int64` GetOriginCacheFetchRespBodyBytes returns the OriginCacheFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetOriginCacheFetchRespBodyBytesOk -`func (o *Results) GetOriginCacheFetchRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetOriginCacheFetchRespBodyBytesOk() (*int64, bool)` GetOriginCacheFetchRespBodyBytesOk returns a tuple with the OriginCacheFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetchRespBodyBytes -`func (o *Results) SetOriginCacheFetchRespBodyBytes(v int32)` +`func (o *Results) SetOriginCacheFetchRespBodyBytes(v int64)` SetOriginCacheFetchRespBodyBytes sets OriginCacheFetchRespBodyBytes field to given value. @@ -4809,20 +4809,20 @@ HasOriginCacheFetchRespBodyBytes returns a boolean if a field has been set. ### GetOriginCacheFetchRespHeaderBytes -`func (o *Results) GetOriginCacheFetchRespHeaderBytes() int32` +`func (o *Results) GetOriginCacheFetchRespHeaderBytes() int64` GetOriginCacheFetchRespHeaderBytes returns the OriginCacheFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetOriginCacheFetchRespHeaderBytesOk -`func (o *Results) GetOriginCacheFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetOriginCacheFetchRespHeaderBytesOk() (*int64, bool)` GetOriginCacheFetchRespHeaderBytesOk returns a tuple with the OriginCacheFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginCacheFetchRespHeaderBytes -`func (o *Results) SetOriginCacheFetchRespHeaderBytes(v int32)` +`func (o *Results) SetOriginCacheFetchRespHeaderBytes(v int64)` SetOriginCacheFetchRespHeaderBytes sets OriginCacheFetchRespHeaderBytes field to given value. @@ -4834,20 +4834,20 @@ HasOriginCacheFetchRespHeaderBytes returns a boolean if a field has been set. ### GetShieldHitRequests -`func (o *Results) GetShieldHitRequests() int32` +`func (o *Results) GetShieldHitRequests() int64` GetShieldHitRequests returns the ShieldHitRequests field if non-nil, zero value otherwise. ### GetShieldHitRequestsOk -`func (o *Results) GetShieldHitRequestsOk() (*int32, bool)` +`func (o *Results) GetShieldHitRequestsOk() (*int64, bool)` GetShieldHitRequestsOk returns a tuple with the ShieldHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRequests -`func (o *Results) SetShieldHitRequests(v int32)` +`func (o *Results) SetShieldHitRequests(v int64)` SetShieldHitRequests sets ShieldHitRequests field to given value. @@ -4859,20 +4859,20 @@ HasShieldHitRequests returns a boolean if a field has been set. ### GetShieldMissRequests -`func (o *Results) GetShieldMissRequests() int32` +`func (o *Results) GetShieldMissRequests() int64` GetShieldMissRequests returns the ShieldMissRequests field if non-nil, zero value otherwise. ### GetShieldMissRequestsOk -`func (o *Results) GetShieldMissRequestsOk() (*int32, bool)` +`func (o *Results) GetShieldMissRequestsOk() (*int64, bool)` GetShieldMissRequestsOk returns a tuple with the ShieldMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRequests -`func (o *Results) SetShieldMissRequests(v int32)` +`func (o *Results) SetShieldMissRequests(v int64)` SetShieldMissRequests sets ShieldMissRequests field to given value. @@ -4884,20 +4884,20 @@ HasShieldMissRequests returns a boolean if a field has been set. ### GetShieldHitRespHeaderBytes -`func (o *Results) GetShieldHitRespHeaderBytes() int32` +`func (o *Results) GetShieldHitRespHeaderBytes() int64` GetShieldHitRespHeaderBytes returns the ShieldHitRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldHitRespHeaderBytesOk -`func (o *Results) GetShieldHitRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetShieldHitRespHeaderBytesOk() (*int64, bool)` GetShieldHitRespHeaderBytesOk returns a tuple with the ShieldHitRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRespHeaderBytes -`func (o *Results) SetShieldHitRespHeaderBytes(v int32)` +`func (o *Results) SetShieldHitRespHeaderBytes(v int64)` SetShieldHitRespHeaderBytes sets ShieldHitRespHeaderBytes field to given value. @@ -4909,20 +4909,20 @@ HasShieldHitRespHeaderBytes returns a boolean if a field has been set. ### GetShieldHitRespBodyBytes -`func (o *Results) GetShieldHitRespBodyBytes() int32` +`func (o *Results) GetShieldHitRespBodyBytes() int64` GetShieldHitRespBodyBytes returns the ShieldHitRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldHitRespBodyBytesOk -`func (o *Results) GetShieldHitRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetShieldHitRespBodyBytesOk() (*int64, bool)` GetShieldHitRespBodyBytesOk returns a tuple with the ShieldHitRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldHitRespBodyBytes -`func (o *Results) SetShieldHitRespBodyBytes(v int32)` +`func (o *Results) SetShieldHitRespBodyBytes(v int64)` SetShieldHitRespBodyBytes sets ShieldHitRespBodyBytes field to given value. @@ -4934,20 +4934,20 @@ HasShieldHitRespBodyBytes returns a boolean if a field has been set. ### GetShieldMissRespHeaderBytes -`func (o *Results) GetShieldMissRespHeaderBytes() int32` +`func (o *Results) GetShieldMissRespHeaderBytes() int64` GetShieldMissRespHeaderBytes returns the ShieldMissRespHeaderBytes field if non-nil, zero value otherwise. ### GetShieldMissRespHeaderBytesOk -`func (o *Results) GetShieldMissRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetShieldMissRespHeaderBytesOk() (*int64, bool)` GetShieldMissRespHeaderBytesOk returns a tuple with the ShieldMissRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRespHeaderBytes -`func (o *Results) SetShieldMissRespHeaderBytes(v int32)` +`func (o *Results) SetShieldMissRespHeaderBytes(v int64)` SetShieldMissRespHeaderBytes sets ShieldMissRespHeaderBytes field to given value. @@ -4959,20 +4959,20 @@ HasShieldMissRespHeaderBytes returns a boolean if a field has been set. ### GetShieldMissRespBodyBytes -`func (o *Results) GetShieldMissRespBodyBytes() int32` +`func (o *Results) GetShieldMissRespBodyBytes() int64` GetShieldMissRespBodyBytes returns the ShieldMissRespBodyBytes field if non-nil, zero value otherwise. ### GetShieldMissRespBodyBytesOk -`func (o *Results) GetShieldMissRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetShieldMissRespBodyBytesOk() (*int64, bool)` GetShieldMissRespBodyBytesOk returns a tuple with the ShieldMissRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetShieldMissRespBodyBytes -`func (o *Results) SetShieldMissRespBodyBytes(v int32)` +`func (o *Results) SetShieldMissRespBodyBytes(v int64)` SetShieldMissRespBodyBytes sets ShieldMissRespBodyBytes field to given value. @@ -4984,20 +4984,20 @@ HasShieldMissRespBodyBytes returns a boolean if a field has been set. ### GetWebsocketReqHeaderBytes -`func (o *Results) GetWebsocketReqHeaderBytes() int32` +`func (o *Results) GetWebsocketReqHeaderBytes() int64` GetWebsocketReqHeaderBytes returns the WebsocketReqHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketReqHeaderBytesOk -`func (o *Results) GetWebsocketReqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetWebsocketReqHeaderBytesOk() (*int64, bool)` GetWebsocketReqHeaderBytesOk returns a tuple with the WebsocketReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketReqHeaderBytes -`func (o *Results) SetWebsocketReqHeaderBytes(v int32)` +`func (o *Results) SetWebsocketReqHeaderBytes(v int64)` SetWebsocketReqHeaderBytes sets WebsocketReqHeaderBytes field to given value. @@ -5009,20 +5009,20 @@ HasWebsocketReqHeaderBytes returns a boolean if a field has been set. ### GetWebsocketReqBodyBytes -`func (o *Results) GetWebsocketReqBodyBytes() int32` +`func (o *Results) GetWebsocketReqBodyBytes() int64` GetWebsocketReqBodyBytes returns the WebsocketReqBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketReqBodyBytesOk -`func (o *Results) GetWebsocketReqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetWebsocketReqBodyBytesOk() (*int64, bool)` GetWebsocketReqBodyBytesOk returns a tuple with the WebsocketReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketReqBodyBytes -`func (o *Results) SetWebsocketReqBodyBytes(v int32)` +`func (o *Results) SetWebsocketReqBodyBytes(v int64)` SetWebsocketReqBodyBytes sets WebsocketReqBodyBytes field to given value. @@ -5034,20 +5034,20 @@ HasWebsocketReqBodyBytes returns a boolean if a field has been set. ### GetWebsocketRespHeaderBytes -`func (o *Results) GetWebsocketRespHeaderBytes() int32` +`func (o *Results) GetWebsocketRespHeaderBytes() int64` GetWebsocketRespHeaderBytes returns the WebsocketRespHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketRespHeaderBytesOk -`func (o *Results) GetWebsocketRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetWebsocketRespHeaderBytesOk() (*int64, bool)` GetWebsocketRespHeaderBytesOk returns a tuple with the WebsocketRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketRespHeaderBytes -`func (o *Results) SetWebsocketRespHeaderBytes(v int32)` +`func (o *Results) SetWebsocketRespHeaderBytes(v int64)` SetWebsocketRespHeaderBytes sets WebsocketRespHeaderBytes field to given value. @@ -5059,20 +5059,20 @@ HasWebsocketRespHeaderBytes returns a boolean if a field has been set. ### GetWebsocketRespBodyBytes -`func (o *Results) GetWebsocketRespBodyBytes() int32` +`func (o *Results) GetWebsocketRespBodyBytes() int64` GetWebsocketRespBodyBytes returns the WebsocketRespBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketRespBodyBytesOk -`func (o *Results) GetWebsocketRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetWebsocketRespBodyBytesOk() (*int64, bool)` GetWebsocketRespBodyBytesOk returns a tuple with the WebsocketRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketRespBodyBytes -`func (o *Results) SetWebsocketRespBodyBytes(v int32)` +`func (o *Results) SetWebsocketRespBodyBytes(v int64)` SetWebsocketRespBodyBytes sets WebsocketRespBodyBytes field to given value. @@ -5084,20 +5084,20 @@ HasWebsocketRespBodyBytes returns a boolean if a field has been set. ### GetWebsocketBereqHeaderBytes -`func (o *Results) GetWebsocketBereqHeaderBytes() int32` +`func (o *Results) GetWebsocketBereqHeaderBytes() int64` GetWebsocketBereqHeaderBytes returns the WebsocketBereqHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketBereqHeaderBytesOk -`func (o *Results) GetWebsocketBereqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetWebsocketBereqHeaderBytesOk() (*int64, bool)` GetWebsocketBereqHeaderBytesOk returns a tuple with the WebsocketBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBereqHeaderBytes -`func (o *Results) SetWebsocketBereqHeaderBytes(v int32)` +`func (o *Results) SetWebsocketBereqHeaderBytes(v int64)` SetWebsocketBereqHeaderBytes sets WebsocketBereqHeaderBytes field to given value. @@ -5109,20 +5109,20 @@ HasWebsocketBereqHeaderBytes returns a boolean if a field has been set. ### GetWebsocketBereqBodyBytes -`func (o *Results) GetWebsocketBereqBodyBytes() int32` +`func (o *Results) GetWebsocketBereqBodyBytes() int64` GetWebsocketBereqBodyBytes returns the WebsocketBereqBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketBereqBodyBytesOk -`func (o *Results) GetWebsocketBereqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetWebsocketBereqBodyBytesOk() (*int64, bool)` GetWebsocketBereqBodyBytesOk returns a tuple with the WebsocketBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBereqBodyBytes -`func (o *Results) SetWebsocketBereqBodyBytes(v int32)` +`func (o *Results) SetWebsocketBereqBodyBytes(v int64)` SetWebsocketBereqBodyBytes sets WebsocketBereqBodyBytes field to given value. @@ -5134,20 +5134,20 @@ HasWebsocketBereqBodyBytes returns a boolean if a field has been set. ### GetWebsocketBerespHeaderBytes -`func (o *Results) GetWebsocketBerespHeaderBytes() int32` +`func (o *Results) GetWebsocketBerespHeaderBytes() int64` GetWebsocketBerespHeaderBytes returns the WebsocketBerespHeaderBytes field if non-nil, zero value otherwise. ### GetWebsocketBerespHeaderBytesOk -`func (o *Results) GetWebsocketBerespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetWebsocketBerespHeaderBytesOk() (*int64, bool)` GetWebsocketBerespHeaderBytesOk returns a tuple with the WebsocketBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBerespHeaderBytes -`func (o *Results) SetWebsocketBerespHeaderBytes(v int32)` +`func (o *Results) SetWebsocketBerespHeaderBytes(v int64)` SetWebsocketBerespHeaderBytes sets WebsocketBerespHeaderBytes field to given value. @@ -5159,20 +5159,20 @@ HasWebsocketBerespHeaderBytes returns a boolean if a field has been set. ### GetWebsocketBerespBodyBytes -`func (o *Results) GetWebsocketBerespBodyBytes() int32` +`func (o *Results) GetWebsocketBerespBodyBytes() int64` GetWebsocketBerespBodyBytes returns the WebsocketBerespBodyBytes field if non-nil, zero value otherwise. ### GetWebsocketBerespBodyBytesOk -`func (o *Results) GetWebsocketBerespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetWebsocketBerespBodyBytesOk() (*int64, bool)` GetWebsocketBerespBodyBytesOk returns a tuple with the WebsocketBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketBerespBodyBytes -`func (o *Results) SetWebsocketBerespBodyBytes(v int32)` +`func (o *Results) SetWebsocketBerespBodyBytes(v int64)` SetWebsocketBerespBodyBytes sets WebsocketBerespBodyBytes field to given value. @@ -5184,20 +5184,20 @@ HasWebsocketBerespBodyBytes returns a boolean if a field has been set. ### GetWebsocketConnTimeMs -`func (o *Results) GetWebsocketConnTimeMs() int32` +`func (o *Results) GetWebsocketConnTimeMs() int64` GetWebsocketConnTimeMs returns the WebsocketConnTimeMs field if non-nil, zero value otherwise. ### GetWebsocketConnTimeMsOk -`func (o *Results) GetWebsocketConnTimeMsOk() (*int32, bool)` +`func (o *Results) GetWebsocketConnTimeMsOk() (*int64, bool)` GetWebsocketConnTimeMsOk returns a tuple with the WebsocketConnTimeMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetWebsocketConnTimeMs -`func (o *Results) SetWebsocketConnTimeMs(v int32)` +`func (o *Results) SetWebsocketConnTimeMs(v int64)` SetWebsocketConnTimeMs sets WebsocketConnTimeMs field to given value. @@ -5209,20 +5209,20 @@ HasWebsocketConnTimeMs returns a boolean if a field has been set. ### GetFanoutRecvPublishes -`func (o *Results) GetFanoutRecvPublishes() int32` +`func (o *Results) GetFanoutRecvPublishes() int64` GetFanoutRecvPublishes returns the FanoutRecvPublishes field if non-nil, zero value otherwise. ### GetFanoutRecvPublishesOk -`func (o *Results) GetFanoutRecvPublishesOk() (*int32, bool)` +`func (o *Results) GetFanoutRecvPublishesOk() (*int64, bool)` GetFanoutRecvPublishesOk returns a tuple with the FanoutRecvPublishes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRecvPublishes -`func (o *Results) SetFanoutRecvPublishes(v int32)` +`func (o *Results) SetFanoutRecvPublishes(v int64)` SetFanoutRecvPublishes sets FanoutRecvPublishes field to given value. @@ -5234,20 +5234,20 @@ HasFanoutRecvPublishes returns a boolean if a field has been set. ### GetFanoutSendPublishes -`func (o *Results) GetFanoutSendPublishes() int32` +`func (o *Results) GetFanoutSendPublishes() int64` GetFanoutSendPublishes returns the FanoutSendPublishes field if non-nil, zero value otherwise. ### GetFanoutSendPublishesOk -`func (o *Results) GetFanoutSendPublishesOk() (*int32, bool)` +`func (o *Results) GetFanoutSendPublishesOk() (*int64, bool)` GetFanoutSendPublishesOk returns a tuple with the FanoutSendPublishes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutSendPublishes -`func (o *Results) SetFanoutSendPublishes(v int32)` +`func (o *Results) SetFanoutSendPublishes(v int64)` SetFanoutSendPublishes sets FanoutSendPublishes field to given value. @@ -5259,20 +5259,20 @@ HasFanoutSendPublishes returns a boolean if a field has been set. ### GetKvStoreClassAOperations -`func (o *Results) GetKvStoreClassAOperations() int32` +`func (o *Results) GetKvStoreClassAOperations() int64` GetKvStoreClassAOperations returns the KvStoreClassAOperations field if non-nil, zero value otherwise. ### GetKvStoreClassAOperationsOk -`func (o *Results) GetKvStoreClassAOperationsOk() (*int32, bool)` +`func (o *Results) GetKvStoreClassAOperationsOk() (*int64, bool)` GetKvStoreClassAOperationsOk returns a tuple with the KvStoreClassAOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetKvStoreClassAOperations -`func (o *Results) SetKvStoreClassAOperations(v int32)` +`func (o *Results) SetKvStoreClassAOperations(v int64)` SetKvStoreClassAOperations sets KvStoreClassAOperations field to given value. @@ -5284,20 +5284,20 @@ HasKvStoreClassAOperations returns a boolean if a field has been set. ### GetKvStoreClassBOperations -`func (o *Results) GetKvStoreClassBOperations() int32` +`func (o *Results) GetKvStoreClassBOperations() int64` GetKvStoreClassBOperations returns the KvStoreClassBOperations field if non-nil, zero value otherwise. ### GetKvStoreClassBOperationsOk -`func (o *Results) GetKvStoreClassBOperationsOk() (*int32, bool)` +`func (o *Results) GetKvStoreClassBOperationsOk() (*int64, bool)` GetKvStoreClassBOperationsOk returns a tuple with the KvStoreClassBOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetKvStoreClassBOperations -`func (o *Results) SetKvStoreClassBOperations(v int32)` +`func (o *Results) SetKvStoreClassBOperations(v int64)` SetKvStoreClassBOperations sets KvStoreClassBOperations field to given value. @@ -5309,20 +5309,20 @@ HasKvStoreClassBOperations returns a boolean if a field has been set. ### GetObjectStoreClassAOperations -`func (o *Results) GetObjectStoreClassAOperations() int32` +`func (o *Results) GetObjectStoreClassAOperations() int64` GetObjectStoreClassAOperations returns the ObjectStoreClassAOperations field if non-nil, zero value otherwise. ### GetObjectStoreClassAOperationsOk -`func (o *Results) GetObjectStoreClassAOperationsOk() (*int32, bool)` +`func (o *Results) GetObjectStoreClassAOperationsOk() (*int64, bool)` GetObjectStoreClassAOperationsOk returns a tuple with the ObjectStoreClassAOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectStoreClassAOperations -`func (o *Results) SetObjectStoreClassAOperations(v int32)` +`func (o *Results) SetObjectStoreClassAOperations(v int64)` SetObjectStoreClassAOperations sets ObjectStoreClassAOperations field to given value. @@ -5334,20 +5334,20 @@ HasObjectStoreClassAOperations returns a boolean if a field has been set. ### GetObjectStoreClassBOperations -`func (o *Results) GetObjectStoreClassBOperations() int32` +`func (o *Results) GetObjectStoreClassBOperations() int64` GetObjectStoreClassBOperations returns the ObjectStoreClassBOperations field if non-nil, zero value otherwise. ### GetObjectStoreClassBOperationsOk -`func (o *Results) GetObjectStoreClassBOperationsOk() (*int32, bool)` +`func (o *Results) GetObjectStoreClassBOperationsOk() (*int64, bool)` GetObjectStoreClassBOperationsOk returns a tuple with the ObjectStoreClassBOperations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetObjectStoreClassBOperations -`func (o *Results) SetObjectStoreClassBOperations(v int32)` +`func (o *Results) SetObjectStoreClassBOperations(v int64)` SetObjectStoreClassBOperations sets ObjectStoreClassBOperations field to given value. @@ -5359,20 +5359,20 @@ HasObjectStoreClassBOperations returns a boolean if a field has been set. ### GetFanoutReqHeaderBytes -`func (o *Results) GetFanoutReqHeaderBytes() int32` +`func (o *Results) GetFanoutReqHeaderBytes() int64` GetFanoutReqHeaderBytes returns the FanoutReqHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutReqHeaderBytesOk -`func (o *Results) GetFanoutReqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetFanoutReqHeaderBytesOk() (*int64, bool)` GetFanoutReqHeaderBytesOk returns a tuple with the FanoutReqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutReqHeaderBytes -`func (o *Results) SetFanoutReqHeaderBytes(v int32)` +`func (o *Results) SetFanoutReqHeaderBytes(v int64)` SetFanoutReqHeaderBytes sets FanoutReqHeaderBytes field to given value. @@ -5384,20 +5384,20 @@ HasFanoutReqHeaderBytes returns a boolean if a field has been set. ### GetFanoutReqBodyBytes -`func (o *Results) GetFanoutReqBodyBytes() int32` +`func (o *Results) GetFanoutReqBodyBytes() int64` GetFanoutReqBodyBytes returns the FanoutReqBodyBytes field if non-nil, zero value otherwise. ### GetFanoutReqBodyBytesOk -`func (o *Results) GetFanoutReqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetFanoutReqBodyBytesOk() (*int64, bool)` GetFanoutReqBodyBytesOk returns a tuple with the FanoutReqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutReqBodyBytes -`func (o *Results) SetFanoutReqBodyBytes(v int32)` +`func (o *Results) SetFanoutReqBodyBytes(v int64)` SetFanoutReqBodyBytes sets FanoutReqBodyBytes field to given value. @@ -5409,20 +5409,20 @@ HasFanoutReqBodyBytes returns a boolean if a field has been set. ### GetFanoutRespHeaderBytes -`func (o *Results) GetFanoutRespHeaderBytes() int32` +`func (o *Results) GetFanoutRespHeaderBytes() int64` GetFanoutRespHeaderBytes returns the FanoutRespHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutRespHeaderBytesOk -`func (o *Results) GetFanoutRespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetFanoutRespHeaderBytesOk() (*int64, bool)` GetFanoutRespHeaderBytesOk returns a tuple with the FanoutRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRespHeaderBytes -`func (o *Results) SetFanoutRespHeaderBytes(v int32)` +`func (o *Results) SetFanoutRespHeaderBytes(v int64)` SetFanoutRespHeaderBytes sets FanoutRespHeaderBytes field to given value. @@ -5434,20 +5434,20 @@ HasFanoutRespHeaderBytes returns a boolean if a field has been set. ### GetFanoutRespBodyBytes -`func (o *Results) GetFanoutRespBodyBytes() int32` +`func (o *Results) GetFanoutRespBodyBytes() int64` GetFanoutRespBodyBytes returns the FanoutRespBodyBytes field if non-nil, zero value otherwise. ### GetFanoutRespBodyBytesOk -`func (o *Results) GetFanoutRespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetFanoutRespBodyBytesOk() (*int64, bool)` GetFanoutRespBodyBytesOk returns a tuple with the FanoutRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutRespBodyBytes -`func (o *Results) SetFanoutRespBodyBytes(v int32)` +`func (o *Results) SetFanoutRespBodyBytes(v int64)` SetFanoutRespBodyBytes sets FanoutRespBodyBytes field to given value. @@ -5459,20 +5459,20 @@ HasFanoutRespBodyBytes returns a boolean if a field has been set. ### GetFanoutBereqHeaderBytes -`func (o *Results) GetFanoutBereqHeaderBytes() int32` +`func (o *Results) GetFanoutBereqHeaderBytes() int64` GetFanoutBereqHeaderBytes returns the FanoutBereqHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutBereqHeaderBytesOk -`func (o *Results) GetFanoutBereqHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetFanoutBereqHeaderBytesOk() (*int64, bool)` GetFanoutBereqHeaderBytesOk returns a tuple with the FanoutBereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBereqHeaderBytes -`func (o *Results) SetFanoutBereqHeaderBytes(v int32)` +`func (o *Results) SetFanoutBereqHeaderBytes(v int64)` SetFanoutBereqHeaderBytes sets FanoutBereqHeaderBytes field to given value. @@ -5484,20 +5484,20 @@ HasFanoutBereqHeaderBytes returns a boolean if a field has been set. ### GetFanoutBereqBodyBytes -`func (o *Results) GetFanoutBereqBodyBytes() int32` +`func (o *Results) GetFanoutBereqBodyBytes() int64` GetFanoutBereqBodyBytes returns the FanoutBereqBodyBytes field if non-nil, zero value otherwise. ### GetFanoutBereqBodyBytesOk -`func (o *Results) GetFanoutBereqBodyBytesOk() (*int32, bool)` +`func (o *Results) GetFanoutBereqBodyBytesOk() (*int64, bool)` GetFanoutBereqBodyBytesOk returns a tuple with the FanoutBereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBereqBodyBytes -`func (o *Results) SetFanoutBereqBodyBytes(v int32)` +`func (o *Results) SetFanoutBereqBodyBytes(v int64)` SetFanoutBereqBodyBytes sets FanoutBereqBodyBytes field to given value. @@ -5509,20 +5509,20 @@ HasFanoutBereqBodyBytes returns a boolean if a field has been set. ### GetFanoutBerespHeaderBytes -`func (o *Results) GetFanoutBerespHeaderBytes() int32` +`func (o *Results) GetFanoutBerespHeaderBytes() int64` GetFanoutBerespHeaderBytes returns the FanoutBerespHeaderBytes field if non-nil, zero value otherwise. ### GetFanoutBerespHeaderBytesOk -`func (o *Results) GetFanoutBerespHeaderBytesOk() (*int32, bool)` +`func (o *Results) GetFanoutBerespHeaderBytesOk() (*int64, bool)` GetFanoutBerespHeaderBytesOk returns a tuple with the FanoutBerespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBerespHeaderBytes -`func (o *Results) SetFanoutBerespHeaderBytes(v int32)` +`func (o *Results) SetFanoutBerespHeaderBytes(v int64)` SetFanoutBerespHeaderBytes sets FanoutBerespHeaderBytes field to given value. @@ -5534,20 +5534,20 @@ HasFanoutBerespHeaderBytes returns a boolean if a field has been set. ### GetFanoutBerespBodyBytes -`func (o *Results) GetFanoutBerespBodyBytes() int32` +`func (o *Results) GetFanoutBerespBodyBytes() int64` GetFanoutBerespBodyBytes returns the FanoutBerespBodyBytes field if non-nil, zero value otherwise. ### GetFanoutBerespBodyBytesOk -`func (o *Results) GetFanoutBerespBodyBytesOk() (*int32, bool)` +`func (o *Results) GetFanoutBerespBodyBytesOk() (*int64, bool)` GetFanoutBerespBodyBytesOk returns a tuple with the FanoutBerespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutBerespBodyBytes -`func (o *Results) SetFanoutBerespBodyBytes(v int32)` +`func (o *Results) SetFanoutBerespBodyBytes(v int64)` SetFanoutBerespBodyBytes sets FanoutBerespBodyBytes field to given value. @@ -5559,20 +5559,20 @@ HasFanoutBerespBodyBytes returns a boolean if a field has been set. ### GetFanoutConnTimeMs -`func (o *Results) GetFanoutConnTimeMs() int32` +`func (o *Results) GetFanoutConnTimeMs() int64` GetFanoutConnTimeMs returns the FanoutConnTimeMs field if non-nil, zero value otherwise. ### GetFanoutConnTimeMsOk -`func (o *Results) GetFanoutConnTimeMsOk() (*int32, bool)` +`func (o *Results) GetFanoutConnTimeMsOk() (*int64, bool)` GetFanoutConnTimeMsOk returns a tuple with the FanoutConnTimeMs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFanoutConnTimeMs -`func (o *Results) SetFanoutConnTimeMs(v int32)` +`func (o *Results) SetFanoutConnTimeMs(v int64)` SetFanoutConnTimeMs sets FanoutConnTimeMs field to given value. @@ -5584,20 +5584,20 @@ HasFanoutConnTimeMs returns a boolean if a field has been set. ### GetDdosActionLimitStreamsConnections -`func (o *Results) GetDdosActionLimitStreamsConnections() int32` +`func (o *Results) GetDdosActionLimitStreamsConnections() int64` GetDdosActionLimitStreamsConnections returns the DdosActionLimitStreamsConnections field if non-nil, zero value otherwise. ### GetDdosActionLimitStreamsConnectionsOk -`func (o *Results) GetDdosActionLimitStreamsConnectionsOk() (*int32, bool)` +`func (o *Results) GetDdosActionLimitStreamsConnectionsOk() (*int64, bool)` GetDdosActionLimitStreamsConnectionsOk returns a tuple with the DdosActionLimitStreamsConnections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionLimitStreamsConnections -`func (o *Results) SetDdosActionLimitStreamsConnections(v int32)` +`func (o *Results) SetDdosActionLimitStreamsConnections(v int64)` SetDdosActionLimitStreamsConnections sets DdosActionLimitStreamsConnections field to given value. @@ -5609,20 +5609,20 @@ HasDdosActionLimitStreamsConnections returns a boolean if a field has been set. ### GetDdosActionLimitStreamsRequests -`func (o *Results) GetDdosActionLimitStreamsRequests() int32` +`func (o *Results) GetDdosActionLimitStreamsRequests() int64` GetDdosActionLimitStreamsRequests returns the DdosActionLimitStreamsRequests field if non-nil, zero value otherwise. ### GetDdosActionLimitStreamsRequestsOk -`func (o *Results) GetDdosActionLimitStreamsRequestsOk() (*int32, bool)` +`func (o *Results) GetDdosActionLimitStreamsRequestsOk() (*int64, bool)` GetDdosActionLimitStreamsRequestsOk returns a tuple with the DdosActionLimitStreamsRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionLimitStreamsRequests -`func (o *Results) SetDdosActionLimitStreamsRequests(v int32)` +`func (o *Results) SetDdosActionLimitStreamsRequests(v int64)` SetDdosActionLimitStreamsRequests sets DdosActionLimitStreamsRequests field to given value. @@ -5634,20 +5634,20 @@ HasDdosActionLimitStreamsRequests returns a boolean if a field has been set. ### GetDdosActionTarpitAccept -`func (o *Results) GetDdosActionTarpitAccept() int32` +`func (o *Results) GetDdosActionTarpitAccept() int64` GetDdosActionTarpitAccept returns the DdosActionTarpitAccept field if non-nil, zero value otherwise. ### GetDdosActionTarpitAcceptOk -`func (o *Results) GetDdosActionTarpitAcceptOk() (*int32, bool)` +`func (o *Results) GetDdosActionTarpitAcceptOk() (*int64, bool)` GetDdosActionTarpitAcceptOk returns a tuple with the DdosActionTarpitAccept field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionTarpitAccept -`func (o *Results) SetDdosActionTarpitAccept(v int32)` +`func (o *Results) SetDdosActionTarpitAccept(v int64)` SetDdosActionTarpitAccept sets DdosActionTarpitAccept field to given value. @@ -5659,20 +5659,20 @@ HasDdosActionTarpitAccept returns a boolean if a field has been set. ### GetDdosActionTarpit -`func (o *Results) GetDdosActionTarpit() int32` +`func (o *Results) GetDdosActionTarpit() int64` GetDdosActionTarpit returns the DdosActionTarpit field if non-nil, zero value otherwise. ### GetDdosActionTarpitOk -`func (o *Results) GetDdosActionTarpitOk() (*int32, bool)` +`func (o *Results) GetDdosActionTarpitOk() (*int64, bool)` GetDdosActionTarpitOk returns a tuple with the DdosActionTarpit field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionTarpit -`func (o *Results) SetDdosActionTarpit(v int32)` +`func (o *Results) SetDdosActionTarpit(v int64)` SetDdosActionTarpit sets DdosActionTarpit field to given value. @@ -5684,20 +5684,20 @@ HasDdosActionTarpit returns a boolean if a field has been set. ### GetDdosActionClose -`func (o *Results) GetDdosActionClose() int32` +`func (o *Results) GetDdosActionClose() int64` GetDdosActionClose returns the DdosActionClose field if non-nil, zero value otherwise. ### GetDdosActionCloseOk -`func (o *Results) GetDdosActionCloseOk() (*int32, bool)` +`func (o *Results) GetDdosActionCloseOk() (*int64, bool)` GetDdosActionCloseOk returns a tuple with the DdosActionClose field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionClose -`func (o *Results) SetDdosActionClose(v int32)` +`func (o *Results) SetDdosActionClose(v int64)` SetDdosActionClose sets DdosActionClose field to given value. @@ -5709,20 +5709,20 @@ HasDdosActionClose returns a boolean if a field has been set. ### GetDdosActionBlackhole -`func (o *Results) GetDdosActionBlackhole() int32` +`func (o *Results) GetDdosActionBlackhole() int64` GetDdosActionBlackhole returns the DdosActionBlackhole field if non-nil, zero value otherwise. ### GetDdosActionBlackholeOk -`func (o *Results) GetDdosActionBlackholeOk() (*int32, bool)` +`func (o *Results) GetDdosActionBlackholeOk() (*int64, bool)` GetDdosActionBlackholeOk returns a tuple with the DdosActionBlackhole field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionBlackhole -`func (o *Results) SetDdosActionBlackhole(v int32)` +`func (o *Results) SetDdosActionBlackhole(v int64)` SetDdosActionBlackhole sets DdosActionBlackhole field to given value. @@ -5734,20 +5734,20 @@ HasDdosActionBlackhole returns a boolean if a field has been set. ### GetBotChallengeStarts -`func (o *Results) GetBotChallengeStarts() int32` +`func (o *Results) GetBotChallengeStarts() int64` GetBotChallengeStarts returns the BotChallengeStarts field if non-nil, zero value otherwise. ### GetBotChallengeStartsOk -`func (o *Results) GetBotChallengeStartsOk() (*int32, bool)` +`func (o *Results) GetBotChallengeStartsOk() (*int64, bool)` GetBotChallengeStartsOk returns a tuple with the BotChallengeStarts field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeStarts -`func (o *Results) SetBotChallengeStarts(v int32)` +`func (o *Results) SetBotChallengeStarts(v int64)` SetBotChallengeStarts sets BotChallengeStarts field to given value. @@ -5759,20 +5759,20 @@ HasBotChallengeStarts returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensPassed -`func (o *Results) GetBotChallengeCompleteTokensPassed() int32` +`func (o *Results) GetBotChallengeCompleteTokensPassed() int64` GetBotChallengeCompleteTokensPassed returns the BotChallengeCompleteTokensPassed field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensPassedOk -`func (o *Results) GetBotChallengeCompleteTokensPassedOk() (*int32, bool)` +`func (o *Results) GetBotChallengeCompleteTokensPassedOk() (*int64, bool)` GetBotChallengeCompleteTokensPassedOk returns a tuple with the BotChallengeCompleteTokensPassed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensPassed -`func (o *Results) SetBotChallengeCompleteTokensPassed(v int32)` +`func (o *Results) SetBotChallengeCompleteTokensPassed(v int64)` SetBotChallengeCompleteTokensPassed sets BotChallengeCompleteTokensPassed field to given value. @@ -5784,20 +5784,20 @@ HasBotChallengeCompleteTokensPassed returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensFailed -`func (o *Results) GetBotChallengeCompleteTokensFailed() int32` +`func (o *Results) GetBotChallengeCompleteTokensFailed() int64` GetBotChallengeCompleteTokensFailed returns the BotChallengeCompleteTokensFailed field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensFailedOk -`func (o *Results) GetBotChallengeCompleteTokensFailedOk() (*int32, bool)` +`func (o *Results) GetBotChallengeCompleteTokensFailedOk() (*int64, bool)` GetBotChallengeCompleteTokensFailedOk returns a tuple with the BotChallengeCompleteTokensFailed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensFailed -`func (o *Results) SetBotChallengeCompleteTokensFailed(v int32)` +`func (o *Results) SetBotChallengeCompleteTokensFailed(v int64)` SetBotChallengeCompleteTokensFailed sets BotChallengeCompleteTokensFailed field to given value. @@ -5809,20 +5809,20 @@ HasBotChallengeCompleteTokensFailed returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensChecked -`func (o *Results) GetBotChallengeCompleteTokensChecked() int32` +`func (o *Results) GetBotChallengeCompleteTokensChecked() int64` GetBotChallengeCompleteTokensChecked returns the BotChallengeCompleteTokensChecked field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensCheckedOk -`func (o *Results) GetBotChallengeCompleteTokensCheckedOk() (*int32, bool)` +`func (o *Results) GetBotChallengeCompleteTokensCheckedOk() (*int64, bool)` GetBotChallengeCompleteTokensCheckedOk returns a tuple with the BotChallengeCompleteTokensChecked field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensChecked -`func (o *Results) SetBotChallengeCompleteTokensChecked(v int32)` +`func (o *Results) SetBotChallengeCompleteTokensChecked(v int64)` SetBotChallengeCompleteTokensChecked sets BotChallengeCompleteTokensChecked field to given value. @@ -5834,20 +5834,20 @@ HasBotChallengeCompleteTokensChecked returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensDisabled -`func (o *Results) GetBotChallengeCompleteTokensDisabled() int32` +`func (o *Results) GetBotChallengeCompleteTokensDisabled() int64` GetBotChallengeCompleteTokensDisabled returns the BotChallengeCompleteTokensDisabled field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensDisabledOk -`func (o *Results) GetBotChallengeCompleteTokensDisabledOk() (*int32, bool)` +`func (o *Results) GetBotChallengeCompleteTokensDisabledOk() (*int64, bool)` GetBotChallengeCompleteTokensDisabledOk returns a tuple with the BotChallengeCompleteTokensDisabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensDisabled -`func (o *Results) SetBotChallengeCompleteTokensDisabled(v int32)` +`func (o *Results) SetBotChallengeCompleteTokensDisabled(v int64)` SetBotChallengeCompleteTokensDisabled sets BotChallengeCompleteTokensDisabled field to given value. @@ -5859,20 +5859,20 @@ HasBotChallengeCompleteTokensDisabled returns a boolean if a field has been set. ### GetBotChallengeCompleteTokensIssued -`func (o *Results) GetBotChallengeCompleteTokensIssued() int32` +`func (o *Results) GetBotChallengeCompleteTokensIssued() int64` GetBotChallengeCompleteTokensIssued returns the BotChallengeCompleteTokensIssued field if non-nil, zero value otherwise. ### GetBotChallengeCompleteTokensIssuedOk -`func (o *Results) GetBotChallengeCompleteTokensIssuedOk() (*int32, bool)` +`func (o *Results) GetBotChallengeCompleteTokensIssuedOk() (*int64, bool)` GetBotChallengeCompleteTokensIssuedOk returns a tuple with the BotChallengeCompleteTokensIssued field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengeCompleteTokensIssued -`func (o *Results) SetBotChallengeCompleteTokensIssued(v int32)` +`func (o *Results) SetBotChallengeCompleteTokensIssued(v int64)` SetBotChallengeCompleteTokensIssued sets BotChallengeCompleteTokensIssued field to given value. @@ -5884,20 +5884,20 @@ HasBotChallengeCompleteTokensIssued returns a boolean if a field has been set. ### GetBotChallengesIssued -`func (o *Results) GetBotChallengesIssued() int32` +`func (o *Results) GetBotChallengesIssued() int64` GetBotChallengesIssued returns the BotChallengesIssued field if non-nil, zero value otherwise. ### GetBotChallengesIssuedOk -`func (o *Results) GetBotChallengesIssuedOk() (*int32, bool)` +`func (o *Results) GetBotChallengesIssuedOk() (*int64, bool)` GetBotChallengesIssuedOk returns a tuple with the BotChallengesIssued field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesIssued -`func (o *Results) SetBotChallengesIssued(v int32)` +`func (o *Results) SetBotChallengesIssued(v int64)` SetBotChallengesIssued sets BotChallengesIssued field to given value. @@ -5909,20 +5909,20 @@ HasBotChallengesIssued returns a boolean if a field has been set. ### GetBotChallengesSucceeded -`func (o *Results) GetBotChallengesSucceeded() int32` +`func (o *Results) GetBotChallengesSucceeded() int64` GetBotChallengesSucceeded returns the BotChallengesSucceeded field if non-nil, zero value otherwise. ### GetBotChallengesSucceededOk -`func (o *Results) GetBotChallengesSucceededOk() (*int32, bool)` +`func (o *Results) GetBotChallengesSucceededOk() (*int64, bool)` GetBotChallengesSucceededOk returns a tuple with the BotChallengesSucceeded field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesSucceeded -`func (o *Results) SetBotChallengesSucceeded(v int32)` +`func (o *Results) SetBotChallengesSucceeded(v int64)` SetBotChallengesSucceeded sets BotChallengesSucceeded field to given value. @@ -5934,20 +5934,20 @@ HasBotChallengesSucceeded returns a boolean if a field has been set. ### GetBotChallengesFailed -`func (o *Results) GetBotChallengesFailed() int32` +`func (o *Results) GetBotChallengesFailed() int64` GetBotChallengesFailed returns the BotChallengesFailed field if non-nil, zero value otherwise. ### GetBotChallengesFailedOk -`func (o *Results) GetBotChallengesFailedOk() (*int32, bool)` +`func (o *Results) GetBotChallengesFailedOk() (*int64, bool)` GetBotChallengesFailedOk returns a tuple with the BotChallengesFailed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBotChallengesFailed -`func (o *Results) SetBotChallengesFailed(v int32)` +`func (o *Results) SetBotChallengesFailed(v int64)` SetBotChallengesFailed sets BotChallengesFailed field to given value. @@ -5959,20 +5959,20 @@ HasBotChallengesFailed returns a boolean if a field has been set. ### GetDdosActionDowngrade -`func (o *Results) GetDdosActionDowngrade() int32` +`func (o *Results) GetDdosActionDowngrade() int64` GetDdosActionDowngrade returns the DdosActionDowngrade field if non-nil, zero value otherwise. ### GetDdosActionDowngradeOk -`func (o *Results) GetDdosActionDowngradeOk() (*int32, bool)` +`func (o *Results) GetDdosActionDowngradeOk() (*int64, bool)` GetDdosActionDowngradeOk returns a tuple with the DdosActionDowngrade field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionDowngrade -`func (o *Results) SetDdosActionDowngrade(v int32)` +`func (o *Results) SetDdosActionDowngrade(v int64)` SetDdosActionDowngrade sets DdosActionDowngrade field to given value. @@ -5984,20 +5984,20 @@ HasDdosActionDowngrade returns a boolean if a field has been set. ### GetDdosActionDowngradedConnections -`func (o *Results) GetDdosActionDowngradedConnections() int32` +`func (o *Results) GetDdosActionDowngradedConnections() int64` GetDdosActionDowngradedConnections returns the DdosActionDowngradedConnections field if non-nil, zero value otherwise. ### GetDdosActionDowngradedConnectionsOk -`func (o *Results) GetDdosActionDowngradedConnectionsOk() (*int32, bool)` +`func (o *Results) GetDdosActionDowngradedConnectionsOk() (*int64, bool)` GetDdosActionDowngradedConnectionsOk returns a tuple with the DdosActionDowngradedConnections field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDdosActionDowngradedConnections -`func (o *Results) SetDdosActionDowngradedConnections(v int32)` +`func (o *Results) SetDdosActionDowngradedConnections(v int64)` SetDdosActionDowngradedConnections sets DdosActionDowngradedConnections field to given value. @@ -6009,20 +6009,20 @@ HasDdosActionDowngradedConnections returns a boolean if a field has been set. ### GetAllHitRequests -`func (o *Results) GetAllHitRequests() int32` +`func (o *Results) GetAllHitRequests() int64` GetAllHitRequests returns the AllHitRequests field if non-nil, zero value otherwise. ### GetAllHitRequestsOk -`func (o *Results) GetAllHitRequestsOk() (*int32, bool)` +`func (o *Results) GetAllHitRequestsOk() (*int64, bool)` GetAllHitRequestsOk returns a tuple with the AllHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllHitRequests -`func (o *Results) SetAllHitRequests(v int32)` +`func (o *Results) SetAllHitRequests(v int64)` SetAllHitRequests sets AllHitRequests field to given value. @@ -6034,20 +6034,20 @@ HasAllHitRequests returns a boolean if a field has been set. ### GetAllMissRequests -`func (o *Results) GetAllMissRequests() int32` +`func (o *Results) GetAllMissRequests() int64` GetAllMissRequests returns the AllMissRequests field if non-nil, zero value otherwise. ### GetAllMissRequestsOk -`func (o *Results) GetAllMissRequestsOk() (*int32, bool)` +`func (o *Results) GetAllMissRequestsOk() (*int64, bool)` GetAllMissRequestsOk returns a tuple with the AllMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllMissRequests -`func (o *Results) SetAllMissRequests(v int32)` +`func (o *Results) SetAllMissRequests(v int64)` SetAllMissRequests sets AllMissRequests field to given value. @@ -6059,20 +6059,20 @@ HasAllMissRequests returns a boolean if a field has been set. ### GetAllPassRequests -`func (o *Results) GetAllPassRequests() int32` +`func (o *Results) GetAllPassRequests() int64` GetAllPassRequests returns the AllPassRequests field if non-nil, zero value otherwise. ### GetAllPassRequestsOk -`func (o *Results) GetAllPassRequestsOk() (*int32, bool)` +`func (o *Results) GetAllPassRequestsOk() (*int64, bool)` GetAllPassRequestsOk returns a tuple with the AllPassRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllPassRequests -`func (o *Results) SetAllPassRequests(v int32)` +`func (o *Results) SetAllPassRequests(v int64)` SetAllPassRequests sets AllPassRequests field to given value. @@ -6084,20 +6084,20 @@ HasAllPassRequests returns a boolean if a field has been set. ### GetAllErrorRequests -`func (o *Results) GetAllErrorRequests() int32` +`func (o *Results) GetAllErrorRequests() int64` GetAllErrorRequests returns the AllErrorRequests field if non-nil, zero value otherwise. ### GetAllErrorRequestsOk -`func (o *Results) GetAllErrorRequestsOk() (*int32, bool)` +`func (o *Results) GetAllErrorRequestsOk() (*int64, bool)` GetAllErrorRequestsOk returns a tuple with the AllErrorRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllErrorRequests -`func (o *Results) SetAllErrorRequests(v int32)` +`func (o *Results) SetAllErrorRequests(v int64)` SetAllErrorRequests sets AllErrorRequests field to given value. @@ -6109,20 +6109,20 @@ HasAllErrorRequests returns a boolean if a field has been set. ### GetAllSynthRequests -`func (o *Results) GetAllSynthRequests() int32` +`func (o *Results) GetAllSynthRequests() int64` GetAllSynthRequests returns the AllSynthRequests field if non-nil, zero value otherwise. ### GetAllSynthRequestsOk -`func (o *Results) GetAllSynthRequestsOk() (*int32, bool)` +`func (o *Results) GetAllSynthRequestsOk() (*int64, bool)` GetAllSynthRequestsOk returns a tuple with the AllSynthRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllSynthRequests -`func (o *Results) SetAllSynthRequests(v int32)` +`func (o *Results) SetAllSynthRequests(v int64)` SetAllSynthRequests sets AllSynthRequests field to given value. @@ -6134,20 +6134,20 @@ HasAllSynthRequests returns a boolean if a field has been set. ### GetAllEdgeHitRequests -`func (o *Results) GetAllEdgeHitRequests() int32` +`func (o *Results) GetAllEdgeHitRequests() int64` GetAllEdgeHitRequests returns the AllEdgeHitRequests field if non-nil, zero value otherwise. ### GetAllEdgeHitRequestsOk -`func (o *Results) GetAllEdgeHitRequestsOk() (*int32, bool)` +`func (o *Results) GetAllEdgeHitRequestsOk() (*int64, bool)` GetAllEdgeHitRequestsOk returns a tuple with the AllEdgeHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllEdgeHitRequests -`func (o *Results) SetAllEdgeHitRequests(v int32)` +`func (o *Results) SetAllEdgeHitRequests(v int64)` SetAllEdgeHitRequests sets AllEdgeHitRequests field to given value. @@ -6159,20 +6159,20 @@ HasAllEdgeHitRequests returns a boolean if a field has been set. ### GetAllEdgeMissRequests -`func (o *Results) GetAllEdgeMissRequests() int32` +`func (o *Results) GetAllEdgeMissRequests() int64` GetAllEdgeMissRequests returns the AllEdgeMissRequests field if non-nil, zero value otherwise. ### GetAllEdgeMissRequestsOk -`func (o *Results) GetAllEdgeMissRequestsOk() (*int32, bool)` +`func (o *Results) GetAllEdgeMissRequestsOk() (*int64, bool)` GetAllEdgeMissRequestsOk returns a tuple with the AllEdgeMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllEdgeMissRequests -`func (o *Results) SetAllEdgeMissRequests(v int32)` +`func (o *Results) SetAllEdgeMissRequests(v int64)` SetAllEdgeMissRequests sets AllEdgeMissRequests field to given value. @@ -6184,20 +6184,20 @@ HasAllEdgeMissRequests returns a boolean if a field has been set. ### GetAllStatus1xx -`func (o *Results) GetAllStatus1xx() int32` +`func (o *Results) GetAllStatus1xx() int64` GetAllStatus1xx returns the AllStatus1xx field if non-nil, zero value otherwise. ### GetAllStatus1xxOk -`func (o *Results) GetAllStatus1xxOk() (*int32, bool)` +`func (o *Results) GetAllStatus1xxOk() (*int64, bool)` GetAllStatus1xxOk returns a tuple with the AllStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus1xx -`func (o *Results) SetAllStatus1xx(v int32)` +`func (o *Results) SetAllStatus1xx(v int64)` SetAllStatus1xx sets AllStatus1xx field to given value. @@ -6209,20 +6209,20 @@ HasAllStatus1xx returns a boolean if a field has been set. ### GetAllStatus2xx -`func (o *Results) GetAllStatus2xx() int32` +`func (o *Results) GetAllStatus2xx() int64` GetAllStatus2xx returns the AllStatus2xx field if non-nil, zero value otherwise. ### GetAllStatus2xxOk -`func (o *Results) GetAllStatus2xxOk() (*int32, bool)` +`func (o *Results) GetAllStatus2xxOk() (*int64, bool)` GetAllStatus2xxOk returns a tuple with the AllStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus2xx -`func (o *Results) SetAllStatus2xx(v int32)` +`func (o *Results) SetAllStatus2xx(v int64)` SetAllStatus2xx sets AllStatus2xx field to given value. @@ -6234,20 +6234,20 @@ HasAllStatus2xx returns a boolean if a field has been set. ### GetAllStatus3xx -`func (o *Results) GetAllStatus3xx() int32` +`func (o *Results) GetAllStatus3xx() int64` GetAllStatus3xx returns the AllStatus3xx field if non-nil, zero value otherwise. ### GetAllStatus3xxOk -`func (o *Results) GetAllStatus3xxOk() (*int32, bool)` +`func (o *Results) GetAllStatus3xxOk() (*int64, bool)` GetAllStatus3xxOk returns a tuple with the AllStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus3xx -`func (o *Results) SetAllStatus3xx(v int32)` +`func (o *Results) SetAllStatus3xx(v int64)` SetAllStatus3xx sets AllStatus3xx field to given value. @@ -6259,20 +6259,20 @@ HasAllStatus3xx returns a boolean if a field has been set. ### GetAllStatus4xx -`func (o *Results) GetAllStatus4xx() int32` +`func (o *Results) GetAllStatus4xx() int64` GetAllStatus4xx returns the AllStatus4xx field if non-nil, zero value otherwise. ### GetAllStatus4xxOk -`func (o *Results) GetAllStatus4xxOk() (*int32, bool)` +`func (o *Results) GetAllStatus4xxOk() (*int64, bool)` GetAllStatus4xxOk returns a tuple with the AllStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus4xx -`func (o *Results) SetAllStatus4xx(v int32)` +`func (o *Results) SetAllStatus4xx(v int64)` SetAllStatus4xx sets AllStatus4xx field to given value. @@ -6284,20 +6284,20 @@ HasAllStatus4xx returns a boolean if a field has been set. ### GetAllStatus5xx -`func (o *Results) GetAllStatus5xx() int32` +`func (o *Results) GetAllStatus5xx() int64` GetAllStatus5xx returns the AllStatus5xx field if non-nil, zero value otherwise. ### GetAllStatus5xxOk -`func (o *Results) GetAllStatus5xxOk() (*int32, bool)` +`func (o *Results) GetAllStatus5xxOk() (*int64, bool)` GetAllStatus5xxOk returns a tuple with the AllStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetAllStatus5xx -`func (o *Results) SetAllStatus5xx(v int32)` +`func (o *Results) SetAllStatus5xx(v int64)` SetAllStatus5xx sets AllStatus5xx field to given value. @@ -6334,20 +6334,20 @@ HasOriginOffload returns a boolean if a field has been set. ### GetRequestDeniedGetHeadBody -`func (o *Results) GetRequestDeniedGetHeadBody() int32` +`func (o *Results) GetRequestDeniedGetHeadBody() int64` GetRequestDeniedGetHeadBody returns the RequestDeniedGetHeadBody field if non-nil, zero value otherwise. ### GetRequestDeniedGetHeadBodyOk -`func (o *Results) GetRequestDeniedGetHeadBodyOk() (*int32, bool)` +`func (o *Results) GetRequestDeniedGetHeadBodyOk() (*int64, bool)` GetRequestDeniedGetHeadBodyOk returns a tuple with the RequestDeniedGetHeadBody field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRequestDeniedGetHeadBody -`func (o *Results) SetRequestDeniedGetHeadBody(v int32)` +`func (o *Results) SetRequestDeniedGetHeadBody(v int64)` SetRequestDeniedGetHeadBody sets RequestDeniedGetHeadBody field to given value. @@ -6359,20 +6359,20 @@ HasRequestDeniedGetHeadBody returns a boolean if a field has been set. ### GetServiceDdosRequestsDetected -`func (o *Results) GetServiceDdosRequestsDetected() int32` +`func (o *Results) GetServiceDdosRequestsDetected() int64` GetServiceDdosRequestsDetected returns the ServiceDdosRequestsDetected field if non-nil, zero value otherwise. ### GetServiceDdosRequestsDetectedOk -`func (o *Results) GetServiceDdosRequestsDetectedOk() (*int32, bool)` +`func (o *Results) GetServiceDdosRequestsDetectedOk() (*int64, bool)` GetServiceDdosRequestsDetectedOk returns a tuple with the ServiceDdosRequestsDetected field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsDetected -`func (o *Results) SetServiceDdosRequestsDetected(v int32)` +`func (o *Results) SetServiceDdosRequestsDetected(v int64)` SetServiceDdosRequestsDetected sets ServiceDdosRequestsDetected field to given value. @@ -6384,20 +6384,20 @@ HasServiceDdosRequestsDetected returns a boolean if a field has been set. ### GetServiceDdosRequestsMitigated -`func (o *Results) GetServiceDdosRequestsMitigated() int32` +`func (o *Results) GetServiceDdosRequestsMitigated() int64` GetServiceDdosRequestsMitigated returns the ServiceDdosRequestsMitigated field if non-nil, zero value otherwise. ### GetServiceDdosRequestsMitigatedOk -`func (o *Results) GetServiceDdosRequestsMitigatedOk() (*int32, bool)` +`func (o *Results) GetServiceDdosRequestsMitigatedOk() (*int64, bool)` GetServiceDdosRequestsMitigatedOk returns a tuple with the ServiceDdosRequestsMitigated field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsMitigated -`func (o *Results) SetServiceDdosRequestsMitigated(v int32)` +`func (o *Results) SetServiceDdosRequestsMitigated(v int64)` SetServiceDdosRequestsMitigated sets ServiceDdosRequestsMitigated field to given value. @@ -6409,20 +6409,20 @@ HasServiceDdosRequestsMitigated returns a boolean if a field has been set. ### GetServiceDdosRequestsAllowed -`func (o *Results) GetServiceDdosRequestsAllowed() int32` +`func (o *Results) GetServiceDdosRequestsAllowed() int64` GetServiceDdosRequestsAllowed returns the ServiceDdosRequestsAllowed field if non-nil, zero value otherwise. ### GetServiceDdosRequestsAllowedOk -`func (o *Results) GetServiceDdosRequestsAllowedOk() (*int32, bool)` +`func (o *Results) GetServiceDdosRequestsAllowedOk() (*int64, bool)` GetServiceDdosRequestsAllowedOk returns a tuple with the ServiceDdosRequestsAllowed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetServiceDdosRequestsAllowed -`func (o *Results) SetServiceDdosRequestsAllowed(v int32)` +`func (o *Results) SetServiceDdosRequestsAllowed(v int64)` SetServiceDdosRequestsAllowed sets ServiceDdosRequestsAllowed field to given value. @@ -6459,20 +6459,20 @@ HasServiceID returns a boolean if a field has been set. ### GetStartTime -`func (o *Results) GetStartTime() int32` +`func (o *Results) GetStartTime() int64` GetStartTime returns the StartTime field if non-nil, zero value otherwise. ### GetStartTimeOk -`func (o *Results) GetStartTimeOk() (*int32, bool)` +`func (o *Results) GetStartTimeOk() (*int64, bool)` GetStartTimeOk returns a tuple with the StartTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStartTime -`func (o *Results) SetStartTime(v int32)` +`func (o *Results) SetStartTime(v int64)` SetStartTime sets StartTime field to given value. diff --git a/docs/Values.md b/docs/Values.md index e5571fe..12d3698 100644 --- a/docs/Values.md +++ b/docs/Values.md @@ -4,68 +4,68 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**EdgeRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly. | [optional] -**EdgeRespHeaderBytes** | Pointer to **int32** | Total header bytes delivered from Fastly to the end user. | [optional] -**EdgeRespBodyBytes** | Pointer to **int32** | Total body bytes delivered from Fastly to the end user. | [optional] -**Status1xx** | Pointer to **int32** | Number of 1xx \"Informational\" category status codes delivered. | [optional] -**Status2xx** | Pointer to **int32** | Number of 2xx \"Success\" status codes delivered. | [optional] -**Status3xx** | Pointer to **int32** | Number of 3xx \"Redirection\" codes delivered. | [optional] -**Status4xx** | Pointer to **int32** | Number of 4xx \"Client Error\" codes delivered. | [optional] -**Status5xx** | Pointer to **int32** | Number of 5xx \"Server Error\" codes delivered. | [optional] -**Status200** | Pointer to **int32** | Number of responses delivered with status code 200 (Success). | [optional] -**Status204** | Pointer to **int32** | Number of responses delivered with status code 204 (No Content). | [optional] -**Status206** | Pointer to **int32** | Number of responses delivered with status code 206 (Partial Content). | [optional] -**Status301** | Pointer to **int32** | Number of responses delivered with status code 301 (Moved Permanently). | [optional] -**Status302** | Pointer to **int32** | Number of responses delivered with status code 302 (Found). | [optional] -**Status304** | Pointer to **int32** | Number of responses delivered with status code 304 (Not Modified). | [optional] -**Status400** | Pointer to **int32** | Number of responses delivered with status code 400 (Bad Request). | [optional] -**Status401** | Pointer to **int32** | Number of responses delivered with status code 401 (Unauthorized). | [optional] -**Status403** | Pointer to **int32** | Number of responses delivered with status code 403 (Forbidden). | [optional] -**Status404** | Pointer to **int32** | Number of responses delivered with status code 404 (Not Found). | [optional] -**Status416** | Pointer to **int32** | Number of responses delivered with status code 416 (Range Not Satisfiable). | [optional] -**Status429** | Pointer to **int32** | Number of responses delivered with status code 429 (Too Many Requests). | [optional] -**Status500** | Pointer to **int32** | Number of responses delivered with status code 500 (Internal Server Error). | [optional] -**Status501** | Pointer to **int32** | Number of responses delivered with status code 501 (Not Implemented). | [optional] -**Status502** | Pointer to **int32** | Number of responses delivered with status code 502 (Bad Gateway). | [optional] -**Status503** | Pointer to **int32** | Number of responses delivered with status code 503 (Service Unavailable). | [optional] -**Status504** | Pointer to **int32** | Number of responses delivered with status code 504 (Gateway Timeout). | [optional] -**Status505** | Pointer to **int32** | Number of responses delivered with status code 505 (HTTP Version Not Supported). | [optional] -**Requests** | Pointer to **int32** | Number of requests processed. | [optional] -**RespHeaderBytes** | Pointer to **int32** | Total header bytes delivered. | [optional] -**RespBodyBytes** | Pointer to **int32** | Total body bytes delivered. | [optional] -**BereqHeaderBytes** | Pointer to **int32** | Total header bytes sent to origin. | [optional] -**BereqBodyBytes** | Pointer to **int32** | Total body bytes sent to origin. | [optional] -**EdgeHitRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] -**EdgeMissRequests** | Pointer to **int32** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] -**OriginFetches** | Pointer to **int32** | Number of requests sent to origin. | [optional] -**OriginFetchRespHeaderBytes** | Pointer to **int32** | Total header bytes received from origin. | [optional] -**OriginFetchRespBodyBytes** | Pointer to **int32** | Total body bytes received from origin. | [optional] -**Bandwidth** | Pointer to **int32** | Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes`). | [optional] +**EdgeRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly. | [optional] +**EdgeRespHeaderBytes** | Pointer to **int64** | Total header bytes delivered from Fastly to the end user. | [optional] +**EdgeRespBodyBytes** | Pointer to **int64** | Total body bytes delivered from Fastly to the end user. | [optional] +**Status1xx** | Pointer to **int64** | Number of 1xx \"Informational\" category status codes delivered. | [optional] +**Status2xx** | Pointer to **int64** | Number of 2xx \"Success\" status codes delivered. | [optional] +**Status3xx** | Pointer to **int64** | Number of 3xx \"Redirection\" codes delivered. | [optional] +**Status4xx** | Pointer to **int64** | Number of 4xx \"Client Error\" codes delivered. | [optional] +**Status5xx** | Pointer to **int64** | Number of 5xx \"Server Error\" codes delivered. | [optional] +**Status200** | Pointer to **int64** | Number of responses delivered with status code 200 (Success). | [optional] +**Status204** | Pointer to **int64** | Number of responses delivered with status code 204 (No Content). | [optional] +**Status206** | Pointer to **int64** | Number of responses delivered with status code 206 (Partial Content). | [optional] +**Status301** | Pointer to **int64** | Number of responses delivered with status code 301 (Moved Permanently). | [optional] +**Status302** | Pointer to **int64** | Number of responses delivered with status code 302 (Found). | [optional] +**Status304** | Pointer to **int64** | Number of responses delivered with status code 304 (Not Modified). | [optional] +**Status400** | Pointer to **int64** | Number of responses delivered with status code 400 (Bad Request). | [optional] +**Status401** | Pointer to **int64** | Number of responses delivered with status code 401 (Unauthorized). | [optional] +**Status403** | Pointer to **int64** | Number of responses delivered with status code 403 (Forbidden). | [optional] +**Status404** | Pointer to **int64** | Number of responses delivered with status code 404 (Not Found). | [optional] +**Status416** | Pointer to **int64** | Number of responses delivered with status code 416 (Range Not Satisfiable). | [optional] +**Status429** | Pointer to **int64** | Number of responses delivered with status code 429 (Too Many Requests). | [optional] +**Status500** | Pointer to **int64** | Number of responses delivered with status code 500 (Internal Server Error). | [optional] +**Status501** | Pointer to **int64** | Number of responses delivered with status code 501 (Not Implemented). | [optional] +**Status502** | Pointer to **int64** | Number of responses delivered with status code 502 (Bad Gateway). | [optional] +**Status503** | Pointer to **int64** | Number of responses delivered with status code 503 (Service Unavailable). | [optional] +**Status504** | Pointer to **int64** | Number of responses delivered with status code 504 (Gateway Timeout). | [optional] +**Status505** | Pointer to **int64** | Number of responses delivered with status code 505 (HTTP Version Not Supported). | [optional] +**Requests** | Pointer to **int64** | Number of requests processed. | [optional] +**RespHeaderBytes** | Pointer to **int64** | Total header bytes delivered. | [optional] +**RespBodyBytes** | Pointer to **int64** | Total body bytes delivered. | [optional] +**BereqHeaderBytes** | Pointer to **int64** | Total header bytes sent to origin. | [optional] +**BereqBodyBytes** | Pointer to **int64** | Total body bytes sent to origin. | [optional] +**EdgeHitRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a hit at the edge. | [optional] +**EdgeMissRequests** | Pointer to **int64** | Number of requests sent by end users to Fastly that resulted in a miss at the edge. | [optional] +**OriginFetches** | Pointer to **int64** | Number of requests sent to origin. | [optional] +**OriginFetchRespHeaderBytes** | Pointer to **int64** | Total header bytes received from origin. | [optional] +**OriginFetchRespBodyBytes** | Pointer to **int64** | Total body bytes received from origin. | [optional] +**Bandwidth** | Pointer to **int64** | Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes`). | [optional] **EdgeHitRatio** | Pointer to **float32** | Ratio of cache hits to cache misses at the edge, between 0 and 1 (`edge_hit_requests` / (`edge_hit_requests` + `edge_miss_requests`)). | [optional] **OriginOffload** | Pointer to **float32** | Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). Previously, Origin Offload used a different formula. [Learn more](https://www.fastly.com/documentation/reference/changes/2024/06/add-origin_offload-metric). | [optional] -**OriginStatus200** | Pointer to **int32** | Number of responses received from origin with status code 200 (Success). | [optional] -**OriginStatus204** | Pointer to **int32** | Number of responses received from origin with status code 204 (No Content). | [optional] -**OriginStatus206** | Pointer to **int32** | Number of responses received from origin with status code 206 (Partial Content). | [optional] -**OriginStatus301** | Pointer to **int32** | Number of responses received from origin with status code 301 (Moved Permanently). | [optional] -**OriginStatus302** | Pointer to **int32** | Number of responses received from origin with status code 302 (Found). | [optional] -**OriginStatus304** | Pointer to **int32** | Number of responses received from origin with status code 304 (Not Modified). | [optional] -**OriginStatus400** | Pointer to **int32** | Number of responses received from origin with status code 400 (Bad Request). | [optional] -**OriginStatus401** | Pointer to **int32** | Number of responses received from origin with status code 401 (Unauthorized). | [optional] -**OriginStatus403** | Pointer to **int32** | Number of responses received from origin with status code 403 (Forbidden). | [optional] -**OriginStatus404** | Pointer to **int32** | Number of responses received from origin with status code 404 (Not Found). | [optional] -**OriginStatus416** | Pointer to **int32** | Number of responses received from origin with status code 416 (Range Not Satisfiable). | [optional] -**OriginStatus429** | Pointer to **int32** | Number of responses received from origin with status code 429 (Too Many Requests). | [optional] -**OriginStatus500** | Pointer to **int32** | Number of responses received from origin with status code 500 (Internal Server Error). | [optional] -**OriginStatus501** | Pointer to **int32** | Number of responses received from origin with status code 501 (Not Implemented). | [optional] -**OriginStatus502** | Pointer to **int32** | Number of responses received from origin with status code 502 (Bad Gateway). | [optional] -**OriginStatus503** | Pointer to **int32** | Number of responses received from origin with status code 503 (Service Unavailable). | [optional] -**OriginStatus504** | Pointer to **int32** | Number of responses received from origin with status code 504 (Gateway Timeout). | [optional] -**OriginStatus505** | Pointer to **int32** | Number of responses received from origin with status code 505 (HTTP Version Not Supported). | [optional] -**OriginStatus1xx** | Pointer to **int32** | Number of \"Informational\" category status codes received from origin. | [optional] -**OriginStatus2xx** | Pointer to **int32** | Number of \"Success\" status codes received from origin. | [optional] -**OriginStatus3xx** | Pointer to **int32** | Number of \"Redirection\" codes received from origin. | [optional] -**OriginStatus4xx** | Pointer to **int32** | Number of \"Client Error\" codes received from origin. | [optional] -**OriginStatus5xx** | Pointer to **int32** | Number of \"Server Error\" codes received from origin. | [optional] +**OriginStatus200** | Pointer to **int64** | Number of responses received from origin with status code 200 (Success). | [optional] +**OriginStatus204** | Pointer to **int64** | Number of responses received from origin with status code 204 (No Content). | [optional] +**OriginStatus206** | Pointer to **int64** | Number of responses received from origin with status code 206 (Partial Content). | [optional] +**OriginStatus301** | Pointer to **int64** | Number of responses received from origin with status code 301 (Moved Permanently). | [optional] +**OriginStatus302** | Pointer to **int64** | Number of responses received from origin with status code 302 (Found). | [optional] +**OriginStatus304** | Pointer to **int64** | Number of responses received from origin with status code 304 (Not Modified). | [optional] +**OriginStatus400** | Pointer to **int64** | Number of responses received from origin with status code 400 (Bad Request). | [optional] +**OriginStatus401** | Pointer to **int64** | Number of responses received from origin with status code 401 (Unauthorized). | [optional] +**OriginStatus403** | Pointer to **int64** | Number of responses received from origin with status code 403 (Forbidden). | [optional] +**OriginStatus404** | Pointer to **int64** | Number of responses received from origin with status code 404 (Not Found). | [optional] +**OriginStatus416** | Pointer to **int64** | Number of responses received from origin with status code 416 (Range Not Satisfiable). | [optional] +**OriginStatus429** | Pointer to **int64** | Number of responses received from origin with status code 429 (Too Many Requests). | [optional] +**OriginStatus500** | Pointer to **int64** | Number of responses received from origin with status code 500 (Internal Server Error). | [optional] +**OriginStatus501** | Pointer to **int64** | Number of responses received from origin with status code 501 (Not Implemented). | [optional] +**OriginStatus502** | Pointer to **int64** | Number of responses received from origin with status code 502 (Bad Gateway). | [optional] +**OriginStatus503** | Pointer to **int64** | Number of responses received from origin with status code 503 (Service Unavailable). | [optional] +**OriginStatus504** | Pointer to **int64** | Number of responses received from origin with status code 504 (Gateway Timeout). | [optional] +**OriginStatus505** | Pointer to **int64** | Number of responses received from origin with status code 505 (HTTP Version Not Supported). | [optional] +**OriginStatus1xx** | Pointer to **int64** | Number of \"Informational\" category status codes received from origin. | [optional] +**OriginStatus2xx** | Pointer to **int64** | Number of \"Success\" status codes received from origin. | [optional] +**OriginStatus3xx** | Pointer to **int64** | Number of \"Redirection\" codes received from origin. | [optional] +**OriginStatus4xx** | Pointer to **int64** | Number of \"Client Error\" codes received from origin. | [optional] +**OriginStatus5xx** | Pointer to **int64** | Number of \"Server Error\" codes received from origin. | [optional] ## Methods @@ -88,20 +88,20 @@ but it doesn't guarantee that properties required by API are set ### GetEdgeRequests -`func (o *Values) GetEdgeRequests() int32` +`func (o *Values) GetEdgeRequests() int64` GetEdgeRequests returns the EdgeRequests field if non-nil, zero value otherwise. ### GetEdgeRequestsOk -`func (o *Values) GetEdgeRequestsOk() (*int32, bool)` +`func (o *Values) GetEdgeRequestsOk() (*int64, bool)` GetEdgeRequestsOk returns a tuple with the EdgeRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRequests -`func (o *Values) SetEdgeRequests(v int32)` +`func (o *Values) SetEdgeRequests(v int64)` SetEdgeRequests sets EdgeRequests field to given value. @@ -113,20 +113,20 @@ HasEdgeRequests returns a boolean if a field has been set. ### GetEdgeRespHeaderBytes -`func (o *Values) GetEdgeRespHeaderBytes() int32` +`func (o *Values) GetEdgeRespHeaderBytes() int64` GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field if non-nil, zero value otherwise. ### GetEdgeRespHeaderBytesOk -`func (o *Values) GetEdgeRespHeaderBytesOk() (*int32, bool)` +`func (o *Values) GetEdgeRespHeaderBytesOk() (*int64, bool)` GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespHeaderBytes -`func (o *Values) SetEdgeRespHeaderBytes(v int32)` +`func (o *Values) SetEdgeRespHeaderBytes(v int64)` SetEdgeRespHeaderBytes sets EdgeRespHeaderBytes field to given value. @@ -138,20 +138,20 @@ HasEdgeRespHeaderBytes returns a boolean if a field has been set. ### GetEdgeRespBodyBytes -`func (o *Values) GetEdgeRespBodyBytes() int32` +`func (o *Values) GetEdgeRespBodyBytes() int64` GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field if non-nil, zero value otherwise. ### GetEdgeRespBodyBytesOk -`func (o *Values) GetEdgeRespBodyBytesOk() (*int32, bool)` +`func (o *Values) GetEdgeRespBodyBytesOk() (*int64, bool)` GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeRespBodyBytes -`func (o *Values) SetEdgeRespBodyBytes(v int32)` +`func (o *Values) SetEdgeRespBodyBytes(v int64)` SetEdgeRespBodyBytes sets EdgeRespBodyBytes field to given value. @@ -163,20 +163,20 @@ HasEdgeRespBodyBytes returns a boolean if a field has been set. ### GetStatus1xx -`func (o *Values) GetStatus1xx() int32` +`func (o *Values) GetStatus1xx() int64` GetStatus1xx returns the Status1xx field if non-nil, zero value otherwise. ### GetStatus1xxOk -`func (o *Values) GetStatus1xxOk() (*int32, bool)` +`func (o *Values) GetStatus1xxOk() (*int64, bool)` GetStatus1xxOk returns a tuple with the Status1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus1xx -`func (o *Values) SetStatus1xx(v int32)` +`func (o *Values) SetStatus1xx(v int64)` SetStatus1xx sets Status1xx field to given value. @@ -188,20 +188,20 @@ HasStatus1xx returns a boolean if a field has been set. ### GetStatus2xx -`func (o *Values) GetStatus2xx() int32` +`func (o *Values) GetStatus2xx() int64` GetStatus2xx returns the Status2xx field if non-nil, zero value otherwise. ### GetStatus2xxOk -`func (o *Values) GetStatus2xxOk() (*int32, bool)` +`func (o *Values) GetStatus2xxOk() (*int64, bool)` GetStatus2xxOk returns a tuple with the Status2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus2xx -`func (o *Values) SetStatus2xx(v int32)` +`func (o *Values) SetStatus2xx(v int64)` SetStatus2xx sets Status2xx field to given value. @@ -213,20 +213,20 @@ HasStatus2xx returns a boolean if a field has been set. ### GetStatus3xx -`func (o *Values) GetStatus3xx() int32` +`func (o *Values) GetStatus3xx() int64` GetStatus3xx returns the Status3xx field if non-nil, zero value otherwise. ### GetStatus3xxOk -`func (o *Values) GetStatus3xxOk() (*int32, bool)` +`func (o *Values) GetStatus3xxOk() (*int64, bool)` GetStatus3xxOk returns a tuple with the Status3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus3xx -`func (o *Values) SetStatus3xx(v int32)` +`func (o *Values) SetStatus3xx(v int64)` SetStatus3xx sets Status3xx field to given value. @@ -238,20 +238,20 @@ HasStatus3xx returns a boolean if a field has been set. ### GetStatus4xx -`func (o *Values) GetStatus4xx() int32` +`func (o *Values) GetStatus4xx() int64` GetStatus4xx returns the Status4xx field if non-nil, zero value otherwise. ### GetStatus4xxOk -`func (o *Values) GetStatus4xxOk() (*int32, bool)` +`func (o *Values) GetStatus4xxOk() (*int64, bool)` GetStatus4xxOk returns a tuple with the Status4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus4xx -`func (o *Values) SetStatus4xx(v int32)` +`func (o *Values) SetStatus4xx(v int64)` SetStatus4xx sets Status4xx field to given value. @@ -263,20 +263,20 @@ HasStatus4xx returns a boolean if a field has been set. ### GetStatus5xx -`func (o *Values) GetStatus5xx() int32` +`func (o *Values) GetStatus5xx() int64` GetStatus5xx returns the Status5xx field if non-nil, zero value otherwise. ### GetStatus5xxOk -`func (o *Values) GetStatus5xxOk() (*int32, bool)` +`func (o *Values) GetStatus5xxOk() (*int64, bool)` GetStatus5xxOk returns a tuple with the Status5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus5xx -`func (o *Values) SetStatus5xx(v int32)` +`func (o *Values) SetStatus5xx(v int64)` SetStatus5xx sets Status5xx field to given value. @@ -288,20 +288,20 @@ HasStatus5xx returns a boolean if a field has been set. ### GetStatus200 -`func (o *Values) GetStatus200() int32` +`func (o *Values) GetStatus200() int64` GetStatus200 returns the Status200 field if non-nil, zero value otherwise. ### GetStatus200Ok -`func (o *Values) GetStatus200Ok() (*int32, bool)` +`func (o *Values) GetStatus200Ok() (*int64, bool)` GetStatus200Ok returns a tuple with the Status200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus200 -`func (o *Values) SetStatus200(v int32)` +`func (o *Values) SetStatus200(v int64)` SetStatus200 sets Status200 field to given value. @@ -313,20 +313,20 @@ HasStatus200 returns a boolean if a field has been set. ### GetStatus204 -`func (o *Values) GetStatus204() int32` +`func (o *Values) GetStatus204() int64` GetStatus204 returns the Status204 field if non-nil, zero value otherwise. ### GetStatus204Ok -`func (o *Values) GetStatus204Ok() (*int32, bool)` +`func (o *Values) GetStatus204Ok() (*int64, bool)` GetStatus204Ok returns a tuple with the Status204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus204 -`func (o *Values) SetStatus204(v int32)` +`func (o *Values) SetStatus204(v int64)` SetStatus204 sets Status204 field to given value. @@ -338,20 +338,20 @@ HasStatus204 returns a boolean if a field has been set. ### GetStatus206 -`func (o *Values) GetStatus206() int32` +`func (o *Values) GetStatus206() int64` GetStatus206 returns the Status206 field if non-nil, zero value otherwise. ### GetStatus206Ok -`func (o *Values) GetStatus206Ok() (*int32, bool)` +`func (o *Values) GetStatus206Ok() (*int64, bool)` GetStatus206Ok returns a tuple with the Status206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus206 -`func (o *Values) SetStatus206(v int32)` +`func (o *Values) SetStatus206(v int64)` SetStatus206 sets Status206 field to given value. @@ -363,20 +363,20 @@ HasStatus206 returns a boolean if a field has been set. ### GetStatus301 -`func (o *Values) GetStatus301() int32` +`func (o *Values) GetStatus301() int64` GetStatus301 returns the Status301 field if non-nil, zero value otherwise. ### GetStatus301Ok -`func (o *Values) GetStatus301Ok() (*int32, bool)` +`func (o *Values) GetStatus301Ok() (*int64, bool)` GetStatus301Ok returns a tuple with the Status301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus301 -`func (o *Values) SetStatus301(v int32)` +`func (o *Values) SetStatus301(v int64)` SetStatus301 sets Status301 field to given value. @@ -388,20 +388,20 @@ HasStatus301 returns a boolean if a field has been set. ### GetStatus302 -`func (o *Values) GetStatus302() int32` +`func (o *Values) GetStatus302() int64` GetStatus302 returns the Status302 field if non-nil, zero value otherwise. ### GetStatus302Ok -`func (o *Values) GetStatus302Ok() (*int32, bool)` +`func (o *Values) GetStatus302Ok() (*int64, bool)` GetStatus302Ok returns a tuple with the Status302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus302 -`func (o *Values) SetStatus302(v int32)` +`func (o *Values) SetStatus302(v int64)` SetStatus302 sets Status302 field to given value. @@ -413,20 +413,20 @@ HasStatus302 returns a boolean if a field has been set. ### GetStatus304 -`func (o *Values) GetStatus304() int32` +`func (o *Values) GetStatus304() int64` GetStatus304 returns the Status304 field if non-nil, zero value otherwise. ### GetStatus304Ok -`func (o *Values) GetStatus304Ok() (*int32, bool)` +`func (o *Values) GetStatus304Ok() (*int64, bool)` GetStatus304Ok returns a tuple with the Status304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus304 -`func (o *Values) SetStatus304(v int32)` +`func (o *Values) SetStatus304(v int64)` SetStatus304 sets Status304 field to given value. @@ -438,20 +438,20 @@ HasStatus304 returns a boolean if a field has been set. ### GetStatus400 -`func (o *Values) GetStatus400() int32` +`func (o *Values) GetStatus400() int64` GetStatus400 returns the Status400 field if non-nil, zero value otherwise. ### GetStatus400Ok -`func (o *Values) GetStatus400Ok() (*int32, bool)` +`func (o *Values) GetStatus400Ok() (*int64, bool)` GetStatus400Ok returns a tuple with the Status400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus400 -`func (o *Values) SetStatus400(v int32)` +`func (o *Values) SetStatus400(v int64)` SetStatus400 sets Status400 field to given value. @@ -463,20 +463,20 @@ HasStatus400 returns a boolean if a field has been set. ### GetStatus401 -`func (o *Values) GetStatus401() int32` +`func (o *Values) GetStatus401() int64` GetStatus401 returns the Status401 field if non-nil, zero value otherwise. ### GetStatus401Ok -`func (o *Values) GetStatus401Ok() (*int32, bool)` +`func (o *Values) GetStatus401Ok() (*int64, bool)` GetStatus401Ok returns a tuple with the Status401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus401 -`func (o *Values) SetStatus401(v int32)` +`func (o *Values) SetStatus401(v int64)` SetStatus401 sets Status401 field to given value. @@ -488,20 +488,20 @@ HasStatus401 returns a boolean if a field has been set. ### GetStatus403 -`func (o *Values) GetStatus403() int32` +`func (o *Values) GetStatus403() int64` GetStatus403 returns the Status403 field if non-nil, zero value otherwise. ### GetStatus403Ok -`func (o *Values) GetStatus403Ok() (*int32, bool)` +`func (o *Values) GetStatus403Ok() (*int64, bool)` GetStatus403Ok returns a tuple with the Status403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus403 -`func (o *Values) SetStatus403(v int32)` +`func (o *Values) SetStatus403(v int64)` SetStatus403 sets Status403 field to given value. @@ -513,20 +513,20 @@ HasStatus403 returns a boolean if a field has been set. ### GetStatus404 -`func (o *Values) GetStatus404() int32` +`func (o *Values) GetStatus404() int64` GetStatus404 returns the Status404 field if non-nil, zero value otherwise. ### GetStatus404Ok -`func (o *Values) GetStatus404Ok() (*int32, bool)` +`func (o *Values) GetStatus404Ok() (*int64, bool)` GetStatus404Ok returns a tuple with the Status404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus404 -`func (o *Values) SetStatus404(v int32)` +`func (o *Values) SetStatus404(v int64)` SetStatus404 sets Status404 field to given value. @@ -538,20 +538,20 @@ HasStatus404 returns a boolean if a field has been set. ### GetStatus416 -`func (o *Values) GetStatus416() int32` +`func (o *Values) GetStatus416() int64` GetStatus416 returns the Status416 field if non-nil, zero value otherwise. ### GetStatus416Ok -`func (o *Values) GetStatus416Ok() (*int32, bool)` +`func (o *Values) GetStatus416Ok() (*int64, bool)` GetStatus416Ok returns a tuple with the Status416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus416 -`func (o *Values) SetStatus416(v int32)` +`func (o *Values) SetStatus416(v int64)` SetStatus416 sets Status416 field to given value. @@ -563,20 +563,20 @@ HasStatus416 returns a boolean if a field has been set. ### GetStatus429 -`func (o *Values) GetStatus429() int32` +`func (o *Values) GetStatus429() int64` GetStatus429 returns the Status429 field if non-nil, zero value otherwise. ### GetStatus429Ok -`func (o *Values) GetStatus429Ok() (*int32, bool)` +`func (o *Values) GetStatus429Ok() (*int64, bool)` GetStatus429Ok returns a tuple with the Status429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus429 -`func (o *Values) SetStatus429(v int32)` +`func (o *Values) SetStatus429(v int64)` SetStatus429 sets Status429 field to given value. @@ -588,20 +588,20 @@ HasStatus429 returns a boolean if a field has been set. ### GetStatus500 -`func (o *Values) GetStatus500() int32` +`func (o *Values) GetStatus500() int64` GetStatus500 returns the Status500 field if non-nil, zero value otherwise. ### GetStatus500Ok -`func (o *Values) GetStatus500Ok() (*int32, bool)` +`func (o *Values) GetStatus500Ok() (*int64, bool)` GetStatus500Ok returns a tuple with the Status500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus500 -`func (o *Values) SetStatus500(v int32)` +`func (o *Values) SetStatus500(v int64)` SetStatus500 sets Status500 field to given value. @@ -613,20 +613,20 @@ HasStatus500 returns a boolean if a field has been set. ### GetStatus501 -`func (o *Values) GetStatus501() int32` +`func (o *Values) GetStatus501() int64` GetStatus501 returns the Status501 field if non-nil, zero value otherwise. ### GetStatus501Ok -`func (o *Values) GetStatus501Ok() (*int32, bool)` +`func (o *Values) GetStatus501Ok() (*int64, bool)` GetStatus501Ok returns a tuple with the Status501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus501 -`func (o *Values) SetStatus501(v int32)` +`func (o *Values) SetStatus501(v int64)` SetStatus501 sets Status501 field to given value. @@ -638,20 +638,20 @@ HasStatus501 returns a boolean if a field has been set. ### GetStatus502 -`func (o *Values) GetStatus502() int32` +`func (o *Values) GetStatus502() int64` GetStatus502 returns the Status502 field if non-nil, zero value otherwise. ### GetStatus502Ok -`func (o *Values) GetStatus502Ok() (*int32, bool)` +`func (o *Values) GetStatus502Ok() (*int64, bool)` GetStatus502Ok returns a tuple with the Status502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus502 -`func (o *Values) SetStatus502(v int32)` +`func (o *Values) SetStatus502(v int64)` SetStatus502 sets Status502 field to given value. @@ -663,20 +663,20 @@ HasStatus502 returns a boolean if a field has been set. ### GetStatus503 -`func (o *Values) GetStatus503() int32` +`func (o *Values) GetStatus503() int64` GetStatus503 returns the Status503 field if non-nil, zero value otherwise. ### GetStatus503Ok -`func (o *Values) GetStatus503Ok() (*int32, bool)` +`func (o *Values) GetStatus503Ok() (*int64, bool)` GetStatus503Ok returns a tuple with the Status503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus503 -`func (o *Values) SetStatus503(v int32)` +`func (o *Values) SetStatus503(v int64)` SetStatus503 sets Status503 field to given value. @@ -688,20 +688,20 @@ HasStatus503 returns a boolean if a field has been set. ### GetStatus504 -`func (o *Values) GetStatus504() int32` +`func (o *Values) GetStatus504() int64` GetStatus504 returns the Status504 field if non-nil, zero value otherwise. ### GetStatus504Ok -`func (o *Values) GetStatus504Ok() (*int32, bool)` +`func (o *Values) GetStatus504Ok() (*int64, bool)` GetStatus504Ok returns a tuple with the Status504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus504 -`func (o *Values) SetStatus504(v int32)` +`func (o *Values) SetStatus504(v int64)` SetStatus504 sets Status504 field to given value. @@ -713,20 +713,20 @@ HasStatus504 returns a boolean if a field has been set. ### GetStatus505 -`func (o *Values) GetStatus505() int32` +`func (o *Values) GetStatus505() int64` GetStatus505 returns the Status505 field if non-nil, zero value otherwise. ### GetStatus505Ok -`func (o *Values) GetStatus505Ok() (*int32, bool)` +`func (o *Values) GetStatus505Ok() (*int64, bool)` GetStatus505Ok returns a tuple with the Status505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus505 -`func (o *Values) SetStatus505(v int32)` +`func (o *Values) SetStatus505(v int64)` SetStatus505 sets Status505 field to given value. @@ -738,20 +738,20 @@ HasStatus505 returns a boolean if a field has been set. ### GetRequests -`func (o *Values) GetRequests() int32` +`func (o *Values) GetRequests() int64` GetRequests returns the Requests field if non-nil, zero value otherwise. ### GetRequestsOk -`func (o *Values) GetRequestsOk() (*int32, bool)` +`func (o *Values) GetRequestsOk() (*int64, bool)` GetRequestsOk returns a tuple with the Requests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRequests -`func (o *Values) SetRequests(v int32)` +`func (o *Values) SetRequests(v int64)` SetRequests sets Requests field to given value. @@ -763,20 +763,20 @@ HasRequests returns a boolean if a field has been set. ### GetRespHeaderBytes -`func (o *Values) GetRespHeaderBytes() int32` +`func (o *Values) GetRespHeaderBytes() int64` GetRespHeaderBytes returns the RespHeaderBytes field if non-nil, zero value otherwise. ### GetRespHeaderBytesOk -`func (o *Values) GetRespHeaderBytesOk() (*int32, bool)` +`func (o *Values) GetRespHeaderBytesOk() (*int64, bool)` GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespHeaderBytes -`func (o *Values) SetRespHeaderBytes(v int32)` +`func (o *Values) SetRespHeaderBytes(v int64)` SetRespHeaderBytes sets RespHeaderBytes field to given value. @@ -788,20 +788,20 @@ HasRespHeaderBytes returns a boolean if a field has been set. ### GetRespBodyBytes -`func (o *Values) GetRespBodyBytes() int32` +`func (o *Values) GetRespBodyBytes() int64` GetRespBodyBytes returns the RespBodyBytes field if non-nil, zero value otherwise. ### GetRespBodyBytesOk -`func (o *Values) GetRespBodyBytesOk() (*int32, bool)` +`func (o *Values) GetRespBodyBytesOk() (*int64, bool)` GetRespBodyBytesOk returns a tuple with the RespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetRespBodyBytes -`func (o *Values) SetRespBodyBytes(v int32)` +`func (o *Values) SetRespBodyBytes(v int64)` SetRespBodyBytes sets RespBodyBytes field to given value. @@ -813,20 +813,20 @@ HasRespBodyBytes returns a boolean if a field has been set. ### GetBereqHeaderBytes -`func (o *Values) GetBereqHeaderBytes() int32` +`func (o *Values) GetBereqHeaderBytes() int64` GetBereqHeaderBytes returns the BereqHeaderBytes field if non-nil, zero value otherwise. ### GetBereqHeaderBytesOk -`func (o *Values) GetBereqHeaderBytesOk() (*int32, bool)` +`func (o *Values) GetBereqHeaderBytesOk() (*int64, bool)` GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqHeaderBytes -`func (o *Values) SetBereqHeaderBytes(v int32)` +`func (o *Values) SetBereqHeaderBytes(v int64)` SetBereqHeaderBytes sets BereqHeaderBytes field to given value. @@ -838,20 +838,20 @@ HasBereqHeaderBytes returns a boolean if a field has been set. ### GetBereqBodyBytes -`func (o *Values) GetBereqBodyBytes() int32` +`func (o *Values) GetBereqBodyBytes() int64` GetBereqBodyBytes returns the BereqBodyBytes field if non-nil, zero value otherwise. ### GetBereqBodyBytesOk -`func (o *Values) GetBereqBodyBytesOk() (*int32, bool)` +`func (o *Values) GetBereqBodyBytesOk() (*int64, bool)` GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBereqBodyBytes -`func (o *Values) SetBereqBodyBytes(v int32)` +`func (o *Values) SetBereqBodyBytes(v int64)` SetBereqBodyBytes sets BereqBodyBytes field to given value. @@ -863,20 +863,20 @@ HasBereqBodyBytes returns a boolean if a field has been set. ### GetEdgeHitRequests -`func (o *Values) GetEdgeHitRequests() int32` +`func (o *Values) GetEdgeHitRequests() int64` GetEdgeHitRequests returns the EdgeHitRequests field if non-nil, zero value otherwise. ### GetEdgeHitRequestsOk -`func (o *Values) GetEdgeHitRequestsOk() (*int32, bool)` +`func (o *Values) GetEdgeHitRequestsOk() (*int64, bool)` GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeHitRequests -`func (o *Values) SetEdgeHitRequests(v int32)` +`func (o *Values) SetEdgeHitRequests(v int64)` SetEdgeHitRequests sets EdgeHitRequests field to given value. @@ -888,20 +888,20 @@ HasEdgeHitRequests returns a boolean if a field has been set. ### GetEdgeMissRequests -`func (o *Values) GetEdgeMissRequests() int32` +`func (o *Values) GetEdgeMissRequests() int64` GetEdgeMissRequests returns the EdgeMissRequests field if non-nil, zero value otherwise. ### GetEdgeMissRequestsOk -`func (o *Values) GetEdgeMissRequestsOk() (*int32, bool)` +`func (o *Values) GetEdgeMissRequestsOk() (*int64, bool)` GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEdgeMissRequests -`func (o *Values) SetEdgeMissRequests(v int32)` +`func (o *Values) SetEdgeMissRequests(v int64)` SetEdgeMissRequests sets EdgeMissRequests field to given value. @@ -913,20 +913,20 @@ HasEdgeMissRequests returns a boolean if a field has been set. ### GetOriginFetches -`func (o *Values) GetOriginFetches() int32` +`func (o *Values) GetOriginFetches() int64` GetOriginFetches returns the OriginFetches field if non-nil, zero value otherwise. ### GetOriginFetchesOk -`func (o *Values) GetOriginFetchesOk() (*int32, bool)` +`func (o *Values) GetOriginFetchesOk() (*int64, bool)` GetOriginFetchesOk returns a tuple with the OriginFetches field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetches -`func (o *Values) SetOriginFetches(v int32)` +`func (o *Values) SetOriginFetches(v int64)` SetOriginFetches sets OriginFetches field to given value. @@ -938,20 +938,20 @@ HasOriginFetches returns a boolean if a field has been set. ### GetOriginFetchRespHeaderBytes -`func (o *Values) GetOriginFetchRespHeaderBytes() int32` +`func (o *Values) GetOriginFetchRespHeaderBytes() int64` GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespHeaderBytesOk -`func (o *Values) GetOriginFetchRespHeaderBytesOk() (*int32, bool)` +`func (o *Values) GetOriginFetchRespHeaderBytesOk() (*int64, bool)` GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespHeaderBytes -`func (o *Values) SetOriginFetchRespHeaderBytes(v int32)` +`func (o *Values) SetOriginFetchRespHeaderBytes(v int64)` SetOriginFetchRespHeaderBytes sets OriginFetchRespHeaderBytes field to given value. @@ -963,20 +963,20 @@ HasOriginFetchRespHeaderBytes returns a boolean if a field has been set. ### GetOriginFetchRespBodyBytes -`func (o *Values) GetOriginFetchRespBodyBytes() int32` +`func (o *Values) GetOriginFetchRespBodyBytes() int64` GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field if non-nil, zero value otherwise. ### GetOriginFetchRespBodyBytesOk -`func (o *Values) GetOriginFetchRespBodyBytesOk() (*int32, bool)` +`func (o *Values) GetOriginFetchRespBodyBytesOk() (*int64, bool)` GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginFetchRespBodyBytes -`func (o *Values) SetOriginFetchRespBodyBytes(v int32)` +`func (o *Values) SetOriginFetchRespBodyBytes(v int64)` SetOriginFetchRespBodyBytes sets OriginFetchRespBodyBytes field to given value. @@ -988,20 +988,20 @@ HasOriginFetchRespBodyBytes returns a boolean if a field has been set. ### GetBandwidth -`func (o *Values) GetBandwidth() int32` +`func (o *Values) GetBandwidth() int64` GetBandwidth returns the Bandwidth field if non-nil, zero value otherwise. ### GetBandwidthOk -`func (o *Values) GetBandwidthOk() (*int32, bool)` +`func (o *Values) GetBandwidthOk() (*int64, bool)` GetBandwidthOk returns a tuple with the Bandwidth field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBandwidth -`func (o *Values) SetBandwidth(v int32)` +`func (o *Values) SetBandwidth(v int64)` SetBandwidth sets Bandwidth field to given value. @@ -1063,20 +1063,20 @@ HasOriginOffload returns a boolean if a field has been set. ### GetOriginStatus200 -`func (o *Values) GetOriginStatus200() int32` +`func (o *Values) GetOriginStatus200() int64` GetOriginStatus200 returns the OriginStatus200 field if non-nil, zero value otherwise. ### GetOriginStatus200Ok -`func (o *Values) GetOriginStatus200Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus200Ok() (*int64, bool)` GetOriginStatus200Ok returns a tuple with the OriginStatus200 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus200 -`func (o *Values) SetOriginStatus200(v int32)` +`func (o *Values) SetOriginStatus200(v int64)` SetOriginStatus200 sets OriginStatus200 field to given value. @@ -1088,20 +1088,20 @@ HasOriginStatus200 returns a boolean if a field has been set. ### GetOriginStatus204 -`func (o *Values) GetOriginStatus204() int32` +`func (o *Values) GetOriginStatus204() int64` GetOriginStatus204 returns the OriginStatus204 field if non-nil, zero value otherwise. ### GetOriginStatus204Ok -`func (o *Values) GetOriginStatus204Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus204Ok() (*int64, bool)` GetOriginStatus204Ok returns a tuple with the OriginStatus204 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus204 -`func (o *Values) SetOriginStatus204(v int32)` +`func (o *Values) SetOriginStatus204(v int64)` SetOriginStatus204 sets OriginStatus204 field to given value. @@ -1113,20 +1113,20 @@ HasOriginStatus204 returns a boolean if a field has been set. ### GetOriginStatus206 -`func (o *Values) GetOriginStatus206() int32` +`func (o *Values) GetOriginStatus206() int64` GetOriginStatus206 returns the OriginStatus206 field if non-nil, zero value otherwise. ### GetOriginStatus206Ok -`func (o *Values) GetOriginStatus206Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus206Ok() (*int64, bool)` GetOriginStatus206Ok returns a tuple with the OriginStatus206 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus206 -`func (o *Values) SetOriginStatus206(v int32)` +`func (o *Values) SetOriginStatus206(v int64)` SetOriginStatus206 sets OriginStatus206 field to given value. @@ -1138,20 +1138,20 @@ HasOriginStatus206 returns a boolean if a field has been set. ### GetOriginStatus301 -`func (o *Values) GetOriginStatus301() int32` +`func (o *Values) GetOriginStatus301() int64` GetOriginStatus301 returns the OriginStatus301 field if non-nil, zero value otherwise. ### GetOriginStatus301Ok -`func (o *Values) GetOriginStatus301Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus301Ok() (*int64, bool)` GetOriginStatus301Ok returns a tuple with the OriginStatus301 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus301 -`func (o *Values) SetOriginStatus301(v int32)` +`func (o *Values) SetOriginStatus301(v int64)` SetOriginStatus301 sets OriginStatus301 field to given value. @@ -1163,20 +1163,20 @@ HasOriginStatus301 returns a boolean if a field has been set. ### GetOriginStatus302 -`func (o *Values) GetOriginStatus302() int32` +`func (o *Values) GetOriginStatus302() int64` GetOriginStatus302 returns the OriginStatus302 field if non-nil, zero value otherwise. ### GetOriginStatus302Ok -`func (o *Values) GetOriginStatus302Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus302Ok() (*int64, bool)` GetOriginStatus302Ok returns a tuple with the OriginStatus302 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus302 -`func (o *Values) SetOriginStatus302(v int32)` +`func (o *Values) SetOriginStatus302(v int64)` SetOriginStatus302 sets OriginStatus302 field to given value. @@ -1188,20 +1188,20 @@ HasOriginStatus302 returns a boolean if a field has been set. ### GetOriginStatus304 -`func (o *Values) GetOriginStatus304() int32` +`func (o *Values) GetOriginStatus304() int64` GetOriginStatus304 returns the OriginStatus304 field if non-nil, zero value otherwise. ### GetOriginStatus304Ok -`func (o *Values) GetOriginStatus304Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus304Ok() (*int64, bool)` GetOriginStatus304Ok returns a tuple with the OriginStatus304 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus304 -`func (o *Values) SetOriginStatus304(v int32)` +`func (o *Values) SetOriginStatus304(v int64)` SetOriginStatus304 sets OriginStatus304 field to given value. @@ -1213,20 +1213,20 @@ HasOriginStatus304 returns a boolean if a field has been set. ### GetOriginStatus400 -`func (o *Values) GetOriginStatus400() int32` +`func (o *Values) GetOriginStatus400() int64` GetOriginStatus400 returns the OriginStatus400 field if non-nil, zero value otherwise. ### GetOriginStatus400Ok -`func (o *Values) GetOriginStatus400Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus400Ok() (*int64, bool)` GetOriginStatus400Ok returns a tuple with the OriginStatus400 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus400 -`func (o *Values) SetOriginStatus400(v int32)` +`func (o *Values) SetOriginStatus400(v int64)` SetOriginStatus400 sets OriginStatus400 field to given value. @@ -1238,20 +1238,20 @@ HasOriginStatus400 returns a boolean if a field has been set. ### GetOriginStatus401 -`func (o *Values) GetOriginStatus401() int32` +`func (o *Values) GetOriginStatus401() int64` GetOriginStatus401 returns the OriginStatus401 field if non-nil, zero value otherwise. ### GetOriginStatus401Ok -`func (o *Values) GetOriginStatus401Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus401Ok() (*int64, bool)` GetOriginStatus401Ok returns a tuple with the OriginStatus401 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus401 -`func (o *Values) SetOriginStatus401(v int32)` +`func (o *Values) SetOriginStatus401(v int64)` SetOriginStatus401 sets OriginStatus401 field to given value. @@ -1263,20 +1263,20 @@ HasOriginStatus401 returns a boolean if a field has been set. ### GetOriginStatus403 -`func (o *Values) GetOriginStatus403() int32` +`func (o *Values) GetOriginStatus403() int64` GetOriginStatus403 returns the OriginStatus403 field if non-nil, zero value otherwise. ### GetOriginStatus403Ok -`func (o *Values) GetOriginStatus403Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus403Ok() (*int64, bool)` GetOriginStatus403Ok returns a tuple with the OriginStatus403 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus403 -`func (o *Values) SetOriginStatus403(v int32)` +`func (o *Values) SetOriginStatus403(v int64)` SetOriginStatus403 sets OriginStatus403 field to given value. @@ -1288,20 +1288,20 @@ HasOriginStatus403 returns a boolean if a field has been set. ### GetOriginStatus404 -`func (o *Values) GetOriginStatus404() int32` +`func (o *Values) GetOriginStatus404() int64` GetOriginStatus404 returns the OriginStatus404 field if non-nil, zero value otherwise. ### GetOriginStatus404Ok -`func (o *Values) GetOriginStatus404Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus404Ok() (*int64, bool)` GetOriginStatus404Ok returns a tuple with the OriginStatus404 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus404 -`func (o *Values) SetOriginStatus404(v int32)` +`func (o *Values) SetOriginStatus404(v int64)` SetOriginStatus404 sets OriginStatus404 field to given value. @@ -1313,20 +1313,20 @@ HasOriginStatus404 returns a boolean if a field has been set. ### GetOriginStatus416 -`func (o *Values) GetOriginStatus416() int32` +`func (o *Values) GetOriginStatus416() int64` GetOriginStatus416 returns the OriginStatus416 field if non-nil, zero value otherwise. ### GetOriginStatus416Ok -`func (o *Values) GetOriginStatus416Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus416Ok() (*int64, bool)` GetOriginStatus416Ok returns a tuple with the OriginStatus416 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus416 -`func (o *Values) SetOriginStatus416(v int32)` +`func (o *Values) SetOriginStatus416(v int64)` SetOriginStatus416 sets OriginStatus416 field to given value. @@ -1338,20 +1338,20 @@ HasOriginStatus416 returns a boolean if a field has been set. ### GetOriginStatus429 -`func (o *Values) GetOriginStatus429() int32` +`func (o *Values) GetOriginStatus429() int64` GetOriginStatus429 returns the OriginStatus429 field if non-nil, zero value otherwise. ### GetOriginStatus429Ok -`func (o *Values) GetOriginStatus429Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus429Ok() (*int64, bool)` GetOriginStatus429Ok returns a tuple with the OriginStatus429 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus429 -`func (o *Values) SetOriginStatus429(v int32)` +`func (o *Values) SetOriginStatus429(v int64)` SetOriginStatus429 sets OriginStatus429 field to given value. @@ -1363,20 +1363,20 @@ HasOriginStatus429 returns a boolean if a field has been set. ### GetOriginStatus500 -`func (o *Values) GetOriginStatus500() int32` +`func (o *Values) GetOriginStatus500() int64` GetOriginStatus500 returns the OriginStatus500 field if non-nil, zero value otherwise. ### GetOriginStatus500Ok -`func (o *Values) GetOriginStatus500Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus500Ok() (*int64, bool)` GetOriginStatus500Ok returns a tuple with the OriginStatus500 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus500 -`func (o *Values) SetOriginStatus500(v int32)` +`func (o *Values) SetOriginStatus500(v int64)` SetOriginStatus500 sets OriginStatus500 field to given value. @@ -1388,20 +1388,20 @@ HasOriginStatus500 returns a boolean if a field has been set. ### GetOriginStatus501 -`func (o *Values) GetOriginStatus501() int32` +`func (o *Values) GetOriginStatus501() int64` GetOriginStatus501 returns the OriginStatus501 field if non-nil, zero value otherwise. ### GetOriginStatus501Ok -`func (o *Values) GetOriginStatus501Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus501Ok() (*int64, bool)` GetOriginStatus501Ok returns a tuple with the OriginStatus501 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus501 -`func (o *Values) SetOriginStatus501(v int32)` +`func (o *Values) SetOriginStatus501(v int64)` SetOriginStatus501 sets OriginStatus501 field to given value. @@ -1413,20 +1413,20 @@ HasOriginStatus501 returns a boolean if a field has been set. ### GetOriginStatus502 -`func (o *Values) GetOriginStatus502() int32` +`func (o *Values) GetOriginStatus502() int64` GetOriginStatus502 returns the OriginStatus502 field if non-nil, zero value otherwise. ### GetOriginStatus502Ok -`func (o *Values) GetOriginStatus502Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus502Ok() (*int64, bool)` GetOriginStatus502Ok returns a tuple with the OriginStatus502 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus502 -`func (o *Values) SetOriginStatus502(v int32)` +`func (o *Values) SetOriginStatus502(v int64)` SetOriginStatus502 sets OriginStatus502 field to given value. @@ -1438,20 +1438,20 @@ HasOriginStatus502 returns a boolean if a field has been set. ### GetOriginStatus503 -`func (o *Values) GetOriginStatus503() int32` +`func (o *Values) GetOriginStatus503() int64` GetOriginStatus503 returns the OriginStatus503 field if non-nil, zero value otherwise. ### GetOriginStatus503Ok -`func (o *Values) GetOriginStatus503Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus503Ok() (*int64, bool)` GetOriginStatus503Ok returns a tuple with the OriginStatus503 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus503 -`func (o *Values) SetOriginStatus503(v int32)` +`func (o *Values) SetOriginStatus503(v int64)` SetOriginStatus503 sets OriginStatus503 field to given value. @@ -1463,20 +1463,20 @@ HasOriginStatus503 returns a boolean if a field has been set. ### GetOriginStatus504 -`func (o *Values) GetOriginStatus504() int32` +`func (o *Values) GetOriginStatus504() int64` GetOriginStatus504 returns the OriginStatus504 field if non-nil, zero value otherwise. ### GetOriginStatus504Ok -`func (o *Values) GetOriginStatus504Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus504Ok() (*int64, bool)` GetOriginStatus504Ok returns a tuple with the OriginStatus504 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus504 -`func (o *Values) SetOriginStatus504(v int32)` +`func (o *Values) SetOriginStatus504(v int64)` SetOriginStatus504 sets OriginStatus504 field to given value. @@ -1488,20 +1488,20 @@ HasOriginStatus504 returns a boolean if a field has been set. ### GetOriginStatus505 -`func (o *Values) GetOriginStatus505() int32` +`func (o *Values) GetOriginStatus505() int64` GetOriginStatus505 returns the OriginStatus505 field if non-nil, zero value otherwise. ### GetOriginStatus505Ok -`func (o *Values) GetOriginStatus505Ok() (*int32, bool)` +`func (o *Values) GetOriginStatus505Ok() (*int64, bool)` GetOriginStatus505Ok returns a tuple with the OriginStatus505 field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus505 -`func (o *Values) SetOriginStatus505(v int32)` +`func (o *Values) SetOriginStatus505(v int64)` SetOriginStatus505 sets OriginStatus505 field to given value. @@ -1513,20 +1513,20 @@ HasOriginStatus505 returns a boolean if a field has been set. ### GetOriginStatus1xx -`func (o *Values) GetOriginStatus1xx() int32` +`func (o *Values) GetOriginStatus1xx() int64` GetOriginStatus1xx returns the OriginStatus1xx field if non-nil, zero value otherwise. ### GetOriginStatus1xxOk -`func (o *Values) GetOriginStatus1xxOk() (*int32, bool)` +`func (o *Values) GetOriginStatus1xxOk() (*int64, bool)` GetOriginStatus1xxOk returns a tuple with the OriginStatus1xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus1xx -`func (o *Values) SetOriginStatus1xx(v int32)` +`func (o *Values) SetOriginStatus1xx(v int64)` SetOriginStatus1xx sets OriginStatus1xx field to given value. @@ -1538,20 +1538,20 @@ HasOriginStatus1xx returns a boolean if a field has been set. ### GetOriginStatus2xx -`func (o *Values) GetOriginStatus2xx() int32` +`func (o *Values) GetOriginStatus2xx() int64` GetOriginStatus2xx returns the OriginStatus2xx field if non-nil, zero value otherwise. ### GetOriginStatus2xxOk -`func (o *Values) GetOriginStatus2xxOk() (*int32, bool)` +`func (o *Values) GetOriginStatus2xxOk() (*int64, bool)` GetOriginStatus2xxOk returns a tuple with the OriginStatus2xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus2xx -`func (o *Values) SetOriginStatus2xx(v int32)` +`func (o *Values) SetOriginStatus2xx(v int64)` SetOriginStatus2xx sets OriginStatus2xx field to given value. @@ -1563,20 +1563,20 @@ HasOriginStatus2xx returns a boolean if a field has been set. ### GetOriginStatus3xx -`func (o *Values) GetOriginStatus3xx() int32` +`func (o *Values) GetOriginStatus3xx() int64` GetOriginStatus3xx returns the OriginStatus3xx field if non-nil, zero value otherwise. ### GetOriginStatus3xxOk -`func (o *Values) GetOriginStatus3xxOk() (*int32, bool)` +`func (o *Values) GetOriginStatus3xxOk() (*int64, bool)` GetOriginStatus3xxOk returns a tuple with the OriginStatus3xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus3xx -`func (o *Values) SetOriginStatus3xx(v int32)` +`func (o *Values) SetOriginStatus3xx(v int64)` SetOriginStatus3xx sets OriginStatus3xx field to given value. @@ -1588,20 +1588,20 @@ HasOriginStatus3xx returns a boolean if a field has been set. ### GetOriginStatus4xx -`func (o *Values) GetOriginStatus4xx() int32` +`func (o *Values) GetOriginStatus4xx() int64` GetOriginStatus4xx returns the OriginStatus4xx field if non-nil, zero value otherwise. ### GetOriginStatus4xxOk -`func (o *Values) GetOriginStatus4xxOk() (*int32, bool)` +`func (o *Values) GetOriginStatus4xxOk() (*int64, bool)` GetOriginStatus4xxOk returns a tuple with the OriginStatus4xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus4xx -`func (o *Values) SetOriginStatus4xx(v int32)` +`func (o *Values) SetOriginStatus4xx(v int64)` SetOriginStatus4xx sets OriginStatus4xx field to given value. @@ -1613,20 +1613,20 @@ HasOriginStatus4xx returns a boolean if a field has been set. ### GetOriginStatus5xx -`func (o *Values) GetOriginStatus5xx() int32` +`func (o *Values) GetOriginStatus5xx() int64` GetOriginStatus5xx returns the OriginStatus5xx field if non-nil, zero value otherwise. ### GetOriginStatus5xxOk -`func (o *Values) GetOriginStatus5xxOk() (*int32, bool)` +`func (o *Values) GetOriginStatus5xxOk() (*int64, bool)` GetOriginStatus5xxOk returns a tuple with the OriginStatus5xx field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetOriginStatus5xx -`func (o *Values) SetOriginStatus5xx(v int32)` +`func (o *Values) SetOriginStatus5xx(v int64)` SetOriginStatus5xx sets OriginStatus5xx field to given value. diff --git a/fastly/configuration.go b/fastly/configuration.go index 7aedd03..3f33e00 100644 --- a/fastly/configuration.go +++ b/fastly/configuration.go @@ -104,7 +104,7 @@ type Configuration struct { func NewConfiguration() *Configuration { cfg := &Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "fastly-go/1.0.0-beta.37", + UserAgent: "fastly-go/1.0.0-beta.38", Debug: false, Servers: ServerConfigurations{ { diff --git a/fastly/model_domain_inspector_measurements.go b/fastly/model_domain_inspector_measurements.go index ad50a97..6f4f805 100644 --- a/fastly/model_domain_inspector_measurements.go +++ b/fastly/model_domain_inspector_measurements.go @@ -19,129 +19,129 @@ import ( // DomainInspectorMeasurements A measurements object provides a count of the total number of `requests` received by Fastly for your domain in the reported time period and for the relevant POP, as specified in the [entry](#entry-data-model). It also includes the number of responses for specific HTTP response status codes and for status code ranges. This dataset is sparse: only the keys with non-zero values will be included in the record. Where a specific status code does not have a field in this model (e.g., `429 Too Many Requests`), any responses with that code will be counted as part of the range count (`4xx` in this case) but will not be separately identified in the data. type DomainInspectorMeasurements struct { // Number of requests sent by end users to Fastly. - EdgeRequests *int32 `json:"edge_requests,omitempty"` + EdgeRequests *int64 `json:"edge_requests,omitempty"` // Total header bytes delivered from Fastly to the end user. - EdgeRespHeaderBytes *int32 `json:"edge_resp_header_bytes,omitempty"` + EdgeRespHeaderBytes *int64 `json:"edge_resp_header_bytes,omitempty"` // Total body bytes delivered from Fastly to the end user. - EdgeRespBodyBytes *int32 `json:"edge_resp_body_bytes,omitempty"` + EdgeRespBodyBytes *int64 `json:"edge_resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" category status codes delivered. - Status1xx *int32 `json:"status_1xx,omitempty"` + Status1xx *int64 `json:"status_1xx,omitempty"` // Number of 2xx \"Success\" status codes delivered. - Status2xx *int32 `json:"status_2xx,omitempty"` + Status2xx *int64 `json:"status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes delivered. - Status3xx *int32 `json:"status_3xx,omitempty"` + Status3xx *int64 `json:"status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes delivered. - Status4xx *int32 `json:"status_4xx,omitempty"` + Status4xx *int64 `json:"status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes delivered. - Status5xx *int32 `json:"status_5xx,omitempty"` + Status5xx *int64 `json:"status_5xx,omitempty"` // Number of responses delivered with status code 200 (Success). - Status200 *int32 `json:"status_200,omitempty"` + Status200 *int64 `json:"status_200,omitempty"` // Number of responses delivered with status code 204 (No Content). - Status204 *int32 `json:"status_204,omitempty"` + Status204 *int64 `json:"status_204,omitempty"` // Number of responses delivered with status code 206 (Partial Content). - Status206 *int32 `json:"status_206,omitempty"` + Status206 *int64 `json:"status_206,omitempty"` // Number of responses delivered with status code 301 (Moved Permanently). - Status301 *int32 `json:"status_301,omitempty"` + Status301 *int64 `json:"status_301,omitempty"` // Number of responses delivered with status code 302 (Found). - Status302 *int32 `json:"status_302,omitempty"` + Status302 *int64 `json:"status_302,omitempty"` // Number of responses delivered with status code 304 (Not Modified). - Status304 *int32 `json:"status_304,omitempty"` + Status304 *int64 `json:"status_304,omitempty"` // Number of responses delivered with status code 400 (Bad Request). - Status400 *int32 `json:"status_400,omitempty"` + Status400 *int64 `json:"status_400,omitempty"` // Number of responses delivered with status code 401 (Unauthorized). - Status401 *int32 `json:"status_401,omitempty"` + Status401 *int64 `json:"status_401,omitempty"` // Number of responses delivered with status code 403 (Forbidden). - Status403 *int32 `json:"status_403,omitempty"` + Status403 *int64 `json:"status_403,omitempty"` // Number of responses delivered with status code 404 (Not Found). - Status404 *int32 `json:"status_404,omitempty"` + Status404 *int64 `json:"status_404,omitempty"` // Number of responses delivered with status code 416 (Range Not Satisfiable). - Status416 *int32 `json:"status_416,omitempty"` + Status416 *int64 `json:"status_416,omitempty"` // Number of responses delivered with status code 429 (Too Many Requests). - Status429 *int32 `json:"status_429,omitempty"` + Status429 *int64 `json:"status_429,omitempty"` // Number of responses delivered with status code 500 (Internal Server Error). - Status500 *int32 `json:"status_500,omitempty"` + Status500 *int64 `json:"status_500,omitempty"` // Number of responses delivered with status code 501 (Not Implemented). - Status501 *int32 `json:"status_501,omitempty"` + Status501 *int64 `json:"status_501,omitempty"` // Number of responses delivered with status code 502 (Bad Gateway). - Status502 *int32 `json:"status_502,omitempty"` + Status502 *int64 `json:"status_502,omitempty"` // Number of responses delivered with status code 503 (Service Unavailable). - Status503 *int32 `json:"status_503,omitempty"` + Status503 *int64 `json:"status_503,omitempty"` // Number of responses delivered with status code 504 (Gateway Timeout). - Status504 *int32 `json:"status_504,omitempty"` + Status504 *int64 `json:"status_504,omitempty"` // Number of responses delivered with status code 505 (HTTP Version Not Supported). - Status505 *int32 `json:"status_505,omitempty"` + Status505 *int64 `json:"status_505,omitempty"` // Number of requests processed. - Requests *int32 `json:"requests,omitempty"` + Requests *int64 `json:"requests,omitempty"` // Total header bytes delivered. - RespHeaderBytes *int32 `json:"resp_header_bytes,omitempty"` + RespHeaderBytes *int64 `json:"resp_header_bytes,omitempty"` // Total body bytes delivered. - RespBodyBytes *int32 `json:"resp_body_bytes,omitempty"` + RespBodyBytes *int64 `json:"resp_body_bytes,omitempty"` // Total header bytes sent to origin. - BereqHeaderBytes *int32 `json:"bereq_header_bytes,omitempty"` + BereqHeaderBytes *int64 `json:"bereq_header_bytes,omitempty"` // Total body bytes sent to origin. - BereqBodyBytes *int32 `json:"bereq_body_bytes,omitempty"` + BereqBodyBytes *int64 `json:"bereq_body_bytes,omitempty"` // Number of requests sent by end users to Fastly that resulted in a hit at the edge. - EdgeHitRequests *int32 `json:"edge_hit_requests,omitempty"` + EdgeHitRequests *int64 `json:"edge_hit_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a miss at the edge. - EdgeMissRequests *int32 `json:"edge_miss_requests,omitempty"` + EdgeMissRequests *int64 `json:"edge_miss_requests,omitempty"` // Number of requests sent to origin. - OriginFetches *int32 `json:"origin_fetches,omitempty"` + OriginFetches *int64 `json:"origin_fetches,omitempty"` // Total header bytes received from origin. - OriginFetchRespHeaderBytes *int32 `json:"origin_fetch_resp_header_bytes,omitempty"` + OriginFetchRespHeaderBytes *int64 `json:"origin_fetch_resp_header_bytes,omitempty"` // Total body bytes received from origin. - OriginFetchRespBodyBytes *int32 `json:"origin_fetch_resp_body_bytes,omitempty"` + OriginFetchRespBodyBytes *int64 `json:"origin_fetch_resp_body_bytes,omitempty"` // Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes`). - Bandwidth *int32 `json:"bandwidth,omitempty"` + Bandwidth *int64 `json:"bandwidth,omitempty"` // Ratio of cache hits to cache misses at the edge, between 0 and 1 (`edge_hit_requests` / (`edge_hit_requests` + `edge_miss_requests`)). EdgeHitRatio *float32 `json:"edge_hit_ratio,omitempty"` // Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). Previously, Origin Offload used a different formula. [Learn more](https://www.fastly.com/documentation/reference/changes/2024/06/add-origin_offload-metric). OriginOffload *float32 `json:"origin_offload,omitempty"` // Number of responses received from origin with status code 200 (Success). - OriginStatus200 *int32 `json:"origin_status_200,omitempty"` + OriginStatus200 *int64 `json:"origin_status_200,omitempty"` // Number of responses received from origin with status code 204 (No Content). - OriginStatus204 *int32 `json:"origin_status_204,omitempty"` + OriginStatus204 *int64 `json:"origin_status_204,omitempty"` // Number of responses received from origin with status code 206 (Partial Content). - OriginStatus206 *int32 `json:"origin_status_206,omitempty"` + OriginStatus206 *int64 `json:"origin_status_206,omitempty"` // Number of responses received from origin with status code 301 (Moved Permanently). - OriginStatus301 *int32 `json:"origin_status_301,omitempty"` + OriginStatus301 *int64 `json:"origin_status_301,omitempty"` // Number of responses received from origin with status code 302 (Found). - OriginStatus302 *int32 `json:"origin_status_302,omitempty"` + OriginStatus302 *int64 `json:"origin_status_302,omitempty"` // Number of responses received from origin with status code 304 (Not Modified). - OriginStatus304 *int32 `json:"origin_status_304,omitempty"` + OriginStatus304 *int64 `json:"origin_status_304,omitempty"` // Number of responses received from origin with status code 400 (Bad Request). - OriginStatus400 *int32 `json:"origin_status_400,omitempty"` + OriginStatus400 *int64 `json:"origin_status_400,omitempty"` // Number of responses received from origin with status code 401 (Unauthorized). - OriginStatus401 *int32 `json:"origin_status_401,omitempty"` + OriginStatus401 *int64 `json:"origin_status_401,omitempty"` // Number of responses received from origin with status code 403 (Forbidden). - OriginStatus403 *int32 `json:"origin_status_403,omitempty"` + OriginStatus403 *int64 `json:"origin_status_403,omitempty"` // Number of responses received from origin with status code 404 (Not Found). - OriginStatus404 *int32 `json:"origin_status_404,omitempty"` + OriginStatus404 *int64 `json:"origin_status_404,omitempty"` // Number of responses received from origin with status code 416 (Range Not Satisfiable). - OriginStatus416 *int32 `json:"origin_status_416,omitempty"` + OriginStatus416 *int64 `json:"origin_status_416,omitempty"` // Number of responses received from origin with status code 429 (Too Many Requests). - OriginStatus429 *int32 `json:"origin_status_429,omitempty"` + OriginStatus429 *int64 `json:"origin_status_429,omitempty"` // Number of responses received from origin with status code 500 (Internal Server Error). - OriginStatus500 *int32 `json:"origin_status_500,omitempty"` + OriginStatus500 *int64 `json:"origin_status_500,omitempty"` // Number of responses received from origin with status code 501 (Not Implemented). - OriginStatus501 *int32 `json:"origin_status_501,omitempty"` + OriginStatus501 *int64 `json:"origin_status_501,omitempty"` // Number of responses received from origin with status code 502 (Bad Gateway). - OriginStatus502 *int32 `json:"origin_status_502,omitempty"` + OriginStatus502 *int64 `json:"origin_status_502,omitempty"` // Number of responses received from origin with status code 503 (Service Unavailable). - OriginStatus503 *int32 `json:"origin_status_503,omitempty"` + OriginStatus503 *int64 `json:"origin_status_503,omitempty"` // Number of responses received from origin with status code 504 (Gateway Timeout). - OriginStatus504 *int32 `json:"origin_status_504,omitempty"` + OriginStatus504 *int64 `json:"origin_status_504,omitempty"` // Number of responses received from origin with status code 505 (HTTP Version Not Supported). - OriginStatus505 *int32 `json:"origin_status_505,omitempty"` + OriginStatus505 *int64 `json:"origin_status_505,omitempty"` // Number of \"Informational\" category status codes received from origin. - OriginStatus1xx *int32 `json:"origin_status_1xx,omitempty"` + OriginStatus1xx *int64 `json:"origin_status_1xx,omitempty"` // Number of \"Success\" status codes received from origin. - OriginStatus2xx *int32 `json:"origin_status_2xx,omitempty"` + OriginStatus2xx *int64 `json:"origin_status_2xx,omitempty"` // Number of \"Redirection\" codes received from origin. - OriginStatus3xx *int32 `json:"origin_status_3xx,omitempty"` + OriginStatus3xx *int64 `json:"origin_status_3xx,omitempty"` // Number of \"Client Error\" codes received from origin. - OriginStatus4xx *int32 `json:"origin_status_4xx,omitempty"` + OriginStatus4xx *int64 `json:"origin_status_4xx,omitempty"` // Number of \"Server Error\" codes received from origin. - OriginStatus5xx *int32 `json:"origin_status_5xx,omitempty"` + OriginStatus5xx *int64 `json:"origin_status_5xx,omitempty"` AdditionalProperties map[string]any } @@ -165,9 +165,9 @@ func NewDomainInspectorMeasurementsWithDefaults() *DomainInspectorMeasurements { } // GetEdgeRequests returns the EdgeRequests field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetEdgeRequests() int32 { +func (o *DomainInspectorMeasurements) GetEdgeRequests() int64 { if o == nil || o.EdgeRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRequests @@ -175,7 +175,7 @@ func (o *DomainInspectorMeasurements) GetEdgeRequests() int32 { // GetEdgeRequestsOk returns a tuple with the EdgeRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetEdgeRequestsOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetEdgeRequestsOk() (*int64, bool) { if o == nil || o.EdgeRequests == nil { return nil, false } @@ -191,15 +191,15 @@ func (o *DomainInspectorMeasurements) HasEdgeRequests() bool { return false } -// SetEdgeRequests gets a reference to the given int32 and assigns it to the EdgeRequests field. -func (o *DomainInspectorMeasurements) SetEdgeRequests(v int32) { +// SetEdgeRequests gets a reference to the given int64 and assigns it to the EdgeRequests field. +func (o *DomainInspectorMeasurements) SetEdgeRequests(v int64) { o.EdgeRequests = &v } // GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytes() int32 { +func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytes() int64 { if o == nil || o.EdgeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespHeaderBytes @@ -207,7 +207,7 @@ func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytes() int32 { // GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetEdgeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeRespHeaderBytes == nil { return nil, false } @@ -223,15 +223,15 @@ func (o *DomainInspectorMeasurements) HasEdgeRespHeaderBytes() bool { return false } -// SetEdgeRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeRespHeaderBytes field. -func (o *DomainInspectorMeasurements) SetEdgeRespHeaderBytes(v int32) { +// SetEdgeRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeRespHeaderBytes field. +func (o *DomainInspectorMeasurements) SetEdgeRespHeaderBytes(v int64) { o.EdgeRespHeaderBytes = &v } // GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytes() int32 { +func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytes() int64 { if o == nil || o.EdgeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespBodyBytes @@ -239,7 +239,7 @@ func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytes() int32 { // GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetEdgeRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeRespBodyBytes == nil { return nil, false } @@ -255,15 +255,15 @@ func (o *DomainInspectorMeasurements) HasEdgeRespBodyBytes() bool { return false } -// SetEdgeRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeRespBodyBytes field. -func (o *DomainInspectorMeasurements) SetEdgeRespBodyBytes(v int32) { +// SetEdgeRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeRespBodyBytes field. +func (o *DomainInspectorMeasurements) SetEdgeRespBodyBytes(v int64) { o.EdgeRespBodyBytes = &v } // GetStatus1xx returns the Status1xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus1xx() int32 { +func (o *DomainInspectorMeasurements) GetStatus1xx() int64 { if o == nil || o.Status1xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status1xx @@ -271,7 +271,7 @@ func (o *DomainInspectorMeasurements) GetStatus1xx() int32 { // GetStatus1xxOk returns a tuple with the Status1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus1xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus1xxOk() (*int64, bool) { if o == nil || o.Status1xx == nil { return nil, false } @@ -287,15 +287,15 @@ func (o *DomainInspectorMeasurements) HasStatus1xx() bool { return false } -// SetStatus1xx gets a reference to the given int32 and assigns it to the Status1xx field. -func (o *DomainInspectorMeasurements) SetStatus1xx(v int32) { +// SetStatus1xx gets a reference to the given int64 and assigns it to the Status1xx field. +func (o *DomainInspectorMeasurements) SetStatus1xx(v int64) { o.Status1xx = &v } // GetStatus2xx returns the Status2xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus2xx() int32 { +func (o *DomainInspectorMeasurements) GetStatus2xx() int64 { if o == nil || o.Status2xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status2xx @@ -303,7 +303,7 @@ func (o *DomainInspectorMeasurements) GetStatus2xx() int32 { // GetStatus2xxOk returns a tuple with the Status2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus2xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus2xxOk() (*int64, bool) { if o == nil || o.Status2xx == nil { return nil, false } @@ -319,15 +319,15 @@ func (o *DomainInspectorMeasurements) HasStatus2xx() bool { return false } -// SetStatus2xx gets a reference to the given int32 and assigns it to the Status2xx field. -func (o *DomainInspectorMeasurements) SetStatus2xx(v int32) { +// SetStatus2xx gets a reference to the given int64 and assigns it to the Status2xx field. +func (o *DomainInspectorMeasurements) SetStatus2xx(v int64) { o.Status2xx = &v } // GetStatus3xx returns the Status3xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus3xx() int32 { +func (o *DomainInspectorMeasurements) GetStatus3xx() int64 { if o == nil || o.Status3xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status3xx @@ -335,7 +335,7 @@ func (o *DomainInspectorMeasurements) GetStatus3xx() int32 { // GetStatus3xxOk returns a tuple with the Status3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus3xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus3xxOk() (*int64, bool) { if o == nil || o.Status3xx == nil { return nil, false } @@ -351,15 +351,15 @@ func (o *DomainInspectorMeasurements) HasStatus3xx() bool { return false } -// SetStatus3xx gets a reference to the given int32 and assigns it to the Status3xx field. -func (o *DomainInspectorMeasurements) SetStatus3xx(v int32) { +// SetStatus3xx gets a reference to the given int64 and assigns it to the Status3xx field. +func (o *DomainInspectorMeasurements) SetStatus3xx(v int64) { o.Status3xx = &v } // GetStatus4xx returns the Status4xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus4xx() int32 { +func (o *DomainInspectorMeasurements) GetStatus4xx() int64 { if o == nil || o.Status4xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status4xx @@ -367,7 +367,7 @@ func (o *DomainInspectorMeasurements) GetStatus4xx() int32 { // GetStatus4xxOk returns a tuple with the Status4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus4xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus4xxOk() (*int64, bool) { if o == nil || o.Status4xx == nil { return nil, false } @@ -383,15 +383,15 @@ func (o *DomainInspectorMeasurements) HasStatus4xx() bool { return false } -// SetStatus4xx gets a reference to the given int32 and assigns it to the Status4xx field. -func (o *DomainInspectorMeasurements) SetStatus4xx(v int32) { +// SetStatus4xx gets a reference to the given int64 and assigns it to the Status4xx field. +func (o *DomainInspectorMeasurements) SetStatus4xx(v int64) { o.Status4xx = &v } // GetStatus5xx returns the Status5xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus5xx() int32 { +func (o *DomainInspectorMeasurements) GetStatus5xx() int64 { if o == nil || o.Status5xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status5xx @@ -399,7 +399,7 @@ func (o *DomainInspectorMeasurements) GetStatus5xx() int32 { // GetStatus5xxOk returns a tuple with the Status5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus5xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus5xxOk() (*int64, bool) { if o == nil || o.Status5xx == nil { return nil, false } @@ -415,15 +415,15 @@ func (o *DomainInspectorMeasurements) HasStatus5xx() bool { return false } -// SetStatus5xx gets a reference to the given int32 and assigns it to the Status5xx field. -func (o *DomainInspectorMeasurements) SetStatus5xx(v int32) { +// SetStatus5xx gets a reference to the given int64 and assigns it to the Status5xx field. +func (o *DomainInspectorMeasurements) SetStatus5xx(v int64) { o.Status5xx = &v } // GetStatus200 returns the Status200 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus200() int32 { +func (o *DomainInspectorMeasurements) GetStatus200() int64 { if o == nil || o.Status200 == nil { - var ret int32 + var ret int64 return ret } return *o.Status200 @@ -431,7 +431,7 @@ func (o *DomainInspectorMeasurements) GetStatus200() int32 { // GetStatus200Ok returns a tuple with the Status200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus200Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus200Ok() (*int64, bool) { if o == nil || o.Status200 == nil { return nil, false } @@ -447,15 +447,15 @@ func (o *DomainInspectorMeasurements) HasStatus200() bool { return false } -// SetStatus200 gets a reference to the given int32 and assigns it to the Status200 field. -func (o *DomainInspectorMeasurements) SetStatus200(v int32) { +// SetStatus200 gets a reference to the given int64 and assigns it to the Status200 field. +func (o *DomainInspectorMeasurements) SetStatus200(v int64) { o.Status200 = &v } // GetStatus204 returns the Status204 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus204() int32 { +func (o *DomainInspectorMeasurements) GetStatus204() int64 { if o == nil || o.Status204 == nil { - var ret int32 + var ret int64 return ret } return *o.Status204 @@ -463,7 +463,7 @@ func (o *DomainInspectorMeasurements) GetStatus204() int32 { // GetStatus204Ok returns a tuple with the Status204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus204Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus204Ok() (*int64, bool) { if o == nil || o.Status204 == nil { return nil, false } @@ -479,15 +479,15 @@ func (o *DomainInspectorMeasurements) HasStatus204() bool { return false } -// SetStatus204 gets a reference to the given int32 and assigns it to the Status204 field. -func (o *DomainInspectorMeasurements) SetStatus204(v int32) { +// SetStatus204 gets a reference to the given int64 and assigns it to the Status204 field. +func (o *DomainInspectorMeasurements) SetStatus204(v int64) { o.Status204 = &v } // GetStatus206 returns the Status206 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus206() int32 { +func (o *DomainInspectorMeasurements) GetStatus206() int64 { if o == nil || o.Status206 == nil { - var ret int32 + var ret int64 return ret } return *o.Status206 @@ -495,7 +495,7 @@ func (o *DomainInspectorMeasurements) GetStatus206() int32 { // GetStatus206Ok returns a tuple with the Status206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus206Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus206Ok() (*int64, bool) { if o == nil || o.Status206 == nil { return nil, false } @@ -511,15 +511,15 @@ func (o *DomainInspectorMeasurements) HasStatus206() bool { return false } -// SetStatus206 gets a reference to the given int32 and assigns it to the Status206 field. -func (o *DomainInspectorMeasurements) SetStatus206(v int32) { +// SetStatus206 gets a reference to the given int64 and assigns it to the Status206 field. +func (o *DomainInspectorMeasurements) SetStatus206(v int64) { o.Status206 = &v } // GetStatus301 returns the Status301 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus301() int32 { +func (o *DomainInspectorMeasurements) GetStatus301() int64 { if o == nil || o.Status301 == nil { - var ret int32 + var ret int64 return ret } return *o.Status301 @@ -527,7 +527,7 @@ func (o *DomainInspectorMeasurements) GetStatus301() int32 { // GetStatus301Ok returns a tuple with the Status301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus301Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus301Ok() (*int64, bool) { if o == nil || o.Status301 == nil { return nil, false } @@ -543,15 +543,15 @@ func (o *DomainInspectorMeasurements) HasStatus301() bool { return false } -// SetStatus301 gets a reference to the given int32 and assigns it to the Status301 field. -func (o *DomainInspectorMeasurements) SetStatus301(v int32) { +// SetStatus301 gets a reference to the given int64 and assigns it to the Status301 field. +func (o *DomainInspectorMeasurements) SetStatus301(v int64) { o.Status301 = &v } // GetStatus302 returns the Status302 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus302() int32 { +func (o *DomainInspectorMeasurements) GetStatus302() int64 { if o == nil || o.Status302 == nil { - var ret int32 + var ret int64 return ret } return *o.Status302 @@ -559,7 +559,7 @@ func (o *DomainInspectorMeasurements) GetStatus302() int32 { // GetStatus302Ok returns a tuple with the Status302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus302Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus302Ok() (*int64, bool) { if o == nil || o.Status302 == nil { return nil, false } @@ -575,15 +575,15 @@ func (o *DomainInspectorMeasurements) HasStatus302() bool { return false } -// SetStatus302 gets a reference to the given int32 and assigns it to the Status302 field. -func (o *DomainInspectorMeasurements) SetStatus302(v int32) { +// SetStatus302 gets a reference to the given int64 and assigns it to the Status302 field. +func (o *DomainInspectorMeasurements) SetStatus302(v int64) { o.Status302 = &v } // GetStatus304 returns the Status304 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus304() int32 { +func (o *DomainInspectorMeasurements) GetStatus304() int64 { if o == nil || o.Status304 == nil { - var ret int32 + var ret int64 return ret } return *o.Status304 @@ -591,7 +591,7 @@ func (o *DomainInspectorMeasurements) GetStatus304() int32 { // GetStatus304Ok returns a tuple with the Status304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus304Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus304Ok() (*int64, bool) { if o == nil || o.Status304 == nil { return nil, false } @@ -607,15 +607,15 @@ func (o *DomainInspectorMeasurements) HasStatus304() bool { return false } -// SetStatus304 gets a reference to the given int32 and assigns it to the Status304 field. -func (o *DomainInspectorMeasurements) SetStatus304(v int32) { +// SetStatus304 gets a reference to the given int64 and assigns it to the Status304 field. +func (o *DomainInspectorMeasurements) SetStatus304(v int64) { o.Status304 = &v } // GetStatus400 returns the Status400 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus400() int32 { +func (o *DomainInspectorMeasurements) GetStatus400() int64 { if o == nil || o.Status400 == nil { - var ret int32 + var ret int64 return ret } return *o.Status400 @@ -623,7 +623,7 @@ func (o *DomainInspectorMeasurements) GetStatus400() int32 { // GetStatus400Ok returns a tuple with the Status400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus400Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus400Ok() (*int64, bool) { if o == nil || o.Status400 == nil { return nil, false } @@ -639,15 +639,15 @@ func (o *DomainInspectorMeasurements) HasStatus400() bool { return false } -// SetStatus400 gets a reference to the given int32 and assigns it to the Status400 field. -func (o *DomainInspectorMeasurements) SetStatus400(v int32) { +// SetStatus400 gets a reference to the given int64 and assigns it to the Status400 field. +func (o *DomainInspectorMeasurements) SetStatus400(v int64) { o.Status400 = &v } // GetStatus401 returns the Status401 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus401() int32 { +func (o *DomainInspectorMeasurements) GetStatus401() int64 { if o == nil || o.Status401 == nil { - var ret int32 + var ret int64 return ret } return *o.Status401 @@ -655,7 +655,7 @@ func (o *DomainInspectorMeasurements) GetStatus401() int32 { // GetStatus401Ok returns a tuple with the Status401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus401Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus401Ok() (*int64, bool) { if o == nil || o.Status401 == nil { return nil, false } @@ -671,15 +671,15 @@ func (o *DomainInspectorMeasurements) HasStatus401() bool { return false } -// SetStatus401 gets a reference to the given int32 and assigns it to the Status401 field. -func (o *DomainInspectorMeasurements) SetStatus401(v int32) { +// SetStatus401 gets a reference to the given int64 and assigns it to the Status401 field. +func (o *DomainInspectorMeasurements) SetStatus401(v int64) { o.Status401 = &v } // GetStatus403 returns the Status403 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus403() int32 { +func (o *DomainInspectorMeasurements) GetStatus403() int64 { if o == nil || o.Status403 == nil { - var ret int32 + var ret int64 return ret } return *o.Status403 @@ -687,7 +687,7 @@ func (o *DomainInspectorMeasurements) GetStatus403() int32 { // GetStatus403Ok returns a tuple with the Status403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus403Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus403Ok() (*int64, bool) { if o == nil || o.Status403 == nil { return nil, false } @@ -703,15 +703,15 @@ func (o *DomainInspectorMeasurements) HasStatus403() bool { return false } -// SetStatus403 gets a reference to the given int32 and assigns it to the Status403 field. -func (o *DomainInspectorMeasurements) SetStatus403(v int32) { +// SetStatus403 gets a reference to the given int64 and assigns it to the Status403 field. +func (o *DomainInspectorMeasurements) SetStatus403(v int64) { o.Status403 = &v } // GetStatus404 returns the Status404 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus404() int32 { +func (o *DomainInspectorMeasurements) GetStatus404() int64 { if o == nil || o.Status404 == nil { - var ret int32 + var ret int64 return ret } return *o.Status404 @@ -719,7 +719,7 @@ func (o *DomainInspectorMeasurements) GetStatus404() int32 { // GetStatus404Ok returns a tuple with the Status404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus404Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus404Ok() (*int64, bool) { if o == nil || o.Status404 == nil { return nil, false } @@ -735,15 +735,15 @@ func (o *DomainInspectorMeasurements) HasStatus404() bool { return false } -// SetStatus404 gets a reference to the given int32 and assigns it to the Status404 field. -func (o *DomainInspectorMeasurements) SetStatus404(v int32) { +// SetStatus404 gets a reference to the given int64 and assigns it to the Status404 field. +func (o *DomainInspectorMeasurements) SetStatus404(v int64) { o.Status404 = &v } // GetStatus416 returns the Status416 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus416() int32 { +func (o *DomainInspectorMeasurements) GetStatus416() int64 { if o == nil || o.Status416 == nil { - var ret int32 + var ret int64 return ret } return *o.Status416 @@ -751,7 +751,7 @@ func (o *DomainInspectorMeasurements) GetStatus416() int32 { // GetStatus416Ok returns a tuple with the Status416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus416Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus416Ok() (*int64, bool) { if o == nil || o.Status416 == nil { return nil, false } @@ -767,15 +767,15 @@ func (o *DomainInspectorMeasurements) HasStatus416() bool { return false } -// SetStatus416 gets a reference to the given int32 and assigns it to the Status416 field. -func (o *DomainInspectorMeasurements) SetStatus416(v int32) { +// SetStatus416 gets a reference to the given int64 and assigns it to the Status416 field. +func (o *DomainInspectorMeasurements) SetStatus416(v int64) { o.Status416 = &v } // GetStatus429 returns the Status429 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus429() int32 { +func (o *DomainInspectorMeasurements) GetStatus429() int64 { if o == nil || o.Status429 == nil { - var ret int32 + var ret int64 return ret } return *o.Status429 @@ -783,7 +783,7 @@ func (o *DomainInspectorMeasurements) GetStatus429() int32 { // GetStatus429Ok returns a tuple with the Status429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus429Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus429Ok() (*int64, bool) { if o == nil || o.Status429 == nil { return nil, false } @@ -799,15 +799,15 @@ func (o *DomainInspectorMeasurements) HasStatus429() bool { return false } -// SetStatus429 gets a reference to the given int32 and assigns it to the Status429 field. -func (o *DomainInspectorMeasurements) SetStatus429(v int32) { +// SetStatus429 gets a reference to the given int64 and assigns it to the Status429 field. +func (o *DomainInspectorMeasurements) SetStatus429(v int64) { o.Status429 = &v } // GetStatus500 returns the Status500 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus500() int32 { +func (o *DomainInspectorMeasurements) GetStatus500() int64 { if o == nil || o.Status500 == nil { - var ret int32 + var ret int64 return ret } return *o.Status500 @@ -815,7 +815,7 @@ func (o *DomainInspectorMeasurements) GetStatus500() int32 { // GetStatus500Ok returns a tuple with the Status500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus500Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus500Ok() (*int64, bool) { if o == nil || o.Status500 == nil { return nil, false } @@ -831,15 +831,15 @@ func (o *DomainInspectorMeasurements) HasStatus500() bool { return false } -// SetStatus500 gets a reference to the given int32 and assigns it to the Status500 field. -func (o *DomainInspectorMeasurements) SetStatus500(v int32) { +// SetStatus500 gets a reference to the given int64 and assigns it to the Status500 field. +func (o *DomainInspectorMeasurements) SetStatus500(v int64) { o.Status500 = &v } // GetStatus501 returns the Status501 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus501() int32 { +func (o *DomainInspectorMeasurements) GetStatus501() int64 { if o == nil || o.Status501 == nil { - var ret int32 + var ret int64 return ret } return *o.Status501 @@ -847,7 +847,7 @@ func (o *DomainInspectorMeasurements) GetStatus501() int32 { // GetStatus501Ok returns a tuple with the Status501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus501Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus501Ok() (*int64, bool) { if o == nil || o.Status501 == nil { return nil, false } @@ -863,15 +863,15 @@ func (o *DomainInspectorMeasurements) HasStatus501() bool { return false } -// SetStatus501 gets a reference to the given int32 and assigns it to the Status501 field. -func (o *DomainInspectorMeasurements) SetStatus501(v int32) { +// SetStatus501 gets a reference to the given int64 and assigns it to the Status501 field. +func (o *DomainInspectorMeasurements) SetStatus501(v int64) { o.Status501 = &v } // GetStatus502 returns the Status502 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus502() int32 { +func (o *DomainInspectorMeasurements) GetStatus502() int64 { if o == nil || o.Status502 == nil { - var ret int32 + var ret int64 return ret } return *o.Status502 @@ -879,7 +879,7 @@ func (o *DomainInspectorMeasurements) GetStatus502() int32 { // GetStatus502Ok returns a tuple with the Status502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus502Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus502Ok() (*int64, bool) { if o == nil || o.Status502 == nil { return nil, false } @@ -895,15 +895,15 @@ func (o *DomainInspectorMeasurements) HasStatus502() bool { return false } -// SetStatus502 gets a reference to the given int32 and assigns it to the Status502 field. -func (o *DomainInspectorMeasurements) SetStatus502(v int32) { +// SetStatus502 gets a reference to the given int64 and assigns it to the Status502 field. +func (o *DomainInspectorMeasurements) SetStatus502(v int64) { o.Status502 = &v } // GetStatus503 returns the Status503 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus503() int32 { +func (o *DomainInspectorMeasurements) GetStatus503() int64 { if o == nil || o.Status503 == nil { - var ret int32 + var ret int64 return ret } return *o.Status503 @@ -911,7 +911,7 @@ func (o *DomainInspectorMeasurements) GetStatus503() int32 { // GetStatus503Ok returns a tuple with the Status503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus503Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus503Ok() (*int64, bool) { if o == nil || o.Status503 == nil { return nil, false } @@ -927,15 +927,15 @@ func (o *DomainInspectorMeasurements) HasStatus503() bool { return false } -// SetStatus503 gets a reference to the given int32 and assigns it to the Status503 field. -func (o *DomainInspectorMeasurements) SetStatus503(v int32) { +// SetStatus503 gets a reference to the given int64 and assigns it to the Status503 field. +func (o *DomainInspectorMeasurements) SetStatus503(v int64) { o.Status503 = &v } // GetStatus504 returns the Status504 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus504() int32 { +func (o *DomainInspectorMeasurements) GetStatus504() int64 { if o == nil || o.Status504 == nil { - var ret int32 + var ret int64 return ret } return *o.Status504 @@ -943,7 +943,7 @@ func (o *DomainInspectorMeasurements) GetStatus504() int32 { // GetStatus504Ok returns a tuple with the Status504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus504Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus504Ok() (*int64, bool) { if o == nil || o.Status504 == nil { return nil, false } @@ -959,15 +959,15 @@ func (o *DomainInspectorMeasurements) HasStatus504() bool { return false } -// SetStatus504 gets a reference to the given int32 and assigns it to the Status504 field. -func (o *DomainInspectorMeasurements) SetStatus504(v int32) { +// SetStatus504 gets a reference to the given int64 and assigns it to the Status504 field. +func (o *DomainInspectorMeasurements) SetStatus504(v int64) { o.Status504 = &v } // GetStatus505 returns the Status505 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetStatus505() int32 { +func (o *DomainInspectorMeasurements) GetStatus505() int64 { if o == nil || o.Status505 == nil { - var ret int32 + var ret int64 return ret } return *o.Status505 @@ -975,7 +975,7 @@ func (o *DomainInspectorMeasurements) GetStatus505() int32 { // GetStatus505Ok returns a tuple with the Status505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetStatus505Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetStatus505Ok() (*int64, bool) { if o == nil || o.Status505 == nil { return nil, false } @@ -991,15 +991,15 @@ func (o *DomainInspectorMeasurements) HasStatus505() bool { return false } -// SetStatus505 gets a reference to the given int32 and assigns it to the Status505 field. -func (o *DomainInspectorMeasurements) SetStatus505(v int32) { +// SetStatus505 gets a reference to the given int64 and assigns it to the Status505 field. +func (o *DomainInspectorMeasurements) SetStatus505(v int64) { o.Status505 = &v } // GetRequests returns the Requests field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetRequests() int32 { +func (o *DomainInspectorMeasurements) GetRequests() int64 { if o == nil || o.Requests == nil { - var ret int32 + var ret int64 return ret } return *o.Requests @@ -1007,7 +1007,7 @@ func (o *DomainInspectorMeasurements) GetRequests() int32 { // GetRequestsOk returns a tuple with the Requests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetRequestsOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetRequestsOk() (*int64, bool) { if o == nil || o.Requests == nil { return nil, false } @@ -1023,15 +1023,15 @@ func (o *DomainInspectorMeasurements) HasRequests() bool { return false } -// SetRequests gets a reference to the given int32 and assigns it to the Requests field. -func (o *DomainInspectorMeasurements) SetRequests(v int32) { +// SetRequests gets a reference to the given int64 and assigns it to the Requests field. +func (o *DomainInspectorMeasurements) SetRequests(v int64) { o.Requests = &v } // GetRespHeaderBytes returns the RespHeaderBytes field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetRespHeaderBytes() int32 { +func (o *DomainInspectorMeasurements) GetRespHeaderBytes() int64 { if o == nil || o.RespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespHeaderBytes @@ -1039,7 +1039,7 @@ func (o *DomainInspectorMeasurements) GetRespHeaderBytes() int32 { // GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetRespHeaderBytesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetRespHeaderBytesOk() (*int64, bool) { if o == nil || o.RespHeaderBytes == nil { return nil, false } @@ -1055,15 +1055,15 @@ func (o *DomainInspectorMeasurements) HasRespHeaderBytes() bool { return false } -// SetRespHeaderBytes gets a reference to the given int32 and assigns it to the RespHeaderBytes field. -func (o *DomainInspectorMeasurements) SetRespHeaderBytes(v int32) { +// SetRespHeaderBytes gets a reference to the given int64 and assigns it to the RespHeaderBytes field. +func (o *DomainInspectorMeasurements) SetRespHeaderBytes(v int64) { o.RespHeaderBytes = &v } // GetRespBodyBytes returns the RespBodyBytes field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetRespBodyBytes() int32 { +func (o *DomainInspectorMeasurements) GetRespBodyBytes() int64 { if o == nil || o.RespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespBodyBytes @@ -1071,7 +1071,7 @@ func (o *DomainInspectorMeasurements) GetRespBodyBytes() int32 { // GetRespBodyBytesOk returns a tuple with the RespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetRespBodyBytesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetRespBodyBytesOk() (*int64, bool) { if o == nil || o.RespBodyBytes == nil { return nil, false } @@ -1087,15 +1087,15 @@ func (o *DomainInspectorMeasurements) HasRespBodyBytes() bool { return false } -// SetRespBodyBytes gets a reference to the given int32 and assigns it to the RespBodyBytes field. -func (o *DomainInspectorMeasurements) SetRespBodyBytes(v int32) { +// SetRespBodyBytes gets a reference to the given int64 and assigns it to the RespBodyBytes field. +func (o *DomainInspectorMeasurements) SetRespBodyBytes(v int64) { o.RespBodyBytes = &v } // GetBereqHeaderBytes returns the BereqHeaderBytes field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetBereqHeaderBytes() int32 { +func (o *DomainInspectorMeasurements) GetBereqHeaderBytes() int64 { if o == nil || o.BereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqHeaderBytes @@ -1103,7 +1103,7 @@ func (o *DomainInspectorMeasurements) GetBereqHeaderBytes() int32 { // GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetBereqHeaderBytesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.BereqHeaderBytes == nil { return nil, false } @@ -1119,15 +1119,15 @@ func (o *DomainInspectorMeasurements) HasBereqHeaderBytes() bool { return false } -// SetBereqHeaderBytes gets a reference to the given int32 and assigns it to the BereqHeaderBytes field. -func (o *DomainInspectorMeasurements) SetBereqHeaderBytes(v int32) { +// SetBereqHeaderBytes gets a reference to the given int64 and assigns it to the BereqHeaderBytes field. +func (o *DomainInspectorMeasurements) SetBereqHeaderBytes(v int64) { o.BereqHeaderBytes = &v } // GetBereqBodyBytes returns the BereqBodyBytes field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetBereqBodyBytes() int32 { +func (o *DomainInspectorMeasurements) GetBereqBodyBytes() int64 { if o == nil || o.BereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqBodyBytes @@ -1135,7 +1135,7 @@ func (o *DomainInspectorMeasurements) GetBereqBodyBytes() int32 { // GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetBereqBodyBytesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetBereqBodyBytesOk() (*int64, bool) { if o == nil || o.BereqBodyBytes == nil { return nil, false } @@ -1151,15 +1151,15 @@ func (o *DomainInspectorMeasurements) HasBereqBodyBytes() bool { return false } -// SetBereqBodyBytes gets a reference to the given int32 and assigns it to the BereqBodyBytes field. -func (o *DomainInspectorMeasurements) SetBereqBodyBytes(v int32) { +// SetBereqBodyBytes gets a reference to the given int64 and assigns it to the BereqBodyBytes field. +func (o *DomainInspectorMeasurements) SetBereqBodyBytes(v int64) { o.BereqBodyBytes = &v } // GetEdgeHitRequests returns the EdgeHitRequests field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetEdgeHitRequests() int32 { +func (o *DomainInspectorMeasurements) GetEdgeHitRequests() int64 { if o == nil || o.EdgeHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRequests @@ -1167,7 +1167,7 @@ func (o *DomainInspectorMeasurements) GetEdgeHitRequests() int32 { // GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetEdgeHitRequestsOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetEdgeHitRequestsOk() (*int64, bool) { if o == nil || o.EdgeHitRequests == nil { return nil, false } @@ -1183,15 +1183,15 @@ func (o *DomainInspectorMeasurements) HasEdgeHitRequests() bool { return false } -// SetEdgeHitRequests gets a reference to the given int32 and assigns it to the EdgeHitRequests field. -func (o *DomainInspectorMeasurements) SetEdgeHitRequests(v int32) { +// SetEdgeHitRequests gets a reference to the given int64 and assigns it to the EdgeHitRequests field. +func (o *DomainInspectorMeasurements) SetEdgeHitRequests(v int64) { o.EdgeHitRequests = &v } // GetEdgeMissRequests returns the EdgeMissRequests field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetEdgeMissRequests() int32 { +func (o *DomainInspectorMeasurements) GetEdgeMissRequests() int64 { if o == nil || o.EdgeMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRequests @@ -1199,7 +1199,7 @@ func (o *DomainInspectorMeasurements) GetEdgeMissRequests() int32 { // GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetEdgeMissRequestsOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetEdgeMissRequestsOk() (*int64, bool) { if o == nil || o.EdgeMissRequests == nil { return nil, false } @@ -1215,15 +1215,15 @@ func (o *DomainInspectorMeasurements) HasEdgeMissRequests() bool { return false } -// SetEdgeMissRequests gets a reference to the given int32 and assigns it to the EdgeMissRequests field. -func (o *DomainInspectorMeasurements) SetEdgeMissRequests(v int32) { +// SetEdgeMissRequests gets a reference to the given int64 and assigns it to the EdgeMissRequests field. +func (o *DomainInspectorMeasurements) SetEdgeMissRequests(v int64) { o.EdgeMissRequests = &v } // GetOriginFetches returns the OriginFetches field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginFetches() int32 { +func (o *DomainInspectorMeasurements) GetOriginFetches() int64 { if o == nil || o.OriginFetches == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetches @@ -1231,7 +1231,7 @@ func (o *DomainInspectorMeasurements) GetOriginFetches() int32 { // GetOriginFetchesOk returns a tuple with the OriginFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginFetchesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginFetchesOk() (*int64, bool) { if o == nil || o.OriginFetches == nil { return nil, false } @@ -1247,15 +1247,15 @@ func (o *DomainInspectorMeasurements) HasOriginFetches() bool { return false } -// SetOriginFetches gets a reference to the given int32 and assigns it to the OriginFetches field. -func (o *DomainInspectorMeasurements) SetOriginFetches(v int32) { +// SetOriginFetches gets a reference to the given int64 and assigns it to the OriginFetches field. +func (o *DomainInspectorMeasurements) SetOriginFetches(v int64) { o.OriginFetches = &v } // GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytes() int32 { +func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytes() int64 { if o == nil || o.OriginFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespHeaderBytes @@ -1263,7 +1263,7 @@ func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytes() int32 { // GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespHeaderBytes == nil { return nil, false } @@ -1279,15 +1279,15 @@ func (o *DomainInspectorMeasurements) HasOriginFetchRespHeaderBytes() bool { return false } -// SetOriginFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the OriginFetchRespHeaderBytes field. -func (o *DomainInspectorMeasurements) SetOriginFetchRespHeaderBytes(v int32) { +// SetOriginFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the OriginFetchRespHeaderBytes field. +func (o *DomainInspectorMeasurements) SetOriginFetchRespHeaderBytes(v int64) { o.OriginFetchRespHeaderBytes = &v } // GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytes() int32 { +func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytes() int64 { if o == nil || o.OriginFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespBodyBytes @@ -1295,7 +1295,7 @@ func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytes() int32 { // GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytesOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespBodyBytes == nil { return nil, false } @@ -1311,15 +1311,15 @@ func (o *DomainInspectorMeasurements) HasOriginFetchRespBodyBytes() bool { return false } -// SetOriginFetchRespBodyBytes gets a reference to the given int32 and assigns it to the OriginFetchRespBodyBytes field. -func (o *DomainInspectorMeasurements) SetOriginFetchRespBodyBytes(v int32) { +// SetOriginFetchRespBodyBytes gets a reference to the given int64 and assigns it to the OriginFetchRespBodyBytes field. +func (o *DomainInspectorMeasurements) SetOriginFetchRespBodyBytes(v int64) { o.OriginFetchRespBodyBytes = &v } // GetBandwidth returns the Bandwidth field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetBandwidth() int32 { +func (o *DomainInspectorMeasurements) GetBandwidth() int64 { if o == nil || o.Bandwidth == nil { - var ret int32 + var ret int64 return ret } return *o.Bandwidth @@ -1327,7 +1327,7 @@ func (o *DomainInspectorMeasurements) GetBandwidth() int32 { // GetBandwidthOk returns a tuple with the Bandwidth field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetBandwidthOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetBandwidthOk() (*int64, bool) { if o == nil || o.Bandwidth == nil { return nil, false } @@ -1343,8 +1343,8 @@ func (o *DomainInspectorMeasurements) HasBandwidth() bool { return false } -// SetBandwidth gets a reference to the given int32 and assigns it to the Bandwidth field. -func (o *DomainInspectorMeasurements) SetBandwidth(v int32) { +// SetBandwidth gets a reference to the given int64 and assigns it to the Bandwidth field. +func (o *DomainInspectorMeasurements) SetBandwidth(v int64) { o.Bandwidth = &v } @@ -1413,9 +1413,9 @@ func (o *DomainInspectorMeasurements) SetOriginOffload(v float32) { } // GetOriginStatus200 returns the OriginStatus200 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus200() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus200() int64 { if o == nil || o.OriginStatus200 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus200 @@ -1423,7 +1423,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus200() int32 { // GetOriginStatus200Ok returns a tuple with the OriginStatus200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus200Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus200Ok() (*int64, bool) { if o == nil || o.OriginStatus200 == nil { return nil, false } @@ -1439,15 +1439,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus200() bool { return false } -// SetOriginStatus200 gets a reference to the given int32 and assigns it to the OriginStatus200 field. -func (o *DomainInspectorMeasurements) SetOriginStatus200(v int32) { +// SetOriginStatus200 gets a reference to the given int64 and assigns it to the OriginStatus200 field. +func (o *DomainInspectorMeasurements) SetOriginStatus200(v int64) { o.OriginStatus200 = &v } // GetOriginStatus204 returns the OriginStatus204 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus204() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus204() int64 { if o == nil || o.OriginStatus204 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus204 @@ -1455,7 +1455,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus204() int32 { // GetOriginStatus204Ok returns a tuple with the OriginStatus204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus204Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus204Ok() (*int64, bool) { if o == nil || o.OriginStatus204 == nil { return nil, false } @@ -1471,15 +1471,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus204() bool { return false } -// SetOriginStatus204 gets a reference to the given int32 and assigns it to the OriginStatus204 field. -func (o *DomainInspectorMeasurements) SetOriginStatus204(v int32) { +// SetOriginStatus204 gets a reference to the given int64 and assigns it to the OriginStatus204 field. +func (o *DomainInspectorMeasurements) SetOriginStatus204(v int64) { o.OriginStatus204 = &v } // GetOriginStatus206 returns the OriginStatus206 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus206() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus206() int64 { if o == nil || o.OriginStatus206 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus206 @@ -1487,7 +1487,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus206() int32 { // GetOriginStatus206Ok returns a tuple with the OriginStatus206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus206Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus206Ok() (*int64, bool) { if o == nil || o.OriginStatus206 == nil { return nil, false } @@ -1503,15 +1503,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus206() bool { return false } -// SetOriginStatus206 gets a reference to the given int32 and assigns it to the OriginStatus206 field. -func (o *DomainInspectorMeasurements) SetOriginStatus206(v int32) { +// SetOriginStatus206 gets a reference to the given int64 and assigns it to the OriginStatus206 field. +func (o *DomainInspectorMeasurements) SetOriginStatus206(v int64) { o.OriginStatus206 = &v } // GetOriginStatus301 returns the OriginStatus301 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus301() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus301() int64 { if o == nil || o.OriginStatus301 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus301 @@ -1519,7 +1519,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus301() int32 { // GetOriginStatus301Ok returns a tuple with the OriginStatus301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus301Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus301Ok() (*int64, bool) { if o == nil || o.OriginStatus301 == nil { return nil, false } @@ -1535,15 +1535,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus301() bool { return false } -// SetOriginStatus301 gets a reference to the given int32 and assigns it to the OriginStatus301 field. -func (o *DomainInspectorMeasurements) SetOriginStatus301(v int32) { +// SetOriginStatus301 gets a reference to the given int64 and assigns it to the OriginStatus301 field. +func (o *DomainInspectorMeasurements) SetOriginStatus301(v int64) { o.OriginStatus301 = &v } // GetOriginStatus302 returns the OriginStatus302 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus302() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus302() int64 { if o == nil || o.OriginStatus302 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus302 @@ -1551,7 +1551,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus302() int32 { // GetOriginStatus302Ok returns a tuple with the OriginStatus302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus302Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus302Ok() (*int64, bool) { if o == nil || o.OriginStatus302 == nil { return nil, false } @@ -1567,15 +1567,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus302() bool { return false } -// SetOriginStatus302 gets a reference to the given int32 and assigns it to the OriginStatus302 field. -func (o *DomainInspectorMeasurements) SetOriginStatus302(v int32) { +// SetOriginStatus302 gets a reference to the given int64 and assigns it to the OriginStatus302 field. +func (o *DomainInspectorMeasurements) SetOriginStatus302(v int64) { o.OriginStatus302 = &v } // GetOriginStatus304 returns the OriginStatus304 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus304() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus304() int64 { if o == nil || o.OriginStatus304 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus304 @@ -1583,7 +1583,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus304() int32 { // GetOriginStatus304Ok returns a tuple with the OriginStatus304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus304Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus304Ok() (*int64, bool) { if o == nil || o.OriginStatus304 == nil { return nil, false } @@ -1599,15 +1599,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus304() bool { return false } -// SetOriginStatus304 gets a reference to the given int32 and assigns it to the OriginStatus304 field. -func (o *DomainInspectorMeasurements) SetOriginStatus304(v int32) { +// SetOriginStatus304 gets a reference to the given int64 and assigns it to the OriginStatus304 field. +func (o *DomainInspectorMeasurements) SetOriginStatus304(v int64) { o.OriginStatus304 = &v } // GetOriginStatus400 returns the OriginStatus400 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus400() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus400() int64 { if o == nil || o.OriginStatus400 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus400 @@ -1615,7 +1615,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus400() int32 { // GetOriginStatus400Ok returns a tuple with the OriginStatus400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus400Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus400Ok() (*int64, bool) { if o == nil || o.OriginStatus400 == nil { return nil, false } @@ -1631,15 +1631,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus400() bool { return false } -// SetOriginStatus400 gets a reference to the given int32 and assigns it to the OriginStatus400 field. -func (o *DomainInspectorMeasurements) SetOriginStatus400(v int32) { +// SetOriginStatus400 gets a reference to the given int64 and assigns it to the OriginStatus400 field. +func (o *DomainInspectorMeasurements) SetOriginStatus400(v int64) { o.OriginStatus400 = &v } // GetOriginStatus401 returns the OriginStatus401 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus401() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus401() int64 { if o == nil || o.OriginStatus401 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus401 @@ -1647,7 +1647,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus401() int32 { // GetOriginStatus401Ok returns a tuple with the OriginStatus401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus401Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus401Ok() (*int64, bool) { if o == nil || o.OriginStatus401 == nil { return nil, false } @@ -1663,15 +1663,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus401() bool { return false } -// SetOriginStatus401 gets a reference to the given int32 and assigns it to the OriginStatus401 field. -func (o *DomainInspectorMeasurements) SetOriginStatus401(v int32) { +// SetOriginStatus401 gets a reference to the given int64 and assigns it to the OriginStatus401 field. +func (o *DomainInspectorMeasurements) SetOriginStatus401(v int64) { o.OriginStatus401 = &v } // GetOriginStatus403 returns the OriginStatus403 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus403() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus403() int64 { if o == nil || o.OriginStatus403 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus403 @@ -1679,7 +1679,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus403() int32 { // GetOriginStatus403Ok returns a tuple with the OriginStatus403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus403Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus403Ok() (*int64, bool) { if o == nil || o.OriginStatus403 == nil { return nil, false } @@ -1695,15 +1695,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus403() bool { return false } -// SetOriginStatus403 gets a reference to the given int32 and assigns it to the OriginStatus403 field. -func (o *DomainInspectorMeasurements) SetOriginStatus403(v int32) { +// SetOriginStatus403 gets a reference to the given int64 and assigns it to the OriginStatus403 field. +func (o *DomainInspectorMeasurements) SetOriginStatus403(v int64) { o.OriginStatus403 = &v } // GetOriginStatus404 returns the OriginStatus404 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus404() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus404() int64 { if o == nil || o.OriginStatus404 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus404 @@ -1711,7 +1711,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus404() int32 { // GetOriginStatus404Ok returns a tuple with the OriginStatus404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus404Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus404Ok() (*int64, bool) { if o == nil || o.OriginStatus404 == nil { return nil, false } @@ -1727,15 +1727,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus404() bool { return false } -// SetOriginStatus404 gets a reference to the given int32 and assigns it to the OriginStatus404 field. -func (o *DomainInspectorMeasurements) SetOriginStatus404(v int32) { +// SetOriginStatus404 gets a reference to the given int64 and assigns it to the OriginStatus404 field. +func (o *DomainInspectorMeasurements) SetOriginStatus404(v int64) { o.OriginStatus404 = &v } // GetOriginStatus416 returns the OriginStatus416 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus416() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus416() int64 { if o == nil || o.OriginStatus416 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus416 @@ -1743,7 +1743,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus416() int32 { // GetOriginStatus416Ok returns a tuple with the OriginStatus416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus416Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus416Ok() (*int64, bool) { if o == nil || o.OriginStatus416 == nil { return nil, false } @@ -1759,15 +1759,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus416() bool { return false } -// SetOriginStatus416 gets a reference to the given int32 and assigns it to the OriginStatus416 field. -func (o *DomainInspectorMeasurements) SetOriginStatus416(v int32) { +// SetOriginStatus416 gets a reference to the given int64 and assigns it to the OriginStatus416 field. +func (o *DomainInspectorMeasurements) SetOriginStatus416(v int64) { o.OriginStatus416 = &v } // GetOriginStatus429 returns the OriginStatus429 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus429() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus429() int64 { if o == nil || o.OriginStatus429 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus429 @@ -1775,7 +1775,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus429() int32 { // GetOriginStatus429Ok returns a tuple with the OriginStatus429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus429Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus429Ok() (*int64, bool) { if o == nil || o.OriginStatus429 == nil { return nil, false } @@ -1791,15 +1791,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus429() bool { return false } -// SetOriginStatus429 gets a reference to the given int32 and assigns it to the OriginStatus429 field. -func (o *DomainInspectorMeasurements) SetOriginStatus429(v int32) { +// SetOriginStatus429 gets a reference to the given int64 and assigns it to the OriginStatus429 field. +func (o *DomainInspectorMeasurements) SetOriginStatus429(v int64) { o.OriginStatus429 = &v } // GetOriginStatus500 returns the OriginStatus500 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus500() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus500() int64 { if o == nil || o.OriginStatus500 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus500 @@ -1807,7 +1807,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus500() int32 { // GetOriginStatus500Ok returns a tuple with the OriginStatus500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus500Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus500Ok() (*int64, bool) { if o == nil || o.OriginStatus500 == nil { return nil, false } @@ -1823,15 +1823,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus500() bool { return false } -// SetOriginStatus500 gets a reference to the given int32 and assigns it to the OriginStatus500 field. -func (o *DomainInspectorMeasurements) SetOriginStatus500(v int32) { +// SetOriginStatus500 gets a reference to the given int64 and assigns it to the OriginStatus500 field. +func (o *DomainInspectorMeasurements) SetOriginStatus500(v int64) { o.OriginStatus500 = &v } // GetOriginStatus501 returns the OriginStatus501 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus501() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus501() int64 { if o == nil || o.OriginStatus501 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus501 @@ -1839,7 +1839,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus501() int32 { // GetOriginStatus501Ok returns a tuple with the OriginStatus501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus501Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus501Ok() (*int64, bool) { if o == nil || o.OriginStatus501 == nil { return nil, false } @@ -1855,15 +1855,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus501() bool { return false } -// SetOriginStatus501 gets a reference to the given int32 and assigns it to the OriginStatus501 field. -func (o *DomainInspectorMeasurements) SetOriginStatus501(v int32) { +// SetOriginStatus501 gets a reference to the given int64 and assigns it to the OriginStatus501 field. +func (o *DomainInspectorMeasurements) SetOriginStatus501(v int64) { o.OriginStatus501 = &v } // GetOriginStatus502 returns the OriginStatus502 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus502() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus502() int64 { if o == nil || o.OriginStatus502 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus502 @@ -1871,7 +1871,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus502() int32 { // GetOriginStatus502Ok returns a tuple with the OriginStatus502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus502Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus502Ok() (*int64, bool) { if o == nil || o.OriginStatus502 == nil { return nil, false } @@ -1887,15 +1887,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus502() bool { return false } -// SetOriginStatus502 gets a reference to the given int32 and assigns it to the OriginStatus502 field. -func (o *DomainInspectorMeasurements) SetOriginStatus502(v int32) { +// SetOriginStatus502 gets a reference to the given int64 and assigns it to the OriginStatus502 field. +func (o *DomainInspectorMeasurements) SetOriginStatus502(v int64) { o.OriginStatus502 = &v } // GetOriginStatus503 returns the OriginStatus503 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus503() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus503() int64 { if o == nil || o.OriginStatus503 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus503 @@ -1903,7 +1903,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus503() int32 { // GetOriginStatus503Ok returns a tuple with the OriginStatus503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus503Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus503Ok() (*int64, bool) { if o == nil || o.OriginStatus503 == nil { return nil, false } @@ -1919,15 +1919,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus503() bool { return false } -// SetOriginStatus503 gets a reference to the given int32 and assigns it to the OriginStatus503 field. -func (o *DomainInspectorMeasurements) SetOriginStatus503(v int32) { +// SetOriginStatus503 gets a reference to the given int64 and assigns it to the OriginStatus503 field. +func (o *DomainInspectorMeasurements) SetOriginStatus503(v int64) { o.OriginStatus503 = &v } // GetOriginStatus504 returns the OriginStatus504 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus504() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus504() int64 { if o == nil || o.OriginStatus504 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus504 @@ -1935,7 +1935,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus504() int32 { // GetOriginStatus504Ok returns a tuple with the OriginStatus504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus504Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus504Ok() (*int64, bool) { if o == nil || o.OriginStatus504 == nil { return nil, false } @@ -1951,15 +1951,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus504() bool { return false } -// SetOriginStatus504 gets a reference to the given int32 and assigns it to the OriginStatus504 field. -func (o *DomainInspectorMeasurements) SetOriginStatus504(v int32) { +// SetOriginStatus504 gets a reference to the given int64 and assigns it to the OriginStatus504 field. +func (o *DomainInspectorMeasurements) SetOriginStatus504(v int64) { o.OriginStatus504 = &v } // GetOriginStatus505 returns the OriginStatus505 field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus505() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus505() int64 { if o == nil || o.OriginStatus505 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus505 @@ -1967,7 +1967,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus505() int32 { // GetOriginStatus505Ok returns a tuple with the OriginStatus505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus505Ok() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus505Ok() (*int64, bool) { if o == nil || o.OriginStatus505 == nil { return nil, false } @@ -1983,15 +1983,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus505() bool { return false } -// SetOriginStatus505 gets a reference to the given int32 and assigns it to the OriginStatus505 field. -func (o *DomainInspectorMeasurements) SetOriginStatus505(v int32) { +// SetOriginStatus505 gets a reference to the given int64 and assigns it to the OriginStatus505 field. +func (o *DomainInspectorMeasurements) SetOriginStatus505(v int64) { o.OriginStatus505 = &v } // GetOriginStatus1xx returns the OriginStatus1xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus1xx() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus1xx() int64 { if o == nil || o.OriginStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus1xx @@ -1999,7 +1999,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus1xx() int32 { // GetOriginStatus1xxOk returns a tuple with the OriginStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus1xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus1xxOk() (*int64, bool) { if o == nil || o.OriginStatus1xx == nil { return nil, false } @@ -2015,15 +2015,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus1xx() bool { return false } -// SetOriginStatus1xx gets a reference to the given int32 and assigns it to the OriginStatus1xx field. -func (o *DomainInspectorMeasurements) SetOriginStatus1xx(v int32) { +// SetOriginStatus1xx gets a reference to the given int64 and assigns it to the OriginStatus1xx field. +func (o *DomainInspectorMeasurements) SetOriginStatus1xx(v int64) { o.OriginStatus1xx = &v } // GetOriginStatus2xx returns the OriginStatus2xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus2xx() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus2xx() int64 { if o == nil || o.OriginStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus2xx @@ -2031,7 +2031,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus2xx() int32 { // GetOriginStatus2xxOk returns a tuple with the OriginStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus2xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus2xxOk() (*int64, bool) { if o == nil || o.OriginStatus2xx == nil { return nil, false } @@ -2047,15 +2047,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus2xx() bool { return false } -// SetOriginStatus2xx gets a reference to the given int32 and assigns it to the OriginStatus2xx field. -func (o *DomainInspectorMeasurements) SetOriginStatus2xx(v int32) { +// SetOriginStatus2xx gets a reference to the given int64 and assigns it to the OriginStatus2xx field. +func (o *DomainInspectorMeasurements) SetOriginStatus2xx(v int64) { o.OriginStatus2xx = &v } // GetOriginStatus3xx returns the OriginStatus3xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus3xx() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus3xx() int64 { if o == nil || o.OriginStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus3xx @@ -2063,7 +2063,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus3xx() int32 { // GetOriginStatus3xxOk returns a tuple with the OriginStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus3xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus3xxOk() (*int64, bool) { if o == nil || o.OriginStatus3xx == nil { return nil, false } @@ -2079,15 +2079,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus3xx() bool { return false } -// SetOriginStatus3xx gets a reference to the given int32 and assigns it to the OriginStatus3xx field. -func (o *DomainInspectorMeasurements) SetOriginStatus3xx(v int32) { +// SetOriginStatus3xx gets a reference to the given int64 and assigns it to the OriginStatus3xx field. +func (o *DomainInspectorMeasurements) SetOriginStatus3xx(v int64) { o.OriginStatus3xx = &v } // GetOriginStatus4xx returns the OriginStatus4xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus4xx() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus4xx() int64 { if o == nil || o.OriginStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus4xx @@ -2095,7 +2095,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus4xx() int32 { // GetOriginStatus4xxOk returns a tuple with the OriginStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus4xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus4xxOk() (*int64, bool) { if o == nil || o.OriginStatus4xx == nil { return nil, false } @@ -2111,15 +2111,15 @@ func (o *DomainInspectorMeasurements) HasOriginStatus4xx() bool { return false } -// SetOriginStatus4xx gets a reference to the given int32 and assigns it to the OriginStatus4xx field. -func (o *DomainInspectorMeasurements) SetOriginStatus4xx(v int32) { +// SetOriginStatus4xx gets a reference to the given int64 and assigns it to the OriginStatus4xx field. +func (o *DomainInspectorMeasurements) SetOriginStatus4xx(v int64) { o.OriginStatus4xx = &v } // GetOriginStatus5xx returns the OriginStatus5xx field value if set, zero value otherwise. -func (o *DomainInspectorMeasurements) GetOriginStatus5xx() int32 { +func (o *DomainInspectorMeasurements) GetOriginStatus5xx() int64 { if o == nil || o.OriginStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus5xx @@ -2127,7 +2127,7 @@ func (o *DomainInspectorMeasurements) GetOriginStatus5xx() int32 { // GetOriginStatus5xxOk returns a tuple with the OriginStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *DomainInspectorMeasurements) GetOriginStatus5xxOk() (*int32, bool) { +func (o *DomainInspectorMeasurements) GetOriginStatus5xxOk() (*int64, bool) { if o == nil || o.OriginStatus5xx == nil { return nil, false } @@ -2143,8 +2143,8 @@ func (o *DomainInspectorMeasurements) HasOriginStatus5xx() bool { return false } -// SetOriginStatus5xx gets a reference to the given int32 and assigns it to the OriginStatus5xx field. -func (o *DomainInspectorMeasurements) SetOriginStatus5xx(v int32) { +// SetOriginStatus5xx gets a reference to the given int64 and assigns it to the OriginStatus5xx field. +func (o *DomainInspectorMeasurements) SetOriginStatus5xx(v int64) { o.OriginStatus5xx = &v } diff --git a/fastly/model_origin_inspector_measurements.go b/fastly/model_origin_inspector_measurements.go index 8bc24ea..e8c545d 100644 --- a/fastly/model_origin_inspector_measurements.go +++ b/fastly/model_origin_inspector_measurements.go @@ -19,309 +19,309 @@ import ( // OriginInspectorMeasurements A measurements object provides a count of the total number of `responses` received by Fastly from your origin servers in the reported time period, for the relevant POP and backend name as specified in the [entry](#entry-data-model). It also includes the number of responses for specific HTTP response status codes and for status code ranges. This dataset is sparse: only the keys with non-zero values will be included in the record. Where a specific status code does not have a field in this model (e.g., `429 Too Many Requests`), any responses with that code will be counted as part of the range count (`4xx` in this case) but will not be separately identified in the data. type OriginInspectorMeasurements struct { // Number of responses from origin. - Responses *int32 `json:"responses,omitempty"` + Responses *int64 `json:"responses,omitempty"` // Number of header bytes from origin. - RespHeaderBytes *int32 `json:"resp_header_bytes,omitempty"` + RespHeaderBytes *int64 `json:"resp_header_bytes,omitempty"` // Number of body bytes from origin. - RespBodyBytes *int32 `json:"resp_body_bytes,omitempty"` + RespBodyBytes *int64 `json:"resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" status codes delivered from origin. - Status1xx *int32 `json:"status_1xx,omitempty"` + Status1xx *int64 `json:"status_1xx,omitempty"` // Number of 2xx \"Success\" status codes delivered from origin. - Status2xx *int32 `json:"status_2xx,omitempty"` + Status2xx *int64 `json:"status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes delivered from origin. - Status3xx *int32 `json:"status_3xx,omitempty"` + Status3xx *int64 `json:"status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes delivered from origin. - Status4xx *int32 `json:"status_4xx,omitempty"` + Status4xx *int64 `json:"status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes delivered from origin. - Status5xx *int32 `json:"status_5xx,omitempty"` + Status5xx *int64 `json:"status_5xx,omitempty"` // Number of responses received with status code 200 (Success) from origin. - Status200 *int32 `json:"status_200,omitempty"` + Status200 *int64 `json:"status_200,omitempty"` // Number of responses received with status code 204 (No Content) from origin. - Status204 *int32 `json:"status_204,omitempty"` + Status204 *int64 `json:"status_204,omitempty"` // Number of responses received with status code 206 (Partial Content) from origin. - Status206 *int32 `json:"status_206,omitempty"` + Status206 *int64 `json:"status_206,omitempty"` // Number of responses received with status code 301 (Moved Permanently) from origin. - Status301 *int32 `json:"status_301,omitempty"` + Status301 *int64 `json:"status_301,omitempty"` // Number of responses received with status code 302 (Found) from origin. - Status302 *int32 `json:"status_302,omitempty"` + Status302 *int64 `json:"status_302,omitempty"` // Number of responses received with status code 304 (Not Modified) from origin. - Status304 *int32 `json:"status_304,omitempty"` + Status304 *int64 `json:"status_304,omitempty"` // Number of responses received with status code 400 (Bad Request) from origin. - Status400 *int32 `json:"status_400,omitempty"` + Status400 *int64 `json:"status_400,omitempty"` // Number of responses received with status code 401 (Unauthorized) from origin. - Status401 *int32 `json:"status_401,omitempty"` + Status401 *int64 `json:"status_401,omitempty"` // Number of responses received with status code 403 (Forbidden) from origin. - Status403 *int32 `json:"status_403,omitempty"` + Status403 *int64 `json:"status_403,omitempty"` // Number of responses received with status code 404 (Not Found) from origin. - Status404 *int32 `json:"status_404,omitempty"` + Status404 *int64 `json:"status_404,omitempty"` // Number of responses received with status code 416 (Range Not Satisfiable) from origin. - Status416 *int32 `json:"status_416,omitempty"` + Status416 *int64 `json:"status_416,omitempty"` // Number of responses received with status code 429 (Too Many Requests) from origin. - Status429 *int32 `json:"status_429,omitempty"` + Status429 *int64 `json:"status_429,omitempty"` // Number of responses received with status code 500 (Internal Server Error) from origin. - Status500 *int32 `json:"status_500,omitempty"` + Status500 *int64 `json:"status_500,omitempty"` // Number of responses received with status code 501 (Not Implemented) from origin. - Status501 *int32 `json:"status_501,omitempty"` + Status501 *int64 `json:"status_501,omitempty"` // Number of responses received with status code 502 (Bad Gateway) from origin. - Status502 *int32 `json:"status_502,omitempty"` + Status502 *int64 `json:"status_502,omitempty"` // Number of responses received with status code 503 (Service Unavailable) from origin. - Status503 *int32 `json:"status_503,omitempty"` + Status503 *int64 `json:"status_503,omitempty"` // Number of responses received with status code 504 (Gateway Timeout) from origin. - Status504 *int32 `json:"status_504,omitempty"` + Status504 *int64 `json:"status_504,omitempty"` // Number of responses received with status code 505 (HTTP Version Not Supported) from origin. - Status505 *int32 `json:"status_505,omitempty"` + Status505 *int64 `json:"status_505,omitempty"` // Number of responses from origin with latency between 0 and 1 millisecond. - Latency0To1ms *int32 `json:"latency_0_to_1ms,omitempty"` + Latency0To1ms *int64 `json:"latency_0_to_1ms,omitempty"` // Number of responses from origin with latency between 1 and 5 milliseconds. - Latency1To5ms *int32 `json:"latency_1_to_5ms,omitempty"` + Latency1To5ms *int64 `json:"latency_1_to_5ms,omitempty"` // Number of responses from origin with latency between 5 and 10 milliseconds. - Latency5To10ms *int32 `json:"latency_5_to_10ms,omitempty"` + Latency5To10ms *int64 `json:"latency_5_to_10ms,omitempty"` // Number of responses from origin with latency between 10 and 50 milliseconds. - Latency10To50ms *int32 `json:"latency_10_to_50ms,omitempty"` + Latency10To50ms *int64 `json:"latency_10_to_50ms,omitempty"` // Number of responses from origin with latency between 50 and 100 milliseconds. - Latency50To100ms *int32 `json:"latency_50_to_100ms,omitempty"` + Latency50To100ms *int64 `json:"latency_50_to_100ms,omitempty"` // Number of responses from origin with latency between 100 and 250 milliseconds. - Latency100To250ms *int32 `json:"latency_100_to_250ms,omitempty"` + Latency100To250ms *int64 `json:"latency_100_to_250ms,omitempty"` // Number of responses from origin with latency between 250 and 500 milliseconds. - Latency250To500ms *int32 `json:"latency_250_to_500ms,omitempty"` + Latency250To500ms *int64 `json:"latency_250_to_500ms,omitempty"` // Number of responses from origin with latency between 500 and 1,000 milliseconds. - Latency500To1000ms *int32 `json:"latency_500_to_1000ms,omitempty"` + Latency500To1000ms *int64 `json:"latency_500_to_1000ms,omitempty"` // Number of responses from origin with latency between 1,000 and 5,000 milliseconds. - Latency1000To5000ms *int32 `json:"latency_1000_to_5000ms,omitempty"` + Latency1000To5000ms *int64 `json:"latency_1000_to_5000ms,omitempty"` // Number of responses from origin with latency between 5,000 and 10,000 milliseconds. - Latency5000To10000ms *int32 `json:"latency_5000_to_10000ms,omitempty"` + Latency5000To10000ms *int64 `json:"latency_5000_to_10000ms,omitempty"` // Number of responses from origin with latency between 10,000 and 60,000 milliseconds. - Latency10000To60000ms *int32 `json:"latency_10000_to_60000ms,omitempty"` + Latency10000To60000ms *int64 `json:"latency_10000_to_60000ms,omitempty"` // Number of responses from origin with latency of 60,000 milliseconds and above. - Latency60000ms *int32 `json:"latency_60000ms,omitempty"` + Latency60000ms *int64 `json:"latency_60000ms,omitempty"` // Number of responses received for origin requests made by the Fastly WAF. - WafResponses *int32 `json:"waf_responses,omitempty"` + WafResponses *int64 `json:"waf_responses,omitempty"` // Number of header bytes received for origin requests made by the Fastly WAF. - WafRespHeaderBytes *int32 `json:"waf_resp_header_bytes,omitempty"` + WafRespHeaderBytes *int64 `json:"waf_resp_header_bytes,omitempty"` // Number of body bytes received for origin requests made by the Fastly WAF. - WafRespBodyBytes *int32 `json:"waf_resp_body_bytes,omitempty"` + WafRespBodyBytes *int64 `json:"waf_resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" status codes received for origin requests made by the Fastly WAF. - WafStatus1xx *int32 `json:"waf_status_1xx,omitempty"` + WafStatus1xx *int64 `json:"waf_status_1xx,omitempty"` // Number of 2xx \"Success\" status codes received for origin requests made by the Fastly WAF. - WafStatus2xx *int32 `json:"waf_status_2xx,omitempty"` + WafStatus2xx *int64 `json:"waf_status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes received for origin requests made by the Fastly WAF. - WafStatus3xx *int32 `json:"waf_status_3xx,omitempty"` + WafStatus3xx *int64 `json:"waf_status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes received for origin requests made by the Fastly WAF. - WafStatus4xx *int32 `json:"waf_status_4xx,omitempty"` + WafStatus4xx *int64 `json:"waf_status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes received for origin requests made by the Fastly WAF. - WafStatus5xx *int32 `json:"waf_status_5xx,omitempty"` + WafStatus5xx *int64 `json:"waf_status_5xx,omitempty"` // Number of responses received with status code 200 (Success) received for origin requests made by the Fastly WAF. - WafStatus200 *int32 `json:"waf_status_200,omitempty"` + WafStatus200 *int64 `json:"waf_status_200,omitempty"` // Number of responses received with status code 204 (No Content) received for origin requests made by the Fastly WAF. - WafStatus204 *int32 `json:"waf_status_204,omitempty"` + WafStatus204 *int64 `json:"waf_status_204,omitempty"` // Number of responses received with status code 206 (Partial Content) received for origin requests made by the Fastly WAF. - WafStatus206 *int32 `json:"waf_status_206,omitempty"` + WafStatus206 *int64 `json:"waf_status_206,omitempty"` // Number of responses received with status code 301 (Moved Permanently) received for origin requests made by the Fastly WAF. - WafStatus301 *int32 `json:"waf_status_301,omitempty"` + WafStatus301 *int64 `json:"waf_status_301,omitempty"` // Number of responses received with status code 302 (Found) received for origin requests made by the Fastly WAF. - WafStatus302 *int32 `json:"waf_status_302,omitempty"` + WafStatus302 *int64 `json:"waf_status_302,omitempty"` // Number of responses received with status code 304 (Not Modified) received for origin requests made by the Fastly WAF. - WafStatus304 *int32 `json:"waf_status_304,omitempty"` + WafStatus304 *int64 `json:"waf_status_304,omitempty"` // Number of responses received with status code 400 (Bad Request) received for origin requests made by the Fastly WAF. - WafStatus400 *int32 `json:"waf_status_400,omitempty"` + WafStatus400 *int64 `json:"waf_status_400,omitempty"` // Number of responses received with status code 401 (Unauthorized) received for origin requests made by the Fastly WAF. - WafStatus401 *int32 `json:"waf_status_401,omitempty"` + WafStatus401 *int64 `json:"waf_status_401,omitempty"` // Number of responses received with status code 403 (Forbidden) received for origin requests made by the Fastly WAF. - WafStatus403 *int32 `json:"waf_status_403,omitempty"` + WafStatus403 *int64 `json:"waf_status_403,omitempty"` // Number of responses received with status code 404 (Not Found) received for origin requests made by the Fastly WAF. - WafStatus404 *int32 `json:"waf_status_404,omitempty"` + WafStatus404 *int64 `json:"waf_status_404,omitempty"` // Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by the Fastly WAF. - WafStatus416 *int32 `json:"waf_status_416,omitempty"` + WafStatus416 *int64 `json:"waf_status_416,omitempty"` // Number of responses received with status code 429 (Too Many Requests) received for origin requests made by the Fastly WAF. - WafStatus429 *int32 `json:"waf_status_429,omitempty"` + WafStatus429 *int64 `json:"waf_status_429,omitempty"` // Number of responses received with status code 500 (Internal Server Error) received for origin requests made by the Fastly WAF. - WafStatus500 *int32 `json:"waf_status_500,omitempty"` + WafStatus500 *int64 `json:"waf_status_500,omitempty"` // Number of responses received with status code 501 (Not Implemented) received for origin requests made by the Fastly WAF. - WafStatus501 *int32 `json:"waf_status_501,omitempty"` + WafStatus501 *int64 `json:"waf_status_501,omitempty"` // Number of responses received with status code 502 (Bad Gateway) received for origin requests made by the Fastly WAF. - WafStatus502 *int32 `json:"waf_status_502,omitempty"` + WafStatus502 *int64 `json:"waf_status_502,omitempty"` // Number of responses received with status code 503 (Service Unavailable) received for origin requests made by the Fastly WAF. - WafStatus503 *int32 `json:"waf_status_503,omitempty"` + WafStatus503 *int64 `json:"waf_status_503,omitempty"` // Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by the Fastly WAF. - WafStatus504 *int32 `json:"waf_status_504,omitempty"` + WafStatus504 *int64 `json:"waf_status_504,omitempty"` // Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by the Fastly WAF. - WafStatus505 *int32 `json:"waf_status_505,omitempty"` + WafStatus505 *int64 `json:"waf_status_505,omitempty"` // Number of responses with latency between 0 and 1 millisecond received for origin requests made by the Fastly WAF. - WafLatency0To1ms *int32 `json:"waf_latency_0_to_1ms,omitempty"` + WafLatency0To1ms *int64 `json:"waf_latency_0_to_1ms,omitempty"` // Number of responses with latency between 1 and 5 milliseconds received for origin requests made by the Fastly WAF. - WafLatency1To5ms *int32 `json:"waf_latency_1_to_5ms,omitempty"` + WafLatency1To5ms *int64 `json:"waf_latency_1_to_5ms,omitempty"` // Number of responses with latency between 5 and 10 milliseconds received for origin requests made by the Fastly WAF. - WafLatency5To10ms *int32 `json:"waf_latency_5_to_10ms,omitempty"` + WafLatency5To10ms *int64 `json:"waf_latency_5_to_10ms,omitempty"` // Number of responses with latency between 10 and 50 milliseconds received for origin requests made by the Fastly WAF. - WafLatency10To50ms *int32 `json:"waf_latency_10_to_50ms,omitempty"` + WafLatency10To50ms *int64 `json:"waf_latency_10_to_50ms,omitempty"` // Number of responses with latency between 50 and 100 milliseconds received for origin requests made by the Fastly WAF. - WafLatency50To100ms *int32 `json:"waf_latency_50_to_100ms,omitempty"` + WafLatency50To100ms *int64 `json:"waf_latency_50_to_100ms,omitempty"` // Number of responses with latency between 100 and 250 milliseconds received for origin requests made by the Fastly WAF. - WafLatency100To250ms *int32 `json:"waf_latency_100_to_250ms,omitempty"` + WafLatency100To250ms *int64 `json:"waf_latency_100_to_250ms,omitempty"` // Number of responses with latency between 250 and 500 milliseconds received for origin requests made by the Fastly WAF. - WafLatency250To500ms *int32 `json:"waf_latency_250_to_500ms,omitempty"` + WafLatency250To500ms *int64 `json:"waf_latency_250_to_500ms,omitempty"` // Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by the Fastly WAF. - WafLatency500To1000ms *int32 `json:"waf_latency_500_to_1000ms,omitempty"` + WafLatency500To1000ms *int64 `json:"waf_latency_500_to_1000ms,omitempty"` // Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by the Fastly WAF. - WafLatency1000To5000ms *int32 `json:"waf_latency_1000_to_5000ms,omitempty"` + WafLatency1000To5000ms *int64 `json:"waf_latency_1000_to_5000ms,omitempty"` // Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. - WafLatency5000To10000ms *int32 `json:"waf_latency_5000_to_10000ms,omitempty"` + WafLatency5000To10000ms *int64 `json:"waf_latency_5000_to_10000ms,omitempty"` // Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. - WafLatency10000To60000ms *int32 `json:"waf_latency_10000_to_60000ms,omitempty"` + WafLatency10000To60000ms *int64 `json:"waf_latency_10000_to_60000ms,omitempty"` // Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. - WafLatency60000ms *int32 `json:"waf_latency_60000ms,omitempty"` + WafLatency60000ms *int64 `json:"waf_latency_60000ms,omitempty"` // Number of responses for origin received by the Compute platform. - ComputeResponses *int32 `json:"compute_responses,omitempty"` + ComputeResponses *int64 `json:"compute_responses,omitempty"` // Number of header bytes for origin received by the Compute platform. - ComputeRespHeaderBytes *int32 `json:"compute_resp_header_bytes,omitempty"` + ComputeRespHeaderBytes *int64 `json:"compute_resp_header_bytes,omitempty"` // Number of body bytes for origin received by the Compute platform. - ComputeRespBodyBytes *int32 `json:"compute_resp_body_bytes,omitempty"` + ComputeRespBodyBytes *int64 `json:"compute_resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" status codes for origin received by the Compute platform. - ComputeStatus1xx *int32 `json:"compute_status_1xx,omitempty"` + ComputeStatus1xx *int64 `json:"compute_status_1xx,omitempty"` // Number of 2xx \"Success\" status codes for origin received by the Compute platform. - ComputeStatus2xx *int32 `json:"compute_status_2xx,omitempty"` + ComputeStatus2xx *int64 `json:"compute_status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes for origin received by the Compute platform. - ComputeStatus3xx *int32 `json:"compute_status_3xx,omitempty"` + ComputeStatus3xx *int64 `json:"compute_status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes for origin received by the Compute platform. - ComputeStatus4xx *int32 `json:"compute_status_4xx,omitempty"` + ComputeStatus4xx *int64 `json:"compute_status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes for origin received by the Compute platform. - ComputeStatus5xx *int32 `json:"compute_status_5xx,omitempty"` + ComputeStatus5xx *int64 `json:"compute_status_5xx,omitempty"` // Number of responses received with status code 200 (Success) for origin received by the Compute platform. - ComputeStatus200 *int32 `json:"compute_status_200,omitempty"` + ComputeStatus200 *int64 `json:"compute_status_200,omitempty"` // Number of responses received with status code 204 (No Content) for origin received by the Compute platform. - ComputeStatus204 *int32 `json:"compute_status_204,omitempty"` + ComputeStatus204 *int64 `json:"compute_status_204,omitempty"` // Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. - ComputeStatus206 *int32 `json:"compute_status_206,omitempty"` + ComputeStatus206 *int64 `json:"compute_status_206,omitempty"` // Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. - ComputeStatus301 *int32 `json:"compute_status_301,omitempty"` + ComputeStatus301 *int64 `json:"compute_status_301,omitempty"` // Number of responses received with status code 302 (Found) for origin received by the Compute platform. - ComputeStatus302 *int32 `json:"compute_status_302,omitempty"` + ComputeStatus302 *int64 `json:"compute_status_302,omitempty"` // Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. - ComputeStatus304 *int32 `json:"compute_status_304,omitempty"` + ComputeStatus304 *int64 `json:"compute_status_304,omitempty"` // Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. - ComputeStatus400 *int32 `json:"compute_status_400,omitempty"` + ComputeStatus400 *int64 `json:"compute_status_400,omitempty"` // Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. - ComputeStatus401 *int32 `json:"compute_status_401,omitempty"` + ComputeStatus401 *int64 `json:"compute_status_401,omitempty"` // Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. - ComputeStatus403 *int32 `json:"compute_status_403,omitempty"` + ComputeStatus403 *int64 `json:"compute_status_403,omitempty"` // Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. - ComputeStatus404 *int32 `json:"compute_status_404,omitempty"` + ComputeStatus404 *int64 `json:"compute_status_404,omitempty"` // Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. - ComputeStatus416 *int32 `json:"compute_status_416,omitempty"` + ComputeStatus416 *int64 `json:"compute_status_416,omitempty"` // Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. - ComputeStatus429 *int32 `json:"compute_status_429,omitempty"` + ComputeStatus429 *int64 `json:"compute_status_429,omitempty"` // Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. - ComputeStatus500 *int32 `json:"compute_status_500,omitempty"` + ComputeStatus500 *int64 `json:"compute_status_500,omitempty"` // Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. - ComputeStatus501 *int32 `json:"compute_status_501,omitempty"` + ComputeStatus501 *int64 `json:"compute_status_501,omitempty"` // Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. - ComputeStatus502 *int32 `json:"compute_status_502,omitempty"` + ComputeStatus502 *int64 `json:"compute_status_502,omitempty"` // Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. - ComputeStatus503 *int32 `json:"compute_status_503,omitempty"` + ComputeStatus503 *int64 `json:"compute_status_503,omitempty"` // Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. - ComputeStatus504 *int32 `json:"compute_status_504,omitempty"` + ComputeStatus504 *int64 `json:"compute_status_504,omitempty"` // Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. - ComputeStatus505 *int32 `json:"compute_status_505,omitempty"` + ComputeStatus505 *int64 `json:"compute_status_505,omitempty"` // Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. - ComputeLatency0To1ms *int32 `json:"compute_latency_0_to_1ms,omitempty"` + ComputeLatency0To1ms *int64 `json:"compute_latency_0_to_1ms,omitempty"` // Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. - ComputeLatency1To5ms *int32 `json:"compute_latency_1_to_5ms,omitempty"` + ComputeLatency1To5ms *int64 `json:"compute_latency_1_to_5ms,omitempty"` // Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. - ComputeLatency5To10ms *int32 `json:"compute_latency_5_to_10ms,omitempty"` + ComputeLatency5To10ms *int64 `json:"compute_latency_5_to_10ms,omitempty"` // Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. - ComputeLatency10To50ms *int32 `json:"compute_latency_10_to_50ms,omitempty"` + ComputeLatency10To50ms *int64 `json:"compute_latency_10_to_50ms,omitempty"` // Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. - ComputeLatency50To100ms *int32 `json:"compute_latency_50_to_100ms,omitempty"` + ComputeLatency50To100ms *int64 `json:"compute_latency_50_to_100ms,omitempty"` // Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. - ComputeLatency100To250ms *int32 `json:"compute_latency_100_to_250ms,omitempty"` + ComputeLatency100To250ms *int64 `json:"compute_latency_100_to_250ms,omitempty"` // Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. - ComputeLatency250To500ms *int32 `json:"compute_latency_250_to_500ms,omitempty"` + ComputeLatency250To500ms *int64 `json:"compute_latency_250_to_500ms,omitempty"` // Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. - ComputeLatency500To1000ms *int32 `json:"compute_latency_500_to_1000ms,omitempty"` + ComputeLatency500To1000ms *int64 `json:"compute_latency_500_to_1000ms,omitempty"` // Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. - ComputeLatency1000To5000ms *int32 `json:"compute_latency_1000_to_5000ms,omitempty"` + ComputeLatency1000To5000ms *int64 `json:"compute_latency_1000_to_5000ms,omitempty"` // Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. - ComputeLatency5000To10000ms *int32 `json:"compute_latency_5000_to_10000ms,omitempty"` + ComputeLatency5000To10000ms *int64 `json:"compute_latency_5000_to_10000ms,omitempty"` // Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. - ComputeLatency10000To60000ms *int32 `json:"compute_latency_10000_to_60000ms,omitempty"` + ComputeLatency10000To60000ms *int64 `json:"compute_latency_10000_to_60000ms,omitempty"` // Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. - ComputeLatency60000ms *int32 `json:"compute_latency_60000ms,omitempty"` + ComputeLatency60000ms *int64 `json:"compute_latency_60000ms,omitempty"` // Number of responses received for origin requests made by all sources. - AllResponses *int32 `json:"all_responses,omitempty"` + AllResponses *int64 `json:"all_responses,omitempty"` // Number of header bytes received for origin requests made by all sources. - AllRespHeaderBytes *int32 `json:"all_resp_header_bytes,omitempty"` + AllRespHeaderBytes *int64 `json:"all_resp_header_bytes,omitempty"` // Number of body bytes received for origin requests made by all sources. - AllRespBodyBytes *int32 `json:"all_resp_body_bytes,omitempty"` + AllRespBodyBytes *int64 `json:"all_resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" category status codes delivered received for origin requests made by all sources. - AllStatus1xx *int32 `json:"all_status_1xx,omitempty"` + AllStatus1xx *int64 `json:"all_status_1xx,omitempty"` // Number of 2xx \"Success\" status codes received for origin requests made by all sources. - AllStatus2xx *int32 `json:"all_status_2xx,omitempty"` + AllStatus2xx *int64 `json:"all_status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes received for origin requests made by all sources. - AllStatus3xx *int32 `json:"all_status_3xx,omitempty"` + AllStatus3xx *int64 `json:"all_status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes received for origin requests made by all sources. - AllStatus4xx *int32 `json:"all_status_4xx,omitempty"` + AllStatus4xx *int64 `json:"all_status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes received for origin requests made by all sources. - AllStatus5xx *int32 `json:"all_status_5xx,omitempty"` + AllStatus5xx *int64 `json:"all_status_5xx,omitempty"` // Number of responses received with status code 200 (Success) received for origin requests made by all sources. - AllStatus200 *int32 `json:"all_status_200,omitempty"` + AllStatus200 *int64 `json:"all_status_200,omitempty"` // Number of responses received with status code 204 (No Content) received for origin requests made by all sources. - AllStatus204 *int32 `json:"all_status_204,omitempty"` + AllStatus204 *int64 `json:"all_status_204,omitempty"` // Number of responses received with status code 206 (Partial Content) received for origin requests made by all sources. - AllStatus206 *int32 `json:"all_status_206,omitempty"` + AllStatus206 *int64 `json:"all_status_206,omitempty"` // Number of responses received with status code 301 (Moved Permanently) received for origin requests made by all sources. - AllStatus301 *int32 `json:"all_status_301,omitempty"` + AllStatus301 *int64 `json:"all_status_301,omitempty"` // Number of responses received with status code 302 (Found) received for origin requests made by all sources. - AllStatus302 *int32 `json:"all_status_302,omitempty"` + AllStatus302 *int64 `json:"all_status_302,omitempty"` // Number of responses received with status code 304 (Not Modified) received for origin requests made by all sources. - AllStatus304 *int32 `json:"all_status_304,omitempty"` + AllStatus304 *int64 `json:"all_status_304,omitempty"` // Number of responses received with status code 400 (Bad Request) received for origin requests made by all sources. - AllStatus400 *int32 `json:"all_status_400,omitempty"` + AllStatus400 *int64 `json:"all_status_400,omitempty"` // Number of responses received with status code 401 (Unauthorized) received for origin requests made by all sources. - AllStatus401 *int32 `json:"all_status_401,omitempty"` + AllStatus401 *int64 `json:"all_status_401,omitempty"` // Number of responses received with status code 403 (Forbidden) received for origin requests made by all sources. - AllStatus403 *int32 `json:"all_status_403,omitempty"` + AllStatus403 *int64 `json:"all_status_403,omitempty"` // Number of responses received with status code 404 (Not Found) received for origin requests made by all sources. - AllStatus404 *int32 `json:"all_status_404,omitempty"` + AllStatus404 *int64 `json:"all_status_404,omitempty"` // Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by all sources. - AllStatus416 *int32 `json:"all_status_416,omitempty"` + AllStatus416 *int64 `json:"all_status_416,omitempty"` // Number of responses received with status code 429 (Too Many Requests) received for origin requests made by all sources. - AllStatus429 *int32 `json:"all_status_429,omitempty"` + AllStatus429 *int64 `json:"all_status_429,omitempty"` // Number of responses received with status code 500 (Internal Server Error) received for origin requests made by all sources. - AllStatus500 *int32 `json:"all_status_500,omitempty"` + AllStatus500 *int64 `json:"all_status_500,omitempty"` // Number of responses received with status code 501 (Not Implemented) received for origin requests made by all sources. - AllStatus501 *int32 `json:"all_status_501,omitempty"` + AllStatus501 *int64 `json:"all_status_501,omitempty"` // Number of responses received with status code 502 (Bad Gateway) received for origin requests made by all sources. - AllStatus502 *int32 `json:"all_status_502,omitempty"` + AllStatus502 *int64 `json:"all_status_502,omitempty"` // Number of responses received with status code 503 (Service Unavailable) received for origin requests made by all sources. - AllStatus503 *int32 `json:"all_status_503,omitempty"` + AllStatus503 *int64 `json:"all_status_503,omitempty"` // Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by all sources. - AllStatus504 *int32 `json:"all_status_504,omitempty"` + AllStatus504 *int64 `json:"all_status_504,omitempty"` // Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by all sources. - AllStatus505 *int32 `json:"all_status_505,omitempty"` + AllStatus505 *int64 `json:"all_status_505,omitempty"` // Number of responses with latency between 0 and 1 millisecond received for origin requests made by all sources. - AllLatency0To1ms *int32 `json:"all_latency_0_to_1ms,omitempty"` + AllLatency0To1ms *int64 `json:"all_latency_0_to_1ms,omitempty"` // Number of responses with latency between 1 and 5 milliseconds received for origin requests made by all sources. - AllLatency1To5ms *int32 `json:"all_latency_1_to_5ms,omitempty"` + AllLatency1To5ms *int64 `json:"all_latency_1_to_5ms,omitempty"` // Number of responses with latency between 5 and 10 milliseconds received for origin requests made by all sources. - AllLatency5To10ms *int32 `json:"all_latency_5_to_10ms,omitempty"` + AllLatency5To10ms *int64 `json:"all_latency_5_to_10ms,omitempty"` // Number of responses with latency between 10 and 50 milliseconds received for origin requests made by all sources. - AllLatency10To50ms *int32 `json:"all_latency_10_to_50ms,omitempty"` + AllLatency10To50ms *int64 `json:"all_latency_10_to_50ms,omitempty"` // Number of responses with latency between 50 and 100 milliseconds received for origin requests made by all sources. - AllLatency50To100ms *int32 `json:"all_latency_50_to_100ms,omitempty"` + AllLatency50To100ms *int64 `json:"all_latency_50_to_100ms,omitempty"` // Number of responses with latency between 100 and 250 milliseconds received for origin requests made by all sources. - AllLatency100To250ms *int32 `json:"all_latency_100_to_250ms,omitempty"` + AllLatency100To250ms *int64 `json:"all_latency_100_to_250ms,omitempty"` // Number of responses with latency between 250 and 500 milliseconds received for origin requests made by all sources. - AllLatency250To500ms *int32 `json:"all_latency_250_to_500ms,omitempty"` + AllLatency250To500ms *int64 `json:"all_latency_250_to_500ms,omitempty"` // Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by all sources. - AllLatency500To1000ms *int32 `json:"all_latency_500_to_1000ms,omitempty"` + AllLatency500To1000ms *int64 `json:"all_latency_500_to_1000ms,omitempty"` // Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by all sources. - AllLatency1000To5000ms *int32 `json:"all_latency_1000_to_5000ms,omitempty"` + AllLatency1000To5000ms *int64 `json:"all_latency_1000_to_5000ms,omitempty"` // Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by all sources. - AllLatency5000To10000ms *int32 `json:"all_latency_5000_to_10000ms,omitempty"` + AllLatency5000To10000ms *int64 `json:"all_latency_5000_to_10000ms,omitempty"` // Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by all sources. - AllLatency10000To60000ms *int32 `json:"all_latency_10000_to_60000ms,omitempty"` + AllLatency10000To60000ms *int64 `json:"all_latency_10000_to_60000ms,omitempty"` // Number of responses with latency of 60,000 milliseconds and above received for origin requests made by all sources. - AllLatency60000ms *int32 `json:"all_latency_60000ms,omitempty"` + AllLatency60000ms *int64 `json:"all_latency_60000ms,omitempty"` AdditionalProperties map[string]any } @@ -345,9 +345,9 @@ func NewOriginInspectorMeasurementsWithDefaults() *OriginInspectorMeasurements { } // GetResponses returns the Responses field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetResponses() int32 { +func (o *OriginInspectorMeasurements) GetResponses() int64 { if o == nil || o.Responses == nil { - var ret int32 + var ret int64 return ret } return *o.Responses @@ -355,7 +355,7 @@ func (o *OriginInspectorMeasurements) GetResponses() int32 { // GetResponsesOk returns a tuple with the Responses field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetResponsesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetResponsesOk() (*int64, bool) { if o == nil || o.Responses == nil { return nil, false } @@ -371,15 +371,15 @@ func (o *OriginInspectorMeasurements) HasResponses() bool { return false } -// SetResponses gets a reference to the given int32 and assigns it to the Responses field. -func (o *OriginInspectorMeasurements) SetResponses(v int32) { +// SetResponses gets a reference to the given int64 and assigns it to the Responses field. +func (o *OriginInspectorMeasurements) SetResponses(v int64) { o.Responses = &v } // GetRespHeaderBytes returns the RespHeaderBytes field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetRespHeaderBytes() int32 { +func (o *OriginInspectorMeasurements) GetRespHeaderBytes() int64 { if o == nil || o.RespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespHeaderBytes @@ -387,7 +387,7 @@ func (o *OriginInspectorMeasurements) GetRespHeaderBytes() int32 { // GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetRespHeaderBytesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetRespHeaderBytesOk() (*int64, bool) { if o == nil || o.RespHeaderBytes == nil { return nil, false } @@ -403,15 +403,15 @@ func (o *OriginInspectorMeasurements) HasRespHeaderBytes() bool { return false } -// SetRespHeaderBytes gets a reference to the given int32 and assigns it to the RespHeaderBytes field. -func (o *OriginInspectorMeasurements) SetRespHeaderBytes(v int32) { +// SetRespHeaderBytes gets a reference to the given int64 and assigns it to the RespHeaderBytes field. +func (o *OriginInspectorMeasurements) SetRespHeaderBytes(v int64) { o.RespHeaderBytes = &v } // GetRespBodyBytes returns the RespBodyBytes field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetRespBodyBytes() int32 { +func (o *OriginInspectorMeasurements) GetRespBodyBytes() int64 { if o == nil || o.RespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespBodyBytes @@ -419,7 +419,7 @@ func (o *OriginInspectorMeasurements) GetRespBodyBytes() int32 { // GetRespBodyBytesOk returns a tuple with the RespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetRespBodyBytesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetRespBodyBytesOk() (*int64, bool) { if o == nil || o.RespBodyBytes == nil { return nil, false } @@ -435,15 +435,15 @@ func (o *OriginInspectorMeasurements) HasRespBodyBytes() bool { return false } -// SetRespBodyBytes gets a reference to the given int32 and assigns it to the RespBodyBytes field. -func (o *OriginInspectorMeasurements) SetRespBodyBytes(v int32) { +// SetRespBodyBytes gets a reference to the given int64 and assigns it to the RespBodyBytes field. +func (o *OriginInspectorMeasurements) SetRespBodyBytes(v int64) { o.RespBodyBytes = &v } // GetStatus1xx returns the Status1xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus1xx() int32 { +func (o *OriginInspectorMeasurements) GetStatus1xx() int64 { if o == nil || o.Status1xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status1xx @@ -451,7 +451,7 @@ func (o *OriginInspectorMeasurements) GetStatus1xx() int32 { // GetStatus1xxOk returns a tuple with the Status1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus1xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus1xxOk() (*int64, bool) { if o == nil || o.Status1xx == nil { return nil, false } @@ -467,15 +467,15 @@ func (o *OriginInspectorMeasurements) HasStatus1xx() bool { return false } -// SetStatus1xx gets a reference to the given int32 and assigns it to the Status1xx field. -func (o *OriginInspectorMeasurements) SetStatus1xx(v int32) { +// SetStatus1xx gets a reference to the given int64 and assigns it to the Status1xx field. +func (o *OriginInspectorMeasurements) SetStatus1xx(v int64) { o.Status1xx = &v } // GetStatus2xx returns the Status2xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus2xx() int32 { +func (o *OriginInspectorMeasurements) GetStatus2xx() int64 { if o == nil || o.Status2xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status2xx @@ -483,7 +483,7 @@ func (o *OriginInspectorMeasurements) GetStatus2xx() int32 { // GetStatus2xxOk returns a tuple with the Status2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus2xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus2xxOk() (*int64, bool) { if o == nil || o.Status2xx == nil { return nil, false } @@ -499,15 +499,15 @@ func (o *OriginInspectorMeasurements) HasStatus2xx() bool { return false } -// SetStatus2xx gets a reference to the given int32 and assigns it to the Status2xx field. -func (o *OriginInspectorMeasurements) SetStatus2xx(v int32) { +// SetStatus2xx gets a reference to the given int64 and assigns it to the Status2xx field. +func (o *OriginInspectorMeasurements) SetStatus2xx(v int64) { o.Status2xx = &v } // GetStatus3xx returns the Status3xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus3xx() int32 { +func (o *OriginInspectorMeasurements) GetStatus3xx() int64 { if o == nil || o.Status3xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status3xx @@ -515,7 +515,7 @@ func (o *OriginInspectorMeasurements) GetStatus3xx() int32 { // GetStatus3xxOk returns a tuple with the Status3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus3xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus3xxOk() (*int64, bool) { if o == nil || o.Status3xx == nil { return nil, false } @@ -531,15 +531,15 @@ func (o *OriginInspectorMeasurements) HasStatus3xx() bool { return false } -// SetStatus3xx gets a reference to the given int32 and assigns it to the Status3xx field. -func (o *OriginInspectorMeasurements) SetStatus3xx(v int32) { +// SetStatus3xx gets a reference to the given int64 and assigns it to the Status3xx field. +func (o *OriginInspectorMeasurements) SetStatus3xx(v int64) { o.Status3xx = &v } // GetStatus4xx returns the Status4xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus4xx() int32 { +func (o *OriginInspectorMeasurements) GetStatus4xx() int64 { if o == nil || o.Status4xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status4xx @@ -547,7 +547,7 @@ func (o *OriginInspectorMeasurements) GetStatus4xx() int32 { // GetStatus4xxOk returns a tuple with the Status4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus4xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus4xxOk() (*int64, bool) { if o == nil || o.Status4xx == nil { return nil, false } @@ -563,15 +563,15 @@ func (o *OriginInspectorMeasurements) HasStatus4xx() bool { return false } -// SetStatus4xx gets a reference to the given int32 and assigns it to the Status4xx field. -func (o *OriginInspectorMeasurements) SetStatus4xx(v int32) { +// SetStatus4xx gets a reference to the given int64 and assigns it to the Status4xx field. +func (o *OriginInspectorMeasurements) SetStatus4xx(v int64) { o.Status4xx = &v } // GetStatus5xx returns the Status5xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus5xx() int32 { +func (o *OriginInspectorMeasurements) GetStatus5xx() int64 { if o == nil || o.Status5xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status5xx @@ -579,7 +579,7 @@ func (o *OriginInspectorMeasurements) GetStatus5xx() int32 { // GetStatus5xxOk returns a tuple with the Status5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus5xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus5xxOk() (*int64, bool) { if o == nil || o.Status5xx == nil { return nil, false } @@ -595,15 +595,15 @@ func (o *OriginInspectorMeasurements) HasStatus5xx() bool { return false } -// SetStatus5xx gets a reference to the given int32 and assigns it to the Status5xx field. -func (o *OriginInspectorMeasurements) SetStatus5xx(v int32) { +// SetStatus5xx gets a reference to the given int64 and assigns it to the Status5xx field. +func (o *OriginInspectorMeasurements) SetStatus5xx(v int64) { o.Status5xx = &v } // GetStatus200 returns the Status200 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus200() int32 { +func (o *OriginInspectorMeasurements) GetStatus200() int64 { if o == nil || o.Status200 == nil { - var ret int32 + var ret int64 return ret } return *o.Status200 @@ -611,7 +611,7 @@ func (o *OriginInspectorMeasurements) GetStatus200() int32 { // GetStatus200Ok returns a tuple with the Status200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus200Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus200Ok() (*int64, bool) { if o == nil || o.Status200 == nil { return nil, false } @@ -627,15 +627,15 @@ func (o *OriginInspectorMeasurements) HasStatus200() bool { return false } -// SetStatus200 gets a reference to the given int32 and assigns it to the Status200 field. -func (o *OriginInspectorMeasurements) SetStatus200(v int32) { +// SetStatus200 gets a reference to the given int64 and assigns it to the Status200 field. +func (o *OriginInspectorMeasurements) SetStatus200(v int64) { o.Status200 = &v } // GetStatus204 returns the Status204 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus204() int32 { +func (o *OriginInspectorMeasurements) GetStatus204() int64 { if o == nil || o.Status204 == nil { - var ret int32 + var ret int64 return ret } return *o.Status204 @@ -643,7 +643,7 @@ func (o *OriginInspectorMeasurements) GetStatus204() int32 { // GetStatus204Ok returns a tuple with the Status204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus204Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus204Ok() (*int64, bool) { if o == nil || o.Status204 == nil { return nil, false } @@ -659,15 +659,15 @@ func (o *OriginInspectorMeasurements) HasStatus204() bool { return false } -// SetStatus204 gets a reference to the given int32 and assigns it to the Status204 field. -func (o *OriginInspectorMeasurements) SetStatus204(v int32) { +// SetStatus204 gets a reference to the given int64 and assigns it to the Status204 field. +func (o *OriginInspectorMeasurements) SetStatus204(v int64) { o.Status204 = &v } // GetStatus206 returns the Status206 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus206() int32 { +func (o *OriginInspectorMeasurements) GetStatus206() int64 { if o == nil || o.Status206 == nil { - var ret int32 + var ret int64 return ret } return *o.Status206 @@ -675,7 +675,7 @@ func (o *OriginInspectorMeasurements) GetStatus206() int32 { // GetStatus206Ok returns a tuple with the Status206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus206Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus206Ok() (*int64, bool) { if o == nil || o.Status206 == nil { return nil, false } @@ -691,15 +691,15 @@ func (o *OriginInspectorMeasurements) HasStatus206() bool { return false } -// SetStatus206 gets a reference to the given int32 and assigns it to the Status206 field. -func (o *OriginInspectorMeasurements) SetStatus206(v int32) { +// SetStatus206 gets a reference to the given int64 and assigns it to the Status206 field. +func (o *OriginInspectorMeasurements) SetStatus206(v int64) { o.Status206 = &v } // GetStatus301 returns the Status301 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus301() int32 { +func (o *OriginInspectorMeasurements) GetStatus301() int64 { if o == nil || o.Status301 == nil { - var ret int32 + var ret int64 return ret } return *o.Status301 @@ -707,7 +707,7 @@ func (o *OriginInspectorMeasurements) GetStatus301() int32 { // GetStatus301Ok returns a tuple with the Status301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus301Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus301Ok() (*int64, bool) { if o == nil || o.Status301 == nil { return nil, false } @@ -723,15 +723,15 @@ func (o *OriginInspectorMeasurements) HasStatus301() bool { return false } -// SetStatus301 gets a reference to the given int32 and assigns it to the Status301 field. -func (o *OriginInspectorMeasurements) SetStatus301(v int32) { +// SetStatus301 gets a reference to the given int64 and assigns it to the Status301 field. +func (o *OriginInspectorMeasurements) SetStatus301(v int64) { o.Status301 = &v } // GetStatus302 returns the Status302 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus302() int32 { +func (o *OriginInspectorMeasurements) GetStatus302() int64 { if o == nil || o.Status302 == nil { - var ret int32 + var ret int64 return ret } return *o.Status302 @@ -739,7 +739,7 @@ func (o *OriginInspectorMeasurements) GetStatus302() int32 { // GetStatus302Ok returns a tuple with the Status302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus302Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus302Ok() (*int64, bool) { if o == nil || o.Status302 == nil { return nil, false } @@ -755,15 +755,15 @@ func (o *OriginInspectorMeasurements) HasStatus302() bool { return false } -// SetStatus302 gets a reference to the given int32 and assigns it to the Status302 field. -func (o *OriginInspectorMeasurements) SetStatus302(v int32) { +// SetStatus302 gets a reference to the given int64 and assigns it to the Status302 field. +func (o *OriginInspectorMeasurements) SetStatus302(v int64) { o.Status302 = &v } // GetStatus304 returns the Status304 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus304() int32 { +func (o *OriginInspectorMeasurements) GetStatus304() int64 { if o == nil || o.Status304 == nil { - var ret int32 + var ret int64 return ret } return *o.Status304 @@ -771,7 +771,7 @@ func (o *OriginInspectorMeasurements) GetStatus304() int32 { // GetStatus304Ok returns a tuple with the Status304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus304Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus304Ok() (*int64, bool) { if o == nil || o.Status304 == nil { return nil, false } @@ -787,15 +787,15 @@ func (o *OriginInspectorMeasurements) HasStatus304() bool { return false } -// SetStatus304 gets a reference to the given int32 and assigns it to the Status304 field. -func (o *OriginInspectorMeasurements) SetStatus304(v int32) { +// SetStatus304 gets a reference to the given int64 and assigns it to the Status304 field. +func (o *OriginInspectorMeasurements) SetStatus304(v int64) { o.Status304 = &v } // GetStatus400 returns the Status400 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus400() int32 { +func (o *OriginInspectorMeasurements) GetStatus400() int64 { if o == nil || o.Status400 == nil { - var ret int32 + var ret int64 return ret } return *o.Status400 @@ -803,7 +803,7 @@ func (o *OriginInspectorMeasurements) GetStatus400() int32 { // GetStatus400Ok returns a tuple with the Status400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus400Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus400Ok() (*int64, bool) { if o == nil || o.Status400 == nil { return nil, false } @@ -819,15 +819,15 @@ func (o *OriginInspectorMeasurements) HasStatus400() bool { return false } -// SetStatus400 gets a reference to the given int32 and assigns it to the Status400 field. -func (o *OriginInspectorMeasurements) SetStatus400(v int32) { +// SetStatus400 gets a reference to the given int64 and assigns it to the Status400 field. +func (o *OriginInspectorMeasurements) SetStatus400(v int64) { o.Status400 = &v } // GetStatus401 returns the Status401 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus401() int32 { +func (o *OriginInspectorMeasurements) GetStatus401() int64 { if o == nil || o.Status401 == nil { - var ret int32 + var ret int64 return ret } return *o.Status401 @@ -835,7 +835,7 @@ func (o *OriginInspectorMeasurements) GetStatus401() int32 { // GetStatus401Ok returns a tuple with the Status401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus401Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus401Ok() (*int64, bool) { if o == nil || o.Status401 == nil { return nil, false } @@ -851,15 +851,15 @@ func (o *OriginInspectorMeasurements) HasStatus401() bool { return false } -// SetStatus401 gets a reference to the given int32 and assigns it to the Status401 field. -func (o *OriginInspectorMeasurements) SetStatus401(v int32) { +// SetStatus401 gets a reference to the given int64 and assigns it to the Status401 field. +func (o *OriginInspectorMeasurements) SetStatus401(v int64) { o.Status401 = &v } // GetStatus403 returns the Status403 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus403() int32 { +func (o *OriginInspectorMeasurements) GetStatus403() int64 { if o == nil || o.Status403 == nil { - var ret int32 + var ret int64 return ret } return *o.Status403 @@ -867,7 +867,7 @@ func (o *OriginInspectorMeasurements) GetStatus403() int32 { // GetStatus403Ok returns a tuple with the Status403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus403Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus403Ok() (*int64, bool) { if o == nil || o.Status403 == nil { return nil, false } @@ -883,15 +883,15 @@ func (o *OriginInspectorMeasurements) HasStatus403() bool { return false } -// SetStatus403 gets a reference to the given int32 and assigns it to the Status403 field. -func (o *OriginInspectorMeasurements) SetStatus403(v int32) { +// SetStatus403 gets a reference to the given int64 and assigns it to the Status403 field. +func (o *OriginInspectorMeasurements) SetStatus403(v int64) { o.Status403 = &v } // GetStatus404 returns the Status404 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus404() int32 { +func (o *OriginInspectorMeasurements) GetStatus404() int64 { if o == nil || o.Status404 == nil { - var ret int32 + var ret int64 return ret } return *o.Status404 @@ -899,7 +899,7 @@ func (o *OriginInspectorMeasurements) GetStatus404() int32 { // GetStatus404Ok returns a tuple with the Status404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus404Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus404Ok() (*int64, bool) { if o == nil || o.Status404 == nil { return nil, false } @@ -915,15 +915,15 @@ func (o *OriginInspectorMeasurements) HasStatus404() bool { return false } -// SetStatus404 gets a reference to the given int32 and assigns it to the Status404 field. -func (o *OriginInspectorMeasurements) SetStatus404(v int32) { +// SetStatus404 gets a reference to the given int64 and assigns it to the Status404 field. +func (o *OriginInspectorMeasurements) SetStatus404(v int64) { o.Status404 = &v } // GetStatus416 returns the Status416 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus416() int32 { +func (o *OriginInspectorMeasurements) GetStatus416() int64 { if o == nil || o.Status416 == nil { - var ret int32 + var ret int64 return ret } return *o.Status416 @@ -931,7 +931,7 @@ func (o *OriginInspectorMeasurements) GetStatus416() int32 { // GetStatus416Ok returns a tuple with the Status416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus416Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus416Ok() (*int64, bool) { if o == nil || o.Status416 == nil { return nil, false } @@ -947,15 +947,15 @@ func (o *OriginInspectorMeasurements) HasStatus416() bool { return false } -// SetStatus416 gets a reference to the given int32 and assigns it to the Status416 field. -func (o *OriginInspectorMeasurements) SetStatus416(v int32) { +// SetStatus416 gets a reference to the given int64 and assigns it to the Status416 field. +func (o *OriginInspectorMeasurements) SetStatus416(v int64) { o.Status416 = &v } // GetStatus429 returns the Status429 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus429() int32 { +func (o *OriginInspectorMeasurements) GetStatus429() int64 { if o == nil || o.Status429 == nil { - var ret int32 + var ret int64 return ret } return *o.Status429 @@ -963,7 +963,7 @@ func (o *OriginInspectorMeasurements) GetStatus429() int32 { // GetStatus429Ok returns a tuple with the Status429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus429Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus429Ok() (*int64, bool) { if o == nil || o.Status429 == nil { return nil, false } @@ -979,15 +979,15 @@ func (o *OriginInspectorMeasurements) HasStatus429() bool { return false } -// SetStatus429 gets a reference to the given int32 and assigns it to the Status429 field. -func (o *OriginInspectorMeasurements) SetStatus429(v int32) { +// SetStatus429 gets a reference to the given int64 and assigns it to the Status429 field. +func (o *OriginInspectorMeasurements) SetStatus429(v int64) { o.Status429 = &v } // GetStatus500 returns the Status500 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus500() int32 { +func (o *OriginInspectorMeasurements) GetStatus500() int64 { if o == nil || o.Status500 == nil { - var ret int32 + var ret int64 return ret } return *o.Status500 @@ -995,7 +995,7 @@ func (o *OriginInspectorMeasurements) GetStatus500() int32 { // GetStatus500Ok returns a tuple with the Status500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus500Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus500Ok() (*int64, bool) { if o == nil || o.Status500 == nil { return nil, false } @@ -1011,15 +1011,15 @@ func (o *OriginInspectorMeasurements) HasStatus500() bool { return false } -// SetStatus500 gets a reference to the given int32 and assigns it to the Status500 field. -func (o *OriginInspectorMeasurements) SetStatus500(v int32) { +// SetStatus500 gets a reference to the given int64 and assigns it to the Status500 field. +func (o *OriginInspectorMeasurements) SetStatus500(v int64) { o.Status500 = &v } // GetStatus501 returns the Status501 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus501() int32 { +func (o *OriginInspectorMeasurements) GetStatus501() int64 { if o == nil || o.Status501 == nil { - var ret int32 + var ret int64 return ret } return *o.Status501 @@ -1027,7 +1027,7 @@ func (o *OriginInspectorMeasurements) GetStatus501() int32 { // GetStatus501Ok returns a tuple with the Status501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus501Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus501Ok() (*int64, bool) { if o == nil || o.Status501 == nil { return nil, false } @@ -1043,15 +1043,15 @@ func (o *OriginInspectorMeasurements) HasStatus501() bool { return false } -// SetStatus501 gets a reference to the given int32 and assigns it to the Status501 field. -func (o *OriginInspectorMeasurements) SetStatus501(v int32) { +// SetStatus501 gets a reference to the given int64 and assigns it to the Status501 field. +func (o *OriginInspectorMeasurements) SetStatus501(v int64) { o.Status501 = &v } // GetStatus502 returns the Status502 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus502() int32 { +func (o *OriginInspectorMeasurements) GetStatus502() int64 { if o == nil || o.Status502 == nil { - var ret int32 + var ret int64 return ret } return *o.Status502 @@ -1059,7 +1059,7 @@ func (o *OriginInspectorMeasurements) GetStatus502() int32 { // GetStatus502Ok returns a tuple with the Status502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus502Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus502Ok() (*int64, bool) { if o == nil || o.Status502 == nil { return nil, false } @@ -1075,15 +1075,15 @@ func (o *OriginInspectorMeasurements) HasStatus502() bool { return false } -// SetStatus502 gets a reference to the given int32 and assigns it to the Status502 field. -func (o *OriginInspectorMeasurements) SetStatus502(v int32) { +// SetStatus502 gets a reference to the given int64 and assigns it to the Status502 field. +func (o *OriginInspectorMeasurements) SetStatus502(v int64) { o.Status502 = &v } // GetStatus503 returns the Status503 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus503() int32 { +func (o *OriginInspectorMeasurements) GetStatus503() int64 { if o == nil || o.Status503 == nil { - var ret int32 + var ret int64 return ret } return *o.Status503 @@ -1091,7 +1091,7 @@ func (o *OriginInspectorMeasurements) GetStatus503() int32 { // GetStatus503Ok returns a tuple with the Status503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus503Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus503Ok() (*int64, bool) { if o == nil || o.Status503 == nil { return nil, false } @@ -1107,15 +1107,15 @@ func (o *OriginInspectorMeasurements) HasStatus503() bool { return false } -// SetStatus503 gets a reference to the given int32 and assigns it to the Status503 field. -func (o *OriginInspectorMeasurements) SetStatus503(v int32) { +// SetStatus503 gets a reference to the given int64 and assigns it to the Status503 field. +func (o *OriginInspectorMeasurements) SetStatus503(v int64) { o.Status503 = &v } // GetStatus504 returns the Status504 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus504() int32 { +func (o *OriginInspectorMeasurements) GetStatus504() int64 { if o == nil || o.Status504 == nil { - var ret int32 + var ret int64 return ret } return *o.Status504 @@ -1123,7 +1123,7 @@ func (o *OriginInspectorMeasurements) GetStatus504() int32 { // GetStatus504Ok returns a tuple with the Status504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus504Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus504Ok() (*int64, bool) { if o == nil || o.Status504 == nil { return nil, false } @@ -1139,15 +1139,15 @@ func (o *OriginInspectorMeasurements) HasStatus504() bool { return false } -// SetStatus504 gets a reference to the given int32 and assigns it to the Status504 field. -func (o *OriginInspectorMeasurements) SetStatus504(v int32) { +// SetStatus504 gets a reference to the given int64 and assigns it to the Status504 field. +func (o *OriginInspectorMeasurements) SetStatus504(v int64) { o.Status504 = &v } // GetStatus505 returns the Status505 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetStatus505() int32 { +func (o *OriginInspectorMeasurements) GetStatus505() int64 { if o == nil || o.Status505 == nil { - var ret int32 + var ret int64 return ret } return *o.Status505 @@ -1155,7 +1155,7 @@ func (o *OriginInspectorMeasurements) GetStatus505() int32 { // GetStatus505Ok returns a tuple with the Status505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetStatus505Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetStatus505Ok() (*int64, bool) { if o == nil || o.Status505 == nil { return nil, false } @@ -1171,15 +1171,15 @@ func (o *OriginInspectorMeasurements) HasStatus505() bool { return false } -// SetStatus505 gets a reference to the given int32 and assigns it to the Status505 field. -func (o *OriginInspectorMeasurements) SetStatus505(v int32) { +// SetStatus505 gets a reference to the given int64 and assigns it to the Status505 field. +func (o *OriginInspectorMeasurements) SetStatus505(v int64) { o.Status505 = &v } // GetLatency0To1ms returns the Latency0To1ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency0To1ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency0To1ms() int64 { if o == nil || o.Latency0To1ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency0To1ms @@ -1187,7 +1187,7 @@ func (o *OriginInspectorMeasurements) GetLatency0To1ms() int32 { // GetLatency0To1msOk returns a tuple with the Latency0To1ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency0To1msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency0To1msOk() (*int64, bool) { if o == nil || o.Latency0To1ms == nil { return nil, false } @@ -1203,15 +1203,15 @@ func (o *OriginInspectorMeasurements) HasLatency0To1ms() bool { return false } -// SetLatency0To1ms gets a reference to the given int32 and assigns it to the Latency0To1ms field. -func (o *OriginInspectorMeasurements) SetLatency0To1ms(v int32) { +// SetLatency0To1ms gets a reference to the given int64 and assigns it to the Latency0To1ms field. +func (o *OriginInspectorMeasurements) SetLatency0To1ms(v int64) { o.Latency0To1ms = &v } // GetLatency1To5ms returns the Latency1To5ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency1To5ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency1To5ms() int64 { if o == nil || o.Latency1To5ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency1To5ms @@ -1219,7 +1219,7 @@ func (o *OriginInspectorMeasurements) GetLatency1To5ms() int32 { // GetLatency1To5msOk returns a tuple with the Latency1To5ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency1To5msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency1To5msOk() (*int64, bool) { if o == nil || o.Latency1To5ms == nil { return nil, false } @@ -1235,15 +1235,15 @@ func (o *OriginInspectorMeasurements) HasLatency1To5ms() bool { return false } -// SetLatency1To5ms gets a reference to the given int32 and assigns it to the Latency1To5ms field. -func (o *OriginInspectorMeasurements) SetLatency1To5ms(v int32) { +// SetLatency1To5ms gets a reference to the given int64 and assigns it to the Latency1To5ms field. +func (o *OriginInspectorMeasurements) SetLatency1To5ms(v int64) { o.Latency1To5ms = &v } // GetLatency5To10ms returns the Latency5To10ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency5To10ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency5To10ms() int64 { if o == nil || o.Latency5To10ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency5To10ms @@ -1251,7 +1251,7 @@ func (o *OriginInspectorMeasurements) GetLatency5To10ms() int32 { // GetLatency5To10msOk returns a tuple with the Latency5To10ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency5To10msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency5To10msOk() (*int64, bool) { if o == nil || o.Latency5To10ms == nil { return nil, false } @@ -1267,15 +1267,15 @@ func (o *OriginInspectorMeasurements) HasLatency5To10ms() bool { return false } -// SetLatency5To10ms gets a reference to the given int32 and assigns it to the Latency5To10ms field. -func (o *OriginInspectorMeasurements) SetLatency5To10ms(v int32) { +// SetLatency5To10ms gets a reference to the given int64 and assigns it to the Latency5To10ms field. +func (o *OriginInspectorMeasurements) SetLatency5To10ms(v int64) { o.Latency5To10ms = &v } // GetLatency10To50ms returns the Latency10To50ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency10To50ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency10To50ms() int64 { if o == nil || o.Latency10To50ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency10To50ms @@ -1283,7 +1283,7 @@ func (o *OriginInspectorMeasurements) GetLatency10To50ms() int32 { // GetLatency10To50msOk returns a tuple with the Latency10To50ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency10To50msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency10To50msOk() (*int64, bool) { if o == nil || o.Latency10To50ms == nil { return nil, false } @@ -1299,15 +1299,15 @@ func (o *OriginInspectorMeasurements) HasLatency10To50ms() bool { return false } -// SetLatency10To50ms gets a reference to the given int32 and assigns it to the Latency10To50ms field. -func (o *OriginInspectorMeasurements) SetLatency10To50ms(v int32) { +// SetLatency10To50ms gets a reference to the given int64 and assigns it to the Latency10To50ms field. +func (o *OriginInspectorMeasurements) SetLatency10To50ms(v int64) { o.Latency10To50ms = &v } // GetLatency50To100ms returns the Latency50To100ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency50To100ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency50To100ms() int64 { if o == nil || o.Latency50To100ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency50To100ms @@ -1315,7 +1315,7 @@ func (o *OriginInspectorMeasurements) GetLatency50To100ms() int32 { // GetLatency50To100msOk returns a tuple with the Latency50To100ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency50To100msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency50To100msOk() (*int64, bool) { if o == nil || o.Latency50To100ms == nil { return nil, false } @@ -1331,15 +1331,15 @@ func (o *OriginInspectorMeasurements) HasLatency50To100ms() bool { return false } -// SetLatency50To100ms gets a reference to the given int32 and assigns it to the Latency50To100ms field. -func (o *OriginInspectorMeasurements) SetLatency50To100ms(v int32) { +// SetLatency50To100ms gets a reference to the given int64 and assigns it to the Latency50To100ms field. +func (o *OriginInspectorMeasurements) SetLatency50To100ms(v int64) { o.Latency50To100ms = &v } // GetLatency100To250ms returns the Latency100To250ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency100To250ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency100To250ms() int64 { if o == nil || o.Latency100To250ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency100To250ms @@ -1347,7 +1347,7 @@ func (o *OriginInspectorMeasurements) GetLatency100To250ms() int32 { // GetLatency100To250msOk returns a tuple with the Latency100To250ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency100To250msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency100To250msOk() (*int64, bool) { if o == nil || o.Latency100To250ms == nil { return nil, false } @@ -1363,15 +1363,15 @@ func (o *OriginInspectorMeasurements) HasLatency100To250ms() bool { return false } -// SetLatency100To250ms gets a reference to the given int32 and assigns it to the Latency100To250ms field. -func (o *OriginInspectorMeasurements) SetLatency100To250ms(v int32) { +// SetLatency100To250ms gets a reference to the given int64 and assigns it to the Latency100To250ms field. +func (o *OriginInspectorMeasurements) SetLatency100To250ms(v int64) { o.Latency100To250ms = &v } // GetLatency250To500ms returns the Latency250To500ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency250To500ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency250To500ms() int64 { if o == nil || o.Latency250To500ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency250To500ms @@ -1379,7 +1379,7 @@ func (o *OriginInspectorMeasurements) GetLatency250To500ms() int32 { // GetLatency250To500msOk returns a tuple with the Latency250To500ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency250To500msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency250To500msOk() (*int64, bool) { if o == nil || o.Latency250To500ms == nil { return nil, false } @@ -1395,15 +1395,15 @@ func (o *OriginInspectorMeasurements) HasLatency250To500ms() bool { return false } -// SetLatency250To500ms gets a reference to the given int32 and assigns it to the Latency250To500ms field. -func (o *OriginInspectorMeasurements) SetLatency250To500ms(v int32) { +// SetLatency250To500ms gets a reference to the given int64 and assigns it to the Latency250To500ms field. +func (o *OriginInspectorMeasurements) SetLatency250To500ms(v int64) { o.Latency250To500ms = &v } // GetLatency500To1000ms returns the Latency500To1000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency500To1000ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency500To1000ms() int64 { if o == nil || o.Latency500To1000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency500To1000ms @@ -1411,7 +1411,7 @@ func (o *OriginInspectorMeasurements) GetLatency500To1000ms() int32 { // GetLatency500To1000msOk returns a tuple with the Latency500To1000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency500To1000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency500To1000msOk() (*int64, bool) { if o == nil || o.Latency500To1000ms == nil { return nil, false } @@ -1427,15 +1427,15 @@ func (o *OriginInspectorMeasurements) HasLatency500To1000ms() bool { return false } -// SetLatency500To1000ms gets a reference to the given int32 and assigns it to the Latency500To1000ms field. -func (o *OriginInspectorMeasurements) SetLatency500To1000ms(v int32) { +// SetLatency500To1000ms gets a reference to the given int64 and assigns it to the Latency500To1000ms field. +func (o *OriginInspectorMeasurements) SetLatency500To1000ms(v int64) { o.Latency500To1000ms = &v } // GetLatency1000To5000ms returns the Latency1000To5000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency1000To5000ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency1000To5000ms() int64 { if o == nil || o.Latency1000To5000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency1000To5000ms @@ -1443,7 +1443,7 @@ func (o *OriginInspectorMeasurements) GetLatency1000To5000ms() int32 { // GetLatency1000To5000msOk returns a tuple with the Latency1000To5000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency1000To5000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency1000To5000msOk() (*int64, bool) { if o == nil || o.Latency1000To5000ms == nil { return nil, false } @@ -1459,15 +1459,15 @@ func (o *OriginInspectorMeasurements) HasLatency1000To5000ms() bool { return false } -// SetLatency1000To5000ms gets a reference to the given int32 and assigns it to the Latency1000To5000ms field. -func (o *OriginInspectorMeasurements) SetLatency1000To5000ms(v int32) { +// SetLatency1000To5000ms gets a reference to the given int64 and assigns it to the Latency1000To5000ms field. +func (o *OriginInspectorMeasurements) SetLatency1000To5000ms(v int64) { o.Latency1000To5000ms = &v } // GetLatency5000To10000ms returns the Latency5000To10000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency5000To10000ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency5000To10000ms() int64 { if o == nil || o.Latency5000To10000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency5000To10000ms @@ -1475,7 +1475,7 @@ func (o *OriginInspectorMeasurements) GetLatency5000To10000ms() int32 { // GetLatency5000To10000msOk returns a tuple with the Latency5000To10000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency5000To10000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency5000To10000msOk() (*int64, bool) { if o == nil || o.Latency5000To10000ms == nil { return nil, false } @@ -1491,15 +1491,15 @@ func (o *OriginInspectorMeasurements) HasLatency5000To10000ms() bool { return false } -// SetLatency5000To10000ms gets a reference to the given int32 and assigns it to the Latency5000To10000ms field. -func (o *OriginInspectorMeasurements) SetLatency5000To10000ms(v int32) { +// SetLatency5000To10000ms gets a reference to the given int64 and assigns it to the Latency5000To10000ms field. +func (o *OriginInspectorMeasurements) SetLatency5000To10000ms(v int64) { o.Latency5000To10000ms = &v } // GetLatency10000To60000ms returns the Latency10000To60000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency10000To60000ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency10000To60000ms() int64 { if o == nil || o.Latency10000To60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency10000To60000ms @@ -1507,7 +1507,7 @@ func (o *OriginInspectorMeasurements) GetLatency10000To60000ms() int32 { // GetLatency10000To60000msOk returns a tuple with the Latency10000To60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency10000To60000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency10000To60000msOk() (*int64, bool) { if o == nil || o.Latency10000To60000ms == nil { return nil, false } @@ -1523,15 +1523,15 @@ func (o *OriginInspectorMeasurements) HasLatency10000To60000ms() bool { return false } -// SetLatency10000To60000ms gets a reference to the given int32 and assigns it to the Latency10000To60000ms field. -func (o *OriginInspectorMeasurements) SetLatency10000To60000ms(v int32) { +// SetLatency10000To60000ms gets a reference to the given int64 and assigns it to the Latency10000To60000ms field. +func (o *OriginInspectorMeasurements) SetLatency10000To60000ms(v int64) { o.Latency10000To60000ms = &v } // GetLatency60000ms returns the Latency60000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetLatency60000ms() int32 { +func (o *OriginInspectorMeasurements) GetLatency60000ms() int64 { if o == nil || o.Latency60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency60000ms @@ -1539,7 +1539,7 @@ func (o *OriginInspectorMeasurements) GetLatency60000ms() int32 { // GetLatency60000msOk returns a tuple with the Latency60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetLatency60000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetLatency60000msOk() (*int64, bool) { if o == nil || o.Latency60000ms == nil { return nil, false } @@ -1555,15 +1555,15 @@ func (o *OriginInspectorMeasurements) HasLatency60000ms() bool { return false } -// SetLatency60000ms gets a reference to the given int32 and assigns it to the Latency60000ms field. -func (o *OriginInspectorMeasurements) SetLatency60000ms(v int32) { +// SetLatency60000ms gets a reference to the given int64 and assigns it to the Latency60000ms field. +func (o *OriginInspectorMeasurements) SetLatency60000ms(v int64) { o.Latency60000ms = &v } // GetWafResponses returns the WafResponses field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafResponses() int32 { +func (o *OriginInspectorMeasurements) GetWafResponses() int64 { if o == nil || o.WafResponses == nil { - var ret int32 + var ret int64 return ret } return *o.WafResponses @@ -1571,7 +1571,7 @@ func (o *OriginInspectorMeasurements) GetWafResponses() int32 { // GetWafResponsesOk returns a tuple with the WafResponses field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafResponsesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafResponsesOk() (*int64, bool) { if o == nil || o.WafResponses == nil { return nil, false } @@ -1587,15 +1587,15 @@ func (o *OriginInspectorMeasurements) HasWafResponses() bool { return false } -// SetWafResponses gets a reference to the given int32 and assigns it to the WafResponses field. -func (o *OriginInspectorMeasurements) SetWafResponses(v int32) { +// SetWafResponses gets a reference to the given int64 and assigns it to the WafResponses field. +func (o *OriginInspectorMeasurements) SetWafResponses(v int64) { o.WafResponses = &v } // GetWafRespHeaderBytes returns the WafRespHeaderBytes field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafRespHeaderBytes() int32 { +func (o *OriginInspectorMeasurements) GetWafRespHeaderBytes() int64 { if o == nil || o.WafRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WafRespHeaderBytes @@ -1603,7 +1603,7 @@ func (o *OriginInspectorMeasurements) GetWafRespHeaderBytes() int32 { // GetWafRespHeaderBytesOk returns a tuple with the WafRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafRespHeaderBytesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafRespHeaderBytesOk() (*int64, bool) { if o == nil || o.WafRespHeaderBytes == nil { return nil, false } @@ -1619,15 +1619,15 @@ func (o *OriginInspectorMeasurements) HasWafRespHeaderBytes() bool { return false } -// SetWafRespHeaderBytes gets a reference to the given int32 and assigns it to the WafRespHeaderBytes field. -func (o *OriginInspectorMeasurements) SetWafRespHeaderBytes(v int32) { +// SetWafRespHeaderBytes gets a reference to the given int64 and assigns it to the WafRespHeaderBytes field. +func (o *OriginInspectorMeasurements) SetWafRespHeaderBytes(v int64) { o.WafRespHeaderBytes = &v } // GetWafRespBodyBytes returns the WafRespBodyBytes field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafRespBodyBytes() int32 { +func (o *OriginInspectorMeasurements) GetWafRespBodyBytes() int64 { if o == nil || o.WafRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WafRespBodyBytes @@ -1635,7 +1635,7 @@ func (o *OriginInspectorMeasurements) GetWafRespBodyBytes() int32 { // GetWafRespBodyBytesOk returns a tuple with the WafRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafRespBodyBytesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafRespBodyBytesOk() (*int64, bool) { if o == nil || o.WafRespBodyBytes == nil { return nil, false } @@ -1651,15 +1651,15 @@ func (o *OriginInspectorMeasurements) HasWafRespBodyBytes() bool { return false } -// SetWafRespBodyBytes gets a reference to the given int32 and assigns it to the WafRespBodyBytes field. -func (o *OriginInspectorMeasurements) SetWafRespBodyBytes(v int32) { +// SetWafRespBodyBytes gets a reference to the given int64 and assigns it to the WafRespBodyBytes field. +func (o *OriginInspectorMeasurements) SetWafRespBodyBytes(v int64) { o.WafRespBodyBytes = &v } // GetWafStatus1xx returns the WafStatus1xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus1xx() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus1xx() int64 { if o == nil || o.WafStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus1xx @@ -1667,7 +1667,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus1xx() int32 { // GetWafStatus1xxOk returns a tuple with the WafStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus1xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus1xxOk() (*int64, bool) { if o == nil || o.WafStatus1xx == nil { return nil, false } @@ -1683,15 +1683,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus1xx() bool { return false } -// SetWafStatus1xx gets a reference to the given int32 and assigns it to the WafStatus1xx field. -func (o *OriginInspectorMeasurements) SetWafStatus1xx(v int32) { +// SetWafStatus1xx gets a reference to the given int64 and assigns it to the WafStatus1xx field. +func (o *OriginInspectorMeasurements) SetWafStatus1xx(v int64) { o.WafStatus1xx = &v } // GetWafStatus2xx returns the WafStatus2xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus2xx() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus2xx() int64 { if o == nil || o.WafStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus2xx @@ -1699,7 +1699,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus2xx() int32 { // GetWafStatus2xxOk returns a tuple with the WafStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus2xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus2xxOk() (*int64, bool) { if o == nil || o.WafStatus2xx == nil { return nil, false } @@ -1715,15 +1715,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus2xx() bool { return false } -// SetWafStatus2xx gets a reference to the given int32 and assigns it to the WafStatus2xx field. -func (o *OriginInspectorMeasurements) SetWafStatus2xx(v int32) { +// SetWafStatus2xx gets a reference to the given int64 and assigns it to the WafStatus2xx field. +func (o *OriginInspectorMeasurements) SetWafStatus2xx(v int64) { o.WafStatus2xx = &v } // GetWafStatus3xx returns the WafStatus3xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus3xx() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus3xx() int64 { if o == nil || o.WafStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus3xx @@ -1731,7 +1731,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus3xx() int32 { // GetWafStatus3xxOk returns a tuple with the WafStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus3xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus3xxOk() (*int64, bool) { if o == nil || o.WafStatus3xx == nil { return nil, false } @@ -1747,15 +1747,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus3xx() bool { return false } -// SetWafStatus3xx gets a reference to the given int32 and assigns it to the WafStatus3xx field. -func (o *OriginInspectorMeasurements) SetWafStatus3xx(v int32) { +// SetWafStatus3xx gets a reference to the given int64 and assigns it to the WafStatus3xx field. +func (o *OriginInspectorMeasurements) SetWafStatus3xx(v int64) { o.WafStatus3xx = &v } // GetWafStatus4xx returns the WafStatus4xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus4xx() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus4xx() int64 { if o == nil || o.WafStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus4xx @@ -1763,7 +1763,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus4xx() int32 { // GetWafStatus4xxOk returns a tuple with the WafStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus4xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus4xxOk() (*int64, bool) { if o == nil || o.WafStatus4xx == nil { return nil, false } @@ -1779,15 +1779,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus4xx() bool { return false } -// SetWafStatus4xx gets a reference to the given int32 and assigns it to the WafStatus4xx field. -func (o *OriginInspectorMeasurements) SetWafStatus4xx(v int32) { +// SetWafStatus4xx gets a reference to the given int64 and assigns it to the WafStatus4xx field. +func (o *OriginInspectorMeasurements) SetWafStatus4xx(v int64) { o.WafStatus4xx = &v } // GetWafStatus5xx returns the WafStatus5xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus5xx() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus5xx() int64 { if o == nil || o.WafStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus5xx @@ -1795,7 +1795,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus5xx() int32 { // GetWafStatus5xxOk returns a tuple with the WafStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus5xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus5xxOk() (*int64, bool) { if o == nil || o.WafStatus5xx == nil { return nil, false } @@ -1811,15 +1811,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus5xx() bool { return false } -// SetWafStatus5xx gets a reference to the given int32 and assigns it to the WafStatus5xx field. -func (o *OriginInspectorMeasurements) SetWafStatus5xx(v int32) { +// SetWafStatus5xx gets a reference to the given int64 and assigns it to the WafStatus5xx field. +func (o *OriginInspectorMeasurements) SetWafStatus5xx(v int64) { o.WafStatus5xx = &v } // GetWafStatus200 returns the WafStatus200 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus200() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus200() int64 { if o == nil || o.WafStatus200 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus200 @@ -1827,7 +1827,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus200() int32 { // GetWafStatus200Ok returns a tuple with the WafStatus200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus200Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus200Ok() (*int64, bool) { if o == nil || o.WafStatus200 == nil { return nil, false } @@ -1843,15 +1843,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus200() bool { return false } -// SetWafStatus200 gets a reference to the given int32 and assigns it to the WafStatus200 field. -func (o *OriginInspectorMeasurements) SetWafStatus200(v int32) { +// SetWafStatus200 gets a reference to the given int64 and assigns it to the WafStatus200 field. +func (o *OriginInspectorMeasurements) SetWafStatus200(v int64) { o.WafStatus200 = &v } // GetWafStatus204 returns the WafStatus204 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus204() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus204() int64 { if o == nil || o.WafStatus204 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus204 @@ -1859,7 +1859,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus204() int32 { // GetWafStatus204Ok returns a tuple with the WafStatus204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus204Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus204Ok() (*int64, bool) { if o == nil || o.WafStatus204 == nil { return nil, false } @@ -1875,15 +1875,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus204() bool { return false } -// SetWafStatus204 gets a reference to the given int32 and assigns it to the WafStatus204 field. -func (o *OriginInspectorMeasurements) SetWafStatus204(v int32) { +// SetWafStatus204 gets a reference to the given int64 and assigns it to the WafStatus204 field. +func (o *OriginInspectorMeasurements) SetWafStatus204(v int64) { o.WafStatus204 = &v } // GetWafStatus206 returns the WafStatus206 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus206() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus206() int64 { if o == nil || o.WafStatus206 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus206 @@ -1891,7 +1891,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus206() int32 { // GetWafStatus206Ok returns a tuple with the WafStatus206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus206Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus206Ok() (*int64, bool) { if o == nil || o.WafStatus206 == nil { return nil, false } @@ -1907,15 +1907,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus206() bool { return false } -// SetWafStatus206 gets a reference to the given int32 and assigns it to the WafStatus206 field. -func (o *OriginInspectorMeasurements) SetWafStatus206(v int32) { +// SetWafStatus206 gets a reference to the given int64 and assigns it to the WafStatus206 field. +func (o *OriginInspectorMeasurements) SetWafStatus206(v int64) { o.WafStatus206 = &v } // GetWafStatus301 returns the WafStatus301 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus301() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus301() int64 { if o == nil || o.WafStatus301 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus301 @@ -1923,7 +1923,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus301() int32 { // GetWafStatus301Ok returns a tuple with the WafStatus301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus301Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus301Ok() (*int64, bool) { if o == nil || o.WafStatus301 == nil { return nil, false } @@ -1939,15 +1939,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus301() bool { return false } -// SetWafStatus301 gets a reference to the given int32 and assigns it to the WafStatus301 field. -func (o *OriginInspectorMeasurements) SetWafStatus301(v int32) { +// SetWafStatus301 gets a reference to the given int64 and assigns it to the WafStatus301 field. +func (o *OriginInspectorMeasurements) SetWafStatus301(v int64) { o.WafStatus301 = &v } // GetWafStatus302 returns the WafStatus302 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus302() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus302() int64 { if o == nil || o.WafStatus302 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus302 @@ -1955,7 +1955,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus302() int32 { // GetWafStatus302Ok returns a tuple with the WafStatus302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus302Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus302Ok() (*int64, bool) { if o == nil || o.WafStatus302 == nil { return nil, false } @@ -1971,15 +1971,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus302() bool { return false } -// SetWafStatus302 gets a reference to the given int32 and assigns it to the WafStatus302 field. -func (o *OriginInspectorMeasurements) SetWafStatus302(v int32) { +// SetWafStatus302 gets a reference to the given int64 and assigns it to the WafStatus302 field. +func (o *OriginInspectorMeasurements) SetWafStatus302(v int64) { o.WafStatus302 = &v } // GetWafStatus304 returns the WafStatus304 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus304() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus304() int64 { if o == nil || o.WafStatus304 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus304 @@ -1987,7 +1987,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus304() int32 { // GetWafStatus304Ok returns a tuple with the WafStatus304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus304Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus304Ok() (*int64, bool) { if o == nil || o.WafStatus304 == nil { return nil, false } @@ -2003,15 +2003,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus304() bool { return false } -// SetWafStatus304 gets a reference to the given int32 and assigns it to the WafStatus304 field. -func (o *OriginInspectorMeasurements) SetWafStatus304(v int32) { +// SetWafStatus304 gets a reference to the given int64 and assigns it to the WafStatus304 field. +func (o *OriginInspectorMeasurements) SetWafStatus304(v int64) { o.WafStatus304 = &v } // GetWafStatus400 returns the WafStatus400 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus400() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus400() int64 { if o == nil || o.WafStatus400 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus400 @@ -2019,7 +2019,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus400() int32 { // GetWafStatus400Ok returns a tuple with the WafStatus400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus400Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus400Ok() (*int64, bool) { if o == nil || o.WafStatus400 == nil { return nil, false } @@ -2035,15 +2035,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus400() bool { return false } -// SetWafStatus400 gets a reference to the given int32 and assigns it to the WafStatus400 field. -func (o *OriginInspectorMeasurements) SetWafStatus400(v int32) { +// SetWafStatus400 gets a reference to the given int64 and assigns it to the WafStatus400 field. +func (o *OriginInspectorMeasurements) SetWafStatus400(v int64) { o.WafStatus400 = &v } // GetWafStatus401 returns the WafStatus401 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus401() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus401() int64 { if o == nil || o.WafStatus401 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus401 @@ -2051,7 +2051,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus401() int32 { // GetWafStatus401Ok returns a tuple with the WafStatus401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus401Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus401Ok() (*int64, bool) { if o == nil || o.WafStatus401 == nil { return nil, false } @@ -2067,15 +2067,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus401() bool { return false } -// SetWafStatus401 gets a reference to the given int32 and assigns it to the WafStatus401 field. -func (o *OriginInspectorMeasurements) SetWafStatus401(v int32) { +// SetWafStatus401 gets a reference to the given int64 and assigns it to the WafStatus401 field. +func (o *OriginInspectorMeasurements) SetWafStatus401(v int64) { o.WafStatus401 = &v } // GetWafStatus403 returns the WafStatus403 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus403() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus403() int64 { if o == nil || o.WafStatus403 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus403 @@ -2083,7 +2083,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus403() int32 { // GetWafStatus403Ok returns a tuple with the WafStatus403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus403Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus403Ok() (*int64, bool) { if o == nil || o.WafStatus403 == nil { return nil, false } @@ -2099,15 +2099,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus403() bool { return false } -// SetWafStatus403 gets a reference to the given int32 and assigns it to the WafStatus403 field. -func (o *OriginInspectorMeasurements) SetWafStatus403(v int32) { +// SetWafStatus403 gets a reference to the given int64 and assigns it to the WafStatus403 field. +func (o *OriginInspectorMeasurements) SetWafStatus403(v int64) { o.WafStatus403 = &v } // GetWafStatus404 returns the WafStatus404 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus404() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus404() int64 { if o == nil || o.WafStatus404 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus404 @@ -2115,7 +2115,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus404() int32 { // GetWafStatus404Ok returns a tuple with the WafStatus404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus404Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus404Ok() (*int64, bool) { if o == nil || o.WafStatus404 == nil { return nil, false } @@ -2131,15 +2131,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus404() bool { return false } -// SetWafStatus404 gets a reference to the given int32 and assigns it to the WafStatus404 field. -func (o *OriginInspectorMeasurements) SetWafStatus404(v int32) { +// SetWafStatus404 gets a reference to the given int64 and assigns it to the WafStatus404 field. +func (o *OriginInspectorMeasurements) SetWafStatus404(v int64) { o.WafStatus404 = &v } // GetWafStatus416 returns the WafStatus416 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus416() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus416() int64 { if o == nil || o.WafStatus416 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus416 @@ -2147,7 +2147,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus416() int32 { // GetWafStatus416Ok returns a tuple with the WafStatus416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus416Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus416Ok() (*int64, bool) { if o == nil || o.WafStatus416 == nil { return nil, false } @@ -2163,15 +2163,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus416() bool { return false } -// SetWafStatus416 gets a reference to the given int32 and assigns it to the WafStatus416 field. -func (o *OriginInspectorMeasurements) SetWafStatus416(v int32) { +// SetWafStatus416 gets a reference to the given int64 and assigns it to the WafStatus416 field. +func (o *OriginInspectorMeasurements) SetWafStatus416(v int64) { o.WafStatus416 = &v } // GetWafStatus429 returns the WafStatus429 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus429() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus429() int64 { if o == nil || o.WafStatus429 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus429 @@ -2179,7 +2179,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus429() int32 { // GetWafStatus429Ok returns a tuple with the WafStatus429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus429Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus429Ok() (*int64, bool) { if o == nil || o.WafStatus429 == nil { return nil, false } @@ -2195,15 +2195,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus429() bool { return false } -// SetWafStatus429 gets a reference to the given int32 and assigns it to the WafStatus429 field. -func (o *OriginInspectorMeasurements) SetWafStatus429(v int32) { +// SetWafStatus429 gets a reference to the given int64 and assigns it to the WafStatus429 field. +func (o *OriginInspectorMeasurements) SetWafStatus429(v int64) { o.WafStatus429 = &v } // GetWafStatus500 returns the WafStatus500 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus500() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus500() int64 { if o == nil || o.WafStatus500 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus500 @@ -2211,7 +2211,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus500() int32 { // GetWafStatus500Ok returns a tuple with the WafStatus500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus500Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus500Ok() (*int64, bool) { if o == nil || o.WafStatus500 == nil { return nil, false } @@ -2227,15 +2227,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus500() bool { return false } -// SetWafStatus500 gets a reference to the given int32 and assigns it to the WafStatus500 field. -func (o *OriginInspectorMeasurements) SetWafStatus500(v int32) { +// SetWafStatus500 gets a reference to the given int64 and assigns it to the WafStatus500 field. +func (o *OriginInspectorMeasurements) SetWafStatus500(v int64) { o.WafStatus500 = &v } // GetWafStatus501 returns the WafStatus501 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus501() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus501() int64 { if o == nil || o.WafStatus501 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus501 @@ -2243,7 +2243,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus501() int32 { // GetWafStatus501Ok returns a tuple with the WafStatus501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus501Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus501Ok() (*int64, bool) { if o == nil || o.WafStatus501 == nil { return nil, false } @@ -2259,15 +2259,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus501() bool { return false } -// SetWafStatus501 gets a reference to the given int32 and assigns it to the WafStatus501 field. -func (o *OriginInspectorMeasurements) SetWafStatus501(v int32) { +// SetWafStatus501 gets a reference to the given int64 and assigns it to the WafStatus501 field. +func (o *OriginInspectorMeasurements) SetWafStatus501(v int64) { o.WafStatus501 = &v } // GetWafStatus502 returns the WafStatus502 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus502() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus502() int64 { if o == nil || o.WafStatus502 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus502 @@ -2275,7 +2275,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus502() int32 { // GetWafStatus502Ok returns a tuple with the WafStatus502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus502Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus502Ok() (*int64, bool) { if o == nil || o.WafStatus502 == nil { return nil, false } @@ -2291,15 +2291,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus502() bool { return false } -// SetWafStatus502 gets a reference to the given int32 and assigns it to the WafStatus502 field. -func (o *OriginInspectorMeasurements) SetWafStatus502(v int32) { +// SetWafStatus502 gets a reference to the given int64 and assigns it to the WafStatus502 field. +func (o *OriginInspectorMeasurements) SetWafStatus502(v int64) { o.WafStatus502 = &v } // GetWafStatus503 returns the WafStatus503 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus503() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus503() int64 { if o == nil || o.WafStatus503 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus503 @@ -2307,7 +2307,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus503() int32 { // GetWafStatus503Ok returns a tuple with the WafStatus503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus503Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus503Ok() (*int64, bool) { if o == nil || o.WafStatus503 == nil { return nil, false } @@ -2323,15 +2323,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus503() bool { return false } -// SetWafStatus503 gets a reference to the given int32 and assigns it to the WafStatus503 field. -func (o *OriginInspectorMeasurements) SetWafStatus503(v int32) { +// SetWafStatus503 gets a reference to the given int64 and assigns it to the WafStatus503 field. +func (o *OriginInspectorMeasurements) SetWafStatus503(v int64) { o.WafStatus503 = &v } // GetWafStatus504 returns the WafStatus504 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus504() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus504() int64 { if o == nil || o.WafStatus504 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus504 @@ -2339,7 +2339,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus504() int32 { // GetWafStatus504Ok returns a tuple with the WafStatus504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus504Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus504Ok() (*int64, bool) { if o == nil || o.WafStatus504 == nil { return nil, false } @@ -2355,15 +2355,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus504() bool { return false } -// SetWafStatus504 gets a reference to the given int32 and assigns it to the WafStatus504 field. -func (o *OriginInspectorMeasurements) SetWafStatus504(v int32) { +// SetWafStatus504 gets a reference to the given int64 and assigns it to the WafStatus504 field. +func (o *OriginInspectorMeasurements) SetWafStatus504(v int64) { o.WafStatus504 = &v } // GetWafStatus505 returns the WafStatus505 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafStatus505() int32 { +func (o *OriginInspectorMeasurements) GetWafStatus505() int64 { if o == nil || o.WafStatus505 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus505 @@ -2371,7 +2371,7 @@ func (o *OriginInspectorMeasurements) GetWafStatus505() int32 { // GetWafStatus505Ok returns a tuple with the WafStatus505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafStatus505Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafStatus505Ok() (*int64, bool) { if o == nil || o.WafStatus505 == nil { return nil, false } @@ -2387,15 +2387,15 @@ func (o *OriginInspectorMeasurements) HasWafStatus505() bool { return false } -// SetWafStatus505 gets a reference to the given int32 and assigns it to the WafStatus505 field. -func (o *OriginInspectorMeasurements) SetWafStatus505(v int32) { +// SetWafStatus505 gets a reference to the given int64 and assigns it to the WafStatus505 field. +func (o *OriginInspectorMeasurements) SetWafStatus505(v int64) { o.WafStatus505 = &v } // GetWafLatency0To1ms returns the WafLatency0To1ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency0To1ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency0To1ms() int64 { if o == nil || o.WafLatency0To1ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency0To1ms @@ -2403,7 +2403,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency0To1ms() int32 { // GetWafLatency0To1msOk returns a tuple with the WafLatency0To1ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency0To1msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency0To1msOk() (*int64, bool) { if o == nil || o.WafLatency0To1ms == nil { return nil, false } @@ -2419,15 +2419,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency0To1ms() bool { return false } -// SetWafLatency0To1ms gets a reference to the given int32 and assigns it to the WafLatency0To1ms field. -func (o *OriginInspectorMeasurements) SetWafLatency0To1ms(v int32) { +// SetWafLatency0To1ms gets a reference to the given int64 and assigns it to the WafLatency0To1ms field. +func (o *OriginInspectorMeasurements) SetWafLatency0To1ms(v int64) { o.WafLatency0To1ms = &v } // GetWafLatency1To5ms returns the WafLatency1To5ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency1To5ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency1To5ms() int64 { if o == nil || o.WafLatency1To5ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency1To5ms @@ -2435,7 +2435,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency1To5ms() int32 { // GetWafLatency1To5msOk returns a tuple with the WafLatency1To5ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency1To5msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency1To5msOk() (*int64, bool) { if o == nil || o.WafLatency1To5ms == nil { return nil, false } @@ -2451,15 +2451,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency1To5ms() bool { return false } -// SetWafLatency1To5ms gets a reference to the given int32 and assigns it to the WafLatency1To5ms field. -func (o *OriginInspectorMeasurements) SetWafLatency1To5ms(v int32) { +// SetWafLatency1To5ms gets a reference to the given int64 and assigns it to the WafLatency1To5ms field. +func (o *OriginInspectorMeasurements) SetWafLatency1To5ms(v int64) { o.WafLatency1To5ms = &v } // GetWafLatency5To10ms returns the WafLatency5To10ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency5To10ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency5To10ms() int64 { if o == nil || o.WafLatency5To10ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency5To10ms @@ -2467,7 +2467,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency5To10ms() int32 { // GetWafLatency5To10msOk returns a tuple with the WafLatency5To10ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency5To10msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency5To10msOk() (*int64, bool) { if o == nil || o.WafLatency5To10ms == nil { return nil, false } @@ -2483,15 +2483,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency5To10ms() bool { return false } -// SetWafLatency5To10ms gets a reference to the given int32 and assigns it to the WafLatency5To10ms field. -func (o *OriginInspectorMeasurements) SetWafLatency5To10ms(v int32) { +// SetWafLatency5To10ms gets a reference to the given int64 and assigns it to the WafLatency5To10ms field. +func (o *OriginInspectorMeasurements) SetWafLatency5To10ms(v int64) { o.WafLatency5To10ms = &v } // GetWafLatency10To50ms returns the WafLatency10To50ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency10To50ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency10To50ms() int64 { if o == nil || o.WafLatency10To50ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency10To50ms @@ -2499,7 +2499,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency10To50ms() int32 { // GetWafLatency10To50msOk returns a tuple with the WafLatency10To50ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency10To50msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency10To50msOk() (*int64, bool) { if o == nil || o.WafLatency10To50ms == nil { return nil, false } @@ -2515,15 +2515,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency10To50ms() bool { return false } -// SetWafLatency10To50ms gets a reference to the given int32 and assigns it to the WafLatency10To50ms field. -func (o *OriginInspectorMeasurements) SetWafLatency10To50ms(v int32) { +// SetWafLatency10To50ms gets a reference to the given int64 and assigns it to the WafLatency10To50ms field. +func (o *OriginInspectorMeasurements) SetWafLatency10To50ms(v int64) { o.WafLatency10To50ms = &v } // GetWafLatency50To100ms returns the WafLatency50To100ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency50To100ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency50To100ms() int64 { if o == nil || o.WafLatency50To100ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency50To100ms @@ -2531,7 +2531,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency50To100ms() int32 { // GetWafLatency50To100msOk returns a tuple with the WafLatency50To100ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency50To100msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency50To100msOk() (*int64, bool) { if o == nil || o.WafLatency50To100ms == nil { return nil, false } @@ -2547,15 +2547,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency50To100ms() bool { return false } -// SetWafLatency50To100ms gets a reference to the given int32 and assigns it to the WafLatency50To100ms field. -func (o *OriginInspectorMeasurements) SetWafLatency50To100ms(v int32) { +// SetWafLatency50To100ms gets a reference to the given int64 and assigns it to the WafLatency50To100ms field. +func (o *OriginInspectorMeasurements) SetWafLatency50To100ms(v int64) { o.WafLatency50To100ms = &v } // GetWafLatency100To250ms returns the WafLatency100To250ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency100To250ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency100To250ms() int64 { if o == nil || o.WafLatency100To250ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency100To250ms @@ -2563,7 +2563,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency100To250ms() int32 { // GetWafLatency100To250msOk returns a tuple with the WafLatency100To250ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency100To250msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency100To250msOk() (*int64, bool) { if o == nil || o.WafLatency100To250ms == nil { return nil, false } @@ -2579,15 +2579,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency100To250ms() bool { return false } -// SetWafLatency100To250ms gets a reference to the given int32 and assigns it to the WafLatency100To250ms field. -func (o *OriginInspectorMeasurements) SetWafLatency100To250ms(v int32) { +// SetWafLatency100To250ms gets a reference to the given int64 and assigns it to the WafLatency100To250ms field. +func (o *OriginInspectorMeasurements) SetWafLatency100To250ms(v int64) { o.WafLatency100To250ms = &v } // GetWafLatency250To500ms returns the WafLatency250To500ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency250To500ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency250To500ms() int64 { if o == nil || o.WafLatency250To500ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency250To500ms @@ -2595,7 +2595,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency250To500ms() int32 { // GetWafLatency250To500msOk returns a tuple with the WafLatency250To500ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency250To500msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency250To500msOk() (*int64, bool) { if o == nil || o.WafLatency250To500ms == nil { return nil, false } @@ -2611,15 +2611,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency250To500ms() bool { return false } -// SetWafLatency250To500ms gets a reference to the given int32 and assigns it to the WafLatency250To500ms field. -func (o *OriginInspectorMeasurements) SetWafLatency250To500ms(v int32) { +// SetWafLatency250To500ms gets a reference to the given int64 and assigns it to the WafLatency250To500ms field. +func (o *OriginInspectorMeasurements) SetWafLatency250To500ms(v int64) { o.WafLatency250To500ms = &v } // GetWafLatency500To1000ms returns the WafLatency500To1000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency500To1000ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency500To1000ms() int64 { if o == nil || o.WafLatency500To1000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency500To1000ms @@ -2627,7 +2627,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency500To1000ms() int32 { // GetWafLatency500To1000msOk returns a tuple with the WafLatency500To1000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency500To1000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency500To1000msOk() (*int64, bool) { if o == nil || o.WafLatency500To1000ms == nil { return nil, false } @@ -2643,15 +2643,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency500To1000ms() bool { return false } -// SetWafLatency500To1000ms gets a reference to the given int32 and assigns it to the WafLatency500To1000ms field. -func (o *OriginInspectorMeasurements) SetWafLatency500To1000ms(v int32) { +// SetWafLatency500To1000ms gets a reference to the given int64 and assigns it to the WafLatency500To1000ms field. +func (o *OriginInspectorMeasurements) SetWafLatency500To1000ms(v int64) { o.WafLatency500To1000ms = &v } // GetWafLatency1000To5000ms returns the WafLatency1000To5000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency1000To5000ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency1000To5000ms() int64 { if o == nil || o.WafLatency1000To5000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency1000To5000ms @@ -2659,7 +2659,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency1000To5000ms() int32 { // GetWafLatency1000To5000msOk returns a tuple with the WafLatency1000To5000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency1000To5000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency1000To5000msOk() (*int64, bool) { if o == nil || o.WafLatency1000To5000ms == nil { return nil, false } @@ -2675,15 +2675,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency1000To5000ms() bool { return false } -// SetWafLatency1000To5000ms gets a reference to the given int32 and assigns it to the WafLatency1000To5000ms field. -func (o *OriginInspectorMeasurements) SetWafLatency1000To5000ms(v int32) { +// SetWafLatency1000To5000ms gets a reference to the given int64 and assigns it to the WafLatency1000To5000ms field. +func (o *OriginInspectorMeasurements) SetWafLatency1000To5000ms(v int64) { o.WafLatency1000To5000ms = &v } // GetWafLatency5000To10000ms returns the WafLatency5000To10000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency5000To10000ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency5000To10000ms() int64 { if o == nil || o.WafLatency5000To10000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency5000To10000ms @@ -2691,7 +2691,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency5000To10000ms() int32 { // GetWafLatency5000To10000msOk returns a tuple with the WafLatency5000To10000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency5000To10000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency5000To10000msOk() (*int64, bool) { if o == nil || o.WafLatency5000To10000ms == nil { return nil, false } @@ -2707,15 +2707,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency5000To10000ms() bool { return false } -// SetWafLatency5000To10000ms gets a reference to the given int32 and assigns it to the WafLatency5000To10000ms field. -func (o *OriginInspectorMeasurements) SetWafLatency5000To10000ms(v int32) { +// SetWafLatency5000To10000ms gets a reference to the given int64 and assigns it to the WafLatency5000To10000ms field. +func (o *OriginInspectorMeasurements) SetWafLatency5000To10000ms(v int64) { o.WafLatency5000To10000ms = &v } // GetWafLatency10000To60000ms returns the WafLatency10000To60000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency10000To60000ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency10000To60000ms() int64 { if o == nil || o.WafLatency10000To60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency10000To60000ms @@ -2723,7 +2723,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency10000To60000ms() int32 { // GetWafLatency10000To60000msOk returns a tuple with the WafLatency10000To60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency10000To60000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency10000To60000msOk() (*int64, bool) { if o == nil || o.WafLatency10000To60000ms == nil { return nil, false } @@ -2739,15 +2739,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency10000To60000ms() bool { return false } -// SetWafLatency10000To60000ms gets a reference to the given int32 and assigns it to the WafLatency10000To60000ms field. -func (o *OriginInspectorMeasurements) SetWafLatency10000To60000ms(v int32) { +// SetWafLatency10000To60000ms gets a reference to the given int64 and assigns it to the WafLatency10000To60000ms field. +func (o *OriginInspectorMeasurements) SetWafLatency10000To60000ms(v int64) { o.WafLatency10000To60000ms = &v } // GetWafLatency60000ms returns the WafLatency60000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetWafLatency60000ms() int32 { +func (o *OriginInspectorMeasurements) GetWafLatency60000ms() int64 { if o == nil || o.WafLatency60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency60000ms @@ -2755,7 +2755,7 @@ func (o *OriginInspectorMeasurements) GetWafLatency60000ms() int32 { // GetWafLatency60000msOk returns a tuple with the WafLatency60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetWafLatency60000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetWafLatency60000msOk() (*int64, bool) { if o == nil || o.WafLatency60000ms == nil { return nil, false } @@ -2771,15 +2771,15 @@ func (o *OriginInspectorMeasurements) HasWafLatency60000ms() bool { return false } -// SetWafLatency60000ms gets a reference to the given int32 and assigns it to the WafLatency60000ms field. -func (o *OriginInspectorMeasurements) SetWafLatency60000ms(v int32) { +// SetWafLatency60000ms gets a reference to the given int64 and assigns it to the WafLatency60000ms field. +func (o *OriginInspectorMeasurements) SetWafLatency60000ms(v int64) { o.WafLatency60000ms = &v } // GetComputeResponses returns the ComputeResponses field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeResponses() int32 { +func (o *OriginInspectorMeasurements) GetComputeResponses() int64 { if o == nil || o.ComputeResponses == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeResponses @@ -2787,7 +2787,7 @@ func (o *OriginInspectorMeasurements) GetComputeResponses() int32 { // GetComputeResponsesOk returns a tuple with the ComputeResponses field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeResponsesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeResponsesOk() (*int64, bool) { if o == nil || o.ComputeResponses == nil { return nil, false } @@ -2803,15 +2803,15 @@ func (o *OriginInspectorMeasurements) HasComputeResponses() bool { return false } -// SetComputeResponses gets a reference to the given int32 and assigns it to the ComputeResponses field. -func (o *OriginInspectorMeasurements) SetComputeResponses(v int32) { +// SetComputeResponses gets a reference to the given int64 and assigns it to the ComputeResponses field. +func (o *OriginInspectorMeasurements) SetComputeResponses(v int64) { o.ComputeResponses = &v } // GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytes() int32 { +func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytes() int64 { if o == nil || o.ComputeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespHeaderBytes @@ -2819,7 +2819,7 @@ func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytes() int32 { // GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeRespHeaderBytes == nil { return nil, false } @@ -2835,15 +2835,15 @@ func (o *OriginInspectorMeasurements) HasComputeRespHeaderBytes() bool { return false } -// SetComputeRespHeaderBytes gets a reference to the given int32 and assigns it to the ComputeRespHeaderBytes field. -func (o *OriginInspectorMeasurements) SetComputeRespHeaderBytes(v int32) { +// SetComputeRespHeaderBytes gets a reference to the given int64 and assigns it to the ComputeRespHeaderBytes field. +func (o *OriginInspectorMeasurements) SetComputeRespHeaderBytes(v int64) { o.ComputeRespHeaderBytes = &v } // GetComputeRespBodyBytes returns the ComputeRespBodyBytes field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeRespBodyBytes() int32 { +func (o *OriginInspectorMeasurements) GetComputeRespBodyBytes() int64 { if o == nil || o.ComputeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespBodyBytes @@ -2851,7 +2851,7 @@ func (o *OriginInspectorMeasurements) GetComputeRespBodyBytes() int32 { // GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeRespBodyBytesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeRespBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeRespBodyBytes == nil { return nil, false } @@ -2867,15 +2867,15 @@ func (o *OriginInspectorMeasurements) HasComputeRespBodyBytes() bool { return false } -// SetComputeRespBodyBytes gets a reference to the given int32 and assigns it to the ComputeRespBodyBytes field. -func (o *OriginInspectorMeasurements) SetComputeRespBodyBytes(v int32) { +// SetComputeRespBodyBytes gets a reference to the given int64 and assigns it to the ComputeRespBodyBytes field. +func (o *OriginInspectorMeasurements) SetComputeRespBodyBytes(v int64) { o.ComputeRespBodyBytes = &v } // GetComputeStatus1xx returns the ComputeStatus1xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus1xx() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus1xx() int64 { if o == nil || o.ComputeStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus1xx @@ -2883,7 +2883,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus1xx() int32 { // GetComputeStatus1xxOk returns a tuple with the ComputeStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus1xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus1xxOk() (*int64, bool) { if o == nil || o.ComputeStatus1xx == nil { return nil, false } @@ -2899,15 +2899,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus1xx() bool { return false } -// SetComputeStatus1xx gets a reference to the given int32 and assigns it to the ComputeStatus1xx field. -func (o *OriginInspectorMeasurements) SetComputeStatus1xx(v int32) { +// SetComputeStatus1xx gets a reference to the given int64 and assigns it to the ComputeStatus1xx field. +func (o *OriginInspectorMeasurements) SetComputeStatus1xx(v int64) { o.ComputeStatus1xx = &v } // GetComputeStatus2xx returns the ComputeStatus2xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus2xx() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus2xx() int64 { if o == nil || o.ComputeStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus2xx @@ -2915,7 +2915,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus2xx() int32 { // GetComputeStatus2xxOk returns a tuple with the ComputeStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus2xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus2xxOk() (*int64, bool) { if o == nil || o.ComputeStatus2xx == nil { return nil, false } @@ -2931,15 +2931,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus2xx() bool { return false } -// SetComputeStatus2xx gets a reference to the given int32 and assigns it to the ComputeStatus2xx field. -func (o *OriginInspectorMeasurements) SetComputeStatus2xx(v int32) { +// SetComputeStatus2xx gets a reference to the given int64 and assigns it to the ComputeStatus2xx field. +func (o *OriginInspectorMeasurements) SetComputeStatus2xx(v int64) { o.ComputeStatus2xx = &v } // GetComputeStatus3xx returns the ComputeStatus3xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus3xx() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus3xx() int64 { if o == nil || o.ComputeStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus3xx @@ -2947,7 +2947,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus3xx() int32 { // GetComputeStatus3xxOk returns a tuple with the ComputeStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus3xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus3xxOk() (*int64, bool) { if o == nil || o.ComputeStatus3xx == nil { return nil, false } @@ -2963,15 +2963,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus3xx() bool { return false } -// SetComputeStatus3xx gets a reference to the given int32 and assigns it to the ComputeStatus3xx field. -func (o *OriginInspectorMeasurements) SetComputeStatus3xx(v int32) { +// SetComputeStatus3xx gets a reference to the given int64 and assigns it to the ComputeStatus3xx field. +func (o *OriginInspectorMeasurements) SetComputeStatus3xx(v int64) { o.ComputeStatus3xx = &v } // GetComputeStatus4xx returns the ComputeStatus4xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus4xx() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus4xx() int64 { if o == nil || o.ComputeStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus4xx @@ -2979,7 +2979,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus4xx() int32 { // GetComputeStatus4xxOk returns a tuple with the ComputeStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus4xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus4xxOk() (*int64, bool) { if o == nil || o.ComputeStatus4xx == nil { return nil, false } @@ -2995,15 +2995,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus4xx() bool { return false } -// SetComputeStatus4xx gets a reference to the given int32 and assigns it to the ComputeStatus4xx field. -func (o *OriginInspectorMeasurements) SetComputeStatus4xx(v int32) { +// SetComputeStatus4xx gets a reference to the given int64 and assigns it to the ComputeStatus4xx field. +func (o *OriginInspectorMeasurements) SetComputeStatus4xx(v int64) { o.ComputeStatus4xx = &v } // GetComputeStatus5xx returns the ComputeStatus5xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus5xx() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus5xx() int64 { if o == nil || o.ComputeStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus5xx @@ -3011,7 +3011,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus5xx() int32 { // GetComputeStatus5xxOk returns a tuple with the ComputeStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus5xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus5xxOk() (*int64, bool) { if o == nil || o.ComputeStatus5xx == nil { return nil, false } @@ -3027,15 +3027,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus5xx() bool { return false } -// SetComputeStatus5xx gets a reference to the given int32 and assigns it to the ComputeStatus5xx field. -func (o *OriginInspectorMeasurements) SetComputeStatus5xx(v int32) { +// SetComputeStatus5xx gets a reference to the given int64 and assigns it to the ComputeStatus5xx field. +func (o *OriginInspectorMeasurements) SetComputeStatus5xx(v int64) { o.ComputeStatus5xx = &v } // GetComputeStatus200 returns the ComputeStatus200 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus200() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus200() int64 { if o == nil || o.ComputeStatus200 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus200 @@ -3043,7 +3043,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus200() int32 { // GetComputeStatus200Ok returns a tuple with the ComputeStatus200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus200Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus200Ok() (*int64, bool) { if o == nil || o.ComputeStatus200 == nil { return nil, false } @@ -3059,15 +3059,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus200() bool { return false } -// SetComputeStatus200 gets a reference to the given int32 and assigns it to the ComputeStatus200 field. -func (o *OriginInspectorMeasurements) SetComputeStatus200(v int32) { +// SetComputeStatus200 gets a reference to the given int64 and assigns it to the ComputeStatus200 field. +func (o *OriginInspectorMeasurements) SetComputeStatus200(v int64) { o.ComputeStatus200 = &v } // GetComputeStatus204 returns the ComputeStatus204 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus204() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus204() int64 { if o == nil || o.ComputeStatus204 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus204 @@ -3075,7 +3075,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus204() int32 { // GetComputeStatus204Ok returns a tuple with the ComputeStatus204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus204Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus204Ok() (*int64, bool) { if o == nil || o.ComputeStatus204 == nil { return nil, false } @@ -3091,15 +3091,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus204() bool { return false } -// SetComputeStatus204 gets a reference to the given int32 and assigns it to the ComputeStatus204 field. -func (o *OriginInspectorMeasurements) SetComputeStatus204(v int32) { +// SetComputeStatus204 gets a reference to the given int64 and assigns it to the ComputeStatus204 field. +func (o *OriginInspectorMeasurements) SetComputeStatus204(v int64) { o.ComputeStatus204 = &v } // GetComputeStatus206 returns the ComputeStatus206 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus206() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus206() int64 { if o == nil || o.ComputeStatus206 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus206 @@ -3107,7 +3107,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus206() int32 { // GetComputeStatus206Ok returns a tuple with the ComputeStatus206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus206Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus206Ok() (*int64, bool) { if o == nil || o.ComputeStatus206 == nil { return nil, false } @@ -3123,15 +3123,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus206() bool { return false } -// SetComputeStatus206 gets a reference to the given int32 and assigns it to the ComputeStatus206 field. -func (o *OriginInspectorMeasurements) SetComputeStatus206(v int32) { +// SetComputeStatus206 gets a reference to the given int64 and assigns it to the ComputeStatus206 field. +func (o *OriginInspectorMeasurements) SetComputeStatus206(v int64) { o.ComputeStatus206 = &v } // GetComputeStatus301 returns the ComputeStatus301 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus301() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus301() int64 { if o == nil || o.ComputeStatus301 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus301 @@ -3139,7 +3139,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus301() int32 { // GetComputeStatus301Ok returns a tuple with the ComputeStatus301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus301Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus301Ok() (*int64, bool) { if o == nil || o.ComputeStatus301 == nil { return nil, false } @@ -3155,15 +3155,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus301() bool { return false } -// SetComputeStatus301 gets a reference to the given int32 and assigns it to the ComputeStatus301 field. -func (o *OriginInspectorMeasurements) SetComputeStatus301(v int32) { +// SetComputeStatus301 gets a reference to the given int64 and assigns it to the ComputeStatus301 field. +func (o *OriginInspectorMeasurements) SetComputeStatus301(v int64) { o.ComputeStatus301 = &v } // GetComputeStatus302 returns the ComputeStatus302 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus302() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus302() int64 { if o == nil || o.ComputeStatus302 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus302 @@ -3171,7 +3171,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus302() int32 { // GetComputeStatus302Ok returns a tuple with the ComputeStatus302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus302Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus302Ok() (*int64, bool) { if o == nil || o.ComputeStatus302 == nil { return nil, false } @@ -3187,15 +3187,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus302() bool { return false } -// SetComputeStatus302 gets a reference to the given int32 and assigns it to the ComputeStatus302 field. -func (o *OriginInspectorMeasurements) SetComputeStatus302(v int32) { +// SetComputeStatus302 gets a reference to the given int64 and assigns it to the ComputeStatus302 field. +func (o *OriginInspectorMeasurements) SetComputeStatus302(v int64) { o.ComputeStatus302 = &v } // GetComputeStatus304 returns the ComputeStatus304 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus304() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus304() int64 { if o == nil || o.ComputeStatus304 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus304 @@ -3203,7 +3203,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus304() int32 { // GetComputeStatus304Ok returns a tuple with the ComputeStatus304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus304Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus304Ok() (*int64, bool) { if o == nil || o.ComputeStatus304 == nil { return nil, false } @@ -3219,15 +3219,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus304() bool { return false } -// SetComputeStatus304 gets a reference to the given int32 and assigns it to the ComputeStatus304 field. -func (o *OriginInspectorMeasurements) SetComputeStatus304(v int32) { +// SetComputeStatus304 gets a reference to the given int64 and assigns it to the ComputeStatus304 field. +func (o *OriginInspectorMeasurements) SetComputeStatus304(v int64) { o.ComputeStatus304 = &v } // GetComputeStatus400 returns the ComputeStatus400 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus400() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus400() int64 { if o == nil || o.ComputeStatus400 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus400 @@ -3235,7 +3235,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus400() int32 { // GetComputeStatus400Ok returns a tuple with the ComputeStatus400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus400Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus400Ok() (*int64, bool) { if o == nil || o.ComputeStatus400 == nil { return nil, false } @@ -3251,15 +3251,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus400() bool { return false } -// SetComputeStatus400 gets a reference to the given int32 and assigns it to the ComputeStatus400 field. -func (o *OriginInspectorMeasurements) SetComputeStatus400(v int32) { +// SetComputeStatus400 gets a reference to the given int64 and assigns it to the ComputeStatus400 field. +func (o *OriginInspectorMeasurements) SetComputeStatus400(v int64) { o.ComputeStatus400 = &v } // GetComputeStatus401 returns the ComputeStatus401 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus401() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus401() int64 { if o == nil || o.ComputeStatus401 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus401 @@ -3267,7 +3267,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus401() int32 { // GetComputeStatus401Ok returns a tuple with the ComputeStatus401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus401Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus401Ok() (*int64, bool) { if o == nil || o.ComputeStatus401 == nil { return nil, false } @@ -3283,15 +3283,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus401() bool { return false } -// SetComputeStatus401 gets a reference to the given int32 and assigns it to the ComputeStatus401 field. -func (o *OriginInspectorMeasurements) SetComputeStatus401(v int32) { +// SetComputeStatus401 gets a reference to the given int64 and assigns it to the ComputeStatus401 field. +func (o *OriginInspectorMeasurements) SetComputeStatus401(v int64) { o.ComputeStatus401 = &v } // GetComputeStatus403 returns the ComputeStatus403 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus403() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus403() int64 { if o == nil || o.ComputeStatus403 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus403 @@ -3299,7 +3299,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus403() int32 { // GetComputeStatus403Ok returns a tuple with the ComputeStatus403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus403Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus403Ok() (*int64, bool) { if o == nil || o.ComputeStatus403 == nil { return nil, false } @@ -3315,15 +3315,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus403() bool { return false } -// SetComputeStatus403 gets a reference to the given int32 and assigns it to the ComputeStatus403 field. -func (o *OriginInspectorMeasurements) SetComputeStatus403(v int32) { +// SetComputeStatus403 gets a reference to the given int64 and assigns it to the ComputeStatus403 field. +func (o *OriginInspectorMeasurements) SetComputeStatus403(v int64) { o.ComputeStatus403 = &v } // GetComputeStatus404 returns the ComputeStatus404 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus404() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus404() int64 { if o == nil || o.ComputeStatus404 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus404 @@ -3331,7 +3331,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus404() int32 { // GetComputeStatus404Ok returns a tuple with the ComputeStatus404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus404Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus404Ok() (*int64, bool) { if o == nil || o.ComputeStatus404 == nil { return nil, false } @@ -3347,15 +3347,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus404() bool { return false } -// SetComputeStatus404 gets a reference to the given int32 and assigns it to the ComputeStatus404 field. -func (o *OriginInspectorMeasurements) SetComputeStatus404(v int32) { +// SetComputeStatus404 gets a reference to the given int64 and assigns it to the ComputeStatus404 field. +func (o *OriginInspectorMeasurements) SetComputeStatus404(v int64) { o.ComputeStatus404 = &v } // GetComputeStatus416 returns the ComputeStatus416 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus416() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus416() int64 { if o == nil || o.ComputeStatus416 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus416 @@ -3363,7 +3363,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus416() int32 { // GetComputeStatus416Ok returns a tuple with the ComputeStatus416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus416Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus416Ok() (*int64, bool) { if o == nil || o.ComputeStatus416 == nil { return nil, false } @@ -3379,15 +3379,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus416() bool { return false } -// SetComputeStatus416 gets a reference to the given int32 and assigns it to the ComputeStatus416 field. -func (o *OriginInspectorMeasurements) SetComputeStatus416(v int32) { +// SetComputeStatus416 gets a reference to the given int64 and assigns it to the ComputeStatus416 field. +func (o *OriginInspectorMeasurements) SetComputeStatus416(v int64) { o.ComputeStatus416 = &v } // GetComputeStatus429 returns the ComputeStatus429 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus429() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus429() int64 { if o == nil || o.ComputeStatus429 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus429 @@ -3395,7 +3395,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus429() int32 { // GetComputeStatus429Ok returns a tuple with the ComputeStatus429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus429Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus429Ok() (*int64, bool) { if o == nil || o.ComputeStatus429 == nil { return nil, false } @@ -3411,15 +3411,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus429() bool { return false } -// SetComputeStatus429 gets a reference to the given int32 and assigns it to the ComputeStatus429 field. -func (o *OriginInspectorMeasurements) SetComputeStatus429(v int32) { +// SetComputeStatus429 gets a reference to the given int64 and assigns it to the ComputeStatus429 field. +func (o *OriginInspectorMeasurements) SetComputeStatus429(v int64) { o.ComputeStatus429 = &v } // GetComputeStatus500 returns the ComputeStatus500 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus500() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus500() int64 { if o == nil || o.ComputeStatus500 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus500 @@ -3427,7 +3427,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus500() int32 { // GetComputeStatus500Ok returns a tuple with the ComputeStatus500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus500Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus500Ok() (*int64, bool) { if o == nil || o.ComputeStatus500 == nil { return nil, false } @@ -3443,15 +3443,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus500() bool { return false } -// SetComputeStatus500 gets a reference to the given int32 and assigns it to the ComputeStatus500 field. -func (o *OriginInspectorMeasurements) SetComputeStatus500(v int32) { +// SetComputeStatus500 gets a reference to the given int64 and assigns it to the ComputeStatus500 field. +func (o *OriginInspectorMeasurements) SetComputeStatus500(v int64) { o.ComputeStatus500 = &v } // GetComputeStatus501 returns the ComputeStatus501 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus501() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus501() int64 { if o == nil || o.ComputeStatus501 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus501 @@ -3459,7 +3459,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus501() int32 { // GetComputeStatus501Ok returns a tuple with the ComputeStatus501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus501Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus501Ok() (*int64, bool) { if o == nil || o.ComputeStatus501 == nil { return nil, false } @@ -3475,15 +3475,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus501() bool { return false } -// SetComputeStatus501 gets a reference to the given int32 and assigns it to the ComputeStatus501 field. -func (o *OriginInspectorMeasurements) SetComputeStatus501(v int32) { +// SetComputeStatus501 gets a reference to the given int64 and assigns it to the ComputeStatus501 field. +func (o *OriginInspectorMeasurements) SetComputeStatus501(v int64) { o.ComputeStatus501 = &v } // GetComputeStatus502 returns the ComputeStatus502 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus502() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus502() int64 { if o == nil || o.ComputeStatus502 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus502 @@ -3491,7 +3491,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus502() int32 { // GetComputeStatus502Ok returns a tuple with the ComputeStatus502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus502Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus502Ok() (*int64, bool) { if o == nil || o.ComputeStatus502 == nil { return nil, false } @@ -3507,15 +3507,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus502() bool { return false } -// SetComputeStatus502 gets a reference to the given int32 and assigns it to the ComputeStatus502 field. -func (o *OriginInspectorMeasurements) SetComputeStatus502(v int32) { +// SetComputeStatus502 gets a reference to the given int64 and assigns it to the ComputeStatus502 field. +func (o *OriginInspectorMeasurements) SetComputeStatus502(v int64) { o.ComputeStatus502 = &v } // GetComputeStatus503 returns the ComputeStatus503 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus503() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus503() int64 { if o == nil || o.ComputeStatus503 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus503 @@ -3523,7 +3523,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus503() int32 { // GetComputeStatus503Ok returns a tuple with the ComputeStatus503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus503Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus503Ok() (*int64, bool) { if o == nil || o.ComputeStatus503 == nil { return nil, false } @@ -3539,15 +3539,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus503() bool { return false } -// SetComputeStatus503 gets a reference to the given int32 and assigns it to the ComputeStatus503 field. -func (o *OriginInspectorMeasurements) SetComputeStatus503(v int32) { +// SetComputeStatus503 gets a reference to the given int64 and assigns it to the ComputeStatus503 field. +func (o *OriginInspectorMeasurements) SetComputeStatus503(v int64) { o.ComputeStatus503 = &v } // GetComputeStatus504 returns the ComputeStatus504 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus504() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus504() int64 { if o == nil || o.ComputeStatus504 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus504 @@ -3555,7 +3555,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus504() int32 { // GetComputeStatus504Ok returns a tuple with the ComputeStatus504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus504Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus504Ok() (*int64, bool) { if o == nil || o.ComputeStatus504 == nil { return nil, false } @@ -3571,15 +3571,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus504() bool { return false } -// SetComputeStatus504 gets a reference to the given int32 and assigns it to the ComputeStatus504 field. -func (o *OriginInspectorMeasurements) SetComputeStatus504(v int32) { +// SetComputeStatus504 gets a reference to the given int64 and assigns it to the ComputeStatus504 field. +func (o *OriginInspectorMeasurements) SetComputeStatus504(v int64) { o.ComputeStatus504 = &v } // GetComputeStatus505 returns the ComputeStatus505 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeStatus505() int32 { +func (o *OriginInspectorMeasurements) GetComputeStatus505() int64 { if o == nil || o.ComputeStatus505 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus505 @@ -3587,7 +3587,7 @@ func (o *OriginInspectorMeasurements) GetComputeStatus505() int32 { // GetComputeStatus505Ok returns a tuple with the ComputeStatus505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeStatus505Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeStatus505Ok() (*int64, bool) { if o == nil || o.ComputeStatus505 == nil { return nil, false } @@ -3603,15 +3603,15 @@ func (o *OriginInspectorMeasurements) HasComputeStatus505() bool { return false } -// SetComputeStatus505 gets a reference to the given int32 and assigns it to the ComputeStatus505 field. -func (o *OriginInspectorMeasurements) SetComputeStatus505(v int32) { +// SetComputeStatus505 gets a reference to the given int64 and assigns it to the ComputeStatus505 field. +func (o *OriginInspectorMeasurements) SetComputeStatus505(v int64) { o.ComputeStatus505 = &v } // GetComputeLatency0To1ms returns the ComputeLatency0To1ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency0To1ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency0To1ms() int64 { if o == nil || o.ComputeLatency0To1ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency0To1ms @@ -3619,7 +3619,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency0To1ms() int32 { // GetComputeLatency0To1msOk returns a tuple with the ComputeLatency0To1ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency0To1msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency0To1msOk() (*int64, bool) { if o == nil || o.ComputeLatency0To1ms == nil { return nil, false } @@ -3635,15 +3635,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency0To1ms() bool { return false } -// SetComputeLatency0To1ms gets a reference to the given int32 and assigns it to the ComputeLatency0To1ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency0To1ms(v int32) { +// SetComputeLatency0To1ms gets a reference to the given int64 and assigns it to the ComputeLatency0To1ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency0To1ms(v int64) { o.ComputeLatency0To1ms = &v } // GetComputeLatency1To5ms returns the ComputeLatency1To5ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency1To5ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency1To5ms() int64 { if o == nil || o.ComputeLatency1To5ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency1To5ms @@ -3651,7 +3651,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency1To5ms() int32 { // GetComputeLatency1To5msOk returns a tuple with the ComputeLatency1To5ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency1To5msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency1To5msOk() (*int64, bool) { if o == nil || o.ComputeLatency1To5ms == nil { return nil, false } @@ -3667,15 +3667,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency1To5ms() bool { return false } -// SetComputeLatency1To5ms gets a reference to the given int32 and assigns it to the ComputeLatency1To5ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency1To5ms(v int32) { +// SetComputeLatency1To5ms gets a reference to the given int64 and assigns it to the ComputeLatency1To5ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency1To5ms(v int64) { o.ComputeLatency1To5ms = &v } // GetComputeLatency5To10ms returns the ComputeLatency5To10ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency5To10ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency5To10ms() int64 { if o == nil || o.ComputeLatency5To10ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency5To10ms @@ -3683,7 +3683,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency5To10ms() int32 { // GetComputeLatency5To10msOk returns a tuple with the ComputeLatency5To10ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency5To10msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency5To10msOk() (*int64, bool) { if o == nil || o.ComputeLatency5To10ms == nil { return nil, false } @@ -3699,15 +3699,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency5To10ms() bool { return false } -// SetComputeLatency5To10ms gets a reference to the given int32 and assigns it to the ComputeLatency5To10ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency5To10ms(v int32) { +// SetComputeLatency5To10ms gets a reference to the given int64 and assigns it to the ComputeLatency5To10ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency5To10ms(v int64) { o.ComputeLatency5To10ms = &v } // GetComputeLatency10To50ms returns the ComputeLatency10To50ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency10To50ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency10To50ms() int64 { if o == nil || o.ComputeLatency10To50ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency10To50ms @@ -3715,7 +3715,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency10To50ms() int32 { // GetComputeLatency10To50msOk returns a tuple with the ComputeLatency10To50ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency10To50msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency10To50msOk() (*int64, bool) { if o == nil || o.ComputeLatency10To50ms == nil { return nil, false } @@ -3731,15 +3731,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency10To50ms() bool { return false } -// SetComputeLatency10To50ms gets a reference to the given int32 and assigns it to the ComputeLatency10To50ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency10To50ms(v int32) { +// SetComputeLatency10To50ms gets a reference to the given int64 and assigns it to the ComputeLatency10To50ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency10To50ms(v int64) { o.ComputeLatency10To50ms = &v } // GetComputeLatency50To100ms returns the ComputeLatency50To100ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency50To100ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency50To100ms() int64 { if o == nil || o.ComputeLatency50To100ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency50To100ms @@ -3747,7 +3747,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency50To100ms() int32 { // GetComputeLatency50To100msOk returns a tuple with the ComputeLatency50To100ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency50To100msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency50To100msOk() (*int64, bool) { if o == nil || o.ComputeLatency50To100ms == nil { return nil, false } @@ -3763,15 +3763,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency50To100ms() bool { return false } -// SetComputeLatency50To100ms gets a reference to the given int32 and assigns it to the ComputeLatency50To100ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency50To100ms(v int32) { +// SetComputeLatency50To100ms gets a reference to the given int64 and assigns it to the ComputeLatency50To100ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency50To100ms(v int64) { o.ComputeLatency50To100ms = &v } // GetComputeLatency100To250ms returns the ComputeLatency100To250ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency100To250ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency100To250ms() int64 { if o == nil || o.ComputeLatency100To250ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency100To250ms @@ -3779,7 +3779,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency100To250ms() int32 { // GetComputeLatency100To250msOk returns a tuple with the ComputeLatency100To250ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency100To250msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency100To250msOk() (*int64, bool) { if o == nil || o.ComputeLatency100To250ms == nil { return nil, false } @@ -3795,15 +3795,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency100To250ms() bool { return false } -// SetComputeLatency100To250ms gets a reference to the given int32 and assigns it to the ComputeLatency100To250ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency100To250ms(v int32) { +// SetComputeLatency100To250ms gets a reference to the given int64 and assigns it to the ComputeLatency100To250ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency100To250ms(v int64) { o.ComputeLatency100To250ms = &v } // GetComputeLatency250To500ms returns the ComputeLatency250To500ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency250To500ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency250To500ms() int64 { if o == nil || o.ComputeLatency250To500ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency250To500ms @@ -3811,7 +3811,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency250To500ms() int32 { // GetComputeLatency250To500msOk returns a tuple with the ComputeLatency250To500ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency250To500msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency250To500msOk() (*int64, bool) { if o == nil || o.ComputeLatency250To500ms == nil { return nil, false } @@ -3827,15 +3827,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency250To500ms() bool { return false } -// SetComputeLatency250To500ms gets a reference to the given int32 and assigns it to the ComputeLatency250To500ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency250To500ms(v int32) { +// SetComputeLatency250To500ms gets a reference to the given int64 and assigns it to the ComputeLatency250To500ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency250To500ms(v int64) { o.ComputeLatency250To500ms = &v } // GetComputeLatency500To1000ms returns the ComputeLatency500To1000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency500To1000ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency500To1000ms() int64 { if o == nil || o.ComputeLatency500To1000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency500To1000ms @@ -3843,7 +3843,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency500To1000ms() int32 { // GetComputeLatency500To1000msOk returns a tuple with the ComputeLatency500To1000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency500To1000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency500To1000msOk() (*int64, bool) { if o == nil || o.ComputeLatency500To1000ms == nil { return nil, false } @@ -3859,15 +3859,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency500To1000ms() bool { return false } -// SetComputeLatency500To1000ms gets a reference to the given int32 and assigns it to the ComputeLatency500To1000ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency500To1000ms(v int32) { +// SetComputeLatency500To1000ms gets a reference to the given int64 and assigns it to the ComputeLatency500To1000ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency500To1000ms(v int64) { o.ComputeLatency500To1000ms = &v } // GetComputeLatency1000To5000ms returns the ComputeLatency1000To5000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000ms() int64 { if o == nil || o.ComputeLatency1000To5000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency1000To5000ms @@ -3875,7 +3875,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000ms() int32 { // GetComputeLatency1000To5000msOk returns a tuple with the ComputeLatency1000To5000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency1000To5000msOk() (*int64, bool) { if o == nil || o.ComputeLatency1000To5000ms == nil { return nil, false } @@ -3891,15 +3891,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency1000To5000ms() bool { return false } -// SetComputeLatency1000To5000ms gets a reference to the given int32 and assigns it to the ComputeLatency1000To5000ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency1000To5000ms(v int32) { +// SetComputeLatency1000To5000ms gets a reference to the given int64 and assigns it to the ComputeLatency1000To5000ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency1000To5000ms(v int64) { o.ComputeLatency1000To5000ms = &v } // GetComputeLatency5000To10000ms returns the ComputeLatency5000To10000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000ms() int64 { if o == nil || o.ComputeLatency5000To10000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency5000To10000ms @@ -3907,7 +3907,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000ms() int32 { // GetComputeLatency5000To10000msOk returns a tuple with the ComputeLatency5000To10000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency5000To10000msOk() (*int64, bool) { if o == nil || o.ComputeLatency5000To10000ms == nil { return nil, false } @@ -3923,15 +3923,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency5000To10000ms() bool { return false } -// SetComputeLatency5000To10000ms gets a reference to the given int32 and assigns it to the ComputeLatency5000To10000ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency5000To10000ms(v int32) { +// SetComputeLatency5000To10000ms gets a reference to the given int64 and assigns it to the ComputeLatency5000To10000ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency5000To10000ms(v int64) { o.ComputeLatency5000To10000ms = &v } // GetComputeLatency10000To60000ms returns the ComputeLatency10000To60000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000ms() int64 { if o == nil || o.ComputeLatency10000To60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency10000To60000ms @@ -3939,7 +3939,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000ms() int32 { // GetComputeLatency10000To60000msOk returns a tuple with the ComputeLatency10000To60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency10000To60000msOk() (*int64, bool) { if o == nil || o.ComputeLatency10000To60000ms == nil { return nil, false } @@ -3955,15 +3955,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency10000To60000ms() bool { return false } -// SetComputeLatency10000To60000ms gets a reference to the given int32 and assigns it to the ComputeLatency10000To60000ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency10000To60000ms(v int32) { +// SetComputeLatency10000To60000ms gets a reference to the given int64 and assigns it to the ComputeLatency10000To60000ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency10000To60000ms(v int64) { o.ComputeLatency10000To60000ms = &v } // GetComputeLatency60000ms returns the ComputeLatency60000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetComputeLatency60000ms() int32 { +func (o *OriginInspectorMeasurements) GetComputeLatency60000ms() int64 { if o == nil || o.ComputeLatency60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency60000ms @@ -3971,7 +3971,7 @@ func (o *OriginInspectorMeasurements) GetComputeLatency60000ms() int32 { // GetComputeLatency60000msOk returns a tuple with the ComputeLatency60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetComputeLatency60000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetComputeLatency60000msOk() (*int64, bool) { if o == nil || o.ComputeLatency60000ms == nil { return nil, false } @@ -3987,15 +3987,15 @@ func (o *OriginInspectorMeasurements) HasComputeLatency60000ms() bool { return false } -// SetComputeLatency60000ms gets a reference to the given int32 and assigns it to the ComputeLatency60000ms field. -func (o *OriginInspectorMeasurements) SetComputeLatency60000ms(v int32) { +// SetComputeLatency60000ms gets a reference to the given int64 and assigns it to the ComputeLatency60000ms field. +func (o *OriginInspectorMeasurements) SetComputeLatency60000ms(v int64) { o.ComputeLatency60000ms = &v } // GetAllResponses returns the AllResponses field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllResponses() int32 { +func (o *OriginInspectorMeasurements) GetAllResponses() int64 { if o == nil || o.AllResponses == nil { - var ret int32 + var ret int64 return ret } return *o.AllResponses @@ -4003,7 +4003,7 @@ func (o *OriginInspectorMeasurements) GetAllResponses() int32 { // GetAllResponsesOk returns a tuple with the AllResponses field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllResponsesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllResponsesOk() (*int64, bool) { if o == nil || o.AllResponses == nil { return nil, false } @@ -4019,15 +4019,15 @@ func (o *OriginInspectorMeasurements) HasAllResponses() bool { return false } -// SetAllResponses gets a reference to the given int32 and assigns it to the AllResponses field. -func (o *OriginInspectorMeasurements) SetAllResponses(v int32) { +// SetAllResponses gets a reference to the given int64 and assigns it to the AllResponses field. +func (o *OriginInspectorMeasurements) SetAllResponses(v int64) { o.AllResponses = &v } // GetAllRespHeaderBytes returns the AllRespHeaderBytes field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllRespHeaderBytes() int32 { +func (o *OriginInspectorMeasurements) GetAllRespHeaderBytes() int64 { if o == nil || o.AllRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AllRespHeaderBytes @@ -4035,7 +4035,7 @@ func (o *OriginInspectorMeasurements) GetAllRespHeaderBytes() int32 { // GetAllRespHeaderBytesOk returns a tuple with the AllRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllRespHeaderBytesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllRespHeaderBytesOk() (*int64, bool) { if o == nil || o.AllRespHeaderBytes == nil { return nil, false } @@ -4051,15 +4051,15 @@ func (o *OriginInspectorMeasurements) HasAllRespHeaderBytes() bool { return false } -// SetAllRespHeaderBytes gets a reference to the given int32 and assigns it to the AllRespHeaderBytes field. -func (o *OriginInspectorMeasurements) SetAllRespHeaderBytes(v int32) { +// SetAllRespHeaderBytes gets a reference to the given int64 and assigns it to the AllRespHeaderBytes field. +func (o *OriginInspectorMeasurements) SetAllRespHeaderBytes(v int64) { o.AllRespHeaderBytes = &v } // GetAllRespBodyBytes returns the AllRespBodyBytes field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllRespBodyBytes() int32 { +func (o *OriginInspectorMeasurements) GetAllRespBodyBytes() int64 { if o == nil || o.AllRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AllRespBodyBytes @@ -4067,7 +4067,7 @@ func (o *OriginInspectorMeasurements) GetAllRespBodyBytes() int32 { // GetAllRespBodyBytesOk returns a tuple with the AllRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllRespBodyBytesOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllRespBodyBytesOk() (*int64, bool) { if o == nil || o.AllRespBodyBytes == nil { return nil, false } @@ -4083,15 +4083,15 @@ func (o *OriginInspectorMeasurements) HasAllRespBodyBytes() bool { return false } -// SetAllRespBodyBytes gets a reference to the given int32 and assigns it to the AllRespBodyBytes field. -func (o *OriginInspectorMeasurements) SetAllRespBodyBytes(v int32) { +// SetAllRespBodyBytes gets a reference to the given int64 and assigns it to the AllRespBodyBytes field. +func (o *OriginInspectorMeasurements) SetAllRespBodyBytes(v int64) { o.AllRespBodyBytes = &v } // GetAllStatus1xx returns the AllStatus1xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus1xx() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus1xx() int64 { if o == nil || o.AllStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus1xx @@ -4099,7 +4099,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus1xx() int32 { // GetAllStatus1xxOk returns a tuple with the AllStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus1xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus1xxOk() (*int64, bool) { if o == nil || o.AllStatus1xx == nil { return nil, false } @@ -4115,15 +4115,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus1xx() bool { return false } -// SetAllStatus1xx gets a reference to the given int32 and assigns it to the AllStatus1xx field. -func (o *OriginInspectorMeasurements) SetAllStatus1xx(v int32) { +// SetAllStatus1xx gets a reference to the given int64 and assigns it to the AllStatus1xx field. +func (o *OriginInspectorMeasurements) SetAllStatus1xx(v int64) { o.AllStatus1xx = &v } // GetAllStatus2xx returns the AllStatus2xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus2xx() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus2xx() int64 { if o == nil || o.AllStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus2xx @@ -4131,7 +4131,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus2xx() int32 { // GetAllStatus2xxOk returns a tuple with the AllStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus2xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus2xxOk() (*int64, bool) { if o == nil || o.AllStatus2xx == nil { return nil, false } @@ -4147,15 +4147,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus2xx() bool { return false } -// SetAllStatus2xx gets a reference to the given int32 and assigns it to the AllStatus2xx field. -func (o *OriginInspectorMeasurements) SetAllStatus2xx(v int32) { +// SetAllStatus2xx gets a reference to the given int64 and assigns it to the AllStatus2xx field. +func (o *OriginInspectorMeasurements) SetAllStatus2xx(v int64) { o.AllStatus2xx = &v } // GetAllStatus3xx returns the AllStatus3xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus3xx() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus3xx() int64 { if o == nil || o.AllStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus3xx @@ -4163,7 +4163,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus3xx() int32 { // GetAllStatus3xxOk returns a tuple with the AllStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus3xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus3xxOk() (*int64, bool) { if o == nil || o.AllStatus3xx == nil { return nil, false } @@ -4179,15 +4179,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus3xx() bool { return false } -// SetAllStatus3xx gets a reference to the given int32 and assigns it to the AllStatus3xx field. -func (o *OriginInspectorMeasurements) SetAllStatus3xx(v int32) { +// SetAllStatus3xx gets a reference to the given int64 and assigns it to the AllStatus3xx field. +func (o *OriginInspectorMeasurements) SetAllStatus3xx(v int64) { o.AllStatus3xx = &v } // GetAllStatus4xx returns the AllStatus4xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus4xx() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus4xx() int64 { if o == nil || o.AllStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus4xx @@ -4195,7 +4195,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus4xx() int32 { // GetAllStatus4xxOk returns a tuple with the AllStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus4xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus4xxOk() (*int64, bool) { if o == nil || o.AllStatus4xx == nil { return nil, false } @@ -4211,15 +4211,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus4xx() bool { return false } -// SetAllStatus4xx gets a reference to the given int32 and assigns it to the AllStatus4xx field. -func (o *OriginInspectorMeasurements) SetAllStatus4xx(v int32) { +// SetAllStatus4xx gets a reference to the given int64 and assigns it to the AllStatus4xx field. +func (o *OriginInspectorMeasurements) SetAllStatus4xx(v int64) { o.AllStatus4xx = &v } // GetAllStatus5xx returns the AllStatus5xx field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus5xx() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus5xx() int64 { if o == nil || o.AllStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus5xx @@ -4227,7 +4227,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus5xx() int32 { // GetAllStatus5xxOk returns a tuple with the AllStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus5xxOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus5xxOk() (*int64, bool) { if o == nil || o.AllStatus5xx == nil { return nil, false } @@ -4243,15 +4243,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus5xx() bool { return false } -// SetAllStatus5xx gets a reference to the given int32 and assigns it to the AllStatus5xx field. -func (o *OriginInspectorMeasurements) SetAllStatus5xx(v int32) { +// SetAllStatus5xx gets a reference to the given int64 and assigns it to the AllStatus5xx field. +func (o *OriginInspectorMeasurements) SetAllStatus5xx(v int64) { o.AllStatus5xx = &v } // GetAllStatus200 returns the AllStatus200 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus200() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus200() int64 { if o == nil || o.AllStatus200 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus200 @@ -4259,7 +4259,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus200() int32 { // GetAllStatus200Ok returns a tuple with the AllStatus200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus200Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus200Ok() (*int64, bool) { if o == nil || o.AllStatus200 == nil { return nil, false } @@ -4275,15 +4275,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus200() bool { return false } -// SetAllStatus200 gets a reference to the given int32 and assigns it to the AllStatus200 field. -func (o *OriginInspectorMeasurements) SetAllStatus200(v int32) { +// SetAllStatus200 gets a reference to the given int64 and assigns it to the AllStatus200 field. +func (o *OriginInspectorMeasurements) SetAllStatus200(v int64) { o.AllStatus200 = &v } // GetAllStatus204 returns the AllStatus204 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus204() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus204() int64 { if o == nil || o.AllStatus204 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus204 @@ -4291,7 +4291,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus204() int32 { // GetAllStatus204Ok returns a tuple with the AllStatus204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus204Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus204Ok() (*int64, bool) { if o == nil || o.AllStatus204 == nil { return nil, false } @@ -4307,15 +4307,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus204() bool { return false } -// SetAllStatus204 gets a reference to the given int32 and assigns it to the AllStatus204 field. -func (o *OriginInspectorMeasurements) SetAllStatus204(v int32) { +// SetAllStatus204 gets a reference to the given int64 and assigns it to the AllStatus204 field. +func (o *OriginInspectorMeasurements) SetAllStatus204(v int64) { o.AllStatus204 = &v } // GetAllStatus206 returns the AllStatus206 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus206() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus206() int64 { if o == nil || o.AllStatus206 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus206 @@ -4323,7 +4323,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus206() int32 { // GetAllStatus206Ok returns a tuple with the AllStatus206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus206Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus206Ok() (*int64, bool) { if o == nil || o.AllStatus206 == nil { return nil, false } @@ -4339,15 +4339,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus206() bool { return false } -// SetAllStatus206 gets a reference to the given int32 and assigns it to the AllStatus206 field. -func (o *OriginInspectorMeasurements) SetAllStatus206(v int32) { +// SetAllStatus206 gets a reference to the given int64 and assigns it to the AllStatus206 field. +func (o *OriginInspectorMeasurements) SetAllStatus206(v int64) { o.AllStatus206 = &v } // GetAllStatus301 returns the AllStatus301 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus301() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus301() int64 { if o == nil || o.AllStatus301 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus301 @@ -4355,7 +4355,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus301() int32 { // GetAllStatus301Ok returns a tuple with the AllStatus301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus301Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus301Ok() (*int64, bool) { if o == nil || o.AllStatus301 == nil { return nil, false } @@ -4371,15 +4371,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus301() bool { return false } -// SetAllStatus301 gets a reference to the given int32 and assigns it to the AllStatus301 field. -func (o *OriginInspectorMeasurements) SetAllStatus301(v int32) { +// SetAllStatus301 gets a reference to the given int64 and assigns it to the AllStatus301 field. +func (o *OriginInspectorMeasurements) SetAllStatus301(v int64) { o.AllStatus301 = &v } // GetAllStatus302 returns the AllStatus302 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus302() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus302() int64 { if o == nil || o.AllStatus302 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus302 @@ -4387,7 +4387,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus302() int32 { // GetAllStatus302Ok returns a tuple with the AllStatus302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus302Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus302Ok() (*int64, bool) { if o == nil || o.AllStatus302 == nil { return nil, false } @@ -4403,15 +4403,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus302() bool { return false } -// SetAllStatus302 gets a reference to the given int32 and assigns it to the AllStatus302 field. -func (o *OriginInspectorMeasurements) SetAllStatus302(v int32) { +// SetAllStatus302 gets a reference to the given int64 and assigns it to the AllStatus302 field. +func (o *OriginInspectorMeasurements) SetAllStatus302(v int64) { o.AllStatus302 = &v } // GetAllStatus304 returns the AllStatus304 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus304() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus304() int64 { if o == nil || o.AllStatus304 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus304 @@ -4419,7 +4419,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus304() int32 { // GetAllStatus304Ok returns a tuple with the AllStatus304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus304Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus304Ok() (*int64, bool) { if o == nil || o.AllStatus304 == nil { return nil, false } @@ -4435,15 +4435,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus304() bool { return false } -// SetAllStatus304 gets a reference to the given int32 and assigns it to the AllStatus304 field. -func (o *OriginInspectorMeasurements) SetAllStatus304(v int32) { +// SetAllStatus304 gets a reference to the given int64 and assigns it to the AllStatus304 field. +func (o *OriginInspectorMeasurements) SetAllStatus304(v int64) { o.AllStatus304 = &v } // GetAllStatus400 returns the AllStatus400 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus400() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus400() int64 { if o == nil || o.AllStatus400 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus400 @@ -4451,7 +4451,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus400() int32 { // GetAllStatus400Ok returns a tuple with the AllStatus400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus400Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus400Ok() (*int64, bool) { if o == nil || o.AllStatus400 == nil { return nil, false } @@ -4467,15 +4467,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus400() bool { return false } -// SetAllStatus400 gets a reference to the given int32 and assigns it to the AllStatus400 field. -func (o *OriginInspectorMeasurements) SetAllStatus400(v int32) { +// SetAllStatus400 gets a reference to the given int64 and assigns it to the AllStatus400 field. +func (o *OriginInspectorMeasurements) SetAllStatus400(v int64) { o.AllStatus400 = &v } // GetAllStatus401 returns the AllStatus401 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus401() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus401() int64 { if o == nil || o.AllStatus401 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus401 @@ -4483,7 +4483,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus401() int32 { // GetAllStatus401Ok returns a tuple with the AllStatus401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus401Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus401Ok() (*int64, bool) { if o == nil || o.AllStatus401 == nil { return nil, false } @@ -4499,15 +4499,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus401() bool { return false } -// SetAllStatus401 gets a reference to the given int32 and assigns it to the AllStatus401 field. -func (o *OriginInspectorMeasurements) SetAllStatus401(v int32) { +// SetAllStatus401 gets a reference to the given int64 and assigns it to the AllStatus401 field. +func (o *OriginInspectorMeasurements) SetAllStatus401(v int64) { o.AllStatus401 = &v } // GetAllStatus403 returns the AllStatus403 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus403() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus403() int64 { if o == nil || o.AllStatus403 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus403 @@ -4515,7 +4515,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus403() int32 { // GetAllStatus403Ok returns a tuple with the AllStatus403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus403Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus403Ok() (*int64, bool) { if o == nil || o.AllStatus403 == nil { return nil, false } @@ -4531,15 +4531,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus403() bool { return false } -// SetAllStatus403 gets a reference to the given int32 and assigns it to the AllStatus403 field. -func (o *OriginInspectorMeasurements) SetAllStatus403(v int32) { +// SetAllStatus403 gets a reference to the given int64 and assigns it to the AllStatus403 field. +func (o *OriginInspectorMeasurements) SetAllStatus403(v int64) { o.AllStatus403 = &v } // GetAllStatus404 returns the AllStatus404 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus404() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus404() int64 { if o == nil || o.AllStatus404 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus404 @@ -4547,7 +4547,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus404() int32 { // GetAllStatus404Ok returns a tuple with the AllStatus404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus404Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus404Ok() (*int64, bool) { if o == nil || o.AllStatus404 == nil { return nil, false } @@ -4563,15 +4563,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus404() bool { return false } -// SetAllStatus404 gets a reference to the given int32 and assigns it to the AllStatus404 field. -func (o *OriginInspectorMeasurements) SetAllStatus404(v int32) { +// SetAllStatus404 gets a reference to the given int64 and assigns it to the AllStatus404 field. +func (o *OriginInspectorMeasurements) SetAllStatus404(v int64) { o.AllStatus404 = &v } // GetAllStatus416 returns the AllStatus416 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus416() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus416() int64 { if o == nil || o.AllStatus416 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus416 @@ -4579,7 +4579,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus416() int32 { // GetAllStatus416Ok returns a tuple with the AllStatus416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus416Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus416Ok() (*int64, bool) { if o == nil || o.AllStatus416 == nil { return nil, false } @@ -4595,15 +4595,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus416() bool { return false } -// SetAllStatus416 gets a reference to the given int32 and assigns it to the AllStatus416 field. -func (o *OriginInspectorMeasurements) SetAllStatus416(v int32) { +// SetAllStatus416 gets a reference to the given int64 and assigns it to the AllStatus416 field. +func (o *OriginInspectorMeasurements) SetAllStatus416(v int64) { o.AllStatus416 = &v } // GetAllStatus429 returns the AllStatus429 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus429() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus429() int64 { if o == nil || o.AllStatus429 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus429 @@ -4611,7 +4611,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus429() int32 { // GetAllStatus429Ok returns a tuple with the AllStatus429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus429Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus429Ok() (*int64, bool) { if o == nil || o.AllStatus429 == nil { return nil, false } @@ -4627,15 +4627,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus429() bool { return false } -// SetAllStatus429 gets a reference to the given int32 and assigns it to the AllStatus429 field. -func (o *OriginInspectorMeasurements) SetAllStatus429(v int32) { +// SetAllStatus429 gets a reference to the given int64 and assigns it to the AllStatus429 field. +func (o *OriginInspectorMeasurements) SetAllStatus429(v int64) { o.AllStatus429 = &v } // GetAllStatus500 returns the AllStatus500 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus500() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus500() int64 { if o == nil || o.AllStatus500 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus500 @@ -4643,7 +4643,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus500() int32 { // GetAllStatus500Ok returns a tuple with the AllStatus500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus500Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus500Ok() (*int64, bool) { if o == nil || o.AllStatus500 == nil { return nil, false } @@ -4659,15 +4659,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus500() bool { return false } -// SetAllStatus500 gets a reference to the given int32 and assigns it to the AllStatus500 field. -func (o *OriginInspectorMeasurements) SetAllStatus500(v int32) { +// SetAllStatus500 gets a reference to the given int64 and assigns it to the AllStatus500 field. +func (o *OriginInspectorMeasurements) SetAllStatus500(v int64) { o.AllStatus500 = &v } // GetAllStatus501 returns the AllStatus501 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus501() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus501() int64 { if o == nil || o.AllStatus501 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus501 @@ -4675,7 +4675,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus501() int32 { // GetAllStatus501Ok returns a tuple with the AllStatus501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus501Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus501Ok() (*int64, bool) { if o == nil || o.AllStatus501 == nil { return nil, false } @@ -4691,15 +4691,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus501() bool { return false } -// SetAllStatus501 gets a reference to the given int32 and assigns it to the AllStatus501 field. -func (o *OriginInspectorMeasurements) SetAllStatus501(v int32) { +// SetAllStatus501 gets a reference to the given int64 and assigns it to the AllStatus501 field. +func (o *OriginInspectorMeasurements) SetAllStatus501(v int64) { o.AllStatus501 = &v } // GetAllStatus502 returns the AllStatus502 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus502() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus502() int64 { if o == nil || o.AllStatus502 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus502 @@ -4707,7 +4707,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus502() int32 { // GetAllStatus502Ok returns a tuple with the AllStatus502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus502Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus502Ok() (*int64, bool) { if o == nil || o.AllStatus502 == nil { return nil, false } @@ -4723,15 +4723,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus502() bool { return false } -// SetAllStatus502 gets a reference to the given int32 and assigns it to the AllStatus502 field. -func (o *OriginInspectorMeasurements) SetAllStatus502(v int32) { +// SetAllStatus502 gets a reference to the given int64 and assigns it to the AllStatus502 field. +func (o *OriginInspectorMeasurements) SetAllStatus502(v int64) { o.AllStatus502 = &v } // GetAllStatus503 returns the AllStatus503 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus503() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus503() int64 { if o == nil || o.AllStatus503 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus503 @@ -4739,7 +4739,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus503() int32 { // GetAllStatus503Ok returns a tuple with the AllStatus503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus503Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus503Ok() (*int64, bool) { if o == nil || o.AllStatus503 == nil { return nil, false } @@ -4755,15 +4755,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus503() bool { return false } -// SetAllStatus503 gets a reference to the given int32 and assigns it to the AllStatus503 field. -func (o *OriginInspectorMeasurements) SetAllStatus503(v int32) { +// SetAllStatus503 gets a reference to the given int64 and assigns it to the AllStatus503 field. +func (o *OriginInspectorMeasurements) SetAllStatus503(v int64) { o.AllStatus503 = &v } // GetAllStatus504 returns the AllStatus504 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus504() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus504() int64 { if o == nil || o.AllStatus504 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus504 @@ -4771,7 +4771,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus504() int32 { // GetAllStatus504Ok returns a tuple with the AllStatus504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus504Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus504Ok() (*int64, bool) { if o == nil || o.AllStatus504 == nil { return nil, false } @@ -4787,15 +4787,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus504() bool { return false } -// SetAllStatus504 gets a reference to the given int32 and assigns it to the AllStatus504 field. -func (o *OriginInspectorMeasurements) SetAllStatus504(v int32) { +// SetAllStatus504 gets a reference to the given int64 and assigns it to the AllStatus504 field. +func (o *OriginInspectorMeasurements) SetAllStatus504(v int64) { o.AllStatus504 = &v } // GetAllStatus505 returns the AllStatus505 field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllStatus505() int32 { +func (o *OriginInspectorMeasurements) GetAllStatus505() int64 { if o == nil || o.AllStatus505 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus505 @@ -4803,7 +4803,7 @@ func (o *OriginInspectorMeasurements) GetAllStatus505() int32 { // GetAllStatus505Ok returns a tuple with the AllStatus505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllStatus505Ok() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllStatus505Ok() (*int64, bool) { if o == nil || o.AllStatus505 == nil { return nil, false } @@ -4819,15 +4819,15 @@ func (o *OriginInspectorMeasurements) HasAllStatus505() bool { return false } -// SetAllStatus505 gets a reference to the given int32 and assigns it to the AllStatus505 field. -func (o *OriginInspectorMeasurements) SetAllStatus505(v int32) { +// SetAllStatus505 gets a reference to the given int64 and assigns it to the AllStatus505 field. +func (o *OriginInspectorMeasurements) SetAllStatus505(v int64) { o.AllStatus505 = &v } // GetAllLatency0To1ms returns the AllLatency0To1ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency0To1ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency0To1ms() int64 { if o == nil || o.AllLatency0To1ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency0To1ms @@ -4835,7 +4835,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency0To1ms() int32 { // GetAllLatency0To1msOk returns a tuple with the AllLatency0To1ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency0To1msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency0To1msOk() (*int64, bool) { if o == nil || o.AllLatency0To1ms == nil { return nil, false } @@ -4851,15 +4851,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency0To1ms() bool { return false } -// SetAllLatency0To1ms gets a reference to the given int32 and assigns it to the AllLatency0To1ms field. -func (o *OriginInspectorMeasurements) SetAllLatency0To1ms(v int32) { +// SetAllLatency0To1ms gets a reference to the given int64 and assigns it to the AllLatency0To1ms field. +func (o *OriginInspectorMeasurements) SetAllLatency0To1ms(v int64) { o.AllLatency0To1ms = &v } // GetAllLatency1To5ms returns the AllLatency1To5ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency1To5ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency1To5ms() int64 { if o == nil || o.AllLatency1To5ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency1To5ms @@ -4867,7 +4867,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency1To5ms() int32 { // GetAllLatency1To5msOk returns a tuple with the AllLatency1To5ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency1To5msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency1To5msOk() (*int64, bool) { if o == nil || o.AllLatency1To5ms == nil { return nil, false } @@ -4883,15 +4883,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency1To5ms() bool { return false } -// SetAllLatency1To5ms gets a reference to the given int32 and assigns it to the AllLatency1To5ms field. -func (o *OriginInspectorMeasurements) SetAllLatency1To5ms(v int32) { +// SetAllLatency1To5ms gets a reference to the given int64 and assigns it to the AllLatency1To5ms field. +func (o *OriginInspectorMeasurements) SetAllLatency1To5ms(v int64) { o.AllLatency1To5ms = &v } // GetAllLatency5To10ms returns the AllLatency5To10ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency5To10ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency5To10ms() int64 { if o == nil || o.AllLatency5To10ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency5To10ms @@ -4899,7 +4899,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency5To10ms() int32 { // GetAllLatency5To10msOk returns a tuple with the AllLatency5To10ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency5To10msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency5To10msOk() (*int64, bool) { if o == nil || o.AllLatency5To10ms == nil { return nil, false } @@ -4915,15 +4915,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency5To10ms() bool { return false } -// SetAllLatency5To10ms gets a reference to the given int32 and assigns it to the AllLatency5To10ms field. -func (o *OriginInspectorMeasurements) SetAllLatency5To10ms(v int32) { +// SetAllLatency5To10ms gets a reference to the given int64 and assigns it to the AllLatency5To10ms field. +func (o *OriginInspectorMeasurements) SetAllLatency5To10ms(v int64) { o.AllLatency5To10ms = &v } // GetAllLatency10To50ms returns the AllLatency10To50ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency10To50ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency10To50ms() int64 { if o == nil || o.AllLatency10To50ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency10To50ms @@ -4931,7 +4931,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency10To50ms() int32 { // GetAllLatency10To50msOk returns a tuple with the AllLatency10To50ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency10To50msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency10To50msOk() (*int64, bool) { if o == nil || o.AllLatency10To50ms == nil { return nil, false } @@ -4947,15 +4947,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency10To50ms() bool { return false } -// SetAllLatency10To50ms gets a reference to the given int32 and assigns it to the AllLatency10To50ms field. -func (o *OriginInspectorMeasurements) SetAllLatency10To50ms(v int32) { +// SetAllLatency10To50ms gets a reference to the given int64 and assigns it to the AllLatency10To50ms field. +func (o *OriginInspectorMeasurements) SetAllLatency10To50ms(v int64) { o.AllLatency10To50ms = &v } // GetAllLatency50To100ms returns the AllLatency50To100ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency50To100ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency50To100ms() int64 { if o == nil || o.AllLatency50To100ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency50To100ms @@ -4963,7 +4963,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency50To100ms() int32 { // GetAllLatency50To100msOk returns a tuple with the AllLatency50To100ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency50To100msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency50To100msOk() (*int64, bool) { if o == nil || o.AllLatency50To100ms == nil { return nil, false } @@ -4979,15 +4979,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency50To100ms() bool { return false } -// SetAllLatency50To100ms gets a reference to the given int32 and assigns it to the AllLatency50To100ms field. -func (o *OriginInspectorMeasurements) SetAllLatency50To100ms(v int32) { +// SetAllLatency50To100ms gets a reference to the given int64 and assigns it to the AllLatency50To100ms field. +func (o *OriginInspectorMeasurements) SetAllLatency50To100ms(v int64) { o.AllLatency50To100ms = &v } // GetAllLatency100To250ms returns the AllLatency100To250ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency100To250ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency100To250ms() int64 { if o == nil || o.AllLatency100To250ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency100To250ms @@ -4995,7 +4995,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency100To250ms() int32 { // GetAllLatency100To250msOk returns a tuple with the AllLatency100To250ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency100To250msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency100To250msOk() (*int64, bool) { if o == nil || o.AllLatency100To250ms == nil { return nil, false } @@ -5011,15 +5011,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency100To250ms() bool { return false } -// SetAllLatency100To250ms gets a reference to the given int32 and assigns it to the AllLatency100To250ms field. -func (o *OriginInspectorMeasurements) SetAllLatency100To250ms(v int32) { +// SetAllLatency100To250ms gets a reference to the given int64 and assigns it to the AllLatency100To250ms field. +func (o *OriginInspectorMeasurements) SetAllLatency100To250ms(v int64) { o.AllLatency100To250ms = &v } // GetAllLatency250To500ms returns the AllLatency250To500ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency250To500ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency250To500ms() int64 { if o == nil || o.AllLatency250To500ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency250To500ms @@ -5027,7 +5027,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency250To500ms() int32 { // GetAllLatency250To500msOk returns a tuple with the AllLatency250To500ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency250To500msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency250To500msOk() (*int64, bool) { if o == nil || o.AllLatency250To500ms == nil { return nil, false } @@ -5043,15 +5043,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency250To500ms() bool { return false } -// SetAllLatency250To500ms gets a reference to the given int32 and assigns it to the AllLatency250To500ms field. -func (o *OriginInspectorMeasurements) SetAllLatency250To500ms(v int32) { +// SetAllLatency250To500ms gets a reference to the given int64 and assigns it to the AllLatency250To500ms field. +func (o *OriginInspectorMeasurements) SetAllLatency250To500ms(v int64) { o.AllLatency250To500ms = &v } // GetAllLatency500To1000ms returns the AllLatency500To1000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency500To1000ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency500To1000ms() int64 { if o == nil || o.AllLatency500To1000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency500To1000ms @@ -5059,7 +5059,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency500To1000ms() int32 { // GetAllLatency500To1000msOk returns a tuple with the AllLatency500To1000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency500To1000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency500To1000msOk() (*int64, bool) { if o == nil || o.AllLatency500To1000ms == nil { return nil, false } @@ -5075,15 +5075,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency500To1000ms() bool { return false } -// SetAllLatency500To1000ms gets a reference to the given int32 and assigns it to the AllLatency500To1000ms field. -func (o *OriginInspectorMeasurements) SetAllLatency500To1000ms(v int32) { +// SetAllLatency500To1000ms gets a reference to the given int64 and assigns it to the AllLatency500To1000ms field. +func (o *OriginInspectorMeasurements) SetAllLatency500To1000ms(v int64) { o.AllLatency500To1000ms = &v } // GetAllLatency1000To5000ms returns the AllLatency1000To5000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency1000To5000ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency1000To5000ms() int64 { if o == nil || o.AllLatency1000To5000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency1000To5000ms @@ -5091,7 +5091,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency1000To5000ms() int32 { // GetAllLatency1000To5000msOk returns a tuple with the AllLatency1000To5000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency1000To5000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency1000To5000msOk() (*int64, bool) { if o == nil || o.AllLatency1000To5000ms == nil { return nil, false } @@ -5107,15 +5107,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency1000To5000ms() bool { return false } -// SetAllLatency1000To5000ms gets a reference to the given int32 and assigns it to the AllLatency1000To5000ms field. -func (o *OriginInspectorMeasurements) SetAllLatency1000To5000ms(v int32) { +// SetAllLatency1000To5000ms gets a reference to the given int64 and assigns it to the AllLatency1000To5000ms field. +func (o *OriginInspectorMeasurements) SetAllLatency1000To5000ms(v int64) { o.AllLatency1000To5000ms = &v } // GetAllLatency5000To10000ms returns the AllLatency5000To10000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency5000To10000ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency5000To10000ms() int64 { if o == nil || o.AllLatency5000To10000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency5000To10000ms @@ -5123,7 +5123,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency5000To10000ms() int32 { // GetAllLatency5000To10000msOk returns a tuple with the AllLatency5000To10000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency5000To10000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency5000To10000msOk() (*int64, bool) { if o == nil || o.AllLatency5000To10000ms == nil { return nil, false } @@ -5139,15 +5139,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency5000To10000ms() bool { return false } -// SetAllLatency5000To10000ms gets a reference to the given int32 and assigns it to the AllLatency5000To10000ms field. -func (o *OriginInspectorMeasurements) SetAllLatency5000To10000ms(v int32) { +// SetAllLatency5000To10000ms gets a reference to the given int64 and assigns it to the AllLatency5000To10000ms field. +func (o *OriginInspectorMeasurements) SetAllLatency5000To10000ms(v int64) { o.AllLatency5000To10000ms = &v } // GetAllLatency10000To60000ms returns the AllLatency10000To60000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency10000To60000ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency10000To60000ms() int64 { if o == nil || o.AllLatency10000To60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency10000To60000ms @@ -5155,7 +5155,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency10000To60000ms() int32 { // GetAllLatency10000To60000msOk returns a tuple with the AllLatency10000To60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency10000To60000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency10000To60000msOk() (*int64, bool) { if o == nil || o.AllLatency10000To60000ms == nil { return nil, false } @@ -5171,15 +5171,15 @@ func (o *OriginInspectorMeasurements) HasAllLatency10000To60000ms() bool { return false } -// SetAllLatency10000To60000ms gets a reference to the given int32 and assigns it to the AllLatency10000To60000ms field. -func (o *OriginInspectorMeasurements) SetAllLatency10000To60000ms(v int32) { +// SetAllLatency10000To60000ms gets a reference to the given int64 and assigns it to the AllLatency10000To60000ms field. +func (o *OriginInspectorMeasurements) SetAllLatency10000To60000ms(v int64) { o.AllLatency10000To60000ms = &v } // GetAllLatency60000ms returns the AllLatency60000ms field value if set, zero value otherwise. -func (o *OriginInspectorMeasurements) GetAllLatency60000ms() int32 { +func (o *OriginInspectorMeasurements) GetAllLatency60000ms() int64 { if o == nil || o.AllLatency60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency60000ms @@ -5187,7 +5187,7 @@ func (o *OriginInspectorMeasurements) GetAllLatency60000ms() int32 { // GetAllLatency60000msOk returns a tuple with the AllLatency60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorMeasurements) GetAllLatency60000msOk() (*int32, bool) { +func (o *OriginInspectorMeasurements) GetAllLatency60000msOk() (*int64, bool) { if o == nil || o.AllLatency60000ms == nil { return nil, false } @@ -5203,8 +5203,8 @@ func (o *OriginInspectorMeasurements) HasAllLatency60000ms() bool { return false } -// SetAllLatency60000ms gets a reference to the given int32 and assigns it to the AllLatency60000ms field. -func (o *OriginInspectorMeasurements) SetAllLatency60000ms(v int32) { +// SetAllLatency60000ms gets a reference to the given int64 and assigns it to the AllLatency60000ms field. +func (o *OriginInspectorMeasurements) SetAllLatency60000ms(v int64) { o.AllLatency60000ms = &v } diff --git a/fastly/model_origin_inspector_values.go b/fastly/model_origin_inspector_values.go index c8471af..a5c0e2c 100644 --- a/fastly/model_origin_inspector_values.go +++ b/fastly/model_origin_inspector_values.go @@ -19,309 +19,309 @@ import ( // OriginInspectorValues The results of the query, optionally filtered and grouped over the requested timespan. type OriginInspectorValues struct { // Number of responses from origin. - Responses *int32 `json:"responses,omitempty"` + Responses *int64 `json:"responses,omitempty"` // Number of header bytes from origin. - RespHeaderBytes *int32 `json:"resp_header_bytes,omitempty"` + RespHeaderBytes *int64 `json:"resp_header_bytes,omitempty"` // Number of body bytes from origin. - RespBodyBytes *int32 `json:"resp_body_bytes,omitempty"` + RespBodyBytes *int64 `json:"resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" status codes delivered from origin. - Status1xx *int32 `json:"status_1xx,omitempty"` + Status1xx *int64 `json:"status_1xx,omitempty"` // Number of 2xx \"Success\" status codes delivered from origin. - Status2xx *int32 `json:"status_2xx,omitempty"` + Status2xx *int64 `json:"status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes delivered from origin. - Status3xx *int32 `json:"status_3xx,omitempty"` + Status3xx *int64 `json:"status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes delivered from origin. - Status4xx *int32 `json:"status_4xx,omitempty"` + Status4xx *int64 `json:"status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes delivered from origin. - Status5xx *int32 `json:"status_5xx,omitempty"` + Status5xx *int64 `json:"status_5xx,omitempty"` // Number of responses received with status code 200 (Success) from origin. - Status200 *int32 `json:"status_200,omitempty"` + Status200 *int64 `json:"status_200,omitempty"` // Number of responses received with status code 204 (No Content) from origin. - Status204 *int32 `json:"status_204,omitempty"` + Status204 *int64 `json:"status_204,omitempty"` // Number of responses received with status code 206 (Partial Content) from origin. - Status206 *int32 `json:"status_206,omitempty"` + Status206 *int64 `json:"status_206,omitempty"` // Number of responses received with status code 301 (Moved Permanently) from origin. - Status301 *int32 `json:"status_301,omitempty"` + Status301 *int64 `json:"status_301,omitempty"` // Number of responses received with status code 302 (Found) from origin. - Status302 *int32 `json:"status_302,omitempty"` + Status302 *int64 `json:"status_302,omitempty"` // Number of responses received with status code 304 (Not Modified) from origin. - Status304 *int32 `json:"status_304,omitempty"` + Status304 *int64 `json:"status_304,omitempty"` // Number of responses received with status code 400 (Bad Request) from origin. - Status400 *int32 `json:"status_400,omitempty"` + Status400 *int64 `json:"status_400,omitempty"` // Number of responses received with status code 401 (Unauthorized) from origin. - Status401 *int32 `json:"status_401,omitempty"` + Status401 *int64 `json:"status_401,omitempty"` // Number of responses received with status code 403 (Forbidden) from origin. - Status403 *int32 `json:"status_403,omitempty"` + Status403 *int64 `json:"status_403,omitempty"` // Number of responses received with status code 404 (Not Found) from origin. - Status404 *int32 `json:"status_404,omitempty"` + Status404 *int64 `json:"status_404,omitempty"` // Number of responses received with status code 416 (Range Not Satisfiable) from origin. - Status416 *int32 `json:"status_416,omitempty"` + Status416 *int64 `json:"status_416,omitempty"` // Number of responses received with status code 429 (Too Many Requests) from origin. - Status429 *int32 `json:"status_429,omitempty"` + Status429 *int64 `json:"status_429,omitempty"` // Number of responses received with status code 500 (Internal Server Error) from origin. - Status500 *int32 `json:"status_500,omitempty"` + Status500 *int64 `json:"status_500,omitempty"` // Number of responses received with status code 501 (Not Implemented) from origin. - Status501 *int32 `json:"status_501,omitempty"` + Status501 *int64 `json:"status_501,omitempty"` // Number of responses received with status code 502 (Bad Gateway) from origin. - Status502 *int32 `json:"status_502,omitempty"` + Status502 *int64 `json:"status_502,omitempty"` // Number of responses received with status code 503 (Service Unavailable) from origin. - Status503 *int32 `json:"status_503,omitempty"` + Status503 *int64 `json:"status_503,omitempty"` // Number of responses received with status code 504 (Gateway Timeout) from origin. - Status504 *int32 `json:"status_504,omitempty"` + Status504 *int64 `json:"status_504,omitempty"` // Number of responses received with status code 505 (HTTP Version Not Supported) from origin. - Status505 *int32 `json:"status_505,omitempty"` + Status505 *int64 `json:"status_505,omitempty"` // Number of responses from origin with latency between 0 and 1 millisecond. - Latency0To1ms *int32 `json:"latency_0_to_1ms,omitempty"` + Latency0To1ms *int64 `json:"latency_0_to_1ms,omitempty"` // Number of responses from origin with latency between 1 and 5 milliseconds. - Latency1To5ms *int32 `json:"latency_1_to_5ms,omitempty"` + Latency1To5ms *int64 `json:"latency_1_to_5ms,omitempty"` // Number of responses from origin with latency between 5 and 10 milliseconds. - Latency5To10ms *int32 `json:"latency_5_to_10ms,omitempty"` + Latency5To10ms *int64 `json:"latency_5_to_10ms,omitempty"` // Number of responses from origin with latency between 10 and 50 milliseconds. - Latency10To50ms *int32 `json:"latency_10_to_50ms,omitempty"` + Latency10To50ms *int64 `json:"latency_10_to_50ms,omitempty"` // Number of responses from origin with latency between 50 and 100 milliseconds. - Latency50To100ms *int32 `json:"latency_50_to_100ms,omitempty"` + Latency50To100ms *int64 `json:"latency_50_to_100ms,omitempty"` // Number of responses from origin with latency between 100 and 250 milliseconds. - Latency100To250ms *int32 `json:"latency_100_to_250ms,omitempty"` + Latency100To250ms *int64 `json:"latency_100_to_250ms,omitempty"` // Number of responses from origin with latency between 250 and 500 milliseconds. - Latency250To500ms *int32 `json:"latency_250_to_500ms,omitempty"` + Latency250To500ms *int64 `json:"latency_250_to_500ms,omitempty"` // Number of responses from origin with latency between 500 and 1,000 milliseconds. - Latency500To1000ms *int32 `json:"latency_500_to_1000ms,omitempty"` + Latency500To1000ms *int64 `json:"latency_500_to_1000ms,omitempty"` // Number of responses from origin with latency between 1,000 and 5,000 milliseconds. - Latency1000To5000ms *int32 `json:"latency_1000_to_5000ms,omitempty"` + Latency1000To5000ms *int64 `json:"latency_1000_to_5000ms,omitempty"` // Number of responses from origin with latency between 5,000 and 10,000 milliseconds. - Latency5000To10000ms *int32 `json:"latency_5000_to_10000ms,omitempty"` + Latency5000To10000ms *int64 `json:"latency_5000_to_10000ms,omitempty"` // Number of responses from origin with latency between 10,000 and 60,000 milliseconds. - Latency10000To60000ms *int32 `json:"latency_10000_to_60000ms,omitempty"` + Latency10000To60000ms *int64 `json:"latency_10000_to_60000ms,omitempty"` // Number of responses from origin with latency of 60,000 milliseconds and above. - Latency60000ms *int32 `json:"latency_60000ms,omitempty"` + Latency60000ms *int64 `json:"latency_60000ms,omitempty"` // Number of responses received for origin requests made by the Fastly WAF. - WafResponses *int32 `json:"waf_responses,omitempty"` + WafResponses *int64 `json:"waf_responses,omitempty"` // Number of header bytes received for origin requests made by the Fastly WAF. - WafRespHeaderBytes *int32 `json:"waf_resp_header_bytes,omitempty"` + WafRespHeaderBytes *int64 `json:"waf_resp_header_bytes,omitempty"` // Number of body bytes received for origin requests made by the Fastly WAF. - WafRespBodyBytes *int32 `json:"waf_resp_body_bytes,omitempty"` + WafRespBodyBytes *int64 `json:"waf_resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" status codes received for origin requests made by the Fastly WAF. - WafStatus1xx *int32 `json:"waf_status_1xx,omitempty"` + WafStatus1xx *int64 `json:"waf_status_1xx,omitempty"` // Number of 2xx \"Success\" status codes received for origin requests made by the Fastly WAF. - WafStatus2xx *int32 `json:"waf_status_2xx,omitempty"` + WafStatus2xx *int64 `json:"waf_status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes received for origin requests made by the Fastly WAF. - WafStatus3xx *int32 `json:"waf_status_3xx,omitempty"` + WafStatus3xx *int64 `json:"waf_status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes received for origin requests made by the Fastly WAF. - WafStatus4xx *int32 `json:"waf_status_4xx,omitempty"` + WafStatus4xx *int64 `json:"waf_status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes received for origin requests made by the Fastly WAF. - WafStatus5xx *int32 `json:"waf_status_5xx,omitempty"` + WafStatus5xx *int64 `json:"waf_status_5xx,omitempty"` // Number of responses received with status code 200 (Success) received for origin requests made by the Fastly WAF. - WafStatus200 *int32 `json:"waf_status_200,omitempty"` + WafStatus200 *int64 `json:"waf_status_200,omitempty"` // Number of responses received with status code 204 (No Content) received for origin requests made by the Fastly WAF. - WafStatus204 *int32 `json:"waf_status_204,omitempty"` + WafStatus204 *int64 `json:"waf_status_204,omitempty"` // Number of responses received with status code 206 (Partial Content) received for origin requests made by the Fastly WAF. - WafStatus206 *int32 `json:"waf_status_206,omitempty"` + WafStatus206 *int64 `json:"waf_status_206,omitempty"` // Number of responses received with status code 301 (Moved Permanently) received for origin requests made by the Fastly WAF. - WafStatus301 *int32 `json:"waf_status_301,omitempty"` + WafStatus301 *int64 `json:"waf_status_301,omitempty"` // Number of responses received with status code 302 (Found) received for origin requests made by the Fastly WAF. - WafStatus302 *int32 `json:"waf_status_302,omitempty"` + WafStatus302 *int64 `json:"waf_status_302,omitempty"` // Number of responses received with status code 304 (Not Modified) received for origin requests made by the Fastly WAF. - WafStatus304 *int32 `json:"waf_status_304,omitempty"` + WafStatus304 *int64 `json:"waf_status_304,omitempty"` // Number of responses received with status code 400 (Bad Request) received for origin requests made by the Fastly WAF. - WafStatus400 *int32 `json:"waf_status_400,omitempty"` + WafStatus400 *int64 `json:"waf_status_400,omitempty"` // Number of responses received with status code 401 (Unauthorized) received for origin requests made by the Fastly WAF. - WafStatus401 *int32 `json:"waf_status_401,omitempty"` + WafStatus401 *int64 `json:"waf_status_401,omitempty"` // Number of responses received with status code 403 (Forbidden) received for origin requests made by the Fastly WAF. - WafStatus403 *int32 `json:"waf_status_403,omitempty"` + WafStatus403 *int64 `json:"waf_status_403,omitempty"` // Number of responses received with status code 404 (Not Found) received for origin requests made by the Fastly WAF. - WafStatus404 *int32 `json:"waf_status_404,omitempty"` + WafStatus404 *int64 `json:"waf_status_404,omitempty"` // Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by the Fastly WAF. - WafStatus416 *int32 `json:"waf_status_416,omitempty"` + WafStatus416 *int64 `json:"waf_status_416,omitempty"` // Number of responses received with status code 429 (Too Many Requests) received for origin requests made by the Fastly WAF. - WafStatus429 *int32 `json:"waf_status_429,omitempty"` + WafStatus429 *int64 `json:"waf_status_429,omitempty"` // Number of responses received with status code 500 (Internal Server Error) received for origin requests made by the Fastly WAF. - WafStatus500 *int32 `json:"waf_status_500,omitempty"` + WafStatus500 *int64 `json:"waf_status_500,omitempty"` // Number of responses received with status code 501 (Not Implemented) received for origin requests made by the Fastly WAF. - WafStatus501 *int32 `json:"waf_status_501,omitempty"` + WafStatus501 *int64 `json:"waf_status_501,omitempty"` // Number of responses received with status code 502 (Bad Gateway) received for origin requests made by the Fastly WAF. - WafStatus502 *int32 `json:"waf_status_502,omitempty"` + WafStatus502 *int64 `json:"waf_status_502,omitempty"` // Number of responses received with status code 503 (Service Unavailable) received for origin requests made by the Fastly WAF. - WafStatus503 *int32 `json:"waf_status_503,omitempty"` + WafStatus503 *int64 `json:"waf_status_503,omitempty"` // Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by the Fastly WAF. - WafStatus504 *int32 `json:"waf_status_504,omitempty"` + WafStatus504 *int64 `json:"waf_status_504,omitempty"` // Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by the Fastly WAF. - WafStatus505 *int32 `json:"waf_status_505,omitempty"` + WafStatus505 *int64 `json:"waf_status_505,omitempty"` // Number of responses with latency between 0 and 1 millisecond received for origin requests made by the Fastly WAF. - WafLatency0To1ms *int32 `json:"waf_latency_0_to_1ms,omitempty"` + WafLatency0To1ms *int64 `json:"waf_latency_0_to_1ms,omitempty"` // Number of responses with latency between 1 and 5 milliseconds received for origin requests made by the Fastly WAF. - WafLatency1To5ms *int32 `json:"waf_latency_1_to_5ms,omitempty"` + WafLatency1To5ms *int64 `json:"waf_latency_1_to_5ms,omitempty"` // Number of responses with latency between 5 and 10 milliseconds received for origin requests made by the Fastly WAF. - WafLatency5To10ms *int32 `json:"waf_latency_5_to_10ms,omitempty"` + WafLatency5To10ms *int64 `json:"waf_latency_5_to_10ms,omitempty"` // Number of responses with latency between 10 and 50 milliseconds received for origin requests made by the Fastly WAF. - WafLatency10To50ms *int32 `json:"waf_latency_10_to_50ms,omitempty"` + WafLatency10To50ms *int64 `json:"waf_latency_10_to_50ms,omitempty"` // Number of responses with latency between 50 and 100 milliseconds received for origin requests made by the Fastly WAF. - WafLatency50To100ms *int32 `json:"waf_latency_50_to_100ms,omitempty"` + WafLatency50To100ms *int64 `json:"waf_latency_50_to_100ms,omitempty"` // Number of responses with latency between 100 and 250 milliseconds received for origin requests made by the Fastly WAF. - WafLatency100To250ms *int32 `json:"waf_latency_100_to_250ms,omitempty"` + WafLatency100To250ms *int64 `json:"waf_latency_100_to_250ms,omitempty"` // Number of responses with latency between 250 and 500 milliseconds received for origin requests made by the Fastly WAF. - WafLatency250To500ms *int32 `json:"waf_latency_250_to_500ms,omitempty"` + WafLatency250To500ms *int64 `json:"waf_latency_250_to_500ms,omitempty"` // Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by the Fastly WAF. - WafLatency500To1000ms *int32 `json:"waf_latency_500_to_1000ms,omitempty"` + WafLatency500To1000ms *int64 `json:"waf_latency_500_to_1000ms,omitempty"` // Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by the Fastly WAF. - WafLatency1000To5000ms *int32 `json:"waf_latency_1000_to_5000ms,omitempty"` + WafLatency1000To5000ms *int64 `json:"waf_latency_1000_to_5000ms,omitempty"` // Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by the Fastly WAF. - WafLatency5000To10000ms *int32 `json:"waf_latency_5000_to_10000ms,omitempty"` + WafLatency5000To10000ms *int64 `json:"waf_latency_5000_to_10000ms,omitempty"` // Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by the Fastly WAF. - WafLatency10000To60000ms *int32 `json:"waf_latency_10000_to_60000ms,omitempty"` + WafLatency10000To60000ms *int64 `json:"waf_latency_10000_to_60000ms,omitempty"` // Number of responses with latency of 60,000 milliseconds and above received for origin requests made by the Fastly WAF. - WafLatency60000ms *int32 `json:"waf_latency_60000ms,omitempty"` + WafLatency60000ms *int64 `json:"waf_latency_60000ms,omitempty"` // Number of responses for origin received by the Compute platform. - ComputeResponses *int32 `json:"compute_responses,omitempty"` + ComputeResponses *int64 `json:"compute_responses,omitempty"` // Number of header bytes for origin received by the Compute platform. - ComputeRespHeaderBytes *int32 `json:"compute_resp_header_bytes,omitempty"` + ComputeRespHeaderBytes *int64 `json:"compute_resp_header_bytes,omitempty"` // Number of body bytes for origin received by the Compute platform. - ComputeRespBodyBytes *int32 `json:"compute_resp_body_bytes,omitempty"` + ComputeRespBodyBytes *int64 `json:"compute_resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" status codes for origin received by the Compute platform. - ComputeStatus1xx *int32 `json:"compute_status_1xx,omitempty"` + ComputeStatus1xx *int64 `json:"compute_status_1xx,omitempty"` // Number of 2xx \"Success\" status codes for origin received by the Compute platform. - ComputeStatus2xx *int32 `json:"compute_status_2xx,omitempty"` + ComputeStatus2xx *int64 `json:"compute_status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes for origin received by the Compute platform. - ComputeStatus3xx *int32 `json:"compute_status_3xx,omitempty"` + ComputeStatus3xx *int64 `json:"compute_status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes for origin received by the Compute platform. - ComputeStatus4xx *int32 `json:"compute_status_4xx,omitempty"` + ComputeStatus4xx *int64 `json:"compute_status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes for origin received by the Compute platform. - ComputeStatus5xx *int32 `json:"compute_status_5xx,omitempty"` + ComputeStatus5xx *int64 `json:"compute_status_5xx,omitempty"` // Number of responses received with status code 200 (Success) for origin received by the Compute platform. - ComputeStatus200 *int32 `json:"compute_status_200,omitempty"` + ComputeStatus200 *int64 `json:"compute_status_200,omitempty"` // Number of responses received with status code 204 (No Content) for origin received by the Compute platform. - ComputeStatus204 *int32 `json:"compute_status_204,omitempty"` + ComputeStatus204 *int64 `json:"compute_status_204,omitempty"` // Number of responses received with status code 206 (Partial Content) for origin received by the Compute platform. - ComputeStatus206 *int32 `json:"compute_status_206,omitempty"` + ComputeStatus206 *int64 `json:"compute_status_206,omitempty"` // Number of responses received with status code 301 (Moved Permanently) for origin received by the Compute platform. - ComputeStatus301 *int32 `json:"compute_status_301,omitempty"` + ComputeStatus301 *int64 `json:"compute_status_301,omitempty"` // Number of responses received with status code 302 (Found) for origin received by the Compute platform. - ComputeStatus302 *int32 `json:"compute_status_302,omitempty"` + ComputeStatus302 *int64 `json:"compute_status_302,omitempty"` // Number of responses received with status code 304 (Not Modified) for origin received by the Compute platform. - ComputeStatus304 *int32 `json:"compute_status_304,omitempty"` + ComputeStatus304 *int64 `json:"compute_status_304,omitempty"` // Number of responses received with status code 400 (Bad Request) for origin received by the Compute platform. - ComputeStatus400 *int32 `json:"compute_status_400,omitempty"` + ComputeStatus400 *int64 `json:"compute_status_400,omitempty"` // Number of responses received with status code 401 (Unauthorized) for origin received by the Compute platform. - ComputeStatus401 *int32 `json:"compute_status_401,omitempty"` + ComputeStatus401 *int64 `json:"compute_status_401,omitempty"` // Number of responses received with status code 403 (Forbidden) for origin received by the Compute platform. - ComputeStatus403 *int32 `json:"compute_status_403,omitempty"` + ComputeStatus403 *int64 `json:"compute_status_403,omitempty"` // Number of responses received with status code 404 (Not Found) for origin received by the Compute platform. - ComputeStatus404 *int32 `json:"compute_status_404,omitempty"` + ComputeStatus404 *int64 `json:"compute_status_404,omitempty"` // Number of responses received with status code 416 (Range Not Satisfiable) for origin received by the Compute platform. - ComputeStatus416 *int32 `json:"compute_status_416,omitempty"` + ComputeStatus416 *int64 `json:"compute_status_416,omitempty"` // Number of responses received with status code 429 (Too Many Requests) for origin received by the Compute platform. - ComputeStatus429 *int32 `json:"compute_status_429,omitempty"` + ComputeStatus429 *int64 `json:"compute_status_429,omitempty"` // Number of responses received with status code 500 (Internal Server Error) for origin received by the Compute platform. - ComputeStatus500 *int32 `json:"compute_status_500,omitempty"` + ComputeStatus500 *int64 `json:"compute_status_500,omitempty"` // Number of responses received with status code 501 (Not Implemented) for origin received by the Compute platform. - ComputeStatus501 *int32 `json:"compute_status_501,omitempty"` + ComputeStatus501 *int64 `json:"compute_status_501,omitempty"` // Number of responses received with status code 502 (Bad Gateway) for origin received by the Compute platform. - ComputeStatus502 *int32 `json:"compute_status_502,omitempty"` + ComputeStatus502 *int64 `json:"compute_status_502,omitempty"` // Number of responses received with status code 503 (Service Unavailable) for origin received by the Compute platform. - ComputeStatus503 *int32 `json:"compute_status_503,omitempty"` + ComputeStatus503 *int64 `json:"compute_status_503,omitempty"` // Number of responses received with status code 504 (Gateway Timeout) for origin received by the Compute platform. - ComputeStatus504 *int32 `json:"compute_status_504,omitempty"` + ComputeStatus504 *int64 `json:"compute_status_504,omitempty"` // Number of responses received with status code 505 (HTTP Version Not Supported) for origin received by the Compute platform. - ComputeStatus505 *int32 `json:"compute_status_505,omitempty"` + ComputeStatus505 *int64 `json:"compute_status_505,omitempty"` // Number of responses with latency between 0 and 1 millisecond for origin received by the Compute platform. - ComputeLatency0To1ms *int32 `json:"compute_latency_0_to_1ms,omitempty"` + ComputeLatency0To1ms *int64 `json:"compute_latency_0_to_1ms,omitempty"` // Number of responses with latency between 1 and 5 milliseconds for origin received by the Compute platform. - ComputeLatency1To5ms *int32 `json:"compute_latency_1_to_5ms,omitempty"` + ComputeLatency1To5ms *int64 `json:"compute_latency_1_to_5ms,omitempty"` // Number of responses with latency between 5 and 10 milliseconds for origin received by the Compute platform. - ComputeLatency5To10ms *int32 `json:"compute_latency_5_to_10ms,omitempty"` + ComputeLatency5To10ms *int64 `json:"compute_latency_5_to_10ms,omitempty"` // Number of responses with latency between 10 and 50 milliseconds for origin received by the Compute platform. - ComputeLatency10To50ms *int32 `json:"compute_latency_10_to_50ms,omitempty"` + ComputeLatency10To50ms *int64 `json:"compute_latency_10_to_50ms,omitempty"` // Number of responses with latency between 50 and 100 milliseconds for origin received by the Compute platform. - ComputeLatency50To100ms *int32 `json:"compute_latency_50_to_100ms,omitempty"` + ComputeLatency50To100ms *int64 `json:"compute_latency_50_to_100ms,omitempty"` // Number of responses with latency between 100 and 250 milliseconds for origin received by the Compute platform. - ComputeLatency100To250ms *int32 `json:"compute_latency_100_to_250ms,omitempty"` + ComputeLatency100To250ms *int64 `json:"compute_latency_100_to_250ms,omitempty"` // Number of responses with latency between 250 and 500 milliseconds for origin received by the Compute platform. - ComputeLatency250To500ms *int32 `json:"compute_latency_250_to_500ms,omitempty"` + ComputeLatency250To500ms *int64 `json:"compute_latency_250_to_500ms,omitempty"` // Number of responses with latency between 500 and 1,000 milliseconds for origin received by the Compute platform. - ComputeLatency500To1000ms *int32 `json:"compute_latency_500_to_1000ms,omitempty"` + ComputeLatency500To1000ms *int64 `json:"compute_latency_500_to_1000ms,omitempty"` // Number of responses with latency between 1,000 and 5,000 milliseconds for origin received by the Compute platform. - ComputeLatency1000To5000ms *int32 `json:"compute_latency_1000_to_5000ms,omitempty"` + ComputeLatency1000To5000ms *int64 `json:"compute_latency_1000_to_5000ms,omitempty"` // Number of responses with latency between 5,000 and 10,000 milliseconds for origin received by the Compute platform. - ComputeLatency5000To10000ms *int32 `json:"compute_latency_5000_to_10000ms,omitempty"` + ComputeLatency5000To10000ms *int64 `json:"compute_latency_5000_to_10000ms,omitempty"` // Number of responses with latency between 10,000 and 60,000 milliseconds for origin received by the Compute platform. - ComputeLatency10000To60000ms *int32 `json:"compute_latency_10000_to_60000ms,omitempty"` + ComputeLatency10000To60000ms *int64 `json:"compute_latency_10000_to_60000ms,omitempty"` // Number of responses with latency of 60,000 milliseconds and above for origin received by the Compute platform. - ComputeLatency60000ms *int32 `json:"compute_latency_60000ms,omitempty"` + ComputeLatency60000ms *int64 `json:"compute_latency_60000ms,omitempty"` // Number of responses received for origin requests made by all sources. - AllResponses *int32 `json:"all_responses,omitempty"` + AllResponses *int64 `json:"all_responses,omitempty"` // Number of header bytes received for origin requests made by all sources. - AllRespHeaderBytes *int32 `json:"all_resp_header_bytes,omitempty"` + AllRespHeaderBytes *int64 `json:"all_resp_header_bytes,omitempty"` // Number of body bytes received for origin requests made by all sources. - AllRespBodyBytes *int32 `json:"all_resp_body_bytes,omitempty"` + AllRespBodyBytes *int64 `json:"all_resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" category status codes delivered received for origin requests made by all sources. - AllStatus1xx *int32 `json:"all_status_1xx,omitempty"` + AllStatus1xx *int64 `json:"all_status_1xx,omitempty"` // Number of 2xx \"Success\" status codes received for origin requests made by all sources. - AllStatus2xx *int32 `json:"all_status_2xx,omitempty"` + AllStatus2xx *int64 `json:"all_status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes received for origin requests made by all sources. - AllStatus3xx *int32 `json:"all_status_3xx,omitempty"` + AllStatus3xx *int64 `json:"all_status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes received for origin requests made by all sources. - AllStatus4xx *int32 `json:"all_status_4xx,omitempty"` + AllStatus4xx *int64 `json:"all_status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes received for origin requests made by all sources. - AllStatus5xx *int32 `json:"all_status_5xx,omitempty"` + AllStatus5xx *int64 `json:"all_status_5xx,omitempty"` // Number of responses received with status code 200 (Success) received for origin requests made by all sources. - AllStatus200 *int32 `json:"all_status_200,omitempty"` + AllStatus200 *int64 `json:"all_status_200,omitempty"` // Number of responses received with status code 204 (No Content) received for origin requests made by all sources. - AllStatus204 *int32 `json:"all_status_204,omitempty"` + AllStatus204 *int64 `json:"all_status_204,omitempty"` // Number of responses received with status code 206 (Partial Content) received for origin requests made by all sources. - AllStatus206 *int32 `json:"all_status_206,omitempty"` + AllStatus206 *int64 `json:"all_status_206,omitempty"` // Number of responses received with status code 301 (Moved Permanently) received for origin requests made by all sources. - AllStatus301 *int32 `json:"all_status_301,omitempty"` + AllStatus301 *int64 `json:"all_status_301,omitempty"` // Number of responses received with status code 302 (Found) received for origin requests made by all sources. - AllStatus302 *int32 `json:"all_status_302,omitempty"` + AllStatus302 *int64 `json:"all_status_302,omitempty"` // Number of responses received with status code 304 (Not Modified) received for origin requests made by all sources. - AllStatus304 *int32 `json:"all_status_304,omitempty"` + AllStatus304 *int64 `json:"all_status_304,omitempty"` // Number of responses received with status code 400 (Bad Request) received for origin requests made by all sources. - AllStatus400 *int32 `json:"all_status_400,omitempty"` + AllStatus400 *int64 `json:"all_status_400,omitempty"` // Number of responses received with status code 401 (Unauthorized) received for origin requests made by all sources. - AllStatus401 *int32 `json:"all_status_401,omitempty"` + AllStatus401 *int64 `json:"all_status_401,omitempty"` // Number of responses received with status code 403 (Forbidden) received for origin requests made by all sources. - AllStatus403 *int32 `json:"all_status_403,omitempty"` + AllStatus403 *int64 `json:"all_status_403,omitempty"` // Number of responses received with status code 404 (Not Found) received for origin requests made by all sources. - AllStatus404 *int32 `json:"all_status_404,omitempty"` + AllStatus404 *int64 `json:"all_status_404,omitempty"` // Number of responses received with status code 416 (Range Not Satisfiable) received for origin requests made by all sources. - AllStatus416 *int32 `json:"all_status_416,omitempty"` + AllStatus416 *int64 `json:"all_status_416,omitempty"` // Number of responses received with status code 429 (Too Many Requests) received for origin requests made by all sources. - AllStatus429 *int32 `json:"all_status_429,omitempty"` + AllStatus429 *int64 `json:"all_status_429,omitempty"` // Number of responses received with status code 500 (Internal Server Error) received for origin requests made by all sources. - AllStatus500 *int32 `json:"all_status_500,omitempty"` + AllStatus500 *int64 `json:"all_status_500,omitempty"` // Number of responses received with status code 501 (Not Implemented) received for origin requests made by all sources. - AllStatus501 *int32 `json:"all_status_501,omitempty"` + AllStatus501 *int64 `json:"all_status_501,omitempty"` // Number of responses received with status code 502 (Bad Gateway) received for origin requests made by all sources. - AllStatus502 *int32 `json:"all_status_502,omitempty"` + AllStatus502 *int64 `json:"all_status_502,omitempty"` // Number of responses received with status code 503 (Service Unavailable) received for origin requests made by all sources. - AllStatus503 *int32 `json:"all_status_503,omitempty"` + AllStatus503 *int64 `json:"all_status_503,omitempty"` // Number of responses received with status code 504 (Gateway Timeout) received for origin requests made by all sources. - AllStatus504 *int32 `json:"all_status_504,omitempty"` + AllStatus504 *int64 `json:"all_status_504,omitempty"` // Number of responses received with status code 505 (HTTP Version Not Supported) received for origin requests made by all sources. - AllStatus505 *int32 `json:"all_status_505,omitempty"` + AllStatus505 *int64 `json:"all_status_505,omitempty"` // Number of responses with latency between 0 and 1 millisecond received for origin requests made by all sources. - AllLatency0To1ms *int32 `json:"all_latency_0_to_1ms,omitempty"` + AllLatency0To1ms *int64 `json:"all_latency_0_to_1ms,omitempty"` // Number of responses with latency between 1 and 5 milliseconds received for origin requests made by all sources. - AllLatency1To5ms *int32 `json:"all_latency_1_to_5ms,omitempty"` + AllLatency1To5ms *int64 `json:"all_latency_1_to_5ms,omitempty"` // Number of responses with latency between 5 and 10 milliseconds received for origin requests made by all sources. - AllLatency5To10ms *int32 `json:"all_latency_5_to_10ms,omitempty"` + AllLatency5To10ms *int64 `json:"all_latency_5_to_10ms,omitempty"` // Number of responses with latency between 10 and 50 milliseconds received for origin requests made by all sources. - AllLatency10To50ms *int32 `json:"all_latency_10_to_50ms,omitempty"` + AllLatency10To50ms *int64 `json:"all_latency_10_to_50ms,omitempty"` // Number of responses with latency between 50 and 100 milliseconds received for origin requests made by all sources. - AllLatency50To100ms *int32 `json:"all_latency_50_to_100ms,omitempty"` + AllLatency50To100ms *int64 `json:"all_latency_50_to_100ms,omitempty"` // Number of responses with latency between 100 and 250 milliseconds received for origin requests made by all sources. - AllLatency100To250ms *int32 `json:"all_latency_100_to_250ms,omitempty"` + AllLatency100To250ms *int64 `json:"all_latency_100_to_250ms,omitempty"` // Number of responses with latency between 250 and 500 milliseconds received for origin requests made by all sources. - AllLatency250To500ms *int32 `json:"all_latency_250_to_500ms,omitempty"` + AllLatency250To500ms *int64 `json:"all_latency_250_to_500ms,omitempty"` // Number of responses with latency between 500 and 1,000 milliseconds received for origin requests made by all sources. - AllLatency500To1000ms *int32 `json:"all_latency_500_to_1000ms,omitempty"` + AllLatency500To1000ms *int64 `json:"all_latency_500_to_1000ms,omitempty"` // Number of responses with latency between 1,000 and 5,000 milliseconds received for origin requests made by all sources. - AllLatency1000To5000ms *int32 `json:"all_latency_1000_to_5000ms,omitempty"` + AllLatency1000To5000ms *int64 `json:"all_latency_1000_to_5000ms,omitempty"` // Number of responses with latency between 5,000 and 10,000 milliseconds received for origin requests made by all sources. - AllLatency5000To10000ms *int32 `json:"all_latency_5000_to_10000ms,omitempty"` + AllLatency5000To10000ms *int64 `json:"all_latency_5000_to_10000ms,omitempty"` // Number of responses with latency between 10,000 and 60,000 milliseconds received for origin requests made by all sources. - AllLatency10000To60000ms *int32 `json:"all_latency_10000_to_60000ms,omitempty"` + AllLatency10000To60000ms *int64 `json:"all_latency_10000_to_60000ms,omitempty"` // Number of responses with latency of 60,000 milliseconds and above received for origin requests made by all sources. - AllLatency60000ms *int32 `json:"all_latency_60000ms,omitempty"` + AllLatency60000ms *int64 `json:"all_latency_60000ms,omitempty"` AdditionalProperties map[string]any } @@ -345,9 +345,9 @@ func NewOriginInspectorValuesWithDefaults() *OriginInspectorValues { } // GetResponses returns the Responses field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetResponses() int32 { +func (o *OriginInspectorValues) GetResponses() int64 { if o == nil || o.Responses == nil { - var ret int32 + var ret int64 return ret } return *o.Responses @@ -355,7 +355,7 @@ func (o *OriginInspectorValues) GetResponses() int32 { // GetResponsesOk returns a tuple with the Responses field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetResponsesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetResponsesOk() (*int64, bool) { if o == nil || o.Responses == nil { return nil, false } @@ -371,15 +371,15 @@ func (o *OriginInspectorValues) HasResponses() bool { return false } -// SetResponses gets a reference to the given int32 and assigns it to the Responses field. -func (o *OriginInspectorValues) SetResponses(v int32) { +// SetResponses gets a reference to the given int64 and assigns it to the Responses field. +func (o *OriginInspectorValues) SetResponses(v int64) { o.Responses = &v } // GetRespHeaderBytes returns the RespHeaderBytes field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetRespHeaderBytes() int32 { +func (o *OriginInspectorValues) GetRespHeaderBytes() int64 { if o == nil || o.RespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespHeaderBytes @@ -387,7 +387,7 @@ func (o *OriginInspectorValues) GetRespHeaderBytes() int32 { // GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetRespHeaderBytesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetRespHeaderBytesOk() (*int64, bool) { if o == nil || o.RespHeaderBytes == nil { return nil, false } @@ -403,15 +403,15 @@ func (o *OriginInspectorValues) HasRespHeaderBytes() bool { return false } -// SetRespHeaderBytes gets a reference to the given int32 and assigns it to the RespHeaderBytes field. -func (o *OriginInspectorValues) SetRespHeaderBytes(v int32) { +// SetRespHeaderBytes gets a reference to the given int64 and assigns it to the RespHeaderBytes field. +func (o *OriginInspectorValues) SetRespHeaderBytes(v int64) { o.RespHeaderBytes = &v } // GetRespBodyBytes returns the RespBodyBytes field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetRespBodyBytes() int32 { +func (o *OriginInspectorValues) GetRespBodyBytes() int64 { if o == nil || o.RespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespBodyBytes @@ -419,7 +419,7 @@ func (o *OriginInspectorValues) GetRespBodyBytes() int32 { // GetRespBodyBytesOk returns a tuple with the RespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetRespBodyBytesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetRespBodyBytesOk() (*int64, bool) { if o == nil || o.RespBodyBytes == nil { return nil, false } @@ -435,15 +435,15 @@ func (o *OriginInspectorValues) HasRespBodyBytes() bool { return false } -// SetRespBodyBytes gets a reference to the given int32 and assigns it to the RespBodyBytes field. -func (o *OriginInspectorValues) SetRespBodyBytes(v int32) { +// SetRespBodyBytes gets a reference to the given int64 and assigns it to the RespBodyBytes field. +func (o *OriginInspectorValues) SetRespBodyBytes(v int64) { o.RespBodyBytes = &v } // GetStatus1xx returns the Status1xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus1xx() int32 { +func (o *OriginInspectorValues) GetStatus1xx() int64 { if o == nil || o.Status1xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status1xx @@ -451,7 +451,7 @@ func (o *OriginInspectorValues) GetStatus1xx() int32 { // GetStatus1xxOk returns a tuple with the Status1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus1xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus1xxOk() (*int64, bool) { if o == nil || o.Status1xx == nil { return nil, false } @@ -467,15 +467,15 @@ func (o *OriginInspectorValues) HasStatus1xx() bool { return false } -// SetStatus1xx gets a reference to the given int32 and assigns it to the Status1xx field. -func (o *OriginInspectorValues) SetStatus1xx(v int32) { +// SetStatus1xx gets a reference to the given int64 and assigns it to the Status1xx field. +func (o *OriginInspectorValues) SetStatus1xx(v int64) { o.Status1xx = &v } // GetStatus2xx returns the Status2xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus2xx() int32 { +func (o *OriginInspectorValues) GetStatus2xx() int64 { if o == nil || o.Status2xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status2xx @@ -483,7 +483,7 @@ func (o *OriginInspectorValues) GetStatus2xx() int32 { // GetStatus2xxOk returns a tuple with the Status2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus2xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus2xxOk() (*int64, bool) { if o == nil || o.Status2xx == nil { return nil, false } @@ -499,15 +499,15 @@ func (o *OriginInspectorValues) HasStatus2xx() bool { return false } -// SetStatus2xx gets a reference to the given int32 and assigns it to the Status2xx field. -func (o *OriginInspectorValues) SetStatus2xx(v int32) { +// SetStatus2xx gets a reference to the given int64 and assigns it to the Status2xx field. +func (o *OriginInspectorValues) SetStatus2xx(v int64) { o.Status2xx = &v } // GetStatus3xx returns the Status3xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus3xx() int32 { +func (o *OriginInspectorValues) GetStatus3xx() int64 { if o == nil || o.Status3xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status3xx @@ -515,7 +515,7 @@ func (o *OriginInspectorValues) GetStatus3xx() int32 { // GetStatus3xxOk returns a tuple with the Status3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus3xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus3xxOk() (*int64, bool) { if o == nil || o.Status3xx == nil { return nil, false } @@ -531,15 +531,15 @@ func (o *OriginInspectorValues) HasStatus3xx() bool { return false } -// SetStatus3xx gets a reference to the given int32 and assigns it to the Status3xx field. -func (o *OriginInspectorValues) SetStatus3xx(v int32) { +// SetStatus3xx gets a reference to the given int64 and assigns it to the Status3xx field. +func (o *OriginInspectorValues) SetStatus3xx(v int64) { o.Status3xx = &v } // GetStatus4xx returns the Status4xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus4xx() int32 { +func (o *OriginInspectorValues) GetStatus4xx() int64 { if o == nil || o.Status4xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status4xx @@ -547,7 +547,7 @@ func (o *OriginInspectorValues) GetStatus4xx() int32 { // GetStatus4xxOk returns a tuple with the Status4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus4xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus4xxOk() (*int64, bool) { if o == nil || o.Status4xx == nil { return nil, false } @@ -563,15 +563,15 @@ func (o *OriginInspectorValues) HasStatus4xx() bool { return false } -// SetStatus4xx gets a reference to the given int32 and assigns it to the Status4xx field. -func (o *OriginInspectorValues) SetStatus4xx(v int32) { +// SetStatus4xx gets a reference to the given int64 and assigns it to the Status4xx field. +func (o *OriginInspectorValues) SetStatus4xx(v int64) { o.Status4xx = &v } // GetStatus5xx returns the Status5xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus5xx() int32 { +func (o *OriginInspectorValues) GetStatus5xx() int64 { if o == nil || o.Status5xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status5xx @@ -579,7 +579,7 @@ func (o *OriginInspectorValues) GetStatus5xx() int32 { // GetStatus5xxOk returns a tuple with the Status5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus5xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus5xxOk() (*int64, bool) { if o == nil || o.Status5xx == nil { return nil, false } @@ -595,15 +595,15 @@ func (o *OriginInspectorValues) HasStatus5xx() bool { return false } -// SetStatus5xx gets a reference to the given int32 and assigns it to the Status5xx field. -func (o *OriginInspectorValues) SetStatus5xx(v int32) { +// SetStatus5xx gets a reference to the given int64 and assigns it to the Status5xx field. +func (o *OriginInspectorValues) SetStatus5xx(v int64) { o.Status5xx = &v } // GetStatus200 returns the Status200 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus200() int32 { +func (o *OriginInspectorValues) GetStatus200() int64 { if o == nil || o.Status200 == nil { - var ret int32 + var ret int64 return ret } return *o.Status200 @@ -611,7 +611,7 @@ func (o *OriginInspectorValues) GetStatus200() int32 { // GetStatus200Ok returns a tuple with the Status200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus200Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus200Ok() (*int64, bool) { if o == nil || o.Status200 == nil { return nil, false } @@ -627,15 +627,15 @@ func (o *OriginInspectorValues) HasStatus200() bool { return false } -// SetStatus200 gets a reference to the given int32 and assigns it to the Status200 field. -func (o *OriginInspectorValues) SetStatus200(v int32) { +// SetStatus200 gets a reference to the given int64 and assigns it to the Status200 field. +func (o *OriginInspectorValues) SetStatus200(v int64) { o.Status200 = &v } // GetStatus204 returns the Status204 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus204() int32 { +func (o *OriginInspectorValues) GetStatus204() int64 { if o == nil || o.Status204 == nil { - var ret int32 + var ret int64 return ret } return *o.Status204 @@ -643,7 +643,7 @@ func (o *OriginInspectorValues) GetStatus204() int32 { // GetStatus204Ok returns a tuple with the Status204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus204Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus204Ok() (*int64, bool) { if o == nil || o.Status204 == nil { return nil, false } @@ -659,15 +659,15 @@ func (o *OriginInspectorValues) HasStatus204() bool { return false } -// SetStatus204 gets a reference to the given int32 and assigns it to the Status204 field. -func (o *OriginInspectorValues) SetStatus204(v int32) { +// SetStatus204 gets a reference to the given int64 and assigns it to the Status204 field. +func (o *OriginInspectorValues) SetStatus204(v int64) { o.Status204 = &v } // GetStatus206 returns the Status206 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus206() int32 { +func (o *OriginInspectorValues) GetStatus206() int64 { if o == nil || o.Status206 == nil { - var ret int32 + var ret int64 return ret } return *o.Status206 @@ -675,7 +675,7 @@ func (o *OriginInspectorValues) GetStatus206() int32 { // GetStatus206Ok returns a tuple with the Status206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus206Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus206Ok() (*int64, bool) { if o == nil || o.Status206 == nil { return nil, false } @@ -691,15 +691,15 @@ func (o *OriginInspectorValues) HasStatus206() bool { return false } -// SetStatus206 gets a reference to the given int32 and assigns it to the Status206 field. -func (o *OriginInspectorValues) SetStatus206(v int32) { +// SetStatus206 gets a reference to the given int64 and assigns it to the Status206 field. +func (o *OriginInspectorValues) SetStatus206(v int64) { o.Status206 = &v } // GetStatus301 returns the Status301 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus301() int32 { +func (o *OriginInspectorValues) GetStatus301() int64 { if o == nil || o.Status301 == nil { - var ret int32 + var ret int64 return ret } return *o.Status301 @@ -707,7 +707,7 @@ func (o *OriginInspectorValues) GetStatus301() int32 { // GetStatus301Ok returns a tuple with the Status301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus301Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus301Ok() (*int64, bool) { if o == nil || o.Status301 == nil { return nil, false } @@ -723,15 +723,15 @@ func (o *OriginInspectorValues) HasStatus301() bool { return false } -// SetStatus301 gets a reference to the given int32 and assigns it to the Status301 field. -func (o *OriginInspectorValues) SetStatus301(v int32) { +// SetStatus301 gets a reference to the given int64 and assigns it to the Status301 field. +func (o *OriginInspectorValues) SetStatus301(v int64) { o.Status301 = &v } // GetStatus302 returns the Status302 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus302() int32 { +func (o *OriginInspectorValues) GetStatus302() int64 { if o == nil || o.Status302 == nil { - var ret int32 + var ret int64 return ret } return *o.Status302 @@ -739,7 +739,7 @@ func (o *OriginInspectorValues) GetStatus302() int32 { // GetStatus302Ok returns a tuple with the Status302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus302Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus302Ok() (*int64, bool) { if o == nil || o.Status302 == nil { return nil, false } @@ -755,15 +755,15 @@ func (o *OriginInspectorValues) HasStatus302() bool { return false } -// SetStatus302 gets a reference to the given int32 and assigns it to the Status302 field. -func (o *OriginInspectorValues) SetStatus302(v int32) { +// SetStatus302 gets a reference to the given int64 and assigns it to the Status302 field. +func (o *OriginInspectorValues) SetStatus302(v int64) { o.Status302 = &v } // GetStatus304 returns the Status304 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus304() int32 { +func (o *OriginInspectorValues) GetStatus304() int64 { if o == nil || o.Status304 == nil { - var ret int32 + var ret int64 return ret } return *o.Status304 @@ -771,7 +771,7 @@ func (o *OriginInspectorValues) GetStatus304() int32 { // GetStatus304Ok returns a tuple with the Status304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus304Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus304Ok() (*int64, bool) { if o == nil || o.Status304 == nil { return nil, false } @@ -787,15 +787,15 @@ func (o *OriginInspectorValues) HasStatus304() bool { return false } -// SetStatus304 gets a reference to the given int32 and assigns it to the Status304 field. -func (o *OriginInspectorValues) SetStatus304(v int32) { +// SetStatus304 gets a reference to the given int64 and assigns it to the Status304 field. +func (o *OriginInspectorValues) SetStatus304(v int64) { o.Status304 = &v } // GetStatus400 returns the Status400 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus400() int32 { +func (o *OriginInspectorValues) GetStatus400() int64 { if o == nil || o.Status400 == nil { - var ret int32 + var ret int64 return ret } return *o.Status400 @@ -803,7 +803,7 @@ func (o *OriginInspectorValues) GetStatus400() int32 { // GetStatus400Ok returns a tuple with the Status400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus400Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus400Ok() (*int64, bool) { if o == nil || o.Status400 == nil { return nil, false } @@ -819,15 +819,15 @@ func (o *OriginInspectorValues) HasStatus400() bool { return false } -// SetStatus400 gets a reference to the given int32 and assigns it to the Status400 field. -func (o *OriginInspectorValues) SetStatus400(v int32) { +// SetStatus400 gets a reference to the given int64 and assigns it to the Status400 field. +func (o *OriginInspectorValues) SetStatus400(v int64) { o.Status400 = &v } // GetStatus401 returns the Status401 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus401() int32 { +func (o *OriginInspectorValues) GetStatus401() int64 { if o == nil || o.Status401 == nil { - var ret int32 + var ret int64 return ret } return *o.Status401 @@ -835,7 +835,7 @@ func (o *OriginInspectorValues) GetStatus401() int32 { // GetStatus401Ok returns a tuple with the Status401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus401Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus401Ok() (*int64, bool) { if o == nil || o.Status401 == nil { return nil, false } @@ -851,15 +851,15 @@ func (o *OriginInspectorValues) HasStatus401() bool { return false } -// SetStatus401 gets a reference to the given int32 and assigns it to the Status401 field. -func (o *OriginInspectorValues) SetStatus401(v int32) { +// SetStatus401 gets a reference to the given int64 and assigns it to the Status401 field. +func (o *OriginInspectorValues) SetStatus401(v int64) { o.Status401 = &v } // GetStatus403 returns the Status403 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus403() int32 { +func (o *OriginInspectorValues) GetStatus403() int64 { if o == nil || o.Status403 == nil { - var ret int32 + var ret int64 return ret } return *o.Status403 @@ -867,7 +867,7 @@ func (o *OriginInspectorValues) GetStatus403() int32 { // GetStatus403Ok returns a tuple with the Status403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus403Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus403Ok() (*int64, bool) { if o == nil || o.Status403 == nil { return nil, false } @@ -883,15 +883,15 @@ func (o *OriginInspectorValues) HasStatus403() bool { return false } -// SetStatus403 gets a reference to the given int32 and assigns it to the Status403 field. -func (o *OriginInspectorValues) SetStatus403(v int32) { +// SetStatus403 gets a reference to the given int64 and assigns it to the Status403 field. +func (o *OriginInspectorValues) SetStatus403(v int64) { o.Status403 = &v } // GetStatus404 returns the Status404 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus404() int32 { +func (o *OriginInspectorValues) GetStatus404() int64 { if o == nil || o.Status404 == nil { - var ret int32 + var ret int64 return ret } return *o.Status404 @@ -899,7 +899,7 @@ func (o *OriginInspectorValues) GetStatus404() int32 { // GetStatus404Ok returns a tuple with the Status404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus404Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus404Ok() (*int64, bool) { if o == nil || o.Status404 == nil { return nil, false } @@ -915,15 +915,15 @@ func (o *OriginInspectorValues) HasStatus404() bool { return false } -// SetStatus404 gets a reference to the given int32 and assigns it to the Status404 field. -func (o *OriginInspectorValues) SetStatus404(v int32) { +// SetStatus404 gets a reference to the given int64 and assigns it to the Status404 field. +func (o *OriginInspectorValues) SetStatus404(v int64) { o.Status404 = &v } // GetStatus416 returns the Status416 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus416() int32 { +func (o *OriginInspectorValues) GetStatus416() int64 { if o == nil || o.Status416 == nil { - var ret int32 + var ret int64 return ret } return *o.Status416 @@ -931,7 +931,7 @@ func (o *OriginInspectorValues) GetStatus416() int32 { // GetStatus416Ok returns a tuple with the Status416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus416Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus416Ok() (*int64, bool) { if o == nil || o.Status416 == nil { return nil, false } @@ -947,15 +947,15 @@ func (o *OriginInspectorValues) HasStatus416() bool { return false } -// SetStatus416 gets a reference to the given int32 and assigns it to the Status416 field. -func (o *OriginInspectorValues) SetStatus416(v int32) { +// SetStatus416 gets a reference to the given int64 and assigns it to the Status416 field. +func (o *OriginInspectorValues) SetStatus416(v int64) { o.Status416 = &v } // GetStatus429 returns the Status429 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus429() int32 { +func (o *OriginInspectorValues) GetStatus429() int64 { if o == nil || o.Status429 == nil { - var ret int32 + var ret int64 return ret } return *o.Status429 @@ -963,7 +963,7 @@ func (o *OriginInspectorValues) GetStatus429() int32 { // GetStatus429Ok returns a tuple with the Status429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus429Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus429Ok() (*int64, bool) { if o == nil || o.Status429 == nil { return nil, false } @@ -979,15 +979,15 @@ func (o *OriginInspectorValues) HasStatus429() bool { return false } -// SetStatus429 gets a reference to the given int32 and assigns it to the Status429 field. -func (o *OriginInspectorValues) SetStatus429(v int32) { +// SetStatus429 gets a reference to the given int64 and assigns it to the Status429 field. +func (o *OriginInspectorValues) SetStatus429(v int64) { o.Status429 = &v } // GetStatus500 returns the Status500 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus500() int32 { +func (o *OriginInspectorValues) GetStatus500() int64 { if o == nil || o.Status500 == nil { - var ret int32 + var ret int64 return ret } return *o.Status500 @@ -995,7 +995,7 @@ func (o *OriginInspectorValues) GetStatus500() int32 { // GetStatus500Ok returns a tuple with the Status500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus500Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus500Ok() (*int64, bool) { if o == nil || o.Status500 == nil { return nil, false } @@ -1011,15 +1011,15 @@ func (o *OriginInspectorValues) HasStatus500() bool { return false } -// SetStatus500 gets a reference to the given int32 and assigns it to the Status500 field. -func (o *OriginInspectorValues) SetStatus500(v int32) { +// SetStatus500 gets a reference to the given int64 and assigns it to the Status500 field. +func (o *OriginInspectorValues) SetStatus500(v int64) { o.Status500 = &v } // GetStatus501 returns the Status501 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus501() int32 { +func (o *OriginInspectorValues) GetStatus501() int64 { if o == nil || o.Status501 == nil { - var ret int32 + var ret int64 return ret } return *o.Status501 @@ -1027,7 +1027,7 @@ func (o *OriginInspectorValues) GetStatus501() int32 { // GetStatus501Ok returns a tuple with the Status501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus501Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus501Ok() (*int64, bool) { if o == nil || o.Status501 == nil { return nil, false } @@ -1043,15 +1043,15 @@ func (o *OriginInspectorValues) HasStatus501() bool { return false } -// SetStatus501 gets a reference to the given int32 and assigns it to the Status501 field. -func (o *OriginInspectorValues) SetStatus501(v int32) { +// SetStatus501 gets a reference to the given int64 and assigns it to the Status501 field. +func (o *OriginInspectorValues) SetStatus501(v int64) { o.Status501 = &v } // GetStatus502 returns the Status502 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus502() int32 { +func (o *OriginInspectorValues) GetStatus502() int64 { if o == nil || o.Status502 == nil { - var ret int32 + var ret int64 return ret } return *o.Status502 @@ -1059,7 +1059,7 @@ func (o *OriginInspectorValues) GetStatus502() int32 { // GetStatus502Ok returns a tuple with the Status502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus502Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus502Ok() (*int64, bool) { if o == nil || o.Status502 == nil { return nil, false } @@ -1075,15 +1075,15 @@ func (o *OriginInspectorValues) HasStatus502() bool { return false } -// SetStatus502 gets a reference to the given int32 and assigns it to the Status502 field. -func (o *OriginInspectorValues) SetStatus502(v int32) { +// SetStatus502 gets a reference to the given int64 and assigns it to the Status502 field. +func (o *OriginInspectorValues) SetStatus502(v int64) { o.Status502 = &v } // GetStatus503 returns the Status503 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus503() int32 { +func (o *OriginInspectorValues) GetStatus503() int64 { if o == nil || o.Status503 == nil { - var ret int32 + var ret int64 return ret } return *o.Status503 @@ -1091,7 +1091,7 @@ func (o *OriginInspectorValues) GetStatus503() int32 { // GetStatus503Ok returns a tuple with the Status503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus503Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus503Ok() (*int64, bool) { if o == nil || o.Status503 == nil { return nil, false } @@ -1107,15 +1107,15 @@ func (o *OriginInspectorValues) HasStatus503() bool { return false } -// SetStatus503 gets a reference to the given int32 and assigns it to the Status503 field. -func (o *OriginInspectorValues) SetStatus503(v int32) { +// SetStatus503 gets a reference to the given int64 and assigns it to the Status503 field. +func (o *OriginInspectorValues) SetStatus503(v int64) { o.Status503 = &v } // GetStatus504 returns the Status504 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus504() int32 { +func (o *OriginInspectorValues) GetStatus504() int64 { if o == nil || o.Status504 == nil { - var ret int32 + var ret int64 return ret } return *o.Status504 @@ -1123,7 +1123,7 @@ func (o *OriginInspectorValues) GetStatus504() int32 { // GetStatus504Ok returns a tuple with the Status504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus504Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus504Ok() (*int64, bool) { if o == nil || o.Status504 == nil { return nil, false } @@ -1139,15 +1139,15 @@ func (o *OriginInspectorValues) HasStatus504() bool { return false } -// SetStatus504 gets a reference to the given int32 and assigns it to the Status504 field. -func (o *OriginInspectorValues) SetStatus504(v int32) { +// SetStatus504 gets a reference to the given int64 and assigns it to the Status504 field. +func (o *OriginInspectorValues) SetStatus504(v int64) { o.Status504 = &v } // GetStatus505 returns the Status505 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetStatus505() int32 { +func (o *OriginInspectorValues) GetStatus505() int64 { if o == nil || o.Status505 == nil { - var ret int32 + var ret int64 return ret } return *o.Status505 @@ -1155,7 +1155,7 @@ func (o *OriginInspectorValues) GetStatus505() int32 { // GetStatus505Ok returns a tuple with the Status505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetStatus505Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetStatus505Ok() (*int64, bool) { if o == nil || o.Status505 == nil { return nil, false } @@ -1171,15 +1171,15 @@ func (o *OriginInspectorValues) HasStatus505() bool { return false } -// SetStatus505 gets a reference to the given int32 and assigns it to the Status505 field. -func (o *OriginInspectorValues) SetStatus505(v int32) { +// SetStatus505 gets a reference to the given int64 and assigns it to the Status505 field. +func (o *OriginInspectorValues) SetStatus505(v int64) { o.Status505 = &v } // GetLatency0To1ms returns the Latency0To1ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency0To1ms() int32 { +func (o *OriginInspectorValues) GetLatency0To1ms() int64 { if o == nil || o.Latency0To1ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency0To1ms @@ -1187,7 +1187,7 @@ func (o *OriginInspectorValues) GetLatency0To1ms() int32 { // GetLatency0To1msOk returns a tuple with the Latency0To1ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency0To1msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency0To1msOk() (*int64, bool) { if o == nil || o.Latency0To1ms == nil { return nil, false } @@ -1203,15 +1203,15 @@ func (o *OriginInspectorValues) HasLatency0To1ms() bool { return false } -// SetLatency0To1ms gets a reference to the given int32 and assigns it to the Latency0To1ms field. -func (o *OriginInspectorValues) SetLatency0To1ms(v int32) { +// SetLatency0To1ms gets a reference to the given int64 and assigns it to the Latency0To1ms field. +func (o *OriginInspectorValues) SetLatency0To1ms(v int64) { o.Latency0To1ms = &v } // GetLatency1To5ms returns the Latency1To5ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency1To5ms() int32 { +func (o *OriginInspectorValues) GetLatency1To5ms() int64 { if o == nil || o.Latency1To5ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency1To5ms @@ -1219,7 +1219,7 @@ func (o *OriginInspectorValues) GetLatency1To5ms() int32 { // GetLatency1To5msOk returns a tuple with the Latency1To5ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency1To5msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency1To5msOk() (*int64, bool) { if o == nil || o.Latency1To5ms == nil { return nil, false } @@ -1235,15 +1235,15 @@ func (o *OriginInspectorValues) HasLatency1To5ms() bool { return false } -// SetLatency1To5ms gets a reference to the given int32 and assigns it to the Latency1To5ms field. -func (o *OriginInspectorValues) SetLatency1To5ms(v int32) { +// SetLatency1To5ms gets a reference to the given int64 and assigns it to the Latency1To5ms field. +func (o *OriginInspectorValues) SetLatency1To5ms(v int64) { o.Latency1To5ms = &v } // GetLatency5To10ms returns the Latency5To10ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency5To10ms() int32 { +func (o *OriginInspectorValues) GetLatency5To10ms() int64 { if o == nil || o.Latency5To10ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency5To10ms @@ -1251,7 +1251,7 @@ func (o *OriginInspectorValues) GetLatency5To10ms() int32 { // GetLatency5To10msOk returns a tuple with the Latency5To10ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency5To10msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency5To10msOk() (*int64, bool) { if o == nil || o.Latency5To10ms == nil { return nil, false } @@ -1267,15 +1267,15 @@ func (o *OriginInspectorValues) HasLatency5To10ms() bool { return false } -// SetLatency5To10ms gets a reference to the given int32 and assigns it to the Latency5To10ms field. -func (o *OriginInspectorValues) SetLatency5To10ms(v int32) { +// SetLatency5To10ms gets a reference to the given int64 and assigns it to the Latency5To10ms field. +func (o *OriginInspectorValues) SetLatency5To10ms(v int64) { o.Latency5To10ms = &v } // GetLatency10To50ms returns the Latency10To50ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency10To50ms() int32 { +func (o *OriginInspectorValues) GetLatency10To50ms() int64 { if o == nil || o.Latency10To50ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency10To50ms @@ -1283,7 +1283,7 @@ func (o *OriginInspectorValues) GetLatency10To50ms() int32 { // GetLatency10To50msOk returns a tuple with the Latency10To50ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency10To50msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency10To50msOk() (*int64, bool) { if o == nil || o.Latency10To50ms == nil { return nil, false } @@ -1299,15 +1299,15 @@ func (o *OriginInspectorValues) HasLatency10To50ms() bool { return false } -// SetLatency10To50ms gets a reference to the given int32 and assigns it to the Latency10To50ms field. -func (o *OriginInspectorValues) SetLatency10To50ms(v int32) { +// SetLatency10To50ms gets a reference to the given int64 and assigns it to the Latency10To50ms field. +func (o *OriginInspectorValues) SetLatency10To50ms(v int64) { o.Latency10To50ms = &v } // GetLatency50To100ms returns the Latency50To100ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency50To100ms() int32 { +func (o *OriginInspectorValues) GetLatency50To100ms() int64 { if o == nil || o.Latency50To100ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency50To100ms @@ -1315,7 +1315,7 @@ func (o *OriginInspectorValues) GetLatency50To100ms() int32 { // GetLatency50To100msOk returns a tuple with the Latency50To100ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency50To100msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency50To100msOk() (*int64, bool) { if o == nil || o.Latency50To100ms == nil { return nil, false } @@ -1331,15 +1331,15 @@ func (o *OriginInspectorValues) HasLatency50To100ms() bool { return false } -// SetLatency50To100ms gets a reference to the given int32 and assigns it to the Latency50To100ms field. -func (o *OriginInspectorValues) SetLatency50To100ms(v int32) { +// SetLatency50To100ms gets a reference to the given int64 and assigns it to the Latency50To100ms field. +func (o *OriginInspectorValues) SetLatency50To100ms(v int64) { o.Latency50To100ms = &v } // GetLatency100To250ms returns the Latency100To250ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency100To250ms() int32 { +func (o *OriginInspectorValues) GetLatency100To250ms() int64 { if o == nil || o.Latency100To250ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency100To250ms @@ -1347,7 +1347,7 @@ func (o *OriginInspectorValues) GetLatency100To250ms() int32 { // GetLatency100To250msOk returns a tuple with the Latency100To250ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency100To250msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency100To250msOk() (*int64, bool) { if o == nil || o.Latency100To250ms == nil { return nil, false } @@ -1363,15 +1363,15 @@ func (o *OriginInspectorValues) HasLatency100To250ms() bool { return false } -// SetLatency100To250ms gets a reference to the given int32 and assigns it to the Latency100To250ms field. -func (o *OriginInspectorValues) SetLatency100To250ms(v int32) { +// SetLatency100To250ms gets a reference to the given int64 and assigns it to the Latency100To250ms field. +func (o *OriginInspectorValues) SetLatency100To250ms(v int64) { o.Latency100To250ms = &v } // GetLatency250To500ms returns the Latency250To500ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency250To500ms() int32 { +func (o *OriginInspectorValues) GetLatency250To500ms() int64 { if o == nil || o.Latency250To500ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency250To500ms @@ -1379,7 +1379,7 @@ func (o *OriginInspectorValues) GetLatency250To500ms() int32 { // GetLatency250To500msOk returns a tuple with the Latency250To500ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency250To500msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency250To500msOk() (*int64, bool) { if o == nil || o.Latency250To500ms == nil { return nil, false } @@ -1395,15 +1395,15 @@ func (o *OriginInspectorValues) HasLatency250To500ms() bool { return false } -// SetLatency250To500ms gets a reference to the given int32 and assigns it to the Latency250To500ms field. -func (o *OriginInspectorValues) SetLatency250To500ms(v int32) { +// SetLatency250To500ms gets a reference to the given int64 and assigns it to the Latency250To500ms field. +func (o *OriginInspectorValues) SetLatency250To500ms(v int64) { o.Latency250To500ms = &v } // GetLatency500To1000ms returns the Latency500To1000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency500To1000ms() int32 { +func (o *OriginInspectorValues) GetLatency500To1000ms() int64 { if o == nil || o.Latency500To1000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency500To1000ms @@ -1411,7 +1411,7 @@ func (o *OriginInspectorValues) GetLatency500To1000ms() int32 { // GetLatency500To1000msOk returns a tuple with the Latency500To1000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency500To1000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency500To1000msOk() (*int64, bool) { if o == nil || o.Latency500To1000ms == nil { return nil, false } @@ -1427,15 +1427,15 @@ func (o *OriginInspectorValues) HasLatency500To1000ms() bool { return false } -// SetLatency500To1000ms gets a reference to the given int32 and assigns it to the Latency500To1000ms field. -func (o *OriginInspectorValues) SetLatency500To1000ms(v int32) { +// SetLatency500To1000ms gets a reference to the given int64 and assigns it to the Latency500To1000ms field. +func (o *OriginInspectorValues) SetLatency500To1000ms(v int64) { o.Latency500To1000ms = &v } // GetLatency1000To5000ms returns the Latency1000To5000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency1000To5000ms() int32 { +func (o *OriginInspectorValues) GetLatency1000To5000ms() int64 { if o == nil || o.Latency1000To5000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency1000To5000ms @@ -1443,7 +1443,7 @@ func (o *OriginInspectorValues) GetLatency1000To5000ms() int32 { // GetLatency1000To5000msOk returns a tuple with the Latency1000To5000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency1000To5000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency1000To5000msOk() (*int64, bool) { if o == nil || o.Latency1000To5000ms == nil { return nil, false } @@ -1459,15 +1459,15 @@ func (o *OriginInspectorValues) HasLatency1000To5000ms() bool { return false } -// SetLatency1000To5000ms gets a reference to the given int32 and assigns it to the Latency1000To5000ms field. -func (o *OriginInspectorValues) SetLatency1000To5000ms(v int32) { +// SetLatency1000To5000ms gets a reference to the given int64 and assigns it to the Latency1000To5000ms field. +func (o *OriginInspectorValues) SetLatency1000To5000ms(v int64) { o.Latency1000To5000ms = &v } // GetLatency5000To10000ms returns the Latency5000To10000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency5000To10000ms() int32 { +func (o *OriginInspectorValues) GetLatency5000To10000ms() int64 { if o == nil || o.Latency5000To10000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency5000To10000ms @@ -1475,7 +1475,7 @@ func (o *OriginInspectorValues) GetLatency5000To10000ms() int32 { // GetLatency5000To10000msOk returns a tuple with the Latency5000To10000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency5000To10000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency5000To10000msOk() (*int64, bool) { if o == nil || o.Latency5000To10000ms == nil { return nil, false } @@ -1491,15 +1491,15 @@ func (o *OriginInspectorValues) HasLatency5000To10000ms() bool { return false } -// SetLatency5000To10000ms gets a reference to the given int32 and assigns it to the Latency5000To10000ms field. -func (o *OriginInspectorValues) SetLatency5000To10000ms(v int32) { +// SetLatency5000To10000ms gets a reference to the given int64 and assigns it to the Latency5000To10000ms field. +func (o *OriginInspectorValues) SetLatency5000To10000ms(v int64) { o.Latency5000To10000ms = &v } // GetLatency10000To60000ms returns the Latency10000To60000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency10000To60000ms() int32 { +func (o *OriginInspectorValues) GetLatency10000To60000ms() int64 { if o == nil || o.Latency10000To60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency10000To60000ms @@ -1507,7 +1507,7 @@ func (o *OriginInspectorValues) GetLatency10000To60000ms() int32 { // GetLatency10000To60000msOk returns a tuple with the Latency10000To60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency10000To60000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency10000To60000msOk() (*int64, bool) { if o == nil || o.Latency10000To60000ms == nil { return nil, false } @@ -1523,15 +1523,15 @@ func (o *OriginInspectorValues) HasLatency10000To60000ms() bool { return false } -// SetLatency10000To60000ms gets a reference to the given int32 and assigns it to the Latency10000To60000ms field. -func (o *OriginInspectorValues) SetLatency10000To60000ms(v int32) { +// SetLatency10000To60000ms gets a reference to the given int64 and assigns it to the Latency10000To60000ms field. +func (o *OriginInspectorValues) SetLatency10000To60000ms(v int64) { o.Latency10000To60000ms = &v } // GetLatency60000ms returns the Latency60000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetLatency60000ms() int32 { +func (o *OriginInspectorValues) GetLatency60000ms() int64 { if o == nil || o.Latency60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.Latency60000ms @@ -1539,7 +1539,7 @@ func (o *OriginInspectorValues) GetLatency60000ms() int32 { // GetLatency60000msOk returns a tuple with the Latency60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetLatency60000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetLatency60000msOk() (*int64, bool) { if o == nil || o.Latency60000ms == nil { return nil, false } @@ -1555,15 +1555,15 @@ func (o *OriginInspectorValues) HasLatency60000ms() bool { return false } -// SetLatency60000ms gets a reference to the given int32 and assigns it to the Latency60000ms field. -func (o *OriginInspectorValues) SetLatency60000ms(v int32) { +// SetLatency60000ms gets a reference to the given int64 and assigns it to the Latency60000ms field. +func (o *OriginInspectorValues) SetLatency60000ms(v int64) { o.Latency60000ms = &v } // GetWafResponses returns the WafResponses field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafResponses() int32 { +func (o *OriginInspectorValues) GetWafResponses() int64 { if o == nil || o.WafResponses == nil { - var ret int32 + var ret int64 return ret } return *o.WafResponses @@ -1571,7 +1571,7 @@ func (o *OriginInspectorValues) GetWafResponses() int32 { // GetWafResponsesOk returns a tuple with the WafResponses field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafResponsesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafResponsesOk() (*int64, bool) { if o == nil || o.WafResponses == nil { return nil, false } @@ -1587,15 +1587,15 @@ func (o *OriginInspectorValues) HasWafResponses() bool { return false } -// SetWafResponses gets a reference to the given int32 and assigns it to the WafResponses field. -func (o *OriginInspectorValues) SetWafResponses(v int32) { +// SetWafResponses gets a reference to the given int64 and assigns it to the WafResponses field. +func (o *OriginInspectorValues) SetWafResponses(v int64) { o.WafResponses = &v } // GetWafRespHeaderBytes returns the WafRespHeaderBytes field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafRespHeaderBytes() int32 { +func (o *OriginInspectorValues) GetWafRespHeaderBytes() int64 { if o == nil || o.WafRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WafRespHeaderBytes @@ -1603,7 +1603,7 @@ func (o *OriginInspectorValues) GetWafRespHeaderBytes() int32 { // GetWafRespHeaderBytesOk returns a tuple with the WafRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafRespHeaderBytesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafRespHeaderBytesOk() (*int64, bool) { if o == nil || o.WafRespHeaderBytes == nil { return nil, false } @@ -1619,15 +1619,15 @@ func (o *OriginInspectorValues) HasWafRespHeaderBytes() bool { return false } -// SetWafRespHeaderBytes gets a reference to the given int32 and assigns it to the WafRespHeaderBytes field. -func (o *OriginInspectorValues) SetWafRespHeaderBytes(v int32) { +// SetWafRespHeaderBytes gets a reference to the given int64 and assigns it to the WafRespHeaderBytes field. +func (o *OriginInspectorValues) SetWafRespHeaderBytes(v int64) { o.WafRespHeaderBytes = &v } // GetWafRespBodyBytes returns the WafRespBodyBytes field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafRespBodyBytes() int32 { +func (o *OriginInspectorValues) GetWafRespBodyBytes() int64 { if o == nil || o.WafRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WafRespBodyBytes @@ -1635,7 +1635,7 @@ func (o *OriginInspectorValues) GetWafRespBodyBytes() int32 { // GetWafRespBodyBytesOk returns a tuple with the WafRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafRespBodyBytesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafRespBodyBytesOk() (*int64, bool) { if o == nil || o.WafRespBodyBytes == nil { return nil, false } @@ -1651,15 +1651,15 @@ func (o *OriginInspectorValues) HasWafRespBodyBytes() bool { return false } -// SetWafRespBodyBytes gets a reference to the given int32 and assigns it to the WafRespBodyBytes field. -func (o *OriginInspectorValues) SetWafRespBodyBytes(v int32) { +// SetWafRespBodyBytes gets a reference to the given int64 and assigns it to the WafRespBodyBytes field. +func (o *OriginInspectorValues) SetWafRespBodyBytes(v int64) { o.WafRespBodyBytes = &v } // GetWafStatus1xx returns the WafStatus1xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus1xx() int32 { +func (o *OriginInspectorValues) GetWafStatus1xx() int64 { if o == nil || o.WafStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus1xx @@ -1667,7 +1667,7 @@ func (o *OriginInspectorValues) GetWafStatus1xx() int32 { // GetWafStatus1xxOk returns a tuple with the WafStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus1xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus1xxOk() (*int64, bool) { if o == nil || o.WafStatus1xx == nil { return nil, false } @@ -1683,15 +1683,15 @@ func (o *OriginInspectorValues) HasWafStatus1xx() bool { return false } -// SetWafStatus1xx gets a reference to the given int32 and assigns it to the WafStatus1xx field. -func (o *OriginInspectorValues) SetWafStatus1xx(v int32) { +// SetWafStatus1xx gets a reference to the given int64 and assigns it to the WafStatus1xx field. +func (o *OriginInspectorValues) SetWafStatus1xx(v int64) { o.WafStatus1xx = &v } // GetWafStatus2xx returns the WafStatus2xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus2xx() int32 { +func (o *OriginInspectorValues) GetWafStatus2xx() int64 { if o == nil || o.WafStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus2xx @@ -1699,7 +1699,7 @@ func (o *OriginInspectorValues) GetWafStatus2xx() int32 { // GetWafStatus2xxOk returns a tuple with the WafStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus2xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus2xxOk() (*int64, bool) { if o == nil || o.WafStatus2xx == nil { return nil, false } @@ -1715,15 +1715,15 @@ func (o *OriginInspectorValues) HasWafStatus2xx() bool { return false } -// SetWafStatus2xx gets a reference to the given int32 and assigns it to the WafStatus2xx field. -func (o *OriginInspectorValues) SetWafStatus2xx(v int32) { +// SetWafStatus2xx gets a reference to the given int64 and assigns it to the WafStatus2xx field. +func (o *OriginInspectorValues) SetWafStatus2xx(v int64) { o.WafStatus2xx = &v } // GetWafStatus3xx returns the WafStatus3xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus3xx() int32 { +func (o *OriginInspectorValues) GetWafStatus3xx() int64 { if o == nil || o.WafStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus3xx @@ -1731,7 +1731,7 @@ func (o *OriginInspectorValues) GetWafStatus3xx() int32 { // GetWafStatus3xxOk returns a tuple with the WafStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus3xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus3xxOk() (*int64, bool) { if o == nil || o.WafStatus3xx == nil { return nil, false } @@ -1747,15 +1747,15 @@ func (o *OriginInspectorValues) HasWafStatus3xx() bool { return false } -// SetWafStatus3xx gets a reference to the given int32 and assigns it to the WafStatus3xx field. -func (o *OriginInspectorValues) SetWafStatus3xx(v int32) { +// SetWafStatus3xx gets a reference to the given int64 and assigns it to the WafStatus3xx field. +func (o *OriginInspectorValues) SetWafStatus3xx(v int64) { o.WafStatus3xx = &v } // GetWafStatus4xx returns the WafStatus4xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus4xx() int32 { +func (o *OriginInspectorValues) GetWafStatus4xx() int64 { if o == nil || o.WafStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus4xx @@ -1763,7 +1763,7 @@ func (o *OriginInspectorValues) GetWafStatus4xx() int32 { // GetWafStatus4xxOk returns a tuple with the WafStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus4xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus4xxOk() (*int64, bool) { if o == nil || o.WafStatus4xx == nil { return nil, false } @@ -1779,15 +1779,15 @@ func (o *OriginInspectorValues) HasWafStatus4xx() bool { return false } -// SetWafStatus4xx gets a reference to the given int32 and assigns it to the WafStatus4xx field. -func (o *OriginInspectorValues) SetWafStatus4xx(v int32) { +// SetWafStatus4xx gets a reference to the given int64 and assigns it to the WafStatus4xx field. +func (o *OriginInspectorValues) SetWafStatus4xx(v int64) { o.WafStatus4xx = &v } // GetWafStatus5xx returns the WafStatus5xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus5xx() int32 { +func (o *OriginInspectorValues) GetWafStatus5xx() int64 { if o == nil || o.WafStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus5xx @@ -1795,7 +1795,7 @@ func (o *OriginInspectorValues) GetWafStatus5xx() int32 { // GetWafStatus5xxOk returns a tuple with the WafStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus5xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus5xxOk() (*int64, bool) { if o == nil || o.WafStatus5xx == nil { return nil, false } @@ -1811,15 +1811,15 @@ func (o *OriginInspectorValues) HasWafStatus5xx() bool { return false } -// SetWafStatus5xx gets a reference to the given int32 and assigns it to the WafStatus5xx field. -func (o *OriginInspectorValues) SetWafStatus5xx(v int32) { +// SetWafStatus5xx gets a reference to the given int64 and assigns it to the WafStatus5xx field. +func (o *OriginInspectorValues) SetWafStatus5xx(v int64) { o.WafStatus5xx = &v } // GetWafStatus200 returns the WafStatus200 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus200() int32 { +func (o *OriginInspectorValues) GetWafStatus200() int64 { if o == nil || o.WafStatus200 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus200 @@ -1827,7 +1827,7 @@ func (o *OriginInspectorValues) GetWafStatus200() int32 { // GetWafStatus200Ok returns a tuple with the WafStatus200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus200Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus200Ok() (*int64, bool) { if o == nil || o.WafStatus200 == nil { return nil, false } @@ -1843,15 +1843,15 @@ func (o *OriginInspectorValues) HasWafStatus200() bool { return false } -// SetWafStatus200 gets a reference to the given int32 and assigns it to the WafStatus200 field. -func (o *OriginInspectorValues) SetWafStatus200(v int32) { +// SetWafStatus200 gets a reference to the given int64 and assigns it to the WafStatus200 field. +func (o *OriginInspectorValues) SetWafStatus200(v int64) { o.WafStatus200 = &v } // GetWafStatus204 returns the WafStatus204 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus204() int32 { +func (o *OriginInspectorValues) GetWafStatus204() int64 { if o == nil || o.WafStatus204 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus204 @@ -1859,7 +1859,7 @@ func (o *OriginInspectorValues) GetWafStatus204() int32 { // GetWafStatus204Ok returns a tuple with the WafStatus204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus204Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus204Ok() (*int64, bool) { if o == nil || o.WafStatus204 == nil { return nil, false } @@ -1875,15 +1875,15 @@ func (o *OriginInspectorValues) HasWafStatus204() bool { return false } -// SetWafStatus204 gets a reference to the given int32 and assigns it to the WafStatus204 field. -func (o *OriginInspectorValues) SetWafStatus204(v int32) { +// SetWafStatus204 gets a reference to the given int64 and assigns it to the WafStatus204 field. +func (o *OriginInspectorValues) SetWafStatus204(v int64) { o.WafStatus204 = &v } // GetWafStatus206 returns the WafStatus206 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus206() int32 { +func (o *OriginInspectorValues) GetWafStatus206() int64 { if o == nil || o.WafStatus206 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus206 @@ -1891,7 +1891,7 @@ func (o *OriginInspectorValues) GetWafStatus206() int32 { // GetWafStatus206Ok returns a tuple with the WafStatus206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus206Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus206Ok() (*int64, bool) { if o == nil || o.WafStatus206 == nil { return nil, false } @@ -1907,15 +1907,15 @@ func (o *OriginInspectorValues) HasWafStatus206() bool { return false } -// SetWafStatus206 gets a reference to the given int32 and assigns it to the WafStatus206 field. -func (o *OriginInspectorValues) SetWafStatus206(v int32) { +// SetWafStatus206 gets a reference to the given int64 and assigns it to the WafStatus206 field. +func (o *OriginInspectorValues) SetWafStatus206(v int64) { o.WafStatus206 = &v } // GetWafStatus301 returns the WafStatus301 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus301() int32 { +func (o *OriginInspectorValues) GetWafStatus301() int64 { if o == nil || o.WafStatus301 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus301 @@ -1923,7 +1923,7 @@ func (o *OriginInspectorValues) GetWafStatus301() int32 { // GetWafStatus301Ok returns a tuple with the WafStatus301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus301Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus301Ok() (*int64, bool) { if o == nil || o.WafStatus301 == nil { return nil, false } @@ -1939,15 +1939,15 @@ func (o *OriginInspectorValues) HasWafStatus301() bool { return false } -// SetWafStatus301 gets a reference to the given int32 and assigns it to the WafStatus301 field. -func (o *OriginInspectorValues) SetWafStatus301(v int32) { +// SetWafStatus301 gets a reference to the given int64 and assigns it to the WafStatus301 field. +func (o *OriginInspectorValues) SetWafStatus301(v int64) { o.WafStatus301 = &v } // GetWafStatus302 returns the WafStatus302 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus302() int32 { +func (o *OriginInspectorValues) GetWafStatus302() int64 { if o == nil || o.WafStatus302 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus302 @@ -1955,7 +1955,7 @@ func (o *OriginInspectorValues) GetWafStatus302() int32 { // GetWafStatus302Ok returns a tuple with the WafStatus302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus302Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus302Ok() (*int64, bool) { if o == nil || o.WafStatus302 == nil { return nil, false } @@ -1971,15 +1971,15 @@ func (o *OriginInspectorValues) HasWafStatus302() bool { return false } -// SetWafStatus302 gets a reference to the given int32 and assigns it to the WafStatus302 field. -func (o *OriginInspectorValues) SetWafStatus302(v int32) { +// SetWafStatus302 gets a reference to the given int64 and assigns it to the WafStatus302 field. +func (o *OriginInspectorValues) SetWafStatus302(v int64) { o.WafStatus302 = &v } // GetWafStatus304 returns the WafStatus304 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus304() int32 { +func (o *OriginInspectorValues) GetWafStatus304() int64 { if o == nil || o.WafStatus304 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus304 @@ -1987,7 +1987,7 @@ func (o *OriginInspectorValues) GetWafStatus304() int32 { // GetWafStatus304Ok returns a tuple with the WafStatus304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus304Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus304Ok() (*int64, bool) { if o == nil || o.WafStatus304 == nil { return nil, false } @@ -2003,15 +2003,15 @@ func (o *OriginInspectorValues) HasWafStatus304() bool { return false } -// SetWafStatus304 gets a reference to the given int32 and assigns it to the WafStatus304 field. -func (o *OriginInspectorValues) SetWafStatus304(v int32) { +// SetWafStatus304 gets a reference to the given int64 and assigns it to the WafStatus304 field. +func (o *OriginInspectorValues) SetWafStatus304(v int64) { o.WafStatus304 = &v } // GetWafStatus400 returns the WafStatus400 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus400() int32 { +func (o *OriginInspectorValues) GetWafStatus400() int64 { if o == nil || o.WafStatus400 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus400 @@ -2019,7 +2019,7 @@ func (o *OriginInspectorValues) GetWafStatus400() int32 { // GetWafStatus400Ok returns a tuple with the WafStatus400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus400Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus400Ok() (*int64, bool) { if o == nil || o.WafStatus400 == nil { return nil, false } @@ -2035,15 +2035,15 @@ func (o *OriginInspectorValues) HasWafStatus400() bool { return false } -// SetWafStatus400 gets a reference to the given int32 and assigns it to the WafStatus400 field. -func (o *OriginInspectorValues) SetWafStatus400(v int32) { +// SetWafStatus400 gets a reference to the given int64 and assigns it to the WafStatus400 field. +func (o *OriginInspectorValues) SetWafStatus400(v int64) { o.WafStatus400 = &v } // GetWafStatus401 returns the WafStatus401 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus401() int32 { +func (o *OriginInspectorValues) GetWafStatus401() int64 { if o == nil || o.WafStatus401 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus401 @@ -2051,7 +2051,7 @@ func (o *OriginInspectorValues) GetWafStatus401() int32 { // GetWafStatus401Ok returns a tuple with the WafStatus401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus401Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus401Ok() (*int64, bool) { if o == nil || o.WafStatus401 == nil { return nil, false } @@ -2067,15 +2067,15 @@ func (o *OriginInspectorValues) HasWafStatus401() bool { return false } -// SetWafStatus401 gets a reference to the given int32 and assigns it to the WafStatus401 field. -func (o *OriginInspectorValues) SetWafStatus401(v int32) { +// SetWafStatus401 gets a reference to the given int64 and assigns it to the WafStatus401 field. +func (o *OriginInspectorValues) SetWafStatus401(v int64) { o.WafStatus401 = &v } // GetWafStatus403 returns the WafStatus403 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus403() int32 { +func (o *OriginInspectorValues) GetWafStatus403() int64 { if o == nil || o.WafStatus403 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus403 @@ -2083,7 +2083,7 @@ func (o *OriginInspectorValues) GetWafStatus403() int32 { // GetWafStatus403Ok returns a tuple with the WafStatus403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus403Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus403Ok() (*int64, bool) { if o == nil || o.WafStatus403 == nil { return nil, false } @@ -2099,15 +2099,15 @@ func (o *OriginInspectorValues) HasWafStatus403() bool { return false } -// SetWafStatus403 gets a reference to the given int32 and assigns it to the WafStatus403 field. -func (o *OriginInspectorValues) SetWafStatus403(v int32) { +// SetWafStatus403 gets a reference to the given int64 and assigns it to the WafStatus403 field. +func (o *OriginInspectorValues) SetWafStatus403(v int64) { o.WafStatus403 = &v } // GetWafStatus404 returns the WafStatus404 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus404() int32 { +func (o *OriginInspectorValues) GetWafStatus404() int64 { if o == nil || o.WafStatus404 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus404 @@ -2115,7 +2115,7 @@ func (o *OriginInspectorValues) GetWafStatus404() int32 { // GetWafStatus404Ok returns a tuple with the WafStatus404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus404Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus404Ok() (*int64, bool) { if o == nil || o.WafStatus404 == nil { return nil, false } @@ -2131,15 +2131,15 @@ func (o *OriginInspectorValues) HasWafStatus404() bool { return false } -// SetWafStatus404 gets a reference to the given int32 and assigns it to the WafStatus404 field. -func (o *OriginInspectorValues) SetWafStatus404(v int32) { +// SetWafStatus404 gets a reference to the given int64 and assigns it to the WafStatus404 field. +func (o *OriginInspectorValues) SetWafStatus404(v int64) { o.WafStatus404 = &v } // GetWafStatus416 returns the WafStatus416 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus416() int32 { +func (o *OriginInspectorValues) GetWafStatus416() int64 { if o == nil || o.WafStatus416 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus416 @@ -2147,7 +2147,7 @@ func (o *OriginInspectorValues) GetWafStatus416() int32 { // GetWafStatus416Ok returns a tuple with the WafStatus416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus416Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus416Ok() (*int64, bool) { if o == nil || o.WafStatus416 == nil { return nil, false } @@ -2163,15 +2163,15 @@ func (o *OriginInspectorValues) HasWafStatus416() bool { return false } -// SetWafStatus416 gets a reference to the given int32 and assigns it to the WafStatus416 field. -func (o *OriginInspectorValues) SetWafStatus416(v int32) { +// SetWafStatus416 gets a reference to the given int64 and assigns it to the WafStatus416 field. +func (o *OriginInspectorValues) SetWafStatus416(v int64) { o.WafStatus416 = &v } // GetWafStatus429 returns the WafStatus429 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus429() int32 { +func (o *OriginInspectorValues) GetWafStatus429() int64 { if o == nil || o.WafStatus429 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus429 @@ -2179,7 +2179,7 @@ func (o *OriginInspectorValues) GetWafStatus429() int32 { // GetWafStatus429Ok returns a tuple with the WafStatus429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus429Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus429Ok() (*int64, bool) { if o == nil || o.WafStatus429 == nil { return nil, false } @@ -2195,15 +2195,15 @@ func (o *OriginInspectorValues) HasWafStatus429() bool { return false } -// SetWafStatus429 gets a reference to the given int32 and assigns it to the WafStatus429 field. -func (o *OriginInspectorValues) SetWafStatus429(v int32) { +// SetWafStatus429 gets a reference to the given int64 and assigns it to the WafStatus429 field. +func (o *OriginInspectorValues) SetWafStatus429(v int64) { o.WafStatus429 = &v } // GetWafStatus500 returns the WafStatus500 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus500() int32 { +func (o *OriginInspectorValues) GetWafStatus500() int64 { if o == nil || o.WafStatus500 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus500 @@ -2211,7 +2211,7 @@ func (o *OriginInspectorValues) GetWafStatus500() int32 { // GetWafStatus500Ok returns a tuple with the WafStatus500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus500Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus500Ok() (*int64, bool) { if o == nil || o.WafStatus500 == nil { return nil, false } @@ -2227,15 +2227,15 @@ func (o *OriginInspectorValues) HasWafStatus500() bool { return false } -// SetWafStatus500 gets a reference to the given int32 and assigns it to the WafStatus500 field. -func (o *OriginInspectorValues) SetWafStatus500(v int32) { +// SetWafStatus500 gets a reference to the given int64 and assigns it to the WafStatus500 field. +func (o *OriginInspectorValues) SetWafStatus500(v int64) { o.WafStatus500 = &v } // GetWafStatus501 returns the WafStatus501 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus501() int32 { +func (o *OriginInspectorValues) GetWafStatus501() int64 { if o == nil || o.WafStatus501 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus501 @@ -2243,7 +2243,7 @@ func (o *OriginInspectorValues) GetWafStatus501() int32 { // GetWafStatus501Ok returns a tuple with the WafStatus501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus501Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus501Ok() (*int64, bool) { if o == nil || o.WafStatus501 == nil { return nil, false } @@ -2259,15 +2259,15 @@ func (o *OriginInspectorValues) HasWafStatus501() bool { return false } -// SetWafStatus501 gets a reference to the given int32 and assigns it to the WafStatus501 field. -func (o *OriginInspectorValues) SetWafStatus501(v int32) { +// SetWafStatus501 gets a reference to the given int64 and assigns it to the WafStatus501 field. +func (o *OriginInspectorValues) SetWafStatus501(v int64) { o.WafStatus501 = &v } // GetWafStatus502 returns the WafStatus502 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus502() int32 { +func (o *OriginInspectorValues) GetWafStatus502() int64 { if o == nil || o.WafStatus502 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus502 @@ -2275,7 +2275,7 @@ func (o *OriginInspectorValues) GetWafStatus502() int32 { // GetWafStatus502Ok returns a tuple with the WafStatus502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus502Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus502Ok() (*int64, bool) { if o == nil || o.WafStatus502 == nil { return nil, false } @@ -2291,15 +2291,15 @@ func (o *OriginInspectorValues) HasWafStatus502() bool { return false } -// SetWafStatus502 gets a reference to the given int32 and assigns it to the WafStatus502 field. -func (o *OriginInspectorValues) SetWafStatus502(v int32) { +// SetWafStatus502 gets a reference to the given int64 and assigns it to the WafStatus502 field. +func (o *OriginInspectorValues) SetWafStatus502(v int64) { o.WafStatus502 = &v } // GetWafStatus503 returns the WafStatus503 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus503() int32 { +func (o *OriginInspectorValues) GetWafStatus503() int64 { if o == nil || o.WafStatus503 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus503 @@ -2307,7 +2307,7 @@ func (o *OriginInspectorValues) GetWafStatus503() int32 { // GetWafStatus503Ok returns a tuple with the WafStatus503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus503Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus503Ok() (*int64, bool) { if o == nil || o.WafStatus503 == nil { return nil, false } @@ -2323,15 +2323,15 @@ func (o *OriginInspectorValues) HasWafStatus503() bool { return false } -// SetWafStatus503 gets a reference to the given int32 and assigns it to the WafStatus503 field. -func (o *OriginInspectorValues) SetWafStatus503(v int32) { +// SetWafStatus503 gets a reference to the given int64 and assigns it to the WafStatus503 field. +func (o *OriginInspectorValues) SetWafStatus503(v int64) { o.WafStatus503 = &v } // GetWafStatus504 returns the WafStatus504 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus504() int32 { +func (o *OriginInspectorValues) GetWafStatus504() int64 { if o == nil || o.WafStatus504 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus504 @@ -2339,7 +2339,7 @@ func (o *OriginInspectorValues) GetWafStatus504() int32 { // GetWafStatus504Ok returns a tuple with the WafStatus504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus504Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus504Ok() (*int64, bool) { if o == nil || o.WafStatus504 == nil { return nil, false } @@ -2355,15 +2355,15 @@ func (o *OriginInspectorValues) HasWafStatus504() bool { return false } -// SetWafStatus504 gets a reference to the given int32 and assigns it to the WafStatus504 field. -func (o *OriginInspectorValues) SetWafStatus504(v int32) { +// SetWafStatus504 gets a reference to the given int64 and assigns it to the WafStatus504 field. +func (o *OriginInspectorValues) SetWafStatus504(v int64) { o.WafStatus504 = &v } // GetWafStatus505 returns the WafStatus505 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafStatus505() int32 { +func (o *OriginInspectorValues) GetWafStatus505() int64 { if o == nil || o.WafStatus505 == nil { - var ret int32 + var ret int64 return ret } return *o.WafStatus505 @@ -2371,7 +2371,7 @@ func (o *OriginInspectorValues) GetWafStatus505() int32 { // GetWafStatus505Ok returns a tuple with the WafStatus505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafStatus505Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetWafStatus505Ok() (*int64, bool) { if o == nil || o.WafStatus505 == nil { return nil, false } @@ -2387,15 +2387,15 @@ func (o *OriginInspectorValues) HasWafStatus505() bool { return false } -// SetWafStatus505 gets a reference to the given int32 and assigns it to the WafStatus505 field. -func (o *OriginInspectorValues) SetWafStatus505(v int32) { +// SetWafStatus505 gets a reference to the given int64 and assigns it to the WafStatus505 field. +func (o *OriginInspectorValues) SetWafStatus505(v int64) { o.WafStatus505 = &v } // GetWafLatency0To1ms returns the WafLatency0To1ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency0To1ms() int32 { +func (o *OriginInspectorValues) GetWafLatency0To1ms() int64 { if o == nil || o.WafLatency0To1ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency0To1ms @@ -2403,7 +2403,7 @@ func (o *OriginInspectorValues) GetWafLatency0To1ms() int32 { // GetWafLatency0To1msOk returns a tuple with the WafLatency0To1ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency0To1msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency0To1msOk() (*int64, bool) { if o == nil || o.WafLatency0To1ms == nil { return nil, false } @@ -2419,15 +2419,15 @@ func (o *OriginInspectorValues) HasWafLatency0To1ms() bool { return false } -// SetWafLatency0To1ms gets a reference to the given int32 and assigns it to the WafLatency0To1ms field. -func (o *OriginInspectorValues) SetWafLatency0To1ms(v int32) { +// SetWafLatency0To1ms gets a reference to the given int64 and assigns it to the WafLatency0To1ms field. +func (o *OriginInspectorValues) SetWafLatency0To1ms(v int64) { o.WafLatency0To1ms = &v } // GetWafLatency1To5ms returns the WafLatency1To5ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency1To5ms() int32 { +func (o *OriginInspectorValues) GetWafLatency1To5ms() int64 { if o == nil || o.WafLatency1To5ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency1To5ms @@ -2435,7 +2435,7 @@ func (o *OriginInspectorValues) GetWafLatency1To5ms() int32 { // GetWafLatency1To5msOk returns a tuple with the WafLatency1To5ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency1To5msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency1To5msOk() (*int64, bool) { if o == nil || o.WafLatency1To5ms == nil { return nil, false } @@ -2451,15 +2451,15 @@ func (o *OriginInspectorValues) HasWafLatency1To5ms() bool { return false } -// SetWafLatency1To5ms gets a reference to the given int32 and assigns it to the WafLatency1To5ms field. -func (o *OriginInspectorValues) SetWafLatency1To5ms(v int32) { +// SetWafLatency1To5ms gets a reference to the given int64 and assigns it to the WafLatency1To5ms field. +func (o *OriginInspectorValues) SetWafLatency1To5ms(v int64) { o.WafLatency1To5ms = &v } // GetWafLatency5To10ms returns the WafLatency5To10ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency5To10ms() int32 { +func (o *OriginInspectorValues) GetWafLatency5To10ms() int64 { if o == nil || o.WafLatency5To10ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency5To10ms @@ -2467,7 +2467,7 @@ func (o *OriginInspectorValues) GetWafLatency5To10ms() int32 { // GetWafLatency5To10msOk returns a tuple with the WafLatency5To10ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency5To10msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency5To10msOk() (*int64, bool) { if o == nil || o.WafLatency5To10ms == nil { return nil, false } @@ -2483,15 +2483,15 @@ func (o *OriginInspectorValues) HasWafLatency5To10ms() bool { return false } -// SetWafLatency5To10ms gets a reference to the given int32 and assigns it to the WafLatency5To10ms field. -func (o *OriginInspectorValues) SetWafLatency5To10ms(v int32) { +// SetWafLatency5To10ms gets a reference to the given int64 and assigns it to the WafLatency5To10ms field. +func (o *OriginInspectorValues) SetWafLatency5To10ms(v int64) { o.WafLatency5To10ms = &v } // GetWafLatency10To50ms returns the WafLatency10To50ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency10To50ms() int32 { +func (o *OriginInspectorValues) GetWafLatency10To50ms() int64 { if o == nil || o.WafLatency10To50ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency10To50ms @@ -2499,7 +2499,7 @@ func (o *OriginInspectorValues) GetWafLatency10To50ms() int32 { // GetWafLatency10To50msOk returns a tuple with the WafLatency10To50ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency10To50msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency10To50msOk() (*int64, bool) { if o == nil || o.WafLatency10To50ms == nil { return nil, false } @@ -2515,15 +2515,15 @@ func (o *OriginInspectorValues) HasWafLatency10To50ms() bool { return false } -// SetWafLatency10To50ms gets a reference to the given int32 and assigns it to the WafLatency10To50ms field. -func (o *OriginInspectorValues) SetWafLatency10To50ms(v int32) { +// SetWafLatency10To50ms gets a reference to the given int64 and assigns it to the WafLatency10To50ms field. +func (o *OriginInspectorValues) SetWafLatency10To50ms(v int64) { o.WafLatency10To50ms = &v } // GetWafLatency50To100ms returns the WafLatency50To100ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency50To100ms() int32 { +func (o *OriginInspectorValues) GetWafLatency50To100ms() int64 { if o == nil || o.WafLatency50To100ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency50To100ms @@ -2531,7 +2531,7 @@ func (o *OriginInspectorValues) GetWafLatency50To100ms() int32 { // GetWafLatency50To100msOk returns a tuple with the WafLatency50To100ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency50To100msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency50To100msOk() (*int64, bool) { if o == nil || o.WafLatency50To100ms == nil { return nil, false } @@ -2547,15 +2547,15 @@ func (o *OriginInspectorValues) HasWafLatency50To100ms() bool { return false } -// SetWafLatency50To100ms gets a reference to the given int32 and assigns it to the WafLatency50To100ms field. -func (o *OriginInspectorValues) SetWafLatency50To100ms(v int32) { +// SetWafLatency50To100ms gets a reference to the given int64 and assigns it to the WafLatency50To100ms field. +func (o *OriginInspectorValues) SetWafLatency50To100ms(v int64) { o.WafLatency50To100ms = &v } // GetWafLatency100To250ms returns the WafLatency100To250ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency100To250ms() int32 { +func (o *OriginInspectorValues) GetWafLatency100To250ms() int64 { if o == nil || o.WafLatency100To250ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency100To250ms @@ -2563,7 +2563,7 @@ func (o *OriginInspectorValues) GetWafLatency100To250ms() int32 { // GetWafLatency100To250msOk returns a tuple with the WafLatency100To250ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency100To250msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency100To250msOk() (*int64, bool) { if o == nil || o.WafLatency100To250ms == nil { return nil, false } @@ -2579,15 +2579,15 @@ func (o *OriginInspectorValues) HasWafLatency100To250ms() bool { return false } -// SetWafLatency100To250ms gets a reference to the given int32 and assigns it to the WafLatency100To250ms field. -func (o *OriginInspectorValues) SetWafLatency100To250ms(v int32) { +// SetWafLatency100To250ms gets a reference to the given int64 and assigns it to the WafLatency100To250ms field. +func (o *OriginInspectorValues) SetWafLatency100To250ms(v int64) { o.WafLatency100To250ms = &v } // GetWafLatency250To500ms returns the WafLatency250To500ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency250To500ms() int32 { +func (o *OriginInspectorValues) GetWafLatency250To500ms() int64 { if o == nil || o.WafLatency250To500ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency250To500ms @@ -2595,7 +2595,7 @@ func (o *OriginInspectorValues) GetWafLatency250To500ms() int32 { // GetWafLatency250To500msOk returns a tuple with the WafLatency250To500ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency250To500msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency250To500msOk() (*int64, bool) { if o == nil || o.WafLatency250To500ms == nil { return nil, false } @@ -2611,15 +2611,15 @@ func (o *OriginInspectorValues) HasWafLatency250To500ms() bool { return false } -// SetWafLatency250To500ms gets a reference to the given int32 and assigns it to the WafLatency250To500ms field. -func (o *OriginInspectorValues) SetWafLatency250To500ms(v int32) { +// SetWafLatency250To500ms gets a reference to the given int64 and assigns it to the WafLatency250To500ms field. +func (o *OriginInspectorValues) SetWafLatency250To500ms(v int64) { o.WafLatency250To500ms = &v } // GetWafLatency500To1000ms returns the WafLatency500To1000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency500To1000ms() int32 { +func (o *OriginInspectorValues) GetWafLatency500To1000ms() int64 { if o == nil || o.WafLatency500To1000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency500To1000ms @@ -2627,7 +2627,7 @@ func (o *OriginInspectorValues) GetWafLatency500To1000ms() int32 { // GetWafLatency500To1000msOk returns a tuple with the WafLatency500To1000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency500To1000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency500To1000msOk() (*int64, bool) { if o == nil || o.WafLatency500To1000ms == nil { return nil, false } @@ -2643,15 +2643,15 @@ func (o *OriginInspectorValues) HasWafLatency500To1000ms() bool { return false } -// SetWafLatency500To1000ms gets a reference to the given int32 and assigns it to the WafLatency500To1000ms field. -func (o *OriginInspectorValues) SetWafLatency500To1000ms(v int32) { +// SetWafLatency500To1000ms gets a reference to the given int64 and assigns it to the WafLatency500To1000ms field. +func (o *OriginInspectorValues) SetWafLatency500To1000ms(v int64) { o.WafLatency500To1000ms = &v } // GetWafLatency1000To5000ms returns the WafLatency1000To5000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency1000To5000ms() int32 { +func (o *OriginInspectorValues) GetWafLatency1000To5000ms() int64 { if o == nil || o.WafLatency1000To5000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency1000To5000ms @@ -2659,7 +2659,7 @@ func (o *OriginInspectorValues) GetWafLatency1000To5000ms() int32 { // GetWafLatency1000To5000msOk returns a tuple with the WafLatency1000To5000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency1000To5000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency1000To5000msOk() (*int64, bool) { if o == nil || o.WafLatency1000To5000ms == nil { return nil, false } @@ -2675,15 +2675,15 @@ func (o *OriginInspectorValues) HasWafLatency1000To5000ms() bool { return false } -// SetWafLatency1000To5000ms gets a reference to the given int32 and assigns it to the WafLatency1000To5000ms field. -func (o *OriginInspectorValues) SetWafLatency1000To5000ms(v int32) { +// SetWafLatency1000To5000ms gets a reference to the given int64 and assigns it to the WafLatency1000To5000ms field. +func (o *OriginInspectorValues) SetWafLatency1000To5000ms(v int64) { o.WafLatency1000To5000ms = &v } // GetWafLatency5000To10000ms returns the WafLatency5000To10000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency5000To10000ms() int32 { +func (o *OriginInspectorValues) GetWafLatency5000To10000ms() int64 { if o == nil || o.WafLatency5000To10000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency5000To10000ms @@ -2691,7 +2691,7 @@ func (o *OriginInspectorValues) GetWafLatency5000To10000ms() int32 { // GetWafLatency5000To10000msOk returns a tuple with the WafLatency5000To10000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency5000To10000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency5000To10000msOk() (*int64, bool) { if o == nil || o.WafLatency5000To10000ms == nil { return nil, false } @@ -2707,15 +2707,15 @@ func (o *OriginInspectorValues) HasWafLatency5000To10000ms() bool { return false } -// SetWafLatency5000To10000ms gets a reference to the given int32 and assigns it to the WafLatency5000To10000ms field. -func (o *OriginInspectorValues) SetWafLatency5000To10000ms(v int32) { +// SetWafLatency5000To10000ms gets a reference to the given int64 and assigns it to the WafLatency5000To10000ms field. +func (o *OriginInspectorValues) SetWafLatency5000To10000ms(v int64) { o.WafLatency5000To10000ms = &v } // GetWafLatency10000To60000ms returns the WafLatency10000To60000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency10000To60000ms() int32 { +func (o *OriginInspectorValues) GetWafLatency10000To60000ms() int64 { if o == nil || o.WafLatency10000To60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency10000To60000ms @@ -2723,7 +2723,7 @@ func (o *OriginInspectorValues) GetWafLatency10000To60000ms() int32 { // GetWafLatency10000To60000msOk returns a tuple with the WafLatency10000To60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency10000To60000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency10000To60000msOk() (*int64, bool) { if o == nil || o.WafLatency10000To60000ms == nil { return nil, false } @@ -2739,15 +2739,15 @@ func (o *OriginInspectorValues) HasWafLatency10000To60000ms() bool { return false } -// SetWafLatency10000To60000ms gets a reference to the given int32 and assigns it to the WafLatency10000To60000ms field. -func (o *OriginInspectorValues) SetWafLatency10000To60000ms(v int32) { +// SetWafLatency10000To60000ms gets a reference to the given int64 and assigns it to the WafLatency10000To60000ms field. +func (o *OriginInspectorValues) SetWafLatency10000To60000ms(v int64) { o.WafLatency10000To60000ms = &v } // GetWafLatency60000ms returns the WafLatency60000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetWafLatency60000ms() int32 { +func (o *OriginInspectorValues) GetWafLatency60000ms() int64 { if o == nil || o.WafLatency60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.WafLatency60000ms @@ -2755,7 +2755,7 @@ func (o *OriginInspectorValues) GetWafLatency60000ms() int32 { // GetWafLatency60000msOk returns a tuple with the WafLatency60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetWafLatency60000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetWafLatency60000msOk() (*int64, bool) { if o == nil || o.WafLatency60000ms == nil { return nil, false } @@ -2771,15 +2771,15 @@ func (o *OriginInspectorValues) HasWafLatency60000ms() bool { return false } -// SetWafLatency60000ms gets a reference to the given int32 and assigns it to the WafLatency60000ms field. -func (o *OriginInspectorValues) SetWafLatency60000ms(v int32) { +// SetWafLatency60000ms gets a reference to the given int64 and assigns it to the WafLatency60000ms field. +func (o *OriginInspectorValues) SetWafLatency60000ms(v int64) { o.WafLatency60000ms = &v } // GetComputeResponses returns the ComputeResponses field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeResponses() int32 { +func (o *OriginInspectorValues) GetComputeResponses() int64 { if o == nil || o.ComputeResponses == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeResponses @@ -2787,7 +2787,7 @@ func (o *OriginInspectorValues) GetComputeResponses() int32 { // GetComputeResponsesOk returns a tuple with the ComputeResponses field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeResponsesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeResponsesOk() (*int64, bool) { if o == nil || o.ComputeResponses == nil { return nil, false } @@ -2803,15 +2803,15 @@ func (o *OriginInspectorValues) HasComputeResponses() bool { return false } -// SetComputeResponses gets a reference to the given int32 and assigns it to the ComputeResponses field. -func (o *OriginInspectorValues) SetComputeResponses(v int32) { +// SetComputeResponses gets a reference to the given int64 and assigns it to the ComputeResponses field. +func (o *OriginInspectorValues) SetComputeResponses(v int64) { o.ComputeResponses = &v } // GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeRespHeaderBytes() int32 { +func (o *OriginInspectorValues) GetComputeRespHeaderBytes() int64 { if o == nil || o.ComputeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespHeaderBytes @@ -2819,7 +2819,7 @@ func (o *OriginInspectorValues) GetComputeRespHeaderBytes() int32 { // GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeRespHeaderBytesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeRespHeaderBytes == nil { return nil, false } @@ -2835,15 +2835,15 @@ func (o *OriginInspectorValues) HasComputeRespHeaderBytes() bool { return false } -// SetComputeRespHeaderBytes gets a reference to the given int32 and assigns it to the ComputeRespHeaderBytes field. -func (o *OriginInspectorValues) SetComputeRespHeaderBytes(v int32) { +// SetComputeRespHeaderBytes gets a reference to the given int64 and assigns it to the ComputeRespHeaderBytes field. +func (o *OriginInspectorValues) SetComputeRespHeaderBytes(v int64) { o.ComputeRespHeaderBytes = &v } // GetComputeRespBodyBytes returns the ComputeRespBodyBytes field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeRespBodyBytes() int32 { +func (o *OriginInspectorValues) GetComputeRespBodyBytes() int64 { if o == nil || o.ComputeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespBodyBytes @@ -2851,7 +2851,7 @@ func (o *OriginInspectorValues) GetComputeRespBodyBytes() int32 { // GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeRespBodyBytesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeRespBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeRespBodyBytes == nil { return nil, false } @@ -2867,15 +2867,15 @@ func (o *OriginInspectorValues) HasComputeRespBodyBytes() bool { return false } -// SetComputeRespBodyBytes gets a reference to the given int32 and assigns it to the ComputeRespBodyBytes field. -func (o *OriginInspectorValues) SetComputeRespBodyBytes(v int32) { +// SetComputeRespBodyBytes gets a reference to the given int64 and assigns it to the ComputeRespBodyBytes field. +func (o *OriginInspectorValues) SetComputeRespBodyBytes(v int64) { o.ComputeRespBodyBytes = &v } // GetComputeStatus1xx returns the ComputeStatus1xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus1xx() int32 { +func (o *OriginInspectorValues) GetComputeStatus1xx() int64 { if o == nil || o.ComputeStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus1xx @@ -2883,7 +2883,7 @@ func (o *OriginInspectorValues) GetComputeStatus1xx() int32 { // GetComputeStatus1xxOk returns a tuple with the ComputeStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus1xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus1xxOk() (*int64, bool) { if o == nil || o.ComputeStatus1xx == nil { return nil, false } @@ -2899,15 +2899,15 @@ func (o *OriginInspectorValues) HasComputeStatus1xx() bool { return false } -// SetComputeStatus1xx gets a reference to the given int32 and assigns it to the ComputeStatus1xx field. -func (o *OriginInspectorValues) SetComputeStatus1xx(v int32) { +// SetComputeStatus1xx gets a reference to the given int64 and assigns it to the ComputeStatus1xx field. +func (o *OriginInspectorValues) SetComputeStatus1xx(v int64) { o.ComputeStatus1xx = &v } // GetComputeStatus2xx returns the ComputeStatus2xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus2xx() int32 { +func (o *OriginInspectorValues) GetComputeStatus2xx() int64 { if o == nil || o.ComputeStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus2xx @@ -2915,7 +2915,7 @@ func (o *OriginInspectorValues) GetComputeStatus2xx() int32 { // GetComputeStatus2xxOk returns a tuple with the ComputeStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus2xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus2xxOk() (*int64, bool) { if o == nil || o.ComputeStatus2xx == nil { return nil, false } @@ -2931,15 +2931,15 @@ func (o *OriginInspectorValues) HasComputeStatus2xx() bool { return false } -// SetComputeStatus2xx gets a reference to the given int32 and assigns it to the ComputeStatus2xx field. -func (o *OriginInspectorValues) SetComputeStatus2xx(v int32) { +// SetComputeStatus2xx gets a reference to the given int64 and assigns it to the ComputeStatus2xx field. +func (o *OriginInspectorValues) SetComputeStatus2xx(v int64) { o.ComputeStatus2xx = &v } // GetComputeStatus3xx returns the ComputeStatus3xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus3xx() int32 { +func (o *OriginInspectorValues) GetComputeStatus3xx() int64 { if o == nil || o.ComputeStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus3xx @@ -2947,7 +2947,7 @@ func (o *OriginInspectorValues) GetComputeStatus3xx() int32 { // GetComputeStatus3xxOk returns a tuple with the ComputeStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus3xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus3xxOk() (*int64, bool) { if o == nil || o.ComputeStatus3xx == nil { return nil, false } @@ -2963,15 +2963,15 @@ func (o *OriginInspectorValues) HasComputeStatus3xx() bool { return false } -// SetComputeStatus3xx gets a reference to the given int32 and assigns it to the ComputeStatus3xx field. -func (o *OriginInspectorValues) SetComputeStatus3xx(v int32) { +// SetComputeStatus3xx gets a reference to the given int64 and assigns it to the ComputeStatus3xx field. +func (o *OriginInspectorValues) SetComputeStatus3xx(v int64) { o.ComputeStatus3xx = &v } // GetComputeStatus4xx returns the ComputeStatus4xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus4xx() int32 { +func (o *OriginInspectorValues) GetComputeStatus4xx() int64 { if o == nil || o.ComputeStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus4xx @@ -2979,7 +2979,7 @@ func (o *OriginInspectorValues) GetComputeStatus4xx() int32 { // GetComputeStatus4xxOk returns a tuple with the ComputeStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus4xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus4xxOk() (*int64, bool) { if o == nil || o.ComputeStatus4xx == nil { return nil, false } @@ -2995,15 +2995,15 @@ func (o *OriginInspectorValues) HasComputeStatus4xx() bool { return false } -// SetComputeStatus4xx gets a reference to the given int32 and assigns it to the ComputeStatus4xx field. -func (o *OriginInspectorValues) SetComputeStatus4xx(v int32) { +// SetComputeStatus4xx gets a reference to the given int64 and assigns it to the ComputeStatus4xx field. +func (o *OriginInspectorValues) SetComputeStatus4xx(v int64) { o.ComputeStatus4xx = &v } // GetComputeStatus5xx returns the ComputeStatus5xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus5xx() int32 { +func (o *OriginInspectorValues) GetComputeStatus5xx() int64 { if o == nil || o.ComputeStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus5xx @@ -3011,7 +3011,7 @@ func (o *OriginInspectorValues) GetComputeStatus5xx() int32 { // GetComputeStatus5xxOk returns a tuple with the ComputeStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus5xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus5xxOk() (*int64, bool) { if o == nil || o.ComputeStatus5xx == nil { return nil, false } @@ -3027,15 +3027,15 @@ func (o *OriginInspectorValues) HasComputeStatus5xx() bool { return false } -// SetComputeStatus5xx gets a reference to the given int32 and assigns it to the ComputeStatus5xx field. -func (o *OriginInspectorValues) SetComputeStatus5xx(v int32) { +// SetComputeStatus5xx gets a reference to the given int64 and assigns it to the ComputeStatus5xx field. +func (o *OriginInspectorValues) SetComputeStatus5xx(v int64) { o.ComputeStatus5xx = &v } // GetComputeStatus200 returns the ComputeStatus200 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus200() int32 { +func (o *OriginInspectorValues) GetComputeStatus200() int64 { if o == nil || o.ComputeStatus200 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus200 @@ -3043,7 +3043,7 @@ func (o *OriginInspectorValues) GetComputeStatus200() int32 { // GetComputeStatus200Ok returns a tuple with the ComputeStatus200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus200Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus200Ok() (*int64, bool) { if o == nil || o.ComputeStatus200 == nil { return nil, false } @@ -3059,15 +3059,15 @@ func (o *OriginInspectorValues) HasComputeStatus200() bool { return false } -// SetComputeStatus200 gets a reference to the given int32 and assigns it to the ComputeStatus200 field. -func (o *OriginInspectorValues) SetComputeStatus200(v int32) { +// SetComputeStatus200 gets a reference to the given int64 and assigns it to the ComputeStatus200 field. +func (o *OriginInspectorValues) SetComputeStatus200(v int64) { o.ComputeStatus200 = &v } // GetComputeStatus204 returns the ComputeStatus204 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus204() int32 { +func (o *OriginInspectorValues) GetComputeStatus204() int64 { if o == nil || o.ComputeStatus204 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus204 @@ -3075,7 +3075,7 @@ func (o *OriginInspectorValues) GetComputeStatus204() int32 { // GetComputeStatus204Ok returns a tuple with the ComputeStatus204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus204Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus204Ok() (*int64, bool) { if o == nil || o.ComputeStatus204 == nil { return nil, false } @@ -3091,15 +3091,15 @@ func (o *OriginInspectorValues) HasComputeStatus204() bool { return false } -// SetComputeStatus204 gets a reference to the given int32 and assigns it to the ComputeStatus204 field. -func (o *OriginInspectorValues) SetComputeStatus204(v int32) { +// SetComputeStatus204 gets a reference to the given int64 and assigns it to the ComputeStatus204 field. +func (o *OriginInspectorValues) SetComputeStatus204(v int64) { o.ComputeStatus204 = &v } // GetComputeStatus206 returns the ComputeStatus206 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus206() int32 { +func (o *OriginInspectorValues) GetComputeStatus206() int64 { if o == nil || o.ComputeStatus206 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus206 @@ -3107,7 +3107,7 @@ func (o *OriginInspectorValues) GetComputeStatus206() int32 { // GetComputeStatus206Ok returns a tuple with the ComputeStatus206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus206Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus206Ok() (*int64, bool) { if o == nil || o.ComputeStatus206 == nil { return nil, false } @@ -3123,15 +3123,15 @@ func (o *OriginInspectorValues) HasComputeStatus206() bool { return false } -// SetComputeStatus206 gets a reference to the given int32 and assigns it to the ComputeStatus206 field. -func (o *OriginInspectorValues) SetComputeStatus206(v int32) { +// SetComputeStatus206 gets a reference to the given int64 and assigns it to the ComputeStatus206 field. +func (o *OriginInspectorValues) SetComputeStatus206(v int64) { o.ComputeStatus206 = &v } // GetComputeStatus301 returns the ComputeStatus301 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus301() int32 { +func (o *OriginInspectorValues) GetComputeStatus301() int64 { if o == nil || o.ComputeStatus301 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus301 @@ -3139,7 +3139,7 @@ func (o *OriginInspectorValues) GetComputeStatus301() int32 { // GetComputeStatus301Ok returns a tuple with the ComputeStatus301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus301Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus301Ok() (*int64, bool) { if o == nil || o.ComputeStatus301 == nil { return nil, false } @@ -3155,15 +3155,15 @@ func (o *OriginInspectorValues) HasComputeStatus301() bool { return false } -// SetComputeStatus301 gets a reference to the given int32 and assigns it to the ComputeStatus301 field. -func (o *OriginInspectorValues) SetComputeStatus301(v int32) { +// SetComputeStatus301 gets a reference to the given int64 and assigns it to the ComputeStatus301 field. +func (o *OriginInspectorValues) SetComputeStatus301(v int64) { o.ComputeStatus301 = &v } // GetComputeStatus302 returns the ComputeStatus302 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus302() int32 { +func (o *OriginInspectorValues) GetComputeStatus302() int64 { if o == nil || o.ComputeStatus302 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus302 @@ -3171,7 +3171,7 @@ func (o *OriginInspectorValues) GetComputeStatus302() int32 { // GetComputeStatus302Ok returns a tuple with the ComputeStatus302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus302Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus302Ok() (*int64, bool) { if o == nil || o.ComputeStatus302 == nil { return nil, false } @@ -3187,15 +3187,15 @@ func (o *OriginInspectorValues) HasComputeStatus302() bool { return false } -// SetComputeStatus302 gets a reference to the given int32 and assigns it to the ComputeStatus302 field. -func (o *OriginInspectorValues) SetComputeStatus302(v int32) { +// SetComputeStatus302 gets a reference to the given int64 and assigns it to the ComputeStatus302 field. +func (o *OriginInspectorValues) SetComputeStatus302(v int64) { o.ComputeStatus302 = &v } // GetComputeStatus304 returns the ComputeStatus304 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus304() int32 { +func (o *OriginInspectorValues) GetComputeStatus304() int64 { if o == nil || o.ComputeStatus304 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus304 @@ -3203,7 +3203,7 @@ func (o *OriginInspectorValues) GetComputeStatus304() int32 { // GetComputeStatus304Ok returns a tuple with the ComputeStatus304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus304Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus304Ok() (*int64, bool) { if o == nil || o.ComputeStatus304 == nil { return nil, false } @@ -3219,15 +3219,15 @@ func (o *OriginInspectorValues) HasComputeStatus304() bool { return false } -// SetComputeStatus304 gets a reference to the given int32 and assigns it to the ComputeStatus304 field. -func (o *OriginInspectorValues) SetComputeStatus304(v int32) { +// SetComputeStatus304 gets a reference to the given int64 and assigns it to the ComputeStatus304 field. +func (o *OriginInspectorValues) SetComputeStatus304(v int64) { o.ComputeStatus304 = &v } // GetComputeStatus400 returns the ComputeStatus400 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus400() int32 { +func (o *OriginInspectorValues) GetComputeStatus400() int64 { if o == nil || o.ComputeStatus400 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus400 @@ -3235,7 +3235,7 @@ func (o *OriginInspectorValues) GetComputeStatus400() int32 { // GetComputeStatus400Ok returns a tuple with the ComputeStatus400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus400Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus400Ok() (*int64, bool) { if o == nil || o.ComputeStatus400 == nil { return nil, false } @@ -3251,15 +3251,15 @@ func (o *OriginInspectorValues) HasComputeStatus400() bool { return false } -// SetComputeStatus400 gets a reference to the given int32 and assigns it to the ComputeStatus400 field. -func (o *OriginInspectorValues) SetComputeStatus400(v int32) { +// SetComputeStatus400 gets a reference to the given int64 and assigns it to the ComputeStatus400 field. +func (o *OriginInspectorValues) SetComputeStatus400(v int64) { o.ComputeStatus400 = &v } // GetComputeStatus401 returns the ComputeStatus401 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus401() int32 { +func (o *OriginInspectorValues) GetComputeStatus401() int64 { if o == nil || o.ComputeStatus401 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus401 @@ -3267,7 +3267,7 @@ func (o *OriginInspectorValues) GetComputeStatus401() int32 { // GetComputeStatus401Ok returns a tuple with the ComputeStatus401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus401Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus401Ok() (*int64, bool) { if o == nil || o.ComputeStatus401 == nil { return nil, false } @@ -3283,15 +3283,15 @@ func (o *OriginInspectorValues) HasComputeStatus401() bool { return false } -// SetComputeStatus401 gets a reference to the given int32 and assigns it to the ComputeStatus401 field. -func (o *OriginInspectorValues) SetComputeStatus401(v int32) { +// SetComputeStatus401 gets a reference to the given int64 and assigns it to the ComputeStatus401 field. +func (o *OriginInspectorValues) SetComputeStatus401(v int64) { o.ComputeStatus401 = &v } // GetComputeStatus403 returns the ComputeStatus403 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus403() int32 { +func (o *OriginInspectorValues) GetComputeStatus403() int64 { if o == nil || o.ComputeStatus403 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus403 @@ -3299,7 +3299,7 @@ func (o *OriginInspectorValues) GetComputeStatus403() int32 { // GetComputeStatus403Ok returns a tuple with the ComputeStatus403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus403Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus403Ok() (*int64, bool) { if o == nil || o.ComputeStatus403 == nil { return nil, false } @@ -3315,15 +3315,15 @@ func (o *OriginInspectorValues) HasComputeStatus403() bool { return false } -// SetComputeStatus403 gets a reference to the given int32 and assigns it to the ComputeStatus403 field. -func (o *OriginInspectorValues) SetComputeStatus403(v int32) { +// SetComputeStatus403 gets a reference to the given int64 and assigns it to the ComputeStatus403 field. +func (o *OriginInspectorValues) SetComputeStatus403(v int64) { o.ComputeStatus403 = &v } // GetComputeStatus404 returns the ComputeStatus404 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus404() int32 { +func (o *OriginInspectorValues) GetComputeStatus404() int64 { if o == nil || o.ComputeStatus404 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus404 @@ -3331,7 +3331,7 @@ func (o *OriginInspectorValues) GetComputeStatus404() int32 { // GetComputeStatus404Ok returns a tuple with the ComputeStatus404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus404Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus404Ok() (*int64, bool) { if o == nil || o.ComputeStatus404 == nil { return nil, false } @@ -3347,15 +3347,15 @@ func (o *OriginInspectorValues) HasComputeStatus404() bool { return false } -// SetComputeStatus404 gets a reference to the given int32 and assigns it to the ComputeStatus404 field. -func (o *OriginInspectorValues) SetComputeStatus404(v int32) { +// SetComputeStatus404 gets a reference to the given int64 and assigns it to the ComputeStatus404 field. +func (o *OriginInspectorValues) SetComputeStatus404(v int64) { o.ComputeStatus404 = &v } // GetComputeStatus416 returns the ComputeStatus416 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus416() int32 { +func (o *OriginInspectorValues) GetComputeStatus416() int64 { if o == nil || o.ComputeStatus416 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus416 @@ -3363,7 +3363,7 @@ func (o *OriginInspectorValues) GetComputeStatus416() int32 { // GetComputeStatus416Ok returns a tuple with the ComputeStatus416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus416Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus416Ok() (*int64, bool) { if o == nil || o.ComputeStatus416 == nil { return nil, false } @@ -3379,15 +3379,15 @@ func (o *OriginInspectorValues) HasComputeStatus416() bool { return false } -// SetComputeStatus416 gets a reference to the given int32 and assigns it to the ComputeStatus416 field. -func (o *OriginInspectorValues) SetComputeStatus416(v int32) { +// SetComputeStatus416 gets a reference to the given int64 and assigns it to the ComputeStatus416 field. +func (o *OriginInspectorValues) SetComputeStatus416(v int64) { o.ComputeStatus416 = &v } // GetComputeStatus429 returns the ComputeStatus429 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus429() int32 { +func (o *OriginInspectorValues) GetComputeStatus429() int64 { if o == nil || o.ComputeStatus429 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus429 @@ -3395,7 +3395,7 @@ func (o *OriginInspectorValues) GetComputeStatus429() int32 { // GetComputeStatus429Ok returns a tuple with the ComputeStatus429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus429Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus429Ok() (*int64, bool) { if o == nil || o.ComputeStatus429 == nil { return nil, false } @@ -3411,15 +3411,15 @@ func (o *OriginInspectorValues) HasComputeStatus429() bool { return false } -// SetComputeStatus429 gets a reference to the given int32 and assigns it to the ComputeStatus429 field. -func (o *OriginInspectorValues) SetComputeStatus429(v int32) { +// SetComputeStatus429 gets a reference to the given int64 and assigns it to the ComputeStatus429 field. +func (o *OriginInspectorValues) SetComputeStatus429(v int64) { o.ComputeStatus429 = &v } // GetComputeStatus500 returns the ComputeStatus500 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus500() int32 { +func (o *OriginInspectorValues) GetComputeStatus500() int64 { if o == nil || o.ComputeStatus500 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus500 @@ -3427,7 +3427,7 @@ func (o *OriginInspectorValues) GetComputeStatus500() int32 { // GetComputeStatus500Ok returns a tuple with the ComputeStatus500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus500Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus500Ok() (*int64, bool) { if o == nil || o.ComputeStatus500 == nil { return nil, false } @@ -3443,15 +3443,15 @@ func (o *OriginInspectorValues) HasComputeStatus500() bool { return false } -// SetComputeStatus500 gets a reference to the given int32 and assigns it to the ComputeStatus500 field. -func (o *OriginInspectorValues) SetComputeStatus500(v int32) { +// SetComputeStatus500 gets a reference to the given int64 and assigns it to the ComputeStatus500 field. +func (o *OriginInspectorValues) SetComputeStatus500(v int64) { o.ComputeStatus500 = &v } // GetComputeStatus501 returns the ComputeStatus501 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus501() int32 { +func (o *OriginInspectorValues) GetComputeStatus501() int64 { if o == nil || o.ComputeStatus501 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus501 @@ -3459,7 +3459,7 @@ func (o *OriginInspectorValues) GetComputeStatus501() int32 { // GetComputeStatus501Ok returns a tuple with the ComputeStatus501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus501Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus501Ok() (*int64, bool) { if o == nil || o.ComputeStatus501 == nil { return nil, false } @@ -3475,15 +3475,15 @@ func (o *OriginInspectorValues) HasComputeStatus501() bool { return false } -// SetComputeStatus501 gets a reference to the given int32 and assigns it to the ComputeStatus501 field. -func (o *OriginInspectorValues) SetComputeStatus501(v int32) { +// SetComputeStatus501 gets a reference to the given int64 and assigns it to the ComputeStatus501 field. +func (o *OriginInspectorValues) SetComputeStatus501(v int64) { o.ComputeStatus501 = &v } // GetComputeStatus502 returns the ComputeStatus502 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus502() int32 { +func (o *OriginInspectorValues) GetComputeStatus502() int64 { if o == nil || o.ComputeStatus502 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus502 @@ -3491,7 +3491,7 @@ func (o *OriginInspectorValues) GetComputeStatus502() int32 { // GetComputeStatus502Ok returns a tuple with the ComputeStatus502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus502Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus502Ok() (*int64, bool) { if o == nil || o.ComputeStatus502 == nil { return nil, false } @@ -3507,15 +3507,15 @@ func (o *OriginInspectorValues) HasComputeStatus502() bool { return false } -// SetComputeStatus502 gets a reference to the given int32 and assigns it to the ComputeStatus502 field. -func (o *OriginInspectorValues) SetComputeStatus502(v int32) { +// SetComputeStatus502 gets a reference to the given int64 and assigns it to the ComputeStatus502 field. +func (o *OriginInspectorValues) SetComputeStatus502(v int64) { o.ComputeStatus502 = &v } // GetComputeStatus503 returns the ComputeStatus503 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus503() int32 { +func (o *OriginInspectorValues) GetComputeStatus503() int64 { if o == nil || o.ComputeStatus503 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus503 @@ -3523,7 +3523,7 @@ func (o *OriginInspectorValues) GetComputeStatus503() int32 { // GetComputeStatus503Ok returns a tuple with the ComputeStatus503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus503Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus503Ok() (*int64, bool) { if o == nil || o.ComputeStatus503 == nil { return nil, false } @@ -3539,15 +3539,15 @@ func (o *OriginInspectorValues) HasComputeStatus503() bool { return false } -// SetComputeStatus503 gets a reference to the given int32 and assigns it to the ComputeStatus503 field. -func (o *OriginInspectorValues) SetComputeStatus503(v int32) { +// SetComputeStatus503 gets a reference to the given int64 and assigns it to the ComputeStatus503 field. +func (o *OriginInspectorValues) SetComputeStatus503(v int64) { o.ComputeStatus503 = &v } // GetComputeStatus504 returns the ComputeStatus504 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus504() int32 { +func (o *OriginInspectorValues) GetComputeStatus504() int64 { if o == nil || o.ComputeStatus504 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus504 @@ -3555,7 +3555,7 @@ func (o *OriginInspectorValues) GetComputeStatus504() int32 { // GetComputeStatus504Ok returns a tuple with the ComputeStatus504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus504Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus504Ok() (*int64, bool) { if o == nil || o.ComputeStatus504 == nil { return nil, false } @@ -3571,15 +3571,15 @@ func (o *OriginInspectorValues) HasComputeStatus504() bool { return false } -// SetComputeStatus504 gets a reference to the given int32 and assigns it to the ComputeStatus504 field. -func (o *OriginInspectorValues) SetComputeStatus504(v int32) { +// SetComputeStatus504 gets a reference to the given int64 and assigns it to the ComputeStatus504 field. +func (o *OriginInspectorValues) SetComputeStatus504(v int64) { o.ComputeStatus504 = &v } // GetComputeStatus505 returns the ComputeStatus505 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeStatus505() int32 { +func (o *OriginInspectorValues) GetComputeStatus505() int64 { if o == nil || o.ComputeStatus505 == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStatus505 @@ -3587,7 +3587,7 @@ func (o *OriginInspectorValues) GetComputeStatus505() int32 { // GetComputeStatus505Ok returns a tuple with the ComputeStatus505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeStatus505Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeStatus505Ok() (*int64, bool) { if o == nil || o.ComputeStatus505 == nil { return nil, false } @@ -3603,15 +3603,15 @@ func (o *OriginInspectorValues) HasComputeStatus505() bool { return false } -// SetComputeStatus505 gets a reference to the given int32 and assigns it to the ComputeStatus505 field. -func (o *OriginInspectorValues) SetComputeStatus505(v int32) { +// SetComputeStatus505 gets a reference to the given int64 and assigns it to the ComputeStatus505 field. +func (o *OriginInspectorValues) SetComputeStatus505(v int64) { o.ComputeStatus505 = &v } // GetComputeLatency0To1ms returns the ComputeLatency0To1ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency0To1ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency0To1ms() int64 { if o == nil || o.ComputeLatency0To1ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency0To1ms @@ -3619,7 +3619,7 @@ func (o *OriginInspectorValues) GetComputeLatency0To1ms() int32 { // GetComputeLatency0To1msOk returns a tuple with the ComputeLatency0To1ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency0To1msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency0To1msOk() (*int64, bool) { if o == nil || o.ComputeLatency0To1ms == nil { return nil, false } @@ -3635,15 +3635,15 @@ func (o *OriginInspectorValues) HasComputeLatency0To1ms() bool { return false } -// SetComputeLatency0To1ms gets a reference to the given int32 and assigns it to the ComputeLatency0To1ms field. -func (o *OriginInspectorValues) SetComputeLatency0To1ms(v int32) { +// SetComputeLatency0To1ms gets a reference to the given int64 and assigns it to the ComputeLatency0To1ms field. +func (o *OriginInspectorValues) SetComputeLatency0To1ms(v int64) { o.ComputeLatency0To1ms = &v } // GetComputeLatency1To5ms returns the ComputeLatency1To5ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency1To5ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency1To5ms() int64 { if o == nil || o.ComputeLatency1To5ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency1To5ms @@ -3651,7 +3651,7 @@ func (o *OriginInspectorValues) GetComputeLatency1To5ms() int32 { // GetComputeLatency1To5msOk returns a tuple with the ComputeLatency1To5ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency1To5msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency1To5msOk() (*int64, bool) { if o == nil || o.ComputeLatency1To5ms == nil { return nil, false } @@ -3667,15 +3667,15 @@ func (o *OriginInspectorValues) HasComputeLatency1To5ms() bool { return false } -// SetComputeLatency1To5ms gets a reference to the given int32 and assigns it to the ComputeLatency1To5ms field. -func (o *OriginInspectorValues) SetComputeLatency1To5ms(v int32) { +// SetComputeLatency1To5ms gets a reference to the given int64 and assigns it to the ComputeLatency1To5ms field. +func (o *OriginInspectorValues) SetComputeLatency1To5ms(v int64) { o.ComputeLatency1To5ms = &v } // GetComputeLatency5To10ms returns the ComputeLatency5To10ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency5To10ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency5To10ms() int64 { if o == nil || o.ComputeLatency5To10ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency5To10ms @@ -3683,7 +3683,7 @@ func (o *OriginInspectorValues) GetComputeLatency5To10ms() int32 { // GetComputeLatency5To10msOk returns a tuple with the ComputeLatency5To10ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency5To10msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency5To10msOk() (*int64, bool) { if o == nil || o.ComputeLatency5To10ms == nil { return nil, false } @@ -3699,15 +3699,15 @@ func (o *OriginInspectorValues) HasComputeLatency5To10ms() bool { return false } -// SetComputeLatency5To10ms gets a reference to the given int32 and assigns it to the ComputeLatency5To10ms field. -func (o *OriginInspectorValues) SetComputeLatency5To10ms(v int32) { +// SetComputeLatency5To10ms gets a reference to the given int64 and assigns it to the ComputeLatency5To10ms field. +func (o *OriginInspectorValues) SetComputeLatency5To10ms(v int64) { o.ComputeLatency5To10ms = &v } // GetComputeLatency10To50ms returns the ComputeLatency10To50ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency10To50ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency10To50ms() int64 { if o == nil || o.ComputeLatency10To50ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency10To50ms @@ -3715,7 +3715,7 @@ func (o *OriginInspectorValues) GetComputeLatency10To50ms() int32 { // GetComputeLatency10To50msOk returns a tuple with the ComputeLatency10To50ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency10To50msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency10To50msOk() (*int64, bool) { if o == nil || o.ComputeLatency10To50ms == nil { return nil, false } @@ -3731,15 +3731,15 @@ func (o *OriginInspectorValues) HasComputeLatency10To50ms() bool { return false } -// SetComputeLatency10To50ms gets a reference to the given int32 and assigns it to the ComputeLatency10To50ms field. -func (o *OriginInspectorValues) SetComputeLatency10To50ms(v int32) { +// SetComputeLatency10To50ms gets a reference to the given int64 and assigns it to the ComputeLatency10To50ms field. +func (o *OriginInspectorValues) SetComputeLatency10To50ms(v int64) { o.ComputeLatency10To50ms = &v } // GetComputeLatency50To100ms returns the ComputeLatency50To100ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency50To100ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency50To100ms() int64 { if o == nil || o.ComputeLatency50To100ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency50To100ms @@ -3747,7 +3747,7 @@ func (o *OriginInspectorValues) GetComputeLatency50To100ms() int32 { // GetComputeLatency50To100msOk returns a tuple with the ComputeLatency50To100ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency50To100msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency50To100msOk() (*int64, bool) { if o == nil || o.ComputeLatency50To100ms == nil { return nil, false } @@ -3763,15 +3763,15 @@ func (o *OriginInspectorValues) HasComputeLatency50To100ms() bool { return false } -// SetComputeLatency50To100ms gets a reference to the given int32 and assigns it to the ComputeLatency50To100ms field. -func (o *OriginInspectorValues) SetComputeLatency50To100ms(v int32) { +// SetComputeLatency50To100ms gets a reference to the given int64 and assigns it to the ComputeLatency50To100ms field. +func (o *OriginInspectorValues) SetComputeLatency50To100ms(v int64) { o.ComputeLatency50To100ms = &v } // GetComputeLatency100To250ms returns the ComputeLatency100To250ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency100To250ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency100To250ms() int64 { if o == nil || o.ComputeLatency100To250ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency100To250ms @@ -3779,7 +3779,7 @@ func (o *OriginInspectorValues) GetComputeLatency100To250ms() int32 { // GetComputeLatency100To250msOk returns a tuple with the ComputeLatency100To250ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency100To250msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency100To250msOk() (*int64, bool) { if o == nil || o.ComputeLatency100To250ms == nil { return nil, false } @@ -3795,15 +3795,15 @@ func (o *OriginInspectorValues) HasComputeLatency100To250ms() bool { return false } -// SetComputeLatency100To250ms gets a reference to the given int32 and assigns it to the ComputeLatency100To250ms field. -func (o *OriginInspectorValues) SetComputeLatency100To250ms(v int32) { +// SetComputeLatency100To250ms gets a reference to the given int64 and assigns it to the ComputeLatency100To250ms field. +func (o *OriginInspectorValues) SetComputeLatency100To250ms(v int64) { o.ComputeLatency100To250ms = &v } // GetComputeLatency250To500ms returns the ComputeLatency250To500ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency250To500ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency250To500ms() int64 { if o == nil || o.ComputeLatency250To500ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency250To500ms @@ -3811,7 +3811,7 @@ func (o *OriginInspectorValues) GetComputeLatency250To500ms() int32 { // GetComputeLatency250To500msOk returns a tuple with the ComputeLatency250To500ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency250To500msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency250To500msOk() (*int64, bool) { if o == nil || o.ComputeLatency250To500ms == nil { return nil, false } @@ -3827,15 +3827,15 @@ func (o *OriginInspectorValues) HasComputeLatency250To500ms() bool { return false } -// SetComputeLatency250To500ms gets a reference to the given int32 and assigns it to the ComputeLatency250To500ms field. -func (o *OriginInspectorValues) SetComputeLatency250To500ms(v int32) { +// SetComputeLatency250To500ms gets a reference to the given int64 and assigns it to the ComputeLatency250To500ms field. +func (o *OriginInspectorValues) SetComputeLatency250To500ms(v int64) { o.ComputeLatency250To500ms = &v } // GetComputeLatency500To1000ms returns the ComputeLatency500To1000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency500To1000ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency500To1000ms() int64 { if o == nil || o.ComputeLatency500To1000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency500To1000ms @@ -3843,7 +3843,7 @@ func (o *OriginInspectorValues) GetComputeLatency500To1000ms() int32 { // GetComputeLatency500To1000msOk returns a tuple with the ComputeLatency500To1000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency500To1000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency500To1000msOk() (*int64, bool) { if o == nil || o.ComputeLatency500To1000ms == nil { return nil, false } @@ -3859,15 +3859,15 @@ func (o *OriginInspectorValues) HasComputeLatency500To1000ms() bool { return false } -// SetComputeLatency500To1000ms gets a reference to the given int32 and assigns it to the ComputeLatency500To1000ms field. -func (o *OriginInspectorValues) SetComputeLatency500To1000ms(v int32) { +// SetComputeLatency500To1000ms gets a reference to the given int64 and assigns it to the ComputeLatency500To1000ms field. +func (o *OriginInspectorValues) SetComputeLatency500To1000ms(v int64) { o.ComputeLatency500To1000ms = &v } // GetComputeLatency1000To5000ms returns the ComputeLatency1000To5000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency1000To5000ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency1000To5000ms() int64 { if o == nil || o.ComputeLatency1000To5000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency1000To5000ms @@ -3875,7 +3875,7 @@ func (o *OriginInspectorValues) GetComputeLatency1000To5000ms() int32 { // GetComputeLatency1000To5000msOk returns a tuple with the ComputeLatency1000To5000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency1000To5000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency1000To5000msOk() (*int64, bool) { if o == nil || o.ComputeLatency1000To5000ms == nil { return nil, false } @@ -3891,15 +3891,15 @@ func (o *OriginInspectorValues) HasComputeLatency1000To5000ms() bool { return false } -// SetComputeLatency1000To5000ms gets a reference to the given int32 and assigns it to the ComputeLatency1000To5000ms field. -func (o *OriginInspectorValues) SetComputeLatency1000To5000ms(v int32) { +// SetComputeLatency1000To5000ms gets a reference to the given int64 and assigns it to the ComputeLatency1000To5000ms field. +func (o *OriginInspectorValues) SetComputeLatency1000To5000ms(v int64) { o.ComputeLatency1000To5000ms = &v } // GetComputeLatency5000To10000ms returns the ComputeLatency5000To10000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency5000To10000ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency5000To10000ms() int64 { if o == nil || o.ComputeLatency5000To10000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency5000To10000ms @@ -3907,7 +3907,7 @@ func (o *OriginInspectorValues) GetComputeLatency5000To10000ms() int32 { // GetComputeLatency5000To10000msOk returns a tuple with the ComputeLatency5000To10000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency5000To10000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency5000To10000msOk() (*int64, bool) { if o == nil || o.ComputeLatency5000To10000ms == nil { return nil, false } @@ -3923,15 +3923,15 @@ func (o *OriginInspectorValues) HasComputeLatency5000To10000ms() bool { return false } -// SetComputeLatency5000To10000ms gets a reference to the given int32 and assigns it to the ComputeLatency5000To10000ms field. -func (o *OriginInspectorValues) SetComputeLatency5000To10000ms(v int32) { +// SetComputeLatency5000To10000ms gets a reference to the given int64 and assigns it to the ComputeLatency5000To10000ms field. +func (o *OriginInspectorValues) SetComputeLatency5000To10000ms(v int64) { o.ComputeLatency5000To10000ms = &v } // GetComputeLatency10000To60000ms returns the ComputeLatency10000To60000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency10000To60000ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency10000To60000ms() int64 { if o == nil || o.ComputeLatency10000To60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency10000To60000ms @@ -3939,7 +3939,7 @@ func (o *OriginInspectorValues) GetComputeLatency10000To60000ms() int32 { // GetComputeLatency10000To60000msOk returns a tuple with the ComputeLatency10000To60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency10000To60000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency10000To60000msOk() (*int64, bool) { if o == nil || o.ComputeLatency10000To60000ms == nil { return nil, false } @@ -3955,15 +3955,15 @@ func (o *OriginInspectorValues) HasComputeLatency10000To60000ms() bool { return false } -// SetComputeLatency10000To60000ms gets a reference to the given int32 and assigns it to the ComputeLatency10000To60000ms field. -func (o *OriginInspectorValues) SetComputeLatency10000To60000ms(v int32) { +// SetComputeLatency10000To60000ms gets a reference to the given int64 and assigns it to the ComputeLatency10000To60000ms field. +func (o *OriginInspectorValues) SetComputeLatency10000To60000ms(v int64) { o.ComputeLatency10000To60000ms = &v } // GetComputeLatency60000ms returns the ComputeLatency60000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetComputeLatency60000ms() int32 { +func (o *OriginInspectorValues) GetComputeLatency60000ms() int64 { if o == nil || o.ComputeLatency60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeLatency60000ms @@ -3971,7 +3971,7 @@ func (o *OriginInspectorValues) GetComputeLatency60000ms() int32 { // GetComputeLatency60000msOk returns a tuple with the ComputeLatency60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetComputeLatency60000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetComputeLatency60000msOk() (*int64, bool) { if o == nil || o.ComputeLatency60000ms == nil { return nil, false } @@ -3987,15 +3987,15 @@ func (o *OriginInspectorValues) HasComputeLatency60000ms() bool { return false } -// SetComputeLatency60000ms gets a reference to the given int32 and assigns it to the ComputeLatency60000ms field. -func (o *OriginInspectorValues) SetComputeLatency60000ms(v int32) { +// SetComputeLatency60000ms gets a reference to the given int64 and assigns it to the ComputeLatency60000ms field. +func (o *OriginInspectorValues) SetComputeLatency60000ms(v int64) { o.ComputeLatency60000ms = &v } // GetAllResponses returns the AllResponses field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllResponses() int32 { +func (o *OriginInspectorValues) GetAllResponses() int64 { if o == nil || o.AllResponses == nil { - var ret int32 + var ret int64 return ret } return *o.AllResponses @@ -4003,7 +4003,7 @@ func (o *OriginInspectorValues) GetAllResponses() int32 { // GetAllResponsesOk returns a tuple with the AllResponses field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllResponsesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllResponsesOk() (*int64, bool) { if o == nil || o.AllResponses == nil { return nil, false } @@ -4019,15 +4019,15 @@ func (o *OriginInspectorValues) HasAllResponses() bool { return false } -// SetAllResponses gets a reference to the given int32 and assigns it to the AllResponses field. -func (o *OriginInspectorValues) SetAllResponses(v int32) { +// SetAllResponses gets a reference to the given int64 and assigns it to the AllResponses field. +func (o *OriginInspectorValues) SetAllResponses(v int64) { o.AllResponses = &v } // GetAllRespHeaderBytes returns the AllRespHeaderBytes field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllRespHeaderBytes() int32 { +func (o *OriginInspectorValues) GetAllRespHeaderBytes() int64 { if o == nil || o.AllRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AllRespHeaderBytes @@ -4035,7 +4035,7 @@ func (o *OriginInspectorValues) GetAllRespHeaderBytes() int32 { // GetAllRespHeaderBytesOk returns a tuple with the AllRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllRespHeaderBytesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllRespHeaderBytesOk() (*int64, bool) { if o == nil || o.AllRespHeaderBytes == nil { return nil, false } @@ -4051,15 +4051,15 @@ func (o *OriginInspectorValues) HasAllRespHeaderBytes() bool { return false } -// SetAllRespHeaderBytes gets a reference to the given int32 and assigns it to the AllRespHeaderBytes field. -func (o *OriginInspectorValues) SetAllRespHeaderBytes(v int32) { +// SetAllRespHeaderBytes gets a reference to the given int64 and assigns it to the AllRespHeaderBytes field. +func (o *OriginInspectorValues) SetAllRespHeaderBytes(v int64) { o.AllRespHeaderBytes = &v } // GetAllRespBodyBytes returns the AllRespBodyBytes field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllRespBodyBytes() int32 { +func (o *OriginInspectorValues) GetAllRespBodyBytes() int64 { if o == nil || o.AllRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AllRespBodyBytes @@ -4067,7 +4067,7 @@ func (o *OriginInspectorValues) GetAllRespBodyBytes() int32 { // GetAllRespBodyBytesOk returns a tuple with the AllRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllRespBodyBytesOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllRespBodyBytesOk() (*int64, bool) { if o == nil || o.AllRespBodyBytes == nil { return nil, false } @@ -4083,15 +4083,15 @@ func (o *OriginInspectorValues) HasAllRespBodyBytes() bool { return false } -// SetAllRespBodyBytes gets a reference to the given int32 and assigns it to the AllRespBodyBytes field. -func (o *OriginInspectorValues) SetAllRespBodyBytes(v int32) { +// SetAllRespBodyBytes gets a reference to the given int64 and assigns it to the AllRespBodyBytes field. +func (o *OriginInspectorValues) SetAllRespBodyBytes(v int64) { o.AllRespBodyBytes = &v } // GetAllStatus1xx returns the AllStatus1xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus1xx() int32 { +func (o *OriginInspectorValues) GetAllStatus1xx() int64 { if o == nil || o.AllStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus1xx @@ -4099,7 +4099,7 @@ func (o *OriginInspectorValues) GetAllStatus1xx() int32 { // GetAllStatus1xxOk returns a tuple with the AllStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus1xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus1xxOk() (*int64, bool) { if o == nil || o.AllStatus1xx == nil { return nil, false } @@ -4115,15 +4115,15 @@ func (o *OriginInspectorValues) HasAllStatus1xx() bool { return false } -// SetAllStatus1xx gets a reference to the given int32 and assigns it to the AllStatus1xx field. -func (o *OriginInspectorValues) SetAllStatus1xx(v int32) { +// SetAllStatus1xx gets a reference to the given int64 and assigns it to the AllStatus1xx field. +func (o *OriginInspectorValues) SetAllStatus1xx(v int64) { o.AllStatus1xx = &v } // GetAllStatus2xx returns the AllStatus2xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus2xx() int32 { +func (o *OriginInspectorValues) GetAllStatus2xx() int64 { if o == nil || o.AllStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus2xx @@ -4131,7 +4131,7 @@ func (o *OriginInspectorValues) GetAllStatus2xx() int32 { // GetAllStatus2xxOk returns a tuple with the AllStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus2xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus2xxOk() (*int64, bool) { if o == nil || o.AllStatus2xx == nil { return nil, false } @@ -4147,15 +4147,15 @@ func (o *OriginInspectorValues) HasAllStatus2xx() bool { return false } -// SetAllStatus2xx gets a reference to the given int32 and assigns it to the AllStatus2xx field. -func (o *OriginInspectorValues) SetAllStatus2xx(v int32) { +// SetAllStatus2xx gets a reference to the given int64 and assigns it to the AllStatus2xx field. +func (o *OriginInspectorValues) SetAllStatus2xx(v int64) { o.AllStatus2xx = &v } // GetAllStatus3xx returns the AllStatus3xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus3xx() int32 { +func (o *OriginInspectorValues) GetAllStatus3xx() int64 { if o == nil || o.AllStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus3xx @@ -4163,7 +4163,7 @@ func (o *OriginInspectorValues) GetAllStatus3xx() int32 { // GetAllStatus3xxOk returns a tuple with the AllStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus3xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus3xxOk() (*int64, bool) { if o == nil || o.AllStatus3xx == nil { return nil, false } @@ -4179,15 +4179,15 @@ func (o *OriginInspectorValues) HasAllStatus3xx() bool { return false } -// SetAllStatus3xx gets a reference to the given int32 and assigns it to the AllStatus3xx field. -func (o *OriginInspectorValues) SetAllStatus3xx(v int32) { +// SetAllStatus3xx gets a reference to the given int64 and assigns it to the AllStatus3xx field. +func (o *OriginInspectorValues) SetAllStatus3xx(v int64) { o.AllStatus3xx = &v } // GetAllStatus4xx returns the AllStatus4xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus4xx() int32 { +func (o *OriginInspectorValues) GetAllStatus4xx() int64 { if o == nil || o.AllStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus4xx @@ -4195,7 +4195,7 @@ func (o *OriginInspectorValues) GetAllStatus4xx() int32 { // GetAllStatus4xxOk returns a tuple with the AllStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus4xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus4xxOk() (*int64, bool) { if o == nil || o.AllStatus4xx == nil { return nil, false } @@ -4211,15 +4211,15 @@ func (o *OriginInspectorValues) HasAllStatus4xx() bool { return false } -// SetAllStatus4xx gets a reference to the given int32 and assigns it to the AllStatus4xx field. -func (o *OriginInspectorValues) SetAllStatus4xx(v int32) { +// SetAllStatus4xx gets a reference to the given int64 and assigns it to the AllStatus4xx field. +func (o *OriginInspectorValues) SetAllStatus4xx(v int64) { o.AllStatus4xx = &v } // GetAllStatus5xx returns the AllStatus5xx field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus5xx() int32 { +func (o *OriginInspectorValues) GetAllStatus5xx() int64 { if o == nil || o.AllStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus5xx @@ -4227,7 +4227,7 @@ func (o *OriginInspectorValues) GetAllStatus5xx() int32 { // GetAllStatus5xxOk returns a tuple with the AllStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus5xxOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus5xxOk() (*int64, bool) { if o == nil || o.AllStatus5xx == nil { return nil, false } @@ -4243,15 +4243,15 @@ func (o *OriginInspectorValues) HasAllStatus5xx() bool { return false } -// SetAllStatus5xx gets a reference to the given int32 and assigns it to the AllStatus5xx field. -func (o *OriginInspectorValues) SetAllStatus5xx(v int32) { +// SetAllStatus5xx gets a reference to the given int64 and assigns it to the AllStatus5xx field. +func (o *OriginInspectorValues) SetAllStatus5xx(v int64) { o.AllStatus5xx = &v } // GetAllStatus200 returns the AllStatus200 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus200() int32 { +func (o *OriginInspectorValues) GetAllStatus200() int64 { if o == nil || o.AllStatus200 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus200 @@ -4259,7 +4259,7 @@ func (o *OriginInspectorValues) GetAllStatus200() int32 { // GetAllStatus200Ok returns a tuple with the AllStatus200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus200Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus200Ok() (*int64, bool) { if o == nil || o.AllStatus200 == nil { return nil, false } @@ -4275,15 +4275,15 @@ func (o *OriginInspectorValues) HasAllStatus200() bool { return false } -// SetAllStatus200 gets a reference to the given int32 and assigns it to the AllStatus200 field. -func (o *OriginInspectorValues) SetAllStatus200(v int32) { +// SetAllStatus200 gets a reference to the given int64 and assigns it to the AllStatus200 field. +func (o *OriginInspectorValues) SetAllStatus200(v int64) { o.AllStatus200 = &v } // GetAllStatus204 returns the AllStatus204 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus204() int32 { +func (o *OriginInspectorValues) GetAllStatus204() int64 { if o == nil || o.AllStatus204 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus204 @@ -4291,7 +4291,7 @@ func (o *OriginInspectorValues) GetAllStatus204() int32 { // GetAllStatus204Ok returns a tuple with the AllStatus204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus204Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus204Ok() (*int64, bool) { if o == nil || o.AllStatus204 == nil { return nil, false } @@ -4307,15 +4307,15 @@ func (o *OriginInspectorValues) HasAllStatus204() bool { return false } -// SetAllStatus204 gets a reference to the given int32 and assigns it to the AllStatus204 field. -func (o *OriginInspectorValues) SetAllStatus204(v int32) { +// SetAllStatus204 gets a reference to the given int64 and assigns it to the AllStatus204 field. +func (o *OriginInspectorValues) SetAllStatus204(v int64) { o.AllStatus204 = &v } // GetAllStatus206 returns the AllStatus206 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus206() int32 { +func (o *OriginInspectorValues) GetAllStatus206() int64 { if o == nil || o.AllStatus206 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus206 @@ -4323,7 +4323,7 @@ func (o *OriginInspectorValues) GetAllStatus206() int32 { // GetAllStatus206Ok returns a tuple with the AllStatus206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus206Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus206Ok() (*int64, bool) { if o == nil || o.AllStatus206 == nil { return nil, false } @@ -4339,15 +4339,15 @@ func (o *OriginInspectorValues) HasAllStatus206() bool { return false } -// SetAllStatus206 gets a reference to the given int32 and assigns it to the AllStatus206 field. -func (o *OriginInspectorValues) SetAllStatus206(v int32) { +// SetAllStatus206 gets a reference to the given int64 and assigns it to the AllStatus206 field. +func (o *OriginInspectorValues) SetAllStatus206(v int64) { o.AllStatus206 = &v } // GetAllStatus301 returns the AllStatus301 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus301() int32 { +func (o *OriginInspectorValues) GetAllStatus301() int64 { if o == nil || o.AllStatus301 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus301 @@ -4355,7 +4355,7 @@ func (o *OriginInspectorValues) GetAllStatus301() int32 { // GetAllStatus301Ok returns a tuple with the AllStatus301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus301Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus301Ok() (*int64, bool) { if o == nil || o.AllStatus301 == nil { return nil, false } @@ -4371,15 +4371,15 @@ func (o *OriginInspectorValues) HasAllStatus301() bool { return false } -// SetAllStatus301 gets a reference to the given int32 and assigns it to the AllStatus301 field. -func (o *OriginInspectorValues) SetAllStatus301(v int32) { +// SetAllStatus301 gets a reference to the given int64 and assigns it to the AllStatus301 field. +func (o *OriginInspectorValues) SetAllStatus301(v int64) { o.AllStatus301 = &v } // GetAllStatus302 returns the AllStatus302 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus302() int32 { +func (o *OriginInspectorValues) GetAllStatus302() int64 { if o == nil || o.AllStatus302 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus302 @@ -4387,7 +4387,7 @@ func (o *OriginInspectorValues) GetAllStatus302() int32 { // GetAllStatus302Ok returns a tuple with the AllStatus302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus302Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus302Ok() (*int64, bool) { if o == nil || o.AllStatus302 == nil { return nil, false } @@ -4403,15 +4403,15 @@ func (o *OriginInspectorValues) HasAllStatus302() bool { return false } -// SetAllStatus302 gets a reference to the given int32 and assigns it to the AllStatus302 field. -func (o *OriginInspectorValues) SetAllStatus302(v int32) { +// SetAllStatus302 gets a reference to the given int64 and assigns it to the AllStatus302 field. +func (o *OriginInspectorValues) SetAllStatus302(v int64) { o.AllStatus302 = &v } // GetAllStatus304 returns the AllStatus304 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus304() int32 { +func (o *OriginInspectorValues) GetAllStatus304() int64 { if o == nil || o.AllStatus304 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus304 @@ -4419,7 +4419,7 @@ func (o *OriginInspectorValues) GetAllStatus304() int32 { // GetAllStatus304Ok returns a tuple with the AllStatus304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus304Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus304Ok() (*int64, bool) { if o == nil || o.AllStatus304 == nil { return nil, false } @@ -4435,15 +4435,15 @@ func (o *OriginInspectorValues) HasAllStatus304() bool { return false } -// SetAllStatus304 gets a reference to the given int32 and assigns it to the AllStatus304 field. -func (o *OriginInspectorValues) SetAllStatus304(v int32) { +// SetAllStatus304 gets a reference to the given int64 and assigns it to the AllStatus304 field. +func (o *OriginInspectorValues) SetAllStatus304(v int64) { o.AllStatus304 = &v } // GetAllStatus400 returns the AllStatus400 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus400() int32 { +func (o *OriginInspectorValues) GetAllStatus400() int64 { if o == nil || o.AllStatus400 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus400 @@ -4451,7 +4451,7 @@ func (o *OriginInspectorValues) GetAllStatus400() int32 { // GetAllStatus400Ok returns a tuple with the AllStatus400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus400Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus400Ok() (*int64, bool) { if o == nil || o.AllStatus400 == nil { return nil, false } @@ -4467,15 +4467,15 @@ func (o *OriginInspectorValues) HasAllStatus400() bool { return false } -// SetAllStatus400 gets a reference to the given int32 and assigns it to the AllStatus400 field. -func (o *OriginInspectorValues) SetAllStatus400(v int32) { +// SetAllStatus400 gets a reference to the given int64 and assigns it to the AllStatus400 field. +func (o *OriginInspectorValues) SetAllStatus400(v int64) { o.AllStatus400 = &v } // GetAllStatus401 returns the AllStatus401 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus401() int32 { +func (o *OriginInspectorValues) GetAllStatus401() int64 { if o == nil || o.AllStatus401 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus401 @@ -4483,7 +4483,7 @@ func (o *OriginInspectorValues) GetAllStatus401() int32 { // GetAllStatus401Ok returns a tuple with the AllStatus401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus401Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus401Ok() (*int64, bool) { if o == nil || o.AllStatus401 == nil { return nil, false } @@ -4499,15 +4499,15 @@ func (o *OriginInspectorValues) HasAllStatus401() bool { return false } -// SetAllStatus401 gets a reference to the given int32 and assigns it to the AllStatus401 field. -func (o *OriginInspectorValues) SetAllStatus401(v int32) { +// SetAllStatus401 gets a reference to the given int64 and assigns it to the AllStatus401 field. +func (o *OriginInspectorValues) SetAllStatus401(v int64) { o.AllStatus401 = &v } // GetAllStatus403 returns the AllStatus403 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus403() int32 { +func (o *OriginInspectorValues) GetAllStatus403() int64 { if o == nil || o.AllStatus403 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus403 @@ -4515,7 +4515,7 @@ func (o *OriginInspectorValues) GetAllStatus403() int32 { // GetAllStatus403Ok returns a tuple with the AllStatus403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus403Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus403Ok() (*int64, bool) { if o == nil || o.AllStatus403 == nil { return nil, false } @@ -4531,15 +4531,15 @@ func (o *OriginInspectorValues) HasAllStatus403() bool { return false } -// SetAllStatus403 gets a reference to the given int32 and assigns it to the AllStatus403 field. -func (o *OriginInspectorValues) SetAllStatus403(v int32) { +// SetAllStatus403 gets a reference to the given int64 and assigns it to the AllStatus403 field. +func (o *OriginInspectorValues) SetAllStatus403(v int64) { o.AllStatus403 = &v } // GetAllStatus404 returns the AllStatus404 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus404() int32 { +func (o *OriginInspectorValues) GetAllStatus404() int64 { if o == nil || o.AllStatus404 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus404 @@ -4547,7 +4547,7 @@ func (o *OriginInspectorValues) GetAllStatus404() int32 { // GetAllStatus404Ok returns a tuple with the AllStatus404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus404Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus404Ok() (*int64, bool) { if o == nil || o.AllStatus404 == nil { return nil, false } @@ -4563,15 +4563,15 @@ func (o *OriginInspectorValues) HasAllStatus404() bool { return false } -// SetAllStatus404 gets a reference to the given int32 and assigns it to the AllStatus404 field. -func (o *OriginInspectorValues) SetAllStatus404(v int32) { +// SetAllStatus404 gets a reference to the given int64 and assigns it to the AllStatus404 field. +func (o *OriginInspectorValues) SetAllStatus404(v int64) { o.AllStatus404 = &v } // GetAllStatus416 returns the AllStatus416 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus416() int32 { +func (o *OriginInspectorValues) GetAllStatus416() int64 { if o == nil || o.AllStatus416 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus416 @@ -4579,7 +4579,7 @@ func (o *OriginInspectorValues) GetAllStatus416() int32 { // GetAllStatus416Ok returns a tuple with the AllStatus416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus416Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus416Ok() (*int64, bool) { if o == nil || o.AllStatus416 == nil { return nil, false } @@ -4595,15 +4595,15 @@ func (o *OriginInspectorValues) HasAllStatus416() bool { return false } -// SetAllStatus416 gets a reference to the given int32 and assigns it to the AllStatus416 field. -func (o *OriginInspectorValues) SetAllStatus416(v int32) { +// SetAllStatus416 gets a reference to the given int64 and assigns it to the AllStatus416 field. +func (o *OriginInspectorValues) SetAllStatus416(v int64) { o.AllStatus416 = &v } // GetAllStatus429 returns the AllStatus429 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus429() int32 { +func (o *OriginInspectorValues) GetAllStatus429() int64 { if o == nil || o.AllStatus429 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus429 @@ -4611,7 +4611,7 @@ func (o *OriginInspectorValues) GetAllStatus429() int32 { // GetAllStatus429Ok returns a tuple with the AllStatus429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus429Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus429Ok() (*int64, bool) { if o == nil || o.AllStatus429 == nil { return nil, false } @@ -4627,15 +4627,15 @@ func (o *OriginInspectorValues) HasAllStatus429() bool { return false } -// SetAllStatus429 gets a reference to the given int32 and assigns it to the AllStatus429 field. -func (o *OriginInspectorValues) SetAllStatus429(v int32) { +// SetAllStatus429 gets a reference to the given int64 and assigns it to the AllStatus429 field. +func (o *OriginInspectorValues) SetAllStatus429(v int64) { o.AllStatus429 = &v } // GetAllStatus500 returns the AllStatus500 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus500() int32 { +func (o *OriginInspectorValues) GetAllStatus500() int64 { if o == nil || o.AllStatus500 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus500 @@ -4643,7 +4643,7 @@ func (o *OriginInspectorValues) GetAllStatus500() int32 { // GetAllStatus500Ok returns a tuple with the AllStatus500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus500Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus500Ok() (*int64, bool) { if o == nil || o.AllStatus500 == nil { return nil, false } @@ -4659,15 +4659,15 @@ func (o *OriginInspectorValues) HasAllStatus500() bool { return false } -// SetAllStatus500 gets a reference to the given int32 and assigns it to the AllStatus500 field. -func (o *OriginInspectorValues) SetAllStatus500(v int32) { +// SetAllStatus500 gets a reference to the given int64 and assigns it to the AllStatus500 field. +func (o *OriginInspectorValues) SetAllStatus500(v int64) { o.AllStatus500 = &v } // GetAllStatus501 returns the AllStatus501 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus501() int32 { +func (o *OriginInspectorValues) GetAllStatus501() int64 { if o == nil || o.AllStatus501 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus501 @@ -4675,7 +4675,7 @@ func (o *OriginInspectorValues) GetAllStatus501() int32 { // GetAllStatus501Ok returns a tuple with the AllStatus501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus501Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus501Ok() (*int64, bool) { if o == nil || o.AllStatus501 == nil { return nil, false } @@ -4691,15 +4691,15 @@ func (o *OriginInspectorValues) HasAllStatus501() bool { return false } -// SetAllStatus501 gets a reference to the given int32 and assigns it to the AllStatus501 field. -func (o *OriginInspectorValues) SetAllStatus501(v int32) { +// SetAllStatus501 gets a reference to the given int64 and assigns it to the AllStatus501 field. +func (o *OriginInspectorValues) SetAllStatus501(v int64) { o.AllStatus501 = &v } // GetAllStatus502 returns the AllStatus502 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus502() int32 { +func (o *OriginInspectorValues) GetAllStatus502() int64 { if o == nil || o.AllStatus502 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus502 @@ -4707,7 +4707,7 @@ func (o *OriginInspectorValues) GetAllStatus502() int32 { // GetAllStatus502Ok returns a tuple with the AllStatus502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus502Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus502Ok() (*int64, bool) { if o == nil || o.AllStatus502 == nil { return nil, false } @@ -4723,15 +4723,15 @@ func (o *OriginInspectorValues) HasAllStatus502() bool { return false } -// SetAllStatus502 gets a reference to the given int32 and assigns it to the AllStatus502 field. -func (o *OriginInspectorValues) SetAllStatus502(v int32) { +// SetAllStatus502 gets a reference to the given int64 and assigns it to the AllStatus502 field. +func (o *OriginInspectorValues) SetAllStatus502(v int64) { o.AllStatus502 = &v } // GetAllStatus503 returns the AllStatus503 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus503() int32 { +func (o *OriginInspectorValues) GetAllStatus503() int64 { if o == nil || o.AllStatus503 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus503 @@ -4739,7 +4739,7 @@ func (o *OriginInspectorValues) GetAllStatus503() int32 { // GetAllStatus503Ok returns a tuple with the AllStatus503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus503Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus503Ok() (*int64, bool) { if o == nil || o.AllStatus503 == nil { return nil, false } @@ -4755,15 +4755,15 @@ func (o *OriginInspectorValues) HasAllStatus503() bool { return false } -// SetAllStatus503 gets a reference to the given int32 and assigns it to the AllStatus503 field. -func (o *OriginInspectorValues) SetAllStatus503(v int32) { +// SetAllStatus503 gets a reference to the given int64 and assigns it to the AllStatus503 field. +func (o *OriginInspectorValues) SetAllStatus503(v int64) { o.AllStatus503 = &v } // GetAllStatus504 returns the AllStatus504 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus504() int32 { +func (o *OriginInspectorValues) GetAllStatus504() int64 { if o == nil || o.AllStatus504 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus504 @@ -4771,7 +4771,7 @@ func (o *OriginInspectorValues) GetAllStatus504() int32 { // GetAllStatus504Ok returns a tuple with the AllStatus504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus504Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus504Ok() (*int64, bool) { if o == nil || o.AllStatus504 == nil { return nil, false } @@ -4787,15 +4787,15 @@ func (o *OriginInspectorValues) HasAllStatus504() bool { return false } -// SetAllStatus504 gets a reference to the given int32 and assigns it to the AllStatus504 field. -func (o *OriginInspectorValues) SetAllStatus504(v int32) { +// SetAllStatus504 gets a reference to the given int64 and assigns it to the AllStatus504 field. +func (o *OriginInspectorValues) SetAllStatus504(v int64) { o.AllStatus504 = &v } // GetAllStatus505 returns the AllStatus505 field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllStatus505() int32 { +func (o *OriginInspectorValues) GetAllStatus505() int64 { if o == nil || o.AllStatus505 == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus505 @@ -4803,7 +4803,7 @@ func (o *OriginInspectorValues) GetAllStatus505() int32 { // GetAllStatus505Ok returns a tuple with the AllStatus505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllStatus505Ok() (*int32, bool) { +func (o *OriginInspectorValues) GetAllStatus505Ok() (*int64, bool) { if o == nil || o.AllStatus505 == nil { return nil, false } @@ -4819,15 +4819,15 @@ func (o *OriginInspectorValues) HasAllStatus505() bool { return false } -// SetAllStatus505 gets a reference to the given int32 and assigns it to the AllStatus505 field. -func (o *OriginInspectorValues) SetAllStatus505(v int32) { +// SetAllStatus505 gets a reference to the given int64 and assigns it to the AllStatus505 field. +func (o *OriginInspectorValues) SetAllStatus505(v int64) { o.AllStatus505 = &v } // GetAllLatency0To1ms returns the AllLatency0To1ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency0To1ms() int32 { +func (o *OriginInspectorValues) GetAllLatency0To1ms() int64 { if o == nil || o.AllLatency0To1ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency0To1ms @@ -4835,7 +4835,7 @@ func (o *OriginInspectorValues) GetAllLatency0To1ms() int32 { // GetAllLatency0To1msOk returns a tuple with the AllLatency0To1ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency0To1msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency0To1msOk() (*int64, bool) { if o == nil || o.AllLatency0To1ms == nil { return nil, false } @@ -4851,15 +4851,15 @@ func (o *OriginInspectorValues) HasAllLatency0To1ms() bool { return false } -// SetAllLatency0To1ms gets a reference to the given int32 and assigns it to the AllLatency0To1ms field. -func (o *OriginInspectorValues) SetAllLatency0To1ms(v int32) { +// SetAllLatency0To1ms gets a reference to the given int64 and assigns it to the AllLatency0To1ms field. +func (o *OriginInspectorValues) SetAllLatency0To1ms(v int64) { o.AllLatency0To1ms = &v } // GetAllLatency1To5ms returns the AllLatency1To5ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency1To5ms() int32 { +func (o *OriginInspectorValues) GetAllLatency1To5ms() int64 { if o == nil || o.AllLatency1To5ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency1To5ms @@ -4867,7 +4867,7 @@ func (o *OriginInspectorValues) GetAllLatency1To5ms() int32 { // GetAllLatency1To5msOk returns a tuple with the AllLatency1To5ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency1To5msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency1To5msOk() (*int64, bool) { if o == nil || o.AllLatency1To5ms == nil { return nil, false } @@ -4883,15 +4883,15 @@ func (o *OriginInspectorValues) HasAllLatency1To5ms() bool { return false } -// SetAllLatency1To5ms gets a reference to the given int32 and assigns it to the AllLatency1To5ms field. -func (o *OriginInspectorValues) SetAllLatency1To5ms(v int32) { +// SetAllLatency1To5ms gets a reference to the given int64 and assigns it to the AllLatency1To5ms field. +func (o *OriginInspectorValues) SetAllLatency1To5ms(v int64) { o.AllLatency1To5ms = &v } // GetAllLatency5To10ms returns the AllLatency5To10ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency5To10ms() int32 { +func (o *OriginInspectorValues) GetAllLatency5To10ms() int64 { if o == nil || o.AllLatency5To10ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency5To10ms @@ -4899,7 +4899,7 @@ func (o *OriginInspectorValues) GetAllLatency5To10ms() int32 { // GetAllLatency5To10msOk returns a tuple with the AllLatency5To10ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency5To10msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency5To10msOk() (*int64, bool) { if o == nil || o.AllLatency5To10ms == nil { return nil, false } @@ -4915,15 +4915,15 @@ func (o *OriginInspectorValues) HasAllLatency5To10ms() bool { return false } -// SetAllLatency5To10ms gets a reference to the given int32 and assigns it to the AllLatency5To10ms field. -func (o *OriginInspectorValues) SetAllLatency5To10ms(v int32) { +// SetAllLatency5To10ms gets a reference to the given int64 and assigns it to the AllLatency5To10ms field. +func (o *OriginInspectorValues) SetAllLatency5To10ms(v int64) { o.AllLatency5To10ms = &v } // GetAllLatency10To50ms returns the AllLatency10To50ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency10To50ms() int32 { +func (o *OriginInspectorValues) GetAllLatency10To50ms() int64 { if o == nil || o.AllLatency10To50ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency10To50ms @@ -4931,7 +4931,7 @@ func (o *OriginInspectorValues) GetAllLatency10To50ms() int32 { // GetAllLatency10To50msOk returns a tuple with the AllLatency10To50ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency10To50msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency10To50msOk() (*int64, bool) { if o == nil || o.AllLatency10To50ms == nil { return nil, false } @@ -4947,15 +4947,15 @@ func (o *OriginInspectorValues) HasAllLatency10To50ms() bool { return false } -// SetAllLatency10To50ms gets a reference to the given int32 and assigns it to the AllLatency10To50ms field. -func (o *OriginInspectorValues) SetAllLatency10To50ms(v int32) { +// SetAllLatency10To50ms gets a reference to the given int64 and assigns it to the AllLatency10To50ms field. +func (o *OriginInspectorValues) SetAllLatency10To50ms(v int64) { o.AllLatency10To50ms = &v } // GetAllLatency50To100ms returns the AllLatency50To100ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency50To100ms() int32 { +func (o *OriginInspectorValues) GetAllLatency50To100ms() int64 { if o == nil || o.AllLatency50To100ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency50To100ms @@ -4963,7 +4963,7 @@ func (o *OriginInspectorValues) GetAllLatency50To100ms() int32 { // GetAllLatency50To100msOk returns a tuple with the AllLatency50To100ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency50To100msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency50To100msOk() (*int64, bool) { if o == nil || o.AllLatency50To100ms == nil { return nil, false } @@ -4979,15 +4979,15 @@ func (o *OriginInspectorValues) HasAllLatency50To100ms() bool { return false } -// SetAllLatency50To100ms gets a reference to the given int32 and assigns it to the AllLatency50To100ms field. -func (o *OriginInspectorValues) SetAllLatency50To100ms(v int32) { +// SetAllLatency50To100ms gets a reference to the given int64 and assigns it to the AllLatency50To100ms field. +func (o *OriginInspectorValues) SetAllLatency50To100ms(v int64) { o.AllLatency50To100ms = &v } // GetAllLatency100To250ms returns the AllLatency100To250ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency100To250ms() int32 { +func (o *OriginInspectorValues) GetAllLatency100To250ms() int64 { if o == nil || o.AllLatency100To250ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency100To250ms @@ -4995,7 +4995,7 @@ func (o *OriginInspectorValues) GetAllLatency100To250ms() int32 { // GetAllLatency100To250msOk returns a tuple with the AllLatency100To250ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency100To250msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency100To250msOk() (*int64, bool) { if o == nil || o.AllLatency100To250ms == nil { return nil, false } @@ -5011,15 +5011,15 @@ func (o *OriginInspectorValues) HasAllLatency100To250ms() bool { return false } -// SetAllLatency100To250ms gets a reference to the given int32 and assigns it to the AllLatency100To250ms field. -func (o *OriginInspectorValues) SetAllLatency100To250ms(v int32) { +// SetAllLatency100To250ms gets a reference to the given int64 and assigns it to the AllLatency100To250ms field. +func (o *OriginInspectorValues) SetAllLatency100To250ms(v int64) { o.AllLatency100To250ms = &v } // GetAllLatency250To500ms returns the AllLatency250To500ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency250To500ms() int32 { +func (o *OriginInspectorValues) GetAllLatency250To500ms() int64 { if o == nil || o.AllLatency250To500ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency250To500ms @@ -5027,7 +5027,7 @@ func (o *OriginInspectorValues) GetAllLatency250To500ms() int32 { // GetAllLatency250To500msOk returns a tuple with the AllLatency250To500ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency250To500msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency250To500msOk() (*int64, bool) { if o == nil || o.AllLatency250To500ms == nil { return nil, false } @@ -5043,15 +5043,15 @@ func (o *OriginInspectorValues) HasAllLatency250To500ms() bool { return false } -// SetAllLatency250To500ms gets a reference to the given int32 and assigns it to the AllLatency250To500ms field. -func (o *OriginInspectorValues) SetAllLatency250To500ms(v int32) { +// SetAllLatency250To500ms gets a reference to the given int64 and assigns it to the AllLatency250To500ms field. +func (o *OriginInspectorValues) SetAllLatency250To500ms(v int64) { o.AllLatency250To500ms = &v } // GetAllLatency500To1000ms returns the AllLatency500To1000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency500To1000ms() int32 { +func (o *OriginInspectorValues) GetAllLatency500To1000ms() int64 { if o == nil || o.AllLatency500To1000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency500To1000ms @@ -5059,7 +5059,7 @@ func (o *OriginInspectorValues) GetAllLatency500To1000ms() int32 { // GetAllLatency500To1000msOk returns a tuple with the AllLatency500To1000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency500To1000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency500To1000msOk() (*int64, bool) { if o == nil || o.AllLatency500To1000ms == nil { return nil, false } @@ -5075,15 +5075,15 @@ func (o *OriginInspectorValues) HasAllLatency500To1000ms() bool { return false } -// SetAllLatency500To1000ms gets a reference to the given int32 and assigns it to the AllLatency500To1000ms field. -func (o *OriginInspectorValues) SetAllLatency500To1000ms(v int32) { +// SetAllLatency500To1000ms gets a reference to the given int64 and assigns it to the AllLatency500To1000ms field. +func (o *OriginInspectorValues) SetAllLatency500To1000ms(v int64) { o.AllLatency500To1000ms = &v } // GetAllLatency1000To5000ms returns the AllLatency1000To5000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency1000To5000ms() int32 { +func (o *OriginInspectorValues) GetAllLatency1000To5000ms() int64 { if o == nil || o.AllLatency1000To5000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency1000To5000ms @@ -5091,7 +5091,7 @@ func (o *OriginInspectorValues) GetAllLatency1000To5000ms() int32 { // GetAllLatency1000To5000msOk returns a tuple with the AllLatency1000To5000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency1000To5000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency1000To5000msOk() (*int64, bool) { if o == nil || o.AllLatency1000To5000ms == nil { return nil, false } @@ -5107,15 +5107,15 @@ func (o *OriginInspectorValues) HasAllLatency1000To5000ms() bool { return false } -// SetAllLatency1000To5000ms gets a reference to the given int32 and assigns it to the AllLatency1000To5000ms field. -func (o *OriginInspectorValues) SetAllLatency1000To5000ms(v int32) { +// SetAllLatency1000To5000ms gets a reference to the given int64 and assigns it to the AllLatency1000To5000ms field. +func (o *OriginInspectorValues) SetAllLatency1000To5000ms(v int64) { o.AllLatency1000To5000ms = &v } // GetAllLatency5000To10000ms returns the AllLatency5000To10000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency5000To10000ms() int32 { +func (o *OriginInspectorValues) GetAllLatency5000To10000ms() int64 { if o == nil || o.AllLatency5000To10000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency5000To10000ms @@ -5123,7 +5123,7 @@ func (o *OriginInspectorValues) GetAllLatency5000To10000ms() int32 { // GetAllLatency5000To10000msOk returns a tuple with the AllLatency5000To10000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency5000To10000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency5000To10000msOk() (*int64, bool) { if o == nil || o.AllLatency5000To10000ms == nil { return nil, false } @@ -5139,15 +5139,15 @@ func (o *OriginInspectorValues) HasAllLatency5000To10000ms() bool { return false } -// SetAllLatency5000To10000ms gets a reference to the given int32 and assigns it to the AllLatency5000To10000ms field. -func (o *OriginInspectorValues) SetAllLatency5000To10000ms(v int32) { +// SetAllLatency5000To10000ms gets a reference to the given int64 and assigns it to the AllLatency5000To10000ms field. +func (o *OriginInspectorValues) SetAllLatency5000To10000ms(v int64) { o.AllLatency5000To10000ms = &v } // GetAllLatency10000To60000ms returns the AllLatency10000To60000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency10000To60000ms() int32 { +func (o *OriginInspectorValues) GetAllLatency10000To60000ms() int64 { if o == nil || o.AllLatency10000To60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency10000To60000ms @@ -5155,7 +5155,7 @@ func (o *OriginInspectorValues) GetAllLatency10000To60000ms() int32 { // GetAllLatency10000To60000msOk returns a tuple with the AllLatency10000To60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency10000To60000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency10000To60000msOk() (*int64, bool) { if o == nil || o.AllLatency10000To60000ms == nil { return nil, false } @@ -5171,15 +5171,15 @@ func (o *OriginInspectorValues) HasAllLatency10000To60000ms() bool { return false } -// SetAllLatency10000To60000ms gets a reference to the given int32 and assigns it to the AllLatency10000To60000ms field. -func (o *OriginInspectorValues) SetAllLatency10000To60000ms(v int32) { +// SetAllLatency10000To60000ms gets a reference to the given int64 and assigns it to the AllLatency10000To60000ms field. +func (o *OriginInspectorValues) SetAllLatency10000To60000ms(v int64) { o.AllLatency10000To60000ms = &v } // GetAllLatency60000ms returns the AllLatency60000ms field value if set, zero value otherwise. -func (o *OriginInspectorValues) GetAllLatency60000ms() int32 { +func (o *OriginInspectorValues) GetAllLatency60000ms() int64 { if o == nil || o.AllLatency60000ms == nil { - var ret int32 + var ret int64 return ret } return *o.AllLatency60000ms @@ -5187,7 +5187,7 @@ func (o *OriginInspectorValues) GetAllLatency60000ms() int32 { // GetAllLatency60000msOk returns a tuple with the AllLatency60000ms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *OriginInspectorValues) GetAllLatency60000msOk() (*int32, bool) { +func (o *OriginInspectorValues) GetAllLatency60000msOk() (*int64, bool) { if o == nil || o.AllLatency60000ms == nil { return nil, false } @@ -5203,8 +5203,8 @@ func (o *OriginInspectorValues) HasAllLatency60000ms() bool { return false } -// SetAllLatency60000ms gets a reference to the given int32 and assigns it to the AllLatency60000ms field. -func (o *OriginInspectorValues) SetAllLatency60000ms(v int32) { +// SetAllLatency60000ms gets a reference to the given int64 and assigns it to the AllLatency60000ms field. +func (o *OriginInspectorValues) SetAllLatency60000ms(v int64) { o.AllLatency60000ms = &v } diff --git a/fastly/model_realtime.go b/fastly/model_realtime.go index 5d37da3..66775f7 100644 --- a/fastly/model_realtime.go +++ b/fastly/model_realtime.go @@ -21,7 +21,7 @@ type Realtime struct { // Value to use for subsequent requests. Timestamp *int32 `json:"Timestamp,omitempty"` // How long the system will wait before aggregating messages for each second. The most recent data returned will have happened at the moment of the request, minus the aggregation delay. - AggregateDelay *int32 `json:"AggregateDelay,omitempty"` + AggregateDelay *int64 `json:"AggregateDelay,omitempty"` // A list of [records](#record-data-model), each representing one second of time. Data []RealtimeEntry `json:"Data,omitempty"` AdditionalProperties map[string]any @@ -79,9 +79,9 @@ func (o *Realtime) SetTimestamp(v int32) { } // GetAggregateDelay returns the AggregateDelay field value if set, zero value otherwise. -func (o *Realtime) GetAggregateDelay() int32 { +func (o *Realtime) GetAggregateDelay() int64 { if o == nil || o.AggregateDelay == nil { - var ret int32 + var ret int64 return ret } return *o.AggregateDelay @@ -89,7 +89,7 @@ func (o *Realtime) GetAggregateDelay() int32 { // GetAggregateDelayOk returns a tuple with the AggregateDelay field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Realtime) GetAggregateDelayOk() (*int32, bool) { +func (o *Realtime) GetAggregateDelayOk() (*int64, bool) { if o == nil || o.AggregateDelay == nil { return nil, false } @@ -105,8 +105,8 @@ func (o *Realtime) HasAggregateDelay() bool { return false } -// SetAggregateDelay gets a reference to the given int32 and assigns it to the AggregateDelay field. -func (o *Realtime) SetAggregateDelay(v int32) { +// SetAggregateDelay gets a reference to the given int64 and assigns it to the AggregateDelay field. +func (o *Realtime) SetAggregateDelay(v int64) { o.AggregateDelay = &v } diff --git a/fastly/model_realtime_entry_aggregated.go b/fastly/model_realtime_entry_aggregated.go index 66e594b..2dda8b8 100644 --- a/fastly/model_realtime_entry_aggregated.go +++ b/fastly/model_realtime_entry_aggregated.go @@ -19,29 +19,29 @@ import ( // RealtimeEntryAggregated Aggregates [measurements](#measurements-data-model) across all Fastly POPs. type RealtimeEntryAggregated struct { // Number of requests processed. - Requests *int32 `json:"requests,omitempty"` + Requests *int64 `json:"requests,omitempty"` // Number of log lines sent (alias for `log`). - Logging *int32 `json:"logging,omitempty"` + Logging *int64 `json:"logging,omitempty"` // Number of log lines sent. - Log *int32 `json:"log,omitempty"` + Log *int64 `json:"log,omitempty"` // Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). - RespHeaderBytes *int32 `json:"resp_header_bytes,omitempty"` + RespHeaderBytes *int64 `json:"resp_header_bytes,omitempty"` // Total header bytes delivered (alias for resp_header_bytes). - HeaderSize *int32 `json:"header_size,omitempty"` + HeaderSize *int64 `json:"header_size,omitempty"` // Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). - RespBodyBytes *int32 `json:"resp_body_bytes,omitempty"` + RespBodyBytes *int64 `json:"resp_body_bytes,omitempty"` // Total body bytes delivered (alias for resp_body_bytes). - BodySize *int32 `json:"body_size,omitempty"` + BodySize *int64 `json:"body_size,omitempty"` // Number of cache hits. - Hits *int32 `json:"hits,omitempty"` + Hits *int64 `json:"hits,omitempty"` // Number of cache misses. - Miss *int32 `json:"miss,omitempty"` + Miss *int64 `json:"miss,omitempty"` // Number of requests that passed through the CDN without being cached. - Pass *int32 `json:"pass,omitempty"` + Pass *int64 `json:"pass,omitempty"` // Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). - Synth *int32 `json:"synth,omitempty"` + Synth *int64 `json:"synth,omitempty"` // Number of cache errors. - Errors *int32 `json:"errors,omitempty"` + Errors *int64 `json:"errors,omitempty"` // Total amount of time spent processing cache hits (in seconds). HitsTime *float32 `json:"hits_time,omitempty"` // Total amount of time spent processing cache misses (in seconds). @@ -49,469 +49,469 @@ type RealtimeEntryAggregated struct { // A histogram. The value in each bucket is the number of requests to the origin whose responses arrived during the time period represented by the bucket. The key of each bucket represents the upper bound (in response time) of that bucket. The buckets vary in width and cover the time periods 0-10ms (in 1ms increments), 10-250ms (in 10ms increments), 250-1,000ms (in 50ms increments), 1,000-3,000ms (in 100ms increments), 3,000-10,000ms (in 500 ms increments), 10,000-20,000ms (in 1,000ms increments), 20,000-60,000ms (in 5,000ms increments), and 60,000ms through infinity (in a single bucket). MissHistogram map[string]map[string]any `json:"miss_histogram,omitempty"` // The total number of requests that were received for your service by Fastly. - ComputeRequests *int32 `json:"compute_requests,omitempty"` + ComputeRequests *int64 `json:"compute_requests,omitempty"` // The amount of active CPU time used to process your requests (in milliseconds). ComputeExecutionTimeMs *float32 `json:"compute_execution_time_ms,omitempty"` // The amount of RAM used for your service by Fastly (in bytes). - ComputeRAMUsed *int32 `json:"compute_ram_used,omitempty"` + ComputeRAMUsed *int64 `json:"compute_ram_used,omitempty"` // The total, actual amount of time used to process your requests, including active CPU time (in milliseconds). ComputeRequestTimeMs *float32 `json:"compute_request_time_ms,omitempty"` // The total amount of request processing time you will be billed for, measured in 50 millisecond increments. ComputeRequestTimeBilledMs *float32 `json:"compute_request_time_billed_ms,omitempty"` // Number of requests from edge to the shield POP. - Shield *int32 `json:"shield,omitempty"` + Shield *int64 `json:"shield,omitempty"` // Number of requests that were received over IPv6. - Ipv6 *int32 `json:"ipv6,omitempty"` + Ipv6 *int64 `json:"ipv6,omitempty"` // Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. - Imgopto *int32 `json:"imgopto,omitempty"` + Imgopto *int64 `json:"imgopto,omitempty"` // Number of responses that came from the Fastly Image Optimizer service via a shield. - ImgoptoShield *int32 `json:"imgopto_shield,omitempty"` + ImgoptoShield *int64 `json:"imgopto_shield,omitempty"` // Number of transforms performed by the Fastly Image Optimizer service. - ImgoptoTransforms *int32 `json:"imgopto_transforms,omitempty"` + ImgoptoTransforms *int64 `json:"imgopto_transforms,omitempty"` // Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. - Otfp *int32 `json:"otfp,omitempty"` + Otfp *int64 `json:"otfp,omitempty"` // Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand via a shield. - OtfpShield *int32 `json:"otfp_shield,omitempty"` + OtfpShield *int64 `json:"otfp_shield,omitempty"` // Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpManifests *int32 `json:"otfp_manifests,omitempty"` + OtfpManifests *int64 `json:"otfp_manifests,omitempty"` // Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). - Video *int32 `json:"video,omitempty"` + Video *int64 `json:"video,omitempty"` // Number of responses with the PCI flag turned on. - Pci *int32 `json:"pci,omitempty"` + Pci *int64 `json:"pci,omitempty"` // Number of requests received over HTTP/2. - HTTP2 *int32 `json:"http2,omitempty"` + HTTP2 *int64 `json:"http2,omitempty"` // Number of requests received over HTTP/3. - HTTP3 *int32 `json:"http3,omitempty"` + HTTP3 *int64 `json:"http3,omitempty"` // Number of restarts performed. - Restarts *int32 `json:"restarts,omitempty"` + Restarts *int64 `json:"restarts,omitempty"` // Total header bytes received. - ReqHeaderBytes *int32 `json:"req_header_bytes,omitempty"` + ReqHeaderBytes *int64 `json:"req_header_bytes,omitempty"` // Total body bytes received. - ReqBodyBytes *int32 `json:"req_body_bytes,omitempty"` + ReqBodyBytes *int64 `json:"req_body_bytes,omitempty"` // Total header bytes sent to origin. - BereqHeaderBytes *int32 `json:"bereq_header_bytes,omitempty"` + BereqHeaderBytes *int64 `json:"bereq_header_bytes,omitempty"` // Total body bytes sent to origin. - BereqBodyBytes *int32 `json:"bereq_body_bytes,omitempty"` + BereqBodyBytes *int64 `json:"bereq_body_bytes,omitempty"` // Number of requests that triggered a WAF rule and were blocked. - WafBlocked *int32 `json:"waf_blocked,omitempty"` + WafBlocked *int64 `json:"waf_blocked,omitempty"` // Number of requests that triggered a WAF rule and were logged. - WafLogged *int32 `json:"waf_logged,omitempty"` + WafLogged *int64 `json:"waf_logged,omitempty"` // Number of requests that triggered a WAF rule and were passed. - WafPassed *int32 `json:"waf_passed,omitempty"` + WafPassed *int64 `json:"waf_passed,omitempty"` // Total header bytes received from requests that triggered a WAF rule. - AttackReqHeaderBytes *int32 `json:"attack_req_header_bytes,omitempty"` + AttackReqHeaderBytes *int64 `json:"attack_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule. - AttackReqBodyBytes *int32 `json:"attack_req_body_bytes,omitempty"` + AttackReqBodyBytes *int64 `json:"attack_req_body_bytes,omitempty"` // Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. - AttackRespSynthBytes *int32 `json:"attack_resp_synth_bytes,omitempty"` + AttackRespSynthBytes *int64 `json:"attack_resp_synth_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was logged. - AttackLoggedReqHeaderBytes *int32 `json:"attack_logged_req_header_bytes,omitempty"` + AttackLoggedReqHeaderBytes *int64 `json:"attack_logged_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was logged. - AttackLoggedReqBodyBytes *int32 `json:"attack_logged_req_body_bytes,omitempty"` + AttackLoggedReqBodyBytes *int64 `json:"attack_logged_req_body_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was blocked. - AttackBlockedReqHeaderBytes *int32 `json:"attack_blocked_req_header_bytes,omitempty"` + AttackBlockedReqHeaderBytes *int64 `json:"attack_blocked_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was blocked. - AttackBlockedReqBodyBytes *int32 `json:"attack_blocked_req_body_bytes,omitempty"` + AttackBlockedReqBodyBytes *int64 `json:"attack_blocked_req_body_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was passed. - AttackPassedReqHeaderBytes *int32 `json:"attack_passed_req_header_bytes,omitempty"` + AttackPassedReqHeaderBytes *int64 `json:"attack_passed_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was passed. - AttackPassedReqBodyBytes *int32 `json:"attack_passed_req_body_bytes,omitempty"` + AttackPassedReqBodyBytes *int64 `json:"attack_passed_req_body_bytes,omitempty"` // Total header bytes delivered via a shield. - ShieldRespHeaderBytes *int32 `json:"shield_resp_header_bytes,omitempty"` + ShieldRespHeaderBytes *int64 `json:"shield_resp_header_bytes,omitempty"` // Total body bytes delivered via a shield. - ShieldRespBodyBytes *int32 `json:"shield_resp_body_bytes,omitempty"` + ShieldRespBodyBytes *int64 `json:"shield_resp_body_bytes,omitempty"` // Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpRespHeaderBytes *int32 `json:"otfp_resp_header_bytes,omitempty"` + OtfpRespHeaderBytes *int64 `json:"otfp_resp_header_bytes,omitempty"` // Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpRespBodyBytes *int32 `json:"otfp_resp_body_bytes,omitempty"` + OtfpRespBodyBytes *int64 `json:"otfp_resp_body_bytes,omitempty"` // Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpShieldRespHeaderBytes *int32 `json:"otfp_shield_resp_header_bytes,omitempty"` + OtfpShieldRespHeaderBytes *int64 `json:"otfp_shield_resp_header_bytes,omitempty"` // Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpShieldRespBodyBytes *int32 `json:"otfp_shield_resp_body_bytes,omitempty"` + OtfpShieldRespBodyBytes *int64 `json:"otfp_shield_resp_body_bytes,omitempty"` // Total amount of time spent delivering a response via a shield from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). OtfpShieldTime *float32 `json:"otfp_shield_time,omitempty"` // Total amount of time spent delivering a response from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). OtfpDeliverTime *float32 `json:"otfp_deliver_time,omitempty"` // Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. - ImgoptoRespHeaderBytes *int32 `json:"imgopto_resp_header_bytes,omitempty"` + ImgoptoRespHeaderBytes *int64 `json:"imgopto_resp_header_bytes,omitempty"` // Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. - ImgoptoRespBodyBytes *int32 `json:"imgopto_resp_body_bytes,omitempty"` + ImgoptoRespBodyBytes *int64 `json:"imgopto_resp_body_bytes,omitempty"` // Total header bytes delivered via a shield from the Fastly Image Optimizer service. - ImgoptoShieldRespHeaderBytes *int32 `json:"imgopto_shield_resp_header_bytes,omitempty"` + ImgoptoShieldRespHeaderBytes *int64 `json:"imgopto_shield_resp_header_bytes,omitempty"` // Total body bytes delivered via a shield from the Fastly Image Optimizer service. - ImgoptoShieldRespBodyBytes *int32 `json:"imgopto_shield_resp_body_bytes,omitempty"` + ImgoptoShieldRespBodyBytes *int64 `json:"imgopto_shield_resp_body_bytes,omitempty"` // Number of \"Informational\" category status codes delivered. - Status1xx *int32 `json:"status_1xx,omitempty"` + Status1xx *int64 `json:"status_1xx,omitempty"` // Number of \"Success\" status codes delivered. - Status2xx *int32 `json:"status_2xx,omitempty"` + Status2xx *int64 `json:"status_2xx,omitempty"` // Number of \"Redirection\" codes delivered. - Status3xx *int32 `json:"status_3xx,omitempty"` + Status3xx *int64 `json:"status_3xx,omitempty"` // Number of \"Client Error\" codes delivered. - Status4xx *int32 `json:"status_4xx,omitempty"` + Status4xx *int64 `json:"status_4xx,omitempty"` // Number of \"Server Error\" codes delivered. - Status5xx *int32 `json:"status_5xx,omitempty"` + Status5xx *int64 `json:"status_5xx,omitempty"` // Number of responses sent with status code 200 (Success). - Status200 *int32 `json:"status_200,omitempty"` + Status200 *int64 `json:"status_200,omitempty"` // Number of responses sent with status code 204 (No Content). - Status204 *int32 `json:"status_204,omitempty"` + Status204 *int64 `json:"status_204,omitempty"` // Number of responses sent with status code 206 (Partial Content). - Status206 *int32 `json:"status_206,omitempty"` + Status206 *int64 `json:"status_206,omitempty"` // Number of responses sent with status code 301 (Moved Permanently). - Status301 *int32 `json:"status_301,omitempty"` + Status301 *int64 `json:"status_301,omitempty"` // Number of responses sent with status code 302 (Found). - Status302 *int32 `json:"status_302,omitempty"` + Status302 *int64 `json:"status_302,omitempty"` // Number of responses sent with status code 304 (Not Modified). - Status304 *int32 `json:"status_304,omitempty"` + Status304 *int64 `json:"status_304,omitempty"` // Number of responses sent with status code 400 (Bad Request). - Status400 *int32 `json:"status_400,omitempty"` + Status400 *int64 `json:"status_400,omitempty"` // Number of responses sent with status code 401 (Unauthorized). - Status401 *int32 `json:"status_401,omitempty"` + Status401 *int64 `json:"status_401,omitempty"` // Number of responses sent with status code 403 (Forbidden). - Status403 *int32 `json:"status_403,omitempty"` + Status403 *int64 `json:"status_403,omitempty"` // Number of responses sent with status code 404 (Not Found). - Status404 *int32 `json:"status_404,omitempty"` + Status404 *int64 `json:"status_404,omitempty"` // Number of responses sent with status code 406 (Not Acceptable). - Status406 *int32 `json:"status_406,omitempty"` + Status406 *int64 `json:"status_406,omitempty"` // Number of responses sent with status code 416 (Range Not Satisfiable). - Status416 *int32 `json:"status_416,omitempty"` + Status416 *int64 `json:"status_416,omitempty"` // Number of responses sent with status code 429 (Too Many Requests). - Status429 *int32 `json:"status_429,omitempty"` + Status429 *int64 `json:"status_429,omitempty"` // Number of responses sent with status code 500 (Internal Server Error). - Status500 *int32 `json:"status_500,omitempty"` + Status500 *int64 `json:"status_500,omitempty"` // Number of responses sent with status code 501 (Not Implemented). - Status501 *int32 `json:"status_501,omitempty"` + Status501 *int64 `json:"status_501,omitempty"` // Number of responses sent with status code 502 (Bad Gateway). - Status502 *int32 `json:"status_502,omitempty"` + Status502 *int64 `json:"status_502,omitempty"` // Number of responses sent with status code 503 (Service Unavailable). - Status503 *int32 `json:"status_503,omitempty"` + Status503 *int64 `json:"status_503,omitempty"` // Number of responses sent with status code 504 (Gateway Timeout). - Status504 *int32 `json:"status_504,omitempty"` + Status504 *int64 `json:"status_504,omitempty"` // Number of responses sent with status code 505 (HTTP Version Not Supported). - Status505 *int32 `json:"status_505,omitempty"` + Status505 *int64 `json:"status_505,omitempty"` // Number of requests that were designated uncachable. - Uncacheable *int32 `json:"uncacheable,omitempty"` + Uncacheable *int64 `json:"uncacheable,omitempty"` // Total amount of time spent processing cache passes (in seconds). PassTime *float32 `json:"pass_time,omitempty"` // Number of requests that were received over TLS. - TLS *int32 `json:"tls,omitempty"` + TLS *int64 `json:"tls,omitempty"` // Number of requests received over TLS 1.0. - TLSV10 *int32 `json:"tls_v10,omitempty"` + TLSV10 *int64 `json:"tls_v10,omitempty"` // Number of requests received over TLS 1.1. - TLSV11 *int32 `json:"tls_v11,omitempty"` + TLSV11 *int64 `json:"tls_v11,omitempty"` // Number of requests received over TLS 1.2. - TLSV12 *int32 `json:"tls_v12,omitempty"` + TLSV12 *int64 `json:"tls_v12,omitempty"` // Number of requests received over TLS 1.3. - TLSV13 *int32 `json:"tls_v13,omitempty"` + TLSV13 *int64 `json:"tls_v13,omitempty"` // Number of objects served that were under 1KB in size. - ObjectSize1k *int32 `json:"object_size_1k,omitempty"` + ObjectSize1k *int64 `json:"object_size_1k,omitempty"` // Number of objects served that were between 1KB and 10KB in size. - ObjectSize10k *int32 `json:"object_size_10k,omitempty"` + ObjectSize10k *int64 `json:"object_size_10k,omitempty"` // Number of objects served that were between 10KB and 100KB in size. - ObjectSize100k *int32 `json:"object_size_100k,omitempty"` + ObjectSize100k *int64 `json:"object_size_100k,omitempty"` // Number of objects served that were between 100KB and 1MB in size. - ObjectSize1m *int32 `json:"object_size_1m,omitempty"` + ObjectSize1m *int64 `json:"object_size_1m,omitempty"` // Number of objects served that were between 1MB and 10MB in size. - ObjectSize10m *int32 `json:"object_size_10m,omitempty"` + ObjectSize10m *int64 `json:"object_size_10m,omitempty"` // Number of objects served that were between 10MB and 100MB in size. - ObjectSize100m *int32 `json:"object_size_100m,omitempty"` + ObjectSize100m *int64 `json:"object_size_100m,omitempty"` // Number of objects served that were between 100MB and 1GB in size. - ObjectSize1g *int32 `json:"object_size_1g,omitempty"` + ObjectSize1g *int64 `json:"object_size_1g,omitempty"` // Number of objects served that were larger than 1GB in size. - ObjectSizeOther *int32 `json:"object_size_other,omitempty"` + ObjectSizeOther *int64 `json:"object_size_other,omitempty"` // Time spent inside the `vcl_recv` Varnish subroutine (in nanoseconds). RecvSubTime *float32 `json:"recv_sub_time,omitempty"` // Number of executions of the `vcl_recv` Varnish subroutine. - RecvSubCount *int32 `json:"recv_sub_count,omitempty"` + RecvSubCount *int64 `json:"recv_sub_count,omitempty"` // Time spent inside the `vcl_hash` Varnish subroutine (in nanoseconds). HashSubTime *float32 `json:"hash_sub_time,omitempty"` // Number of executions of the `vcl_hash` Varnish subroutine. - HashSubCount *int32 `json:"hash_sub_count,omitempty"` + HashSubCount *int64 `json:"hash_sub_count,omitempty"` // Time spent inside the `vcl_miss` Varnish subroutine (in nanoseconds). MissSubTime *float32 `json:"miss_sub_time,omitempty"` // Number of executions of the `vcl_miss` Varnish subroutine. - MissSubCount *int32 `json:"miss_sub_count,omitempty"` + MissSubCount *int64 `json:"miss_sub_count,omitempty"` // Time spent inside the `vcl_fetch` Varnish subroutine (in nanoseconds). FetchSubTime *float32 `json:"fetch_sub_time,omitempty"` // Number of executions of the `vcl_fetch` Varnish subroutine. - FetchSubCount *int32 `json:"fetch_sub_count,omitempty"` + FetchSubCount *int64 `json:"fetch_sub_count,omitempty"` // Time spent inside the `vcl_pass` Varnish subroutine (in nanoseconds). PassSubTime *float32 `json:"pass_sub_time,omitempty"` // Number of executions of the `vcl_pass` Varnish subroutine. - PassSubCount *int32 `json:"pass_sub_count,omitempty"` + PassSubCount *int64 `json:"pass_sub_count,omitempty"` // Time spent inside the `vcl_pipe` Varnish subroutine (in nanoseconds). PipeSubTime *float32 `json:"pipe_sub_time,omitempty"` // Number of executions of the `vcl_pipe` Varnish subroutine. - PipeSubCount *int32 `json:"pipe_sub_count,omitempty"` + PipeSubCount *int64 `json:"pipe_sub_count,omitempty"` // Time spent inside the `vcl_deliver` Varnish subroutine (in nanoseconds). DeliverSubTime *float32 `json:"deliver_sub_time,omitempty"` // Number of executions of the `vcl_deliver` Varnish subroutine. - DeliverSubCount *int32 `json:"deliver_sub_count,omitempty"` + DeliverSubCount *int64 `json:"deliver_sub_count,omitempty"` // Time spent inside the `vcl_error` Varnish subroutine (in nanoseconds). ErrorSubTime *float32 `json:"error_sub_time,omitempty"` // Number of executions of the `vcl_error` Varnish subroutine. - ErrorSubCount *int32 `json:"error_sub_count,omitempty"` + ErrorSubCount *int64 `json:"error_sub_count,omitempty"` // Time spent inside the `vcl_hit` Varnish subroutine (in nanoseconds). HitSubTime *float32 `json:"hit_sub_time,omitempty"` // Number of executions of the `vcl_hit` Varnish subroutine. - HitSubCount *int32 `json:"hit_sub_count,omitempty"` + HitSubCount *int64 `json:"hit_sub_count,omitempty"` // Time spent inside the `vcl_prehash` Varnish subroutine (in nanoseconds). PrehashSubTime *float32 `json:"prehash_sub_time,omitempty"` // Number of executions of the `vcl_prehash` Varnish subroutine. - PrehashSubCount *int32 `json:"prehash_sub_count,omitempty"` + PrehashSubCount *int64 `json:"prehash_sub_count,omitempty"` // Time spent inside the `vcl_predeliver` Varnish subroutine (in nanoseconds). PredeliverSubTime *float32 `json:"predeliver_sub_time,omitempty"` // Number of executions of the `vcl_predeliver` Varnish subroutine. - PredeliverSubCount *int32 `json:"predeliver_sub_count,omitempty"` + PredeliverSubCount *int64 `json:"predeliver_sub_count,omitempty"` // Total body bytes delivered for cache hits. - HitRespBodyBytes *int32 `json:"hit_resp_body_bytes,omitempty"` + HitRespBodyBytes *int64 `json:"hit_resp_body_bytes,omitempty"` // Total body bytes delivered for cache misses. - MissRespBodyBytes *int32 `json:"miss_resp_body_bytes,omitempty"` + MissRespBodyBytes *int64 `json:"miss_resp_body_bytes,omitempty"` // Total body bytes delivered for cache passes. - PassRespBodyBytes *int32 `json:"pass_resp_body_bytes,omitempty"` + PassRespBodyBytes *int64 `json:"pass_resp_body_bytes,omitempty"` // Total header bytes received by the Compute platform. - ComputeReqHeaderBytes *int32 `json:"compute_req_header_bytes,omitempty"` + ComputeReqHeaderBytes *int64 `json:"compute_req_header_bytes,omitempty"` // Total body bytes received by the Compute platform. - ComputeReqBodyBytes *int32 `json:"compute_req_body_bytes,omitempty"` + ComputeReqBodyBytes *int64 `json:"compute_req_body_bytes,omitempty"` // Total header bytes sent from Compute to end user. - ComputeRespHeaderBytes *int32 `json:"compute_resp_header_bytes,omitempty"` + ComputeRespHeaderBytes *int64 `json:"compute_resp_header_bytes,omitempty"` // Total body bytes sent from Compute to end user. - ComputeRespBodyBytes *int32 `json:"compute_resp_body_bytes,omitempty"` + ComputeRespBodyBytes *int64 `json:"compute_resp_body_bytes,omitempty"` // Number of video responses that came from the Fastly Image Optimizer service. - Imgvideo *int32 `json:"imgvideo,omitempty"` + Imgvideo *int64 `json:"imgvideo,omitempty"` // Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. - ImgvideoFrames *int32 `json:"imgvideo_frames,omitempty"` + ImgvideoFrames *int64 `json:"imgvideo_frames,omitempty"` // Total header bytes of video delivered from the Fastly Image Optimizer service. - ImgvideoRespHeaderBytes *int32 `json:"imgvideo_resp_header_bytes,omitempty"` + ImgvideoRespHeaderBytes *int64 `json:"imgvideo_resp_header_bytes,omitempty"` // Total body bytes of video delivered from the Fastly Image Optimizer service. - ImgvideoRespBodyBytes *int32 `json:"imgvideo_resp_body_bytes,omitempty"` + ImgvideoRespBodyBytes *int64 `json:"imgvideo_resp_body_bytes,omitempty"` // Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. - ImgvideoShield *int32 `json:"imgvideo_shield,omitempty"` + ImgvideoShield *int64 `json:"imgvideo_shield,omitempty"` // Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. - ImgvideoShieldFrames *int32 `json:"imgvideo_shield_frames,omitempty"` + ImgvideoShieldFrames *int64 `json:"imgvideo_shield_frames,omitempty"` // Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. - ImgvideoShieldRespHeaderBytes *int32 `json:"imgvideo_shield_resp_header_bytes,omitempty"` + ImgvideoShieldRespHeaderBytes *int64 `json:"imgvideo_shield_resp_header_bytes,omitempty"` // Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. - ImgvideoShieldRespBodyBytes *int32 `json:"imgvideo_shield_resp_body_bytes,omitempty"` + ImgvideoShieldRespBodyBytes *int64 `json:"imgvideo_shield_resp_body_bytes,omitempty"` // Total log bytes sent. - LogBytes *int32 `json:"log_bytes,omitempty"` + LogBytes *int64 `json:"log_bytes,omitempty"` // Number of requests sent by end users to Fastly. - EdgeRequests *int32 `json:"edge_requests,omitempty"` + EdgeRequests *int64 `json:"edge_requests,omitempty"` // Total header bytes delivered from Fastly to the end user. - EdgeRespHeaderBytes *int32 `json:"edge_resp_header_bytes,omitempty"` + EdgeRespHeaderBytes *int64 `json:"edge_resp_header_bytes,omitempty"` // Total body bytes delivered from Fastly to the end user. - EdgeRespBodyBytes *int32 `json:"edge_resp_body_bytes,omitempty"` + EdgeRespBodyBytes *int64 `json:"edge_resp_body_bytes,omitempty"` // Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. - OriginRevalidations *int32 `json:"origin_revalidations,omitempty"` + OriginRevalidations *int64 `json:"origin_revalidations,omitempty"` // Number of requests sent to origin. - OriginFetches *int32 `json:"origin_fetches,omitempty"` + OriginFetches *int64 `json:"origin_fetches,omitempty"` // Total request header bytes sent to origin. - OriginFetchHeaderBytes *int32 `json:"origin_fetch_header_bytes,omitempty"` + OriginFetchHeaderBytes *int64 `json:"origin_fetch_header_bytes,omitempty"` // Total request body bytes sent to origin. - OriginFetchBodyBytes *int32 `json:"origin_fetch_body_bytes,omitempty"` + OriginFetchBodyBytes *int64 `json:"origin_fetch_body_bytes,omitempty"` // Total header bytes received from origin. - OriginFetchRespHeaderBytes *int32 `json:"origin_fetch_resp_header_bytes,omitempty"` + OriginFetchRespHeaderBytes *int64 `json:"origin_fetch_resp_header_bytes,omitempty"` // Total body bytes received from origin. - OriginFetchRespBodyBytes *int32 `json:"origin_fetch_resp_body_bytes,omitempty"` + OriginFetchRespBodyBytes *int64 `json:"origin_fetch_resp_body_bytes,omitempty"` // Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. - ShieldRevalidations *int32 `json:"shield_revalidations,omitempty"` + ShieldRevalidations *int64 `json:"shield_revalidations,omitempty"` // Number of requests made from one Fastly POP to another, as part of shielding. - ShieldFetches *int32 `json:"shield_fetches,omitempty"` + ShieldFetches *int64 `json:"shield_fetches,omitempty"` // Total request header bytes sent to a shield. - ShieldFetchHeaderBytes *int32 `json:"shield_fetch_header_bytes,omitempty"` + ShieldFetchHeaderBytes *int64 `json:"shield_fetch_header_bytes,omitempty"` // Total request body bytes sent to a shield. - ShieldFetchBodyBytes *int32 `json:"shield_fetch_body_bytes,omitempty"` + ShieldFetchBodyBytes *int64 `json:"shield_fetch_body_bytes,omitempty"` // Total response header bytes sent from a shield to the edge. - ShieldFetchRespHeaderBytes *int32 `json:"shield_fetch_resp_header_bytes,omitempty"` + ShieldFetchRespHeaderBytes *int64 `json:"shield_fetch_resp_header_bytes,omitempty"` // Total response body bytes sent from a shield to the edge. - ShieldFetchRespBodyBytes *int32 `json:"shield_fetch_resp_body_bytes,omitempty"` + ShieldFetchRespBodyBytes *int64 `json:"shield_fetch_resp_body_bytes,omitempty"` // Number of `Range` requests to origin for segments of resources when using segmented caching. - SegblockOriginFetches *int32 `json:"segblock_origin_fetches,omitempty"` + SegblockOriginFetches *int64 `json:"segblock_origin_fetches,omitempty"` // Number of `Range` requests to a shield for segments of resources when using segmented caching. - SegblockShieldFetches *int32 `json:"segblock_shield_fetches,omitempty"` + SegblockShieldFetches *int64 `json:"segblock_shield_fetches,omitempty"` // Number of \"Informational\" category status codes delivered by the Compute platform. - ComputeRespStatus1xx *int32 `json:"compute_resp_status_1xx,omitempty"` + ComputeRespStatus1xx *int64 `json:"compute_resp_status_1xx,omitempty"` // Number of \"Success\" category status codes delivered by the Compute platform. - ComputeRespStatus2xx *int32 `json:"compute_resp_status_2xx,omitempty"` + ComputeRespStatus2xx *int64 `json:"compute_resp_status_2xx,omitempty"` // Number of \"Redirection\" category status codes delivered by the Compute platform. - ComputeRespStatus3xx *int32 `json:"compute_resp_status_3xx,omitempty"` + ComputeRespStatus3xx *int64 `json:"compute_resp_status_3xx,omitempty"` // Number of \"Client Error\" category status codes delivered by the Compute platform. - ComputeRespStatus4xx *int32 `json:"compute_resp_status_4xx,omitempty"` + ComputeRespStatus4xx *int64 `json:"compute_resp_status_4xx,omitempty"` // Number of \"Server Error\" category status codes delivered by the Compute platform. - ComputeRespStatus5xx *int32 `json:"compute_resp_status_5xx,omitempty"` + ComputeRespStatus5xx *int64 `json:"compute_resp_status_5xx,omitempty"` // Number of requests sent by end users to Fastly that resulted in a hit at the edge. - EdgeHitRequests *int32 `json:"edge_hit_requests,omitempty"` + EdgeHitRequests *int64 `json:"edge_hit_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a miss at the edge. - EdgeMissRequests *int32 `json:"edge_miss_requests,omitempty"` + EdgeMissRequests *int64 `json:"edge_miss_requests,omitempty"` // Total header bytes sent to backends (origins) by the Compute platform. - ComputeBereqHeaderBytes *int32 `json:"compute_bereq_header_bytes,omitempty"` + ComputeBereqHeaderBytes *int64 `json:"compute_bereq_header_bytes,omitempty"` // Total body bytes sent to backends (origins) by the Compute platform. - ComputeBereqBodyBytes *int32 `json:"compute_bereq_body_bytes,omitempty"` + ComputeBereqBodyBytes *int64 `json:"compute_bereq_body_bytes,omitempty"` // Total header bytes received from backends (origins) by the Compute platform. - ComputeBerespHeaderBytes *int32 `json:"compute_beresp_header_bytes,omitempty"` + ComputeBerespHeaderBytes *int64 `json:"compute_beresp_header_bytes,omitempty"` // Total body bytes received from backends (origins) by the Compute platform. - ComputeBerespBodyBytes *int32 `json:"compute_beresp_body_bytes,omitempty"` + ComputeBerespBodyBytes *int64 `json:"compute_beresp_body_bytes,omitempty"` // The total number of completed requests made to backends (origins) that returned cacheable content. - OriginCacheFetches *int32 `json:"origin_cache_fetches,omitempty"` + OriginCacheFetches *int64 `json:"origin_cache_fetches,omitempty"` // The total number of completed requests made to shields that returned cacheable content. - ShieldCacheFetches *int32 `json:"shield_cache_fetches,omitempty"` + ShieldCacheFetches *int64 `json:"shield_cache_fetches,omitempty"` // Number of backend requests started. - ComputeBereqs *int32 `json:"compute_bereqs,omitempty"` + ComputeBereqs *int64 `json:"compute_bereqs,omitempty"` // Number of backend request errors, including timeouts. - ComputeBereqErrors *int32 `json:"compute_bereq_errors,omitempty"` + ComputeBereqErrors *int64 `json:"compute_bereq_errors,omitempty"` // Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. - ComputeResourceLimitExceeded *int32 `json:"compute_resource_limit_exceeded,omitempty"` + ComputeResourceLimitExceeded *int64 `json:"compute_resource_limit_exceeded,omitempty"` // Number of times a guest exceeded its heap limit. - ComputeHeapLimitExceeded *int32 `json:"compute_heap_limit_exceeded,omitempty"` + ComputeHeapLimitExceeded *int64 `json:"compute_heap_limit_exceeded,omitempty"` // Number of times a guest exceeded its stack limit. - ComputeStackLimitExceeded *int32 `json:"compute_stack_limit_exceeded,omitempty"` + ComputeStackLimitExceeded *int64 `json:"compute_stack_limit_exceeded,omitempty"` // Number of times a guest exceeded its globals limit. - ComputeGlobalsLimitExceeded *int32 `json:"compute_globals_limit_exceeded,omitempty"` + ComputeGlobalsLimitExceeded *int64 `json:"compute_globals_limit_exceeded,omitempty"` // Number of times a service experienced a guest code error. - ComputeGuestErrors *int32 `json:"compute_guest_errors,omitempty"` + ComputeGuestErrors *int64 `json:"compute_guest_errors,omitempty"` // Number of times a service experienced a guest runtime error. - ComputeRuntimeErrors *int32 `json:"compute_runtime_errors,omitempty"` + ComputeRuntimeErrors *int64 `json:"compute_runtime_errors,omitempty"` // Body bytes delivered for edge hits. - EdgeHitRespBodyBytes *int32 `json:"edge_hit_resp_body_bytes,omitempty"` + EdgeHitRespBodyBytes *int64 `json:"edge_hit_resp_body_bytes,omitempty"` // Header bytes delivered for edge hits. - EdgeHitRespHeaderBytes *int32 `json:"edge_hit_resp_header_bytes,omitempty"` + EdgeHitRespHeaderBytes *int64 `json:"edge_hit_resp_header_bytes,omitempty"` // Body bytes delivered for edge misses. - EdgeMissRespBodyBytes *int32 `json:"edge_miss_resp_body_bytes,omitempty"` + EdgeMissRespBodyBytes *int64 `json:"edge_miss_resp_body_bytes,omitempty"` // Header bytes delivered for edge misses. - EdgeMissRespHeaderBytes *int32 `json:"edge_miss_resp_header_bytes,omitempty"` + EdgeMissRespHeaderBytes *int64 `json:"edge_miss_resp_header_bytes,omitempty"` // Body bytes received from origin for cacheable content. - OriginCacheFetchRespBodyBytes *int32 `json:"origin_cache_fetch_resp_body_bytes,omitempty"` + OriginCacheFetchRespBodyBytes *int64 `json:"origin_cache_fetch_resp_body_bytes,omitempty"` // Header bytes received from an origin for cacheable content. - OriginCacheFetchRespHeaderBytes *int32 `json:"origin_cache_fetch_resp_header_bytes,omitempty"` + OriginCacheFetchRespHeaderBytes *int64 `json:"origin_cache_fetch_resp_header_bytes,omitempty"` // Number of requests that resulted in a hit at a shield. - ShieldHitRequests *int32 `json:"shield_hit_requests,omitempty"` + ShieldHitRequests *int64 `json:"shield_hit_requests,omitempty"` // Number of requests that resulted in a miss at a shield. - ShieldMissRequests *int32 `json:"shield_miss_requests,omitempty"` + ShieldMissRequests *int64 `json:"shield_miss_requests,omitempty"` // Header bytes delivered for shield hits. - ShieldHitRespHeaderBytes *int32 `json:"shield_hit_resp_header_bytes,omitempty"` + ShieldHitRespHeaderBytes *int64 `json:"shield_hit_resp_header_bytes,omitempty"` // Body bytes delivered for shield hits. - ShieldHitRespBodyBytes *int32 `json:"shield_hit_resp_body_bytes,omitempty"` + ShieldHitRespBodyBytes *int64 `json:"shield_hit_resp_body_bytes,omitempty"` // Header bytes delivered for shield misses. - ShieldMissRespHeaderBytes *int32 `json:"shield_miss_resp_header_bytes,omitempty"` + ShieldMissRespHeaderBytes *int64 `json:"shield_miss_resp_header_bytes,omitempty"` // Body bytes delivered for shield misses. - ShieldMissRespBodyBytes *int32 `json:"shield_miss_resp_body_bytes,omitempty"` + ShieldMissRespBodyBytes *int64 `json:"shield_miss_resp_body_bytes,omitempty"` // Total header bytes received from end users over passthrough WebSocket connections. - WebsocketReqHeaderBytes *int32 `json:"websocket_req_header_bytes,omitempty"` + WebsocketReqHeaderBytes *int64 `json:"websocket_req_header_bytes,omitempty"` // Total message content bytes received from end users over passthrough WebSocket connections. - WebsocketReqBodyBytes *int32 `json:"websocket_req_body_bytes,omitempty"` + WebsocketReqBodyBytes *int64 `json:"websocket_req_body_bytes,omitempty"` // Total header bytes sent to end users over passthrough WebSocket connections. - WebsocketRespHeaderBytes *int32 `json:"websocket_resp_header_bytes,omitempty"` + WebsocketRespHeaderBytes *int64 `json:"websocket_resp_header_bytes,omitempty"` // Total header bytes sent to backends over passthrough WebSocket connections. - WebsocketBereqHeaderBytes *int32 `json:"websocket_bereq_header_bytes,omitempty"` + WebsocketBereqHeaderBytes *int64 `json:"websocket_bereq_header_bytes,omitempty"` // Total message content bytes sent to backends over passthrough WebSocket connections. - WebsocketBereqBodyBytes *int32 `json:"websocket_bereq_body_bytes,omitempty"` + WebsocketBereqBodyBytes *int64 `json:"websocket_bereq_body_bytes,omitempty"` // Total header bytes received from backends over passthrough WebSocket connections. - WebsocketBerespHeaderBytes *int32 `json:"websocket_beresp_header_bytes,omitempty"` + WebsocketBerespHeaderBytes *int64 `json:"websocket_beresp_header_bytes,omitempty"` // Total message content bytes received from backends over passthrough WebSocket connections. - WebsocketBerespBodyBytes *int32 `json:"websocket_beresp_body_bytes,omitempty"` + WebsocketBerespBodyBytes *int64 `json:"websocket_beresp_body_bytes,omitempty"` // Total duration of passthrough WebSocket connections with end users. - WebsocketConnTimeMs *int32 `json:"websocket_conn_time_ms,omitempty"` + WebsocketConnTimeMs *int64 `json:"websocket_conn_time_ms,omitempty"` // Total message content bytes sent to end users over passthrough WebSocket connections. - WebsocketRespBodyBytes *int32 `json:"websocket_resp_body_bytes,omitempty"` + WebsocketRespBodyBytes *int64 `json:"websocket_resp_body_bytes,omitempty"` // Total published messages received from the publish API endpoint. - FanoutRecvPublishes *int32 `json:"fanout_recv_publishes,omitempty"` + FanoutRecvPublishes *int64 `json:"fanout_recv_publishes,omitempty"` // Total published messages sent to end users. - FanoutSendPublishes *int32 `json:"fanout_send_publishes,omitempty"` + FanoutSendPublishes *int64 `json:"fanout_send_publishes,omitempty"` // The total number of class a operations for the KV store. - KvStoreClassAOperations *int32 `json:"kv_store_class_a_operations,omitempty"` + KvStoreClassAOperations *int64 `json:"kv_store_class_a_operations,omitempty"` // The total number of class b operations for the KV store. - KvStoreClassBOperations *int32 `json:"kv_store_class_b_operations,omitempty"` + KvStoreClassBOperations *int64 `json:"kv_store_class_b_operations,omitempty"` // Use kv_store_class_a_operations. // Deprecated - ObjectStoreClassAOperations *int32 `json:"object_store_class_a_operations,omitempty"` + ObjectStoreClassAOperations *int64 `json:"object_store_class_a_operations,omitempty"` // Use kv_store_class_b_operations. // Deprecated - ObjectStoreClassBOperations *int32 `json:"object_store_class_b_operations,omitempty"` + ObjectStoreClassBOperations *int64 `json:"object_store_class_b_operations,omitempty"` // Total header bytes received from end users over Fanout connections. - FanoutReqHeaderBytes *int32 `json:"fanout_req_header_bytes,omitempty"` + FanoutReqHeaderBytes *int64 `json:"fanout_req_header_bytes,omitempty"` // Total body or message content bytes received from end users over Fanout connections. - FanoutReqBodyBytes *int32 `json:"fanout_req_body_bytes,omitempty"` + FanoutReqBodyBytes *int64 `json:"fanout_req_body_bytes,omitempty"` // Total header bytes sent to end users over Fanout connections. - FanoutRespHeaderBytes *int32 `json:"fanout_resp_header_bytes,omitempty"` + FanoutRespHeaderBytes *int64 `json:"fanout_resp_header_bytes,omitempty"` // Total body or message content bytes sent to end users over Fanout connections, excluding published message content. - FanoutRespBodyBytes *int32 `json:"fanout_resp_body_bytes,omitempty"` + FanoutRespBodyBytes *int64 `json:"fanout_resp_body_bytes,omitempty"` // Total header bytes sent to backends over Fanout connections. - FanoutBereqHeaderBytes *int32 `json:"fanout_bereq_header_bytes,omitempty"` + FanoutBereqHeaderBytes *int64 `json:"fanout_bereq_header_bytes,omitempty"` // Total body or message content bytes sent to backends over Fanout connections. - FanoutBereqBodyBytes *int32 `json:"fanout_bereq_body_bytes,omitempty"` + FanoutBereqBodyBytes *int64 `json:"fanout_bereq_body_bytes,omitempty"` // Total header bytes received from backends over Fanout connections. - FanoutBerespHeaderBytes *int32 `json:"fanout_beresp_header_bytes,omitempty"` + FanoutBerespHeaderBytes *int64 `json:"fanout_beresp_header_bytes,omitempty"` // Total body or message content bytes received from backends over Fanout connections. - FanoutBerespBodyBytes *int32 `json:"fanout_beresp_body_bytes,omitempty"` + FanoutBerespBodyBytes *int64 `json:"fanout_beresp_body_bytes,omitempty"` // Total duration of Fanout connections with end users. - FanoutConnTimeMs *int32 `json:"fanout_conn_time_ms,omitempty"` + FanoutConnTimeMs *int64 `json:"fanout_conn_time_ms,omitempty"` // For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. - DdosActionLimitStreamsConnections *int32 `json:"ddos_action_limit_streams_connections,omitempty"` + DdosActionLimitStreamsConnections *int64 `json:"ddos_action_limit_streams_connections,omitempty"` // For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. - DdosActionLimitStreamsRequests *int32 `json:"ddos_action_limit_streams_requests,omitempty"` + DdosActionLimitStreamsRequests *int64 `json:"ddos_action_limit_streams_requests,omitempty"` // The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. - DdosActionTarpitAccept *int32 `json:"ddos_action_tarpit_accept,omitempty"` + DdosActionTarpitAccept *int64 `json:"ddos_action_tarpit_accept,omitempty"` // The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. - DdosActionTarpit *int32 `json:"ddos_action_tarpit,omitempty"` + DdosActionTarpit *int64 `json:"ddos_action_tarpit,omitempty"` // The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. - DdosActionClose *int32 `json:"ddos_action_close,omitempty"` + DdosActionClose *int64 `json:"ddos_action_close,omitempty"` // The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). - DdosActionBlackhole *int32 `json:"ddos_action_blackhole,omitempty"` + DdosActionBlackhole *int64 `json:"ddos_action_blackhole,omitempty"` // The number of challenge-start tokens created. - BotChallengeStarts *int32 `json:"bot_challenge_starts,omitempty"` + BotChallengeStarts *int64 `json:"bot_challenge_starts,omitempty"` // The number of challenge-complete tokens that passed validation. - BotChallengeCompleteTokensPassed *int32 `json:"bot_challenge_complete_tokens_passed,omitempty"` + BotChallengeCompleteTokensPassed *int64 `json:"bot_challenge_complete_tokens_passed,omitempty"` // The number of challenge-complete tokens that failed validation. - BotChallengeCompleteTokensFailed *int32 `json:"bot_challenge_complete_tokens_failed,omitempty"` + BotChallengeCompleteTokensFailed *int64 `json:"bot_challenge_complete_tokens_failed,omitempty"` // The number of challenge-complete tokens checked. - BotChallengeCompleteTokensChecked *int32 `json:"bot_challenge_complete_tokens_checked,omitempty"` + BotChallengeCompleteTokensChecked *int64 `json:"bot_challenge_complete_tokens_checked,omitempty"` // The number of challenge-complete tokens not checked because the feature was disabled. - BotChallengeCompleteTokensDisabled *int32 `json:"bot_challenge_complete_tokens_disabled,omitempty"` + BotChallengeCompleteTokensDisabled *int64 `json:"bot_challenge_complete_tokens_disabled,omitempty"` // The number of challenges issued. For example, the issuance of a CAPTCHA challenge. - BotChallengesIssued *int32 `json:"bot_challenges_issued,omitempty"` + BotChallengesIssued *int64 `json:"bot_challenges_issued,omitempty"` // The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. - BotChallengesSucceeded *int32 `json:"bot_challenges_succeeded,omitempty"` + BotChallengesSucceeded *int64 `json:"bot_challenges_succeeded,omitempty"` // The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. - BotChallengesFailed *int32 `json:"bot_challenges_failed,omitempty"` + BotChallengesFailed *int64 `json:"bot_challenges_failed,omitempty"` // The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. - BotChallengeCompleteTokensIssued *int32 `json:"bot_challenge_complete_tokens_issued,omitempty"` + BotChallengeCompleteTokensIssued *int64 `json:"bot_challenge_complete_tokens_issued,omitempty"` // The number of times the downgrade action was taken. The downgrade action restricts the client to http1. - DdosActionDowngrade *int32 `json:"ddos_action_downgrade,omitempty"` + DdosActionDowngrade *int64 `json:"ddos_action_downgrade,omitempty"` // The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. - DdosActionDowngradedConnections *int32 `json:"ddos_action_downgraded_connections,omitempty"` + DdosActionDowngradedConnections *int64 `json:"ddos_action_downgraded_connections,omitempty"` // Number of cache hits for a VCL service. - AllHitRequests *int32 `json:"all_hit_requests,omitempty"` + AllHitRequests *int64 `json:"all_hit_requests,omitempty"` // Number of cache misses for a VCL service. - AllMissRequests *int32 `json:"all_miss_requests,omitempty"` + AllMissRequests *int64 `json:"all_miss_requests,omitempty"` // Number of requests that passed through the CDN without being cached for a VCL service. - AllPassRequests *int32 `json:"all_pass_requests,omitempty"` + AllPassRequests *int64 `json:"all_pass_requests,omitempty"` // Number of cache errors for a VCL service. - AllErrorRequests *int32 `json:"all_error_requests,omitempty"` + AllErrorRequests *int64 `json:"all_error_requests,omitempty"` // Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. - AllSynthRequests *int32 `json:"all_synth_requests,omitempty"` + AllSynthRequests *int64 `json:"all_synth_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. - AllEdgeHitRequests *int32 `json:"all_edge_hit_requests,omitempty"` + AllEdgeHitRequests *int64 `json:"all_edge_hit_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. - AllEdgeMissRequests *int32 `json:"all_edge_miss_requests,omitempty"` + AllEdgeMissRequests *int64 `json:"all_edge_miss_requests,omitempty"` // Number of \"Informational\" category status codes delivered for all sources. - AllStatus1xx *int32 `json:"all_status_1xx,omitempty"` + AllStatus1xx *int64 `json:"all_status_1xx,omitempty"` // Number of \"Success\" status codes delivered for all sources. - AllStatus2xx *int32 `json:"all_status_2xx,omitempty"` + AllStatus2xx *int64 `json:"all_status_2xx,omitempty"` // Number of \"Redirection\" codes delivered for all sources. - AllStatus3xx *int32 `json:"all_status_3xx,omitempty"` + AllStatus3xx *int64 `json:"all_status_3xx,omitempty"` // Number of \"Client Error\" codes delivered for all sources. - AllStatus4xx *int32 `json:"all_status_4xx,omitempty"` + AllStatus4xx *int64 `json:"all_status_4xx,omitempty"` // Number of \"Server Error\" codes delivered for all sources. - AllStatus5xx *int32 `json:"all_status_5xx,omitempty"` + AllStatus5xx *int64 `json:"all_status_5xx,omitempty"` // Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). OriginOffload *float32 `json:"origin_offload,omitempty"` // Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. - RequestDeniedGetHeadBody *int32 `json:"request_denied_get_head_body,omitempty"` + RequestDeniedGetHeadBody *int64 `json:"request_denied_get_head_body,omitempty"` // Number of requests classified as a DDoS attack against a customer origin or service. - ServiceDdosRequestsDetected *int32 `json:"service_ddos_requests_detected,omitempty"` + ServiceDdosRequestsDetected *int64 `json:"service_ddos_requests_detected,omitempty"` // Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. - ServiceDdosRequestsMitigated *int32 `json:"service_ddos_requests_mitigated,omitempty"` + ServiceDdosRequestsMitigated *int64 `json:"service_ddos_requests_mitigated,omitempty"` // Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. - ServiceDdosRequestsAllowed *int32 `json:"service_ddos_requests_allowed,omitempty"` + ServiceDdosRequestsAllowed *int64 `json:"service_ddos_requests_allowed,omitempty"` AdditionalProperties map[string]any } @@ -535,9 +535,9 @@ func NewRealtimeEntryAggregatedWithDefaults() *RealtimeEntryAggregated { } // GetRequests returns the Requests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetRequests() int32 { +func (o *RealtimeEntryAggregated) GetRequests() int64 { if o == nil || o.Requests == nil { - var ret int32 + var ret int64 return ret } return *o.Requests @@ -545,7 +545,7 @@ func (o *RealtimeEntryAggregated) GetRequests() int32 { // GetRequestsOk returns a tuple with the Requests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetRequestsOk() (*int64, bool) { if o == nil || o.Requests == nil { return nil, false } @@ -561,15 +561,15 @@ func (o *RealtimeEntryAggregated) HasRequests() bool { return false } -// SetRequests gets a reference to the given int32 and assigns it to the Requests field. -func (o *RealtimeEntryAggregated) SetRequests(v int32) { +// SetRequests gets a reference to the given int64 and assigns it to the Requests field. +func (o *RealtimeEntryAggregated) SetRequests(v int64) { o.Requests = &v } // GetLogging returns the Logging field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetLogging() int32 { +func (o *RealtimeEntryAggregated) GetLogging() int64 { if o == nil || o.Logging == nil { - var ret int32 + var ret int64 return ret } return *o.Logging @@ -577,7 +577,7 @@ func (o *RealtimeEntryAggregated) GetLogging() int32 { // GetLoggingOk returns a tuple with the Logging field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetLoggingOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetLoggingOk() (*int64, bool) { if o == nil || o.Logging == nil { return nil, false } @@ -593,15 +593,15 @@ func (o *RealtimeEntryAggregated) HasLogging() bool { return false } -// SetLogging gets a reference to the given int32 and assigns it to the Logging field. -func (o *RealtimeEntryAggregated) SetLogging(v int32) { +// SetLogging gets a reference to the given int64 and assigns it to the Logging field. +func (o *RealtimeEntryAggregated) SetLogging(v int64) { o.Logging = &v } // GetLog returns the Log field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetLog() int32 { +func (o *RealtimeEntryAggregated) GetLog() int64 { if o == nil || o.Log == nil { - var ret int32 + var ret int64 return ret } return *o.Log @@ -609,7 +609,7 @@ func (o *RealtimeEntryAggregated) GetLog() int32 { // GetLogOk returns a tuple with the Log field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetLogOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetLogOk() (*int64, bool) { if o == nil || o.Log == nil { return nil, false } @@ -625,15 +625,15 @@ func (o *RealtimeEntryAggregated) HasLog() bool { return false } -// SetLog gets a reference to the given int32 and assigns it to the Log field. -func (o *RealtimeEntryAggregated) SetLog(v int32) { +// SetLog gets a reference to the given int64 and assigns it to the Log field. +func (o *RealtimeEntryAggregated) SetLog(v int64) { o.Log = &v } // GetRespHeaderBytes returns the RespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetRespHeaderBytes() int64 { if o == nil || o.RespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespHeaderBytes @@ -641,7 +641,7 @@ func (o *RealtimeEntryAggregated) GetRespHeaderBytes() int32 { // GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetRespHeaderBytesOk() (*int64, bool) { if o == nil || o.RespHeaderBytes == nil { return nil, false } @@ -657,15 +657,15 @@ func (o *RealtimeEntryAggregated) HasRespHeaderBytes() bool { return false } -// SetRespHeaderBytes gets a reference to the given int32 and assigns it to the RespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetRespHeaderBytes(v int32) { +// SetRespHeaderBytes gets a reference to the given int64 and assigns it to the RespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetRespHeaderBytes(v int64) { o.RespHeaderBytes = &v } // GetHeaderSize returns the HeaderSize field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetHeaderSize() int32 { +func (o *RealtimeEntryAggregated) GetHeaderSize() int64 { if o == nil || o.HeaderSize == nil { - var ret int32 + var ret int64 return ret } return *o.HeaderSize @@ -673,7 +673,7 @@ func (o *RealtimeEntryAggregated) GetHeaderSize() int32 { // GetHeaderSizeOk returns a tuple with the HeaderSize field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetHeaderSizeOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetHeaderSizeOk() (*int64, bool) { if o == nil || o.HeaderSize == nil { return nil, false } @@ -689,15 +689,15 @@ func (o *RealtimeEntryAggregated) HasHeaderSize() bool { return false } -// SetHeaderSize gets a reference to the given int32 and assigns it to the HeaderSize field. -func (o *RealtimeEntryAggregated) SetHeaderSize(v int32) { +// SetHeaderSize gets a reference to the given int64 and assigns it to the HeaderSize field. +func (o *RealtimeEntryAggregated) SetHeaderSize(v int64) { o.HeaderSize = &v } // GetRespBodyBytes returns the RespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetRespBodyBytes() int64 { if o == nil || o.RespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespBodyBytes @@ -705,7 +705,7 @@ func (o *RealtimeEntryAggregated) GetRespBodyBytes() int32 { // GetRespBodyBytesOk returns a tuple with the RespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetRespBodyBytesOk() (*int64, bool) { if o == nil || o.RespBodyBytes == nil { return nil, false } @@ -721,15 +721,15 @@ func (o *RealtimeEntryAggregated) HasRespBodyBytes() bool { return false } -// SetRespBodyBytes gets a reference to the given int32 and assigns it to the RespBodyBytes field. -func (o *RealtimeEntryAggregated) SetRespBodyBytes(v int32) { +// SetRespBodyBytes gets a reference to the given int64 and assigns it to the RespBodyBytes field. +func (o *RealtimeEntryAggregated) SetRespBodyBytes(v int64) { o.RespBodyBytes = &v } // GetBodySize returns the BodySize field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBodySize() int32 { +func (o *RealtimeEntryAggregated) GetBodySize() int64 { if o == nil || o.BodySize == nil { - var ret int32 + var ret int64 return ret } return *o.BodySize @@ -737,7 +737,7 @@ func (o *RealtimeEntryAggregated) GetBodySize() int32 { // GetBodySizeOk returns a tuple with the BodySize field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBodySizeOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBodySizeOk() (*int64, bool) { if o == nil || o.BodySize == nil { return nil, false } @@ -753,15 +753,15 @@ func (o *RealtimeEntryAggregated) HasBodySize() bool { return false } -// SetBodySize gets a reference to the given int32 and assigns it to the BodySize field. -func (o *RealtimeEntryAggregated) SetBodySize(v int32) { +// SetBodySize gets a reference to the given int64 and assigns it to the BodySize field. +func (o *RealtimeEntryAggregated) SetBodySize(v int64) { o.BodySize = &v } // GetHits returns the Hits field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetHits() int32 { +func (o *RealtimeEntryAggregated) GetHits() int64 { if o == nil || o.Hits == nil { - var ret int32 + var ret int64 return ret } return *o.Hits @@ -769,7 +769,7 @@ func (o *RealtimeEntryAggregated) GetHits() int32 { // GetHitsOk returns a tuple with the Hits field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetHitsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetHitsOk() (*int64, bool) { if o == nil || o.Hits == nil { return nil, false } @@ -785,15 +785,15 @@ func (o *RealtimeEntryAggregated) HasHits() bool { return false } -// SetHits gets a reference to the given int32 and assigns it to the Hits field. -func (o *RealtimeEntryAggregated) SetHits(v int32) { +// SetHits gets a reference to the given int64 and assigns it to the Hits field. +func (o *RealtimeEntryAggregated) SetHits(v int64) { o.Hits = &v } // GetMiss returns the Miss field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetMiss() int32 { +func (o *RealtimeEntryAggregated) GetMiss() int64 { if o == nil || o.Miss == nil { - var ret int32 + var ret int64 return ret } return *o.Miss @@ -801,7 +801,7 @@ func (o *RealtimeEntryAggregated) GetMiss() int32 { // GetMissOk returns a tuple with the Miss field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetMissOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetMissOk() (*int64, bool) { if o == nil || o.Miss == nil { return nil, false } @@ -817,15 +817,15 @@ func (o *RealtimeEntryAggregated) HasMiss() bool { return false } -// SetMiss gets a reference to the given int32 and assigns it to the Miss field. -func (o *RealtimeEntryAggregated) SetMiss(v int32) { +// SetMiss gets a reference to the given int64 and assigns it to the Miss field. +func (o *RealtimeEntryAggregated) SetMiss(v int64) { o.Miss = &v } // GetPass returns the Pass field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetPass() int32 { +func (o *RealtimeEntryAggregated) GetPass() int64 { if o == nil || o.Pass == nil { - var ret int32 + var ret int64 return ret } return *o.Pass @@ -833,7 +833,7 @@ func (o *RealtimeEntryAggregated) GetPass() int32 { // GetPassOk returns a tuple with the Pass field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetPassOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetPassOk() (*int64, bool) { if o == nil || o.Pass == nil { return nil, false } @@ -849,15 +849,15 @@ func (o *RealtimeEntryAggregated) HasPass() bool { return false } -// SetPass gets a reference to the given int32 and assigns it to the Pass field. -func (o *RealtimeEntryAggregated) SetPass(v int32) { +// SetPass gets a reference to the given int64 and assigns it to the Pass field. +func (o *RealtimeEntryAggregated) SetPass(v int64) { o.Pass = &v } // GetSynth returns the Synth field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetSynth() int32 { +func (o *RealtimeEntryAggregated) GetSynth() int64 { if o == nil || o.Synth == nil { - var ret int32 + var ret int64 return ret } return *o.Synth @@ -865,7 +865,7 @@ func (o *RealtimeEntryAggregated) GetSynth() int32 { // GetSynthOk returns a tuple with the Synth field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetSynthOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetSynthOk() (*int64, bool) { if o == nil || o.Synth == nil { return nil, false } @@ -881,15 +881,15 @@ func (o *RealtimeEntryAggregated) HasSynth() bool { return false } -// SetSynth gets a reference to the given int32 and assigns it to the Synth field. -func (o *RealtimeEntryAggregated) SetSynth(v int32) { +// SetSynth gets a reference to the given int64 and assigns it to the Synth field. +func (o *RealtimeEntryAggregated) SetSynth(v int64) { o.Synth = &v } // GetErrors returns the Errors field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetErrors() int32 { +func (o *RealtimeEntryAggregated) GetErrors() int64 { if o == nil || o.Errors == nil { - var ret int32 + var ret int64 return ret } return *o.Errors @@ -897,7 +897,7 @@ func (o *RealtimeEntryAggregated) GetErrors() int32 { // GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetErrorsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetErrorsOk() (*int64, bool) { if o == nil || o.Errors == nil { return nil, false } @@ -913,8 +913,8 @@ func (o *RealtimeEntryAggregated) HasErrors() bool { return false } -// SetErrors gets a reference to the given int32 and assigns it to the Errors field. -func (o *RealtimeEntryAggregated) SetErrors(v int32) { +// SetErrors gets a reference to the given int64 and assigns it to the Errors field. +func (o *RealtimeEntryAggregated) SetErrors(v int64) { o.Errors = &v } @@ -1015,9 +1015,9 @@ func (o *RealtimeEntryAggregated) SetMissHistogram(v map[string]map[string]any) } // GetComputeRequests returns the ComputeRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRequests() int32 { +func (o *RealtimeEntryAggregated) GetComputeRequests() int64 { if o == nil || o.ComputeRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRequests @@ -1025,7 +1025,7 @@ func (o *RealtimeEntryAggregated) GetComputeRequests() int32 { // GetComputeRequestsOk returns a tuple with the ComputeRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRequestsOk() (*int64, bool) { if o == nil || o.ComputeRequests == nil { return nil, false } @@ -1041,8 +1041,8 @@ func (o *RealtimeEntryAggregated) HasComputeRequests() bool { return false } -// SetComputeRequests gets a reference to the given int32 and assigns it to the ComputeRequests field. -func (o *RealtimeEntryAggregated) SetComputeRequests(v int32) { +// SetComputeRequests gets a reference to the given int64 and assigns it to the ComputeRequests field. +func (o *RealtimeEntryAggregated) SetComputeRequests(v int64) { o.ComputeRequests = &v } @@ -1079,9 +1079,9 @@ func (o *RealtimeEntryAggregated) SetComputeExecutionTimeMs(v float32) { } // GetComputeRAMUsed returns the ComputeRAMUsed field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRAMUsed() int32 { +func (o *RealtimeEntryAggregated) GetComputeRAMUsed() int64 { if o == nil || o.ComputeRAMUsed == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRAMUsed @@ -1089,7 +1089,7 @@ func (o *RealtimeEntryAggregated) GetComputeRAMUsed() int32 { // GetComputeRAMUsedOk returns a tuple with the ComputeRAMUsed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRAMUsedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRAMUsedOk() (*int64, bool) { if o == nil || o.ComputeRAMUsed == nil { return nil, false } @@ -1105,8 +1105,8 @@ func (o *RealtimeEntryAggregated) HasComputeRAMUsed() bool { return false } -// SetComputeRAMUsed gets a reference to the given int32 and assigns it to the ComputeRAMUsed field. -func (o *RealtimeEntryAggregated) SetComputeRAMUsed(v int32) { +// SetComputeRAMUsed gets a reference to the given int64 and assigns it to the ComputeRAMUsed field. +func (o *RealtimeEntryAggregated) SetComputeRAMUsed(v int64) { o.ComputeRAMUsed = &v } @@ -1175,9 +1175,9 @@ func (o *RealtimeEntryAggregated) SetComputeRequestTimeBilledMs(v float32) { } // GetShield returns the Shield field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShield() int32 { +func (o *RealtimeEntryAggregated) GetShield() int64 { if o == nil || o.Shield == nil { - var ret int32 + var ret int64 return ret } return *o.Shield @@ -1185,7 +1185,7 @@ func (o *RealtimeEntryAggregated) GetShield() int32 { // GetShieldOk returns a tuple with the Shield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldOk() (*int64, bool) { if o == nil || o.Shield == nil { return nil, false } @@ -1201,15 +1201,15 @@ func (o *RealtimeEntryAggregated) HasShield() bool { return false } -// SetShield gets a reference to the given int32 and assigns it to the Shield field. -func (o *RealtimeEntryAggregated) SetShield(v int32) { +// SetShield gets a reference to the given int64 and assigns it to the Shield field. +func (o *RealtimeEntryAggregated) SetShield(v int64) { o.Shield = &v } // GetIpv6 returns the Ipv6 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetIpv6() int32 { +func (o *RealtimeEntryAggregated) GetIpv6() int64 { if o == nil || o.Ipv6 == nil { - var ret int32 + var ret int64 return ret } return *o.Ipv6 @@ -1217,7 +1217,7 @@ func (o *RealtimeEntryAggregated) GetIpv6() int32 { // GetIpv6Ok returns a tuple with the Ipv6 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetIpv6Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetIpv6Ok() (*int64, bool) { if o == nil || o.Ipv6 == nil { return nil, false } @@ -1233,15 +1233,15 @@ func (o *RealtimeEntryAggregated) HasIpv6() bool { return false } -// SetIpv6 gets a reference to the given int32 and assigns it to the Ipv6 field. -func (o *RealtimeEntryAggregated) SetIpv6(v int32) { +// SetIpv6 gets a reference to the given int64 and assigns it to the Ipv6 field. +func (o *RealtimeEntryAggregated) SetIpv6(v int64) { o.Ipv6 = &v } // GetImgopto returns the Imgopto field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgopto() int32 { +func (o *RealtimeEntryAggregated) GetImgopto() int64 { if o == nil || o.Imgopto == nil { - var ret int32 + var ret int64 return ret } return *o.Imgopto @@ -1249,7 +1249,7 @@ func (o *RealtimeEntryAggregated) GetImgopto() int32 { // GetImgoptoOk returns a tuple with the Imgopto field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgoptoOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgoptoOk() (*int64, bool) { if o == nil || o.Imgopto == nil { return nil, false } @@ -1265,15 +1265,15 @@ func (o *RealtimeEntryAggregated) HasImgopto() bool { return false } -// SetImgopto gets a reference to the given int32 and assigns it to the Imgopto field. -func (o *RealtimeEntryAggregated) SetImgopto(v int32) { +// SetImgopto gets a reference to the given int64 and assigns it to the Imgopto field. +func (o *RealtimeEntryAggregated) SetImgopto(v int64) { o.Imgopto = &v } // GetImgoptoShield returns the ImgoptoShield field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgoptoShield() int32 { +func (o *RealtimeEntryAggregated) GetImgoptoShield() int64 { if o == nil || o.ImgoptoShield == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShield @@ -1281,7 +1281,7 @@ func (o *RealtimeEntryAggregated) GetImgoptoShield() int32 { // GetImgoptoShieldOk returns a tuple with the ImgoptoShield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgoptoShieldOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgoptoShieldOk() (*int64, bool) { if o == nil || o.ImgoptoShield == nil { return nil, false } @@ -1297,15 +1297,15 @@ func (o *RealtimeEntryAggregated) HasImgoptoShield() bool { return false } -// SetImgoptoShield gets a reference to the given int32 and assigns it to the ImgoptoShield field. -func (o *RealtimeEntryAggregated) SetImgoptoShield(v int32) { +// SetImgoptoShield gets a reference to the given int64 and assigns it to the ImgoptoShield field. +func (o *RealtimeEntryAggregated) SetImgoptoShield(v int64) { o.ImgoptoShield = &v } // GetImgoptoTransforms returns the ImgoptoTransforms field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgoptoTransforms() int32 { +func (o *RealtimeEntryAggregated) GetImgoptoTransforms() int64 { if o == nil || o.ImgoptoTransforms == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoTransforms @@ -1313,7 +1313,7 @@ func (o *RealtimeEntryAggregated) GetImgoptoTransforms() int32 { // GetImgoptoTransformsOk returns a tuple with the ImgoptoTransforms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgoptoTransformsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgoptoTransformsOk() (*int64, bool) { if o == nil || o.ImgoptoTransforms == nil { return nil, false } @@ -1329,15 +1329,15 @@ func (o *RealtimeEntryAggregated) HasImgoptoTransforms() bool { return false } -// SetImgoptoTransforms gets a reference to the given int32 and assigns it to the ImgoptoTransforms field. -func (o *RealtimeEntryAggregated) SetImgoptoTransforms(v int32) { +// SetImgoptoTransforms gets a reference to the given int64 and assigns it to the ImgoptoTransforms field. +func (o *RealtimeEntryAggregated) SetImgoptoTransforms(v int64) { o.ImgoptoTransforms = &v } // GetOtfp returns the Otfp field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOtfp() int32 { +func (o *RealtimeEntryAggregated) GetOtfp() int64 { if o == nil || o.Otfp == nil { - var ret int32 + var ret int64 return ret } return *o.Otfp @@ -1345,7 +1345,7 @@ func (o *RealtimeEntryAggregated) GetOtfp() int32 { // GetOtfpOk returns a tuple with the Otfp field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOtfpOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOtfpOk() (*int64, bool) { if o == nil || o.Otfp == nil { return nil, false } @@ -1361,15 +1361,15 @@ func (o *RealtimeEntryAggregated) HasOtfp() bool { return false } -// SetOtfp gets a reference to the given int32 and assigns it to the Otfp field. -func (o *RealtimeEntryAggregated) SetOtfp(v int32) { +// SetOtfp gets a reference to the given int64 and assigns it to the Otfp field. +func (o *RealtimeEntryAggregated) SetOtfp(v int64) { o.Otfp = &v } // GetOtfpShield returns the OtfpShield field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOtfpShield() int32 { +func (o *RealtimeEntryAggregated) GetOtfpShield() int64 { if o == nil || o.OtfpShield == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpShield @@ -1377,7 +1377,7 @@ func (o *RealtimeEntryAggregated) GetOtfpShield() int32 { // GetOtfpShieldOk returns a tuple with the OtfpShield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOtfpShieldOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOtfpShieldOk() (*int64, bool) { if o == nil || o.OtfpShield == nil { return nil, false } @@ -1393,15 +1393,15 @@ func (o *RealtimeEntryAggregated) HasOtfpShield() bool { return false } -// SetOtfpShield gets a reference to the given int32 and assigns it to the OtfpShield field. -func (o *RealtimeEntryAggregated) SetOtfpShield(v int32) { +// SetOtfpShield gets a reference to the given int64 and assigns it to the OtfpShield field. +func (o *RealtimeEntryAggregated) SetOtfpShield(v int64) { o.OtfpShield = &v } // GetOtfpManifests returns the OtfpManifests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOtfpManifests() int32 { +func (o *RealtimeEntryAggregated) GetOtfpManifests() int64 { if o == nil || o.OtfpManifests == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpManifests @@ -1409,7 +1409,7 @@ func (o *RealtimeEntryAggregated) GetOtfpManifests() int32 { // GetOtfpManifestsOk returns a tuple with the OtfpManifests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOtfpManifestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOtfpManifestsOk() (*int64, bool) { if o == nil || o.OtfpManifests == nil { return nil, false } @@ -1425,15 +1425,15 @@ func (o *RealtimeEntryAggregated) HasOtfpManifests() bool { return false } -// SetOtfpManifests gets a reference to the given int32 and assigns it to the OtfpManifests field. -func (o *RealtimeEntryAggregated) SetOtfpManifests(v int32) { +// SetOtfpManifests gets a reference to the given int64 and assigns it to the OtfpManifests field. +func (o *RealtimeEntryAggregated) SetOtfpManifests(v int64) { o.OtfpManifests = &v } // GetVideo returns the Video field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetVideo() int32 { +func (o *RealtimeEntryAggregated) GetVideo() int64 { if o == nil || o.Video == nil { - var ret int32 + var ret int64 return ret } return *o.Video @@ -1441,7 +1441,7 @@ func (o *RealtimeEntryAggregated) GetVideo() int32 { // GetVideoOk returns a tuple with the Video field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetVideoOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetVideoOk() (*int64, bool) { if o == nil || o.Video == nil { return nil, false } @@ -1457,15 +1457,15 @@ func (o *RealtimeEntryAggregated) HasVideo() bool { return false } -// SetVideo gets a reference to the given int32 and assigns it to the Video field. -func (o *RealtimeEntryAggregated) SetVideo(v int32) { +// SetVideo gets a reference to the given int64 and assigns it to the Video field. +func (o *RealtimeEntryAggregated) SetVideo(v int64) { o.Video = &v } // GetPci returns the Pci field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetPci() int32 { +func (o *RealtimeEntryAggregated) GetPci() int64 { if o == nil || o.Pci == nil { - var ret int32 + var ret int64 return ret } return *o.Pci @@ -1473,7 +1473,7 @@ func (o *RealtimeEntryAggregated) GetPci() int32 { // GetPciOk returns a tuple with the Pci field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetPciOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetPciOk() (*int64, bool) { if o == nil || o.Pci == nil { return nil, false } @@ -1489,15 +1489,15 @@ func (o *RealtimeEntryAggregated) HasPci() bool { return false } -// SetPci gets a reference to the given int32 and assigns it to the Pci field. -func (o *RealtimeEntryAggregated) SetPci(v int32) { +// SetPci gets a reference to the given int64 and assigns it to the Pci field. +func (o *RealtimeEntryAggregated) SetPci(v int64) { o.Pci = &v } // GetHTTP2 returns the HTTP2 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetHTTP2() int32 { +func (o *RealtimeEntryAggregated) GetHTTP2() int64 { if o == nil || o.HTTP2 == nil { - var ret int32 + var ret int64 return ret } return *o.HTTP2 @@ -1505,7 +1505,7 @@ func (o *RealtimeEntryAggregated) GetHTTP2() int32 { // GetHTTP2Ok returns a tuple with the HTTP2 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetHTTP2Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetHTTP2Ok() (*int64, bool) { if o == nil || o.HTTP2 == nil { return nil, false } @@ -1521,15 +1521,15 @@ func (o *RealtimeEntryAggregated) HasHTTP2() bool { return false } -// SetHTTP2 gets a reference to the given int32 and assigns it to the HTTP2 field. -func (o *RealtimeEntryAggregated) SetHTTP2(v int32) { +// SetHTTP2 gets a reference to the given int64 and assigns it to the HTTP2 field. +func (o *RealtimeEntryAggregated) SetHTTP2(v int64) { o.HTTP2 = &v } // GetHTTP3 returns the HTTP3 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetHTTP3() int32 { +func (o *RealtimeEntryAggregated) GetHTTP3() int64 { if o == nil || o.HTTP3 == nil { - var ret int32 + var ret int64 return ret } return *o.HTTP3 @@ -1537,7 +1537,7 @@ func (o *RealtimeEntryAggregated) GetHTTP3() int32 { // GetHTTP3Ok returns a tuple with the HTTP3 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetHTTP3Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetHTTP3Ok() (*int64, bool) { if o == nil || o.HTTP3 == nil { return nil, false } @@ -1553,15 +1553,15 @@ func (o *RealtimeEntryAggregated) HasHTTP3() bool { return false } -// SetHTTP3 gets a reference to the given int32 and assigns it to the HTTP3 field. -func (o *RealtimeEntryAggregated) SetHTTP3(v int32) { +// SetHTTP3 gets a reference to the given int64 and assigns it to the HTTP3 field. +func (o *RealtimeEntryAggregated) SetHTTP3(v int64) { o.HTTP3 = &v } // GetRestarts returns the Restarts field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetRestarts() int32 { +func (o *RealtimeEntryAggregated) GetRestarts() int64 { if o == nil || o.Restarts == nil { - var ret int32 + var ret int64 return ret } return *o.Restarts @@ -1569,7 +1569,7 @@ func (o *RealtimeEntryAggregated) GetRestarts() int32 { // GetRestartsOk returns a tuple with the Restarts field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetRestartsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetRestartsOk() (*int64, bool) { if o == nil || o.Restarts == nil { return nil, false } @@ -1585,15 +1585,15 @@ func (o *RealtimeEntryAggregated) HasRestarts() bool { return false } -// SetRestarts gets a reference to the given int32 and assigns it to the Restarts field. -func (o *RealtimeEntryAggregated) SetRestarts(v int32) { +// SetRestarts gets a reference to the given int64 and assigns it to the Restarts field. +func (o *RealtimeEntryAggregated) SetRestarts(v int64) { o.Restarts = &v } // GetReqHeaderBytes returns the ReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetReqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetReqHeaderBytes() int64 { if o == nil || o.ReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ReqHeaderBytes @@ -1601,7 +1601,7 @@ func (o *RealtimeEntryAggregated) GetReqHeaderBytes() int32 { // GetReqHeaderBytesOk returns a tuple with the ReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetReqHeaderBytesOk() (*int64, bool) { if o == nil || o.ReqHeaderBytes == nil { return nil, false } @@ -1617,15 +1617,15 @@ func (o *RealtimeEntryAggregated) HasReqHeaderBytes() bool { return false } -// SetReqHeaderBytes gets a reference to the given int32 and assigns it to the ReqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetReqHeaderBytes(v int32) { +// SetReqHeaderBytes gets a reference to the given int64 and assigns it to the ReqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetReqHeaderBytes(v int64) { o.ReqHeaderBytes = &v } // GetReqBodyBytes returns the ReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetReqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetReqBodyBytes() int64 { if o == nil || o.ReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ReqBodyBytes @@ -1633,7 +1633,7 @@ func (o *RealtimeEntryAggregated) GetReqBodyBytes() int32 { // GetReqBodyBytesOk returns a tuple with the ReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetReqBodyBytesOk() (*int64, bool) { if o == nil || o.ReqBodyBytes == nil { return nil, false } @@ -1649,15 +1649,15 @@ func (o *RealtimeEntryAggregated) HasReqBodyBytes() bool { return false } -// SetReqBodyBytes gets a reference to the given int32 and assigns it to the ReqBodyBytes field. -func (o *RealtimeEntryAggregated) SetReqBodyBytes(v int32) { +// SetReqBodyBytes gets a reference to the given int64 and assigns it to the ReqBodyBytes field. +func (o *RealtimeEntryAggregated) SetReqBodyBytes(v int64) { o.ReqBodyBytes = &v } // GetBereqHeaderBytes returns the BereqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBereqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetBereqHeaderBytes() int64 { if o == nil || o.BereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqHeaderBytes @@ -1665,7 +1665,7 @@ func (o *RealtimeEntryAggregated) GetBereqHeaderBytes() int32 { // GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBereqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.BereqHeaderBytes == nil { return nil, false } @@ -1681,15 +1681,15 @@ func (o *RealtimeEntryAggregated) HasBereqHeaderBytes() bool { return false } -// SetBereqHeaderBytes gets a reference to the given int32 and assigns it to the BereqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetBereqHeaderBytes(v int32) { +// SetBereqHeaderBytes gets a reference to the given int64 and assigns it to the BereqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetBereqHeaderBytes(v int64) { o.BereqHeaderBytes = &v } // GetBereqBodyBytes returns the BereqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBereqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetBereqBodyBytes() int64 { if o == nil || o.BereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqBodyBytes @@ -1697,7 +1697,7 @@ func (o *RealtimeEntryAggregated) GetBereqBodyBytes() int32 { // GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBereqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBereqBodyBytesOk() (*int64, bool) { if o == nil || o.BereqBodyBytes == nil { return nil, false } @@ -1713,15 +1713,15 @@ func (o *RealtimeEntryAggregated) HasBereqBodyBytes() bool { return false } -// SetBereqBodyBytes gets a reference to the given int32 and assigns it to the BereqBodyBytes field. -func (o *RealtimeEntryAggregated) SetBereqBodyBytes(v int32) { +// SetBereqBodyBytes gets a reference to the given int64 and assigns it to the BereqBodyBytes field. +func (o *RealtimeEntryAggregated) SetBereqBodyBytes(v int64) { o.BereqBodyBytes = &v } // GetWafBlocked returns the WafBlocked field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWafBlocked() int32 { +func (o *RealtimeEntryAggregated) GetWafBlocked() int64 { if o == nil || o.WafBlocked == nil { - var ret int32 + var ret int64 return ret } return *o.WafBlocked @@ -1729,7 +1729,7 @@ func (o *RealtimeEntryAggregated) GetWafBlocked() int32 { // GetWafBlockedOk returns a tuple with the WafBlocked field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWafBlockedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWafBlockedOk() (*int64, bool) { if o == nil || o.WafBlocked == nil { return nil, false } @@ -1745,15 +1745,15 @@ func (o *RealtimeEntryAggregated) HasWafBlocked() bool { return false } -// SetWafBlocked gets a reference to the given int32 and assigns it to the WafBlocked field. -func (o *RealtimeEntryAggregated) SetWafBlocked(v int32) { +// SetWafBlocked gets a reference to the given int64 and assigns it to the WafBlocked field. +func (o *RealtimeEntryAggregated) SetWafBlocked(v int64) { o.WafBlocked = &v } // GetWafLogged returns the WafLogged field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWafLogged() int32 { +func (o *RealtimeEntryAggregated) GetWafLogged() int64 { if o == nil || o.WafLogged == nil { - var ret int32 + var ret int64 return ret } return *o.WafLogged @@ -1761,7 +1761,7 @@ func (o *RealtimeEntryAggregated) GetWafLogged() int32 { // GetWafLoggedOk returns a tuple with the WafLogged field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWafLoggedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWafLoggedOk() (*int64, bool) { if o == nil || o.WafLogged == nil { return nil, false } @@ -1777,15 +1777,15 @@ func (o *RealtimeEntryAggregated) HasWafLogged() bool { return false } -// SetWafLogged gets a reference to the given int32 and assigns it to the WafLogged field. -func (o *RealtimeEntryAggregated) SetWafLogged(v int32) { +// SetWafLogged gets a reference to the given int64 and assigns it to the WafLogged field. +func (o *RealtimeEntryAggregated) SetWafLogged(v int64) { o.WafLogged = &v } // GetWafPassed returns the WafPassed field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWafPassed() int32 { +func (o *RealtimeEntryAggregated) GetWafPassed() int64 { if o == nil || o.WafPassed == nil { - var ret int32 + var ret int64 return ret } return *o.WafPassed @@ -1793,7 +1793,7 @@ func (o *RealtimeEntryAggregated) GetWafPassed() int32 { // GetWafPassedOk returns a tuple with the WafPassed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWafPassedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWafPassedOk() (*int64, bool) { if o == nil || o.WafPassed == nil { return nil, false } @@ -1809,15 +1809,15 @@ func (o *RealtimeEntryAggregated) HasWafPassed() bool { return false } -// SetWafPassed gets a reference to the given int32 and assigns it to the WafPassed field. -func (o *RealtimeEntryAggregated) SetWafPassed(v int32) { +// SetWafPassed gets a reference to the given int64 and assigns it to the WafPassed field. +func (o *RealtimeEntryAggregated) SetWafPassed(v int64) { o.WafPassed = &v } // GetAttackReqHeaderBytes returns the AttackReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytes() int64 { if o == nil || o.AttackReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackReqHeaderBytes @@ -1825,7 +1825,7 @@ func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytes() int32 { // GetAttackReqHeaderBytesOk returns a tuple with the AttackReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackReqHeaderBytes == nil { return nil, false } @@ -1841,15 +1841,15 @@ func (o *RealtimeEntryAggregated) HasAttackReqHeaderBytes() bool { return false } -// SetAttackReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackReqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetAttackReqHeaderBytes(v int32) { +// SetAttackReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackReqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetAttackReqHeaderBytes(v int64) { o.AttackReqHeaderBytes = &v } // GetAttackReqBodyBytes returns the AttackReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackReqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackReqBodyBytes() int64 { if o == nil || o.AttackReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackReqBodyBytes @@ -1857,7 +1857,7 @@ func (o *RealtimeEntryAggregated) GetAttackReqBodyBytes() int32 { // GetAttackReqBodyBytesOk returns a tuple with the AttackReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackReqBodyBytes == nil { return nil, false } @@ -1873,15 +1873,15 @@ func (o *RealtimeEntryAggregated) HasAttackReqBodyBytes() bool { return false } -// SetAttackReqBodyBytes gets a reference to the given int32 and assigns it to the AttackReqBodyBytes field. -func (o *RealtimeEntryAggregated) SetAttackReqBodyBytes(v int32) { +// SetAttackReqBodyBytes gets a reference to the given int64 and assigns it to the AttackReqBodyBytes field. +func (o *RealtimeEntryAggregated) SetAttackReqBodyBytes(v int64) { o.AttackReqBodyBytes = &v } // GetAttackRespSynthBytes returns the AttackRespSynthBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackRespSynthBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackRespSynthBytes() int64 { if o == nil || o.AttackRespSynthBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackRespSynthBytes @@ -1889,7 +1889,7 @@ func (o *RealtimeEntryAggregated) GetAttackRespSynthBytes() int32 { // GetAttackRespSynthBytesOk returns a tuple with the AttackRespSynthBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackRespSynthBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackRespSynthBytesOk() (*int64, bool) { if o == nil || o.AttackRespSynthBytes == nil { return nil, false } @@ -1905,15 +1905,15 @@ func (o *RealtimeEntryAggregated) HasAttackRespSynthBytes() bool { return false } -// SetAttackRespSynthBytes gets a reference to the given int32 and assigns it to the AttackRespSynthBytes field. -func (o *RealtimeEntryAggregated) SetAttackRespSynthBytes(v int32) { +// SetAttackRespSynthBytes gets a reference to the given int64 and assigns it to the AttackRespSynthBytes field. +func (o *RealtimeEntryAggregated) SetAttackRespSynthBytes(v int64) { o.AttackRespSynthBytes = &v } // GetAttackLoggedReqHeaderBytes returns the AttackLoggedReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytes() int64 { if o == nil || o.AttackLoggedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackLoggedReqHeaderBytes @@ -1921,7 +1921,7 @@ func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytes() int32 { // GetAttackLoggedReqHeaderBytesOk returns a tuple with the AttackLoggedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackLoggedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackLoggedReqHeaderBytes == nil { return nil, false } @@ -1937,15 +1937,15 @@ func (o *RealtimeEntryAggregated) HasAttackLoggedReqHeaderBytes() bool { return false } -// SetAttackLoggedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackLoggedReqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetAttackLoggedReqHeaderBytes(v int32) { +// SetAttackLoggedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackLoggedReqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetAttackLoggedReqHeaderBytes(v int64) { o.AttackLoggedReqHeaderBytes = &v } // GetAttackLoggedReqBodyBytes returns the AttackLoggedReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytes() int64 { if o == nil || o.AttackLoggedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackLoggedReqBodyBytes @@ -1953,7 +1953,7 @@ func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytes() int32 { // GetAttackLoggedReqBodyBytesOk returns a tuple with the AttackLoggedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackLoggedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackLoggedReqBodyBytes == nil { return nil, false } @@ -1969,15 +1969,15 @@ func (o *RealtimeEntryAggregated) HasAttackLoggedReqBodyBytes() bool { return false } -// SetAttackLoggedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackLoggedReqBodyBytes field. -func (o *RealtimeEntryAggregated) SetAttackLoggedReqBodyBytes(v int32) { +// SetAttackLoggedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackLoggedReqBodyBytes field. +func (o *RealtimeEntryAggregated) SetAttackLoggedReqBodyBytes(v int64) { o.AttackLoggedReqBodyBytes = &v } // GetAttackBlockedReqHeaderBytes returns the AttackBlockedReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytes() int64 { if o == nil || o.AttackBlockedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackBlockedReqHeaderBytes @@ -1985,7 +1985,7 @@ func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytes() int32 { // GetAttackBlockedReqHeaderBytesOk returns a tuple with the AttackBlockedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackBlockedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackBlockedReqHeaderBytes == nil { return nil, false } @@ -2001,15 +2001,15 @@ func (o *RealtimeEntryAggregated) HasAttackBlockedReqHeaderBytes() bool { return false } -// SetAttackBlockedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackBlockedReqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetAttackBlockedReqHeaderBytes(v int32) { +// SetAttackBlockedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackBlockedReqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetAttackBlockedReqHeaderBytes(v int64) { o.AttackBlockedReqHeaderBytes = &v } // GetAttackBlockedReqBodyBytes returns the AttackBlockedReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytes() int64 { if o == nil || o.AttackBlockedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackBlockedReqBodyBytes @@ -2017,7 +2017,7 @@ func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytes() int32 { // GetAttackBlockedReqBodyBytesOk returns a tuple with the AttackBlockedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackBlockedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackBlockedReqBodyBytes == nil { return nil, false } @@ -2033,15 +2033,15 @@ func (o *RealtimeEntryAggregated) HasAttackBlockedReqBodyBytes() bool { return false } -// SetAttackBlockedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackBlockedReqBodyBytes field. -func (o *RealtimeEntryAggregated) SetAttackBlockedReqBodyBytes(v int32) { +// SetAttackBlockedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackBlockedReqBodyBytes field. +func (o *RealtimeEntryAggregated) SetAttackBlockedReqBodyBytes(v int64) { o.AttackBlockedReqBodyBytes = &v } // GetAttackPassedReqHeaderBytes returns the AttackPassedReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytes() int64 { if o == nil || o.AttackPassedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackPassedReqHeaderBytes @@ -2049,7 +2049,7 @@ func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytes() int32 { // GetAttackPassedReqHeaderBytesOk returns a tuple with the AttackPassedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackPassedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackPassedReqHeaderBytes == nil { return nil, false } @@ -2065,15 +2065,15 @@ func (o *RealtimeEntryAggregated) HasAttackPassedReqHeaderBytes() bool { return false } -// SetAttackPassedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackPassedReqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetAttackPassedReqHeaderBytes(v int32) { +// SetAttackPassedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackPassedReqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetAttackPassedReqHeaderBytes(v int64) { o.AttackPassedReqHeaderBytes = &v } // GetAttackPassedReqBodyBytes returns the AttackPassedReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytes() int64 { if o == nil || o.AttackPassedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackPassedReqBodyBytes @@ -2081,7 +2081,7 @@ func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytes() int32 { // GetAttackPassedReqBodyBytesOk returns a tuple with the AttackPassedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAttackPassedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackPassedReqBodyBytes == nil { return nil, false } @@ -2097,15 +2097,15 @@ func (o *RealtimeEntryAggregated) HasAttackPassedReqBodyBytes() bool { return false } -// SetAttackPassedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackPassedReqBodyBytes field. -func (o *RealtimeEntryAggregated) SetAttackPassedReqBodyBytes(v int32) { +// SetAttackPassedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackPassedReqBodyBytes field. +func (o *RealtimeEntryAggregated) SetAttackPassedReqBodyBytes(v int64) { o.AttackPassedReqBodyBytes = &v } // GetShieldRespHeaderBytes returns the ShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytes() int64 { if o == nil || o.ShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRespHeaderBytes @@ -2113,7 +2113,7 @@ func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytes() int32 { // GetShieldRespHeaderBytesOk returns a tuple with the ShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldRespHeaderBytes == nil { return nil, false } @@ -2129,15 +2129,15 @@ func (o *RealtimeEntryAggregated) HasShieldRespHeaderBytes() bool { return false } -// SetShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetShieldRespHeaderBytes(v int32) { +// SetShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetShieldRespHeaderBytes(v int64) { o.ShieldRespHeaderBytes = &v } // GetShieldRespBodyBytes returns the ShieldRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldRespBodyBytes() int64 { if o == nil || o.ShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRespBodyBytes @@ -2145,7 +2145,7 @@ func (o *RealtimeEntryAggregated) GetShieldRespBodyBytes() int32 { // GetShieldRespBodyBytesOk returns a tuple with the ShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldRespBodyBytes == nil { return nil, false } @@ -2161,15 +2161,15 @@ func (o *RealtimeEntryAggregated) HasShieldRespBodyBytes() bool { return false } -// SetShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetShieldRespBodyBytes(v int32) { +// SetShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetShieldRespBodyBytes(v int64) { o.ShieldRespBodyBytes = &v } // GetOtfpRespHeaderBytes returns the OtfpRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytes() int64 { if o == nil || o.OtfpRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpRespHeaderBytes @@ -2177,7 +2177,7 @@ func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytes() int32 { // GetOtfpRespHeaderBytesOk returns a tuple with the OtfpRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOtfpRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OtfpRespHeaderBytes == nil { return nil, false } @@ -2193,15 +2193,15 @@ func (o *RealtimeEntryAggregated) HasOtfpRespHeaderBytes() bool { return false } -// SetOtfpRespHeaderBytes gets a reference to the given int32 and assigns it to the OtfpRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetOtfpRespHeaderBytes(v int32) { +// SetOtfpRespHeaderBytes gets a reference to the given int64 and assigns it to the OtfpRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetOtfpRespHeaderBytes(v int64) { o.OtfpRespHeaderBytes = &v } // GetOtfpRespBodyBytes returns the OtfpRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytes() int64 { if o == nil || o.OtfpRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpRespBodyBytes @@ -2209,7 +2209,7 @@ func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytes() int32 { // GetOtfpRespBodyBytesOk returns a tuple with the OtfpRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOtfpRespBodyBytesOk() (*int64, bool) { if o == nil || o.OtfpRespBodyBytes == nil { return nil, false } @@ -2225,15 +2225,15 @@ func (o *RealtimeEntryAggregated) HasOtfpRespBodyBytes() bool { return false } -// SetOtfpRespBodyBytes gets a reference to the given int32 and assigns it to the OtfpRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetOtfpRespBodyBytes(v int32) { +// SetOtfpRespBodyBytes gets a reference to the given int64 and assigns it to the OtfpRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetOtfpRespBodyBytes(v int64) { o.OtfpRespBodyBytes = &v } // GetOtfpShieldRespHeaderBytes returns the OtfpShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytes() int64 { if o == nil || o.OtfpShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpShieldRespHeaderBytes @@ -2241,7 +2241,7 @@ func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytes() int32 { // GetOtfpShieldRespHeaderBytesOk returns a tuple with the OtfpShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOtfpShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OtfpShieldRespHeaderBytes == nil { return nil, false } @@ -2257,15 +2257,15 @@ func (o *RealtimeEntryAggregated) HasOtfpShieldRespHeaderBytes() bool { return false } -// SetOtfpShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the OtfpShieldRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetOtfpShieldRespHeaderBytes(v int32) { +// SetOtfpShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the OtfpShieldRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetOtfpShieldRespHeaderBytes(v int64) { o.OtfpShieldRespHeaderBytes = &v } // GetOtfpShieldRespBodyBytes returns the OtfpShieldRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytes() int64 { if o == nil || o.OtfpShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpShieldRespBodyBytes @@ -2273,7 +2273,7 @@ func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytes() int32 { // GetOtfpShieldRespBodyBytesOk returns a tuple with the OtfpShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOtfpShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.OtfpShieldRespBodyBytes == nil { return nil, false } @@ -2289,8 +2289,8 @@ func (o *RealtimeEntryAggregated) HasOtfpShieldRespBodyBytes() bool { return false } -// SetOtfpShieldRespBodyBytes gets a reference to the given int32 and assigns it to the OtfpShieldRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetOtfpShieldRespBodyBytes(v int32) { +// SetOtfpShieldRespBodyBytes gets a reference to the given int64 and assigns it to the OtfpShieldRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetOtfpShieldRespBodyBytes(v int64) { o.OtfpShieldRespBodyBytes = &v } @@ -2359,9 +2359,9 @@ func (o *RealtimeEntryAggregated) SetOtfpDeliverTime(v float32) { } // GetImgoptoRespHeaderBytes returns the ImgoptoRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytes() int64 { if o == nil || o.ImgoptoRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoRespHeaderBytes @@ -2369,7 +2369,7 @@ func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytes() int32 { // GetImgoptoRespHeaderBytesOk returns a tuple with the ImgoptoRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgoptoRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgoptoRespHeaderBytes == nil { return nil, false } @@ -2385,15 +2385,15 @@ func (o *RealtimeEntryAggregated) HasImgoptoRespHeaderBytes() bool { return false } -// SetImgoptoRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgoptoRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetImgoptoRespHeaderBytes(v int32) { +// SetImgoptoRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgoptoRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetImgoptoRespHeaderBytes(v int64) { o.ImgoptoRespHeaderBytes = &v } // GetImgoptoRespBodyBytes returns the ImgoptoRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytes() int64 { if o == nil || o.ImgoptoRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoRespBodyBytes @@ -2401,7 +2401,7 @@ func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytes() int32 { // GetImgoptoRespBodyBytesOk returns a tuple with the ImgoptoRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgoptoRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgoptoRespBodyBytes == nil { return nil, false } @@ -2417,15 +2417,15 @@ func (o *RealtimeEntryAggregated) HasImgoptoRespBodyBytes() bool { return false } -// SetImgoptoRespBodyBytes gets a reference to the given int32 and assigns it to the ImgoptoRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetImgoptoRespBodyBytes(v int32) { +// SetImgoptoRespBodyBytes gets a reference to the given int64 and assigns it to the ImgoptoRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetImgoptoRespBodyBytes(v int64) { o.ImgoptoRespBodyBytes = &v } // GetImgoptoShieldRespHeaderBytes returns the ImgoptoShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytes() int64 { if o == nil || o.ImgoptoShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShieldRespHeaderBytes @@ -2433,7 +2433,7 @@ func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytes() int32 { // GetImgoptoShieldRespHeaderBytesOk returns a tuple with the ImgoptoShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgoptoShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgoptoShieldRespHeaderBytes == nil { return nil, false } @@ -2449,15 +2449,15 @@ func (o *RealtimeEntryAggregated) HasImgoptoShieldRespHeaderBytes() bool { return false } -// SetImgoptoShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgoptoShieldRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetImgoptoShieldRespHeaderBytes(v int32) { +// SetImgoptoShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgoptoShieldRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetImgoptoShieldRespHeaderBytes(v int64) { o.ImgoptoShieldRespHeaderBytes = &v } // GetImgoptoShieldRespBodyBytes returns the ImgoptoShieldRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytes() int64 { if o == nil || o.ImgoptoShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShieldRespBodyBytes @@ -2465,7 +2465,7 @@ func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytes() int32 { // GetImgoptoShieldRespBodyBytesOk returns a tuple with the ImgoptoShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgoptoShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgoptoShieldRespBodyBytes == nil { return nil, false } @@ -2481,15 +2481,15 @@ func (o *RealtimeEntryAggregated) HasImgoptoShieldRespBodyBytes() bool { return false } -// SetImgoptoShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ImgoptoShieldRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetImgoptoShieldRespBodyBytes(v int32) { +// SetImgoptoShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ImgoptoShieldRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetImgoptoShieldRespBodyBytes(v int64) { o.ImgoptoShieldRespBodyBytes = &v } // GetStatus1xx returns the Status1xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus1xx() int32 { +func (o *RealtimeEntryAggregated) GetStatus1xx() int64 { if o == nil || o.Status1xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status1xx @@ -2497,7 +2497,7 @@ func (o *RealtimeEntryAggregated) GetStatus1xx() int32 { // GetStatus1xxOk returns a tuple with the Status1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus1xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus1xxOk() (*int64, bool) { if o == nil || o.Status1xx == nil { return nil, false } @@ -2513,15 +2513,15 @@ func (o *RealtimeEntryAggregated) HasStatus1xx() bool { return false } -// SetStatus1xx gets a reference to the given int32 and assigns it to the Status1xx field. -func (o *RealtimeEntryAggregated) SetStatus1xx(v int32) { +// SetStatus1xx gets a reference to the given int64 and assigns it to the Status1xx field. +func (o *RealtimeEntryAggregated) SetStatus1xx(v int64) { o.Status1xx = &v } // GetStatus2xx returns the Status2xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus2xx() int32 { +func (o *RealtimeEntryAggregated) GetStatus2xx() int64 { if o == nil || o.Status2xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status2xx @@ -2529,7 +2529,7 @@ func (o *RealtimeEntryAggregated) GetStatus2xx() int32 { // GetStatus2xxOk returns a tuple with the Status2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus2xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus2xxOk() (*int64, bool) { if o == nil || o.Status2xx == nil { return nil, false } @@ -2545,15 +2545,15 @@ func (o *RealtimeEntryAggregated) HasStatus2xx() bool { return false } -// SetStatus2xx gets a reference to the given int32 and assigns it to the Status2xx field. -func (o *RealtimeEntryAggregated) SetStatus2xx(v int32) { +// SetStatus2xx gets a reference to the given int64 and assigns it to the Status2xx field. +func (o *RealtimeEntryAggregated) SetStatus2xx(v int64) { o.Status2xx = &v } // GetStatus3xx returns the Status3xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus3xx() int32 { +func (o *RealtimeEntryAggregated) GetStatus3xx() int64 { if o == nil || o.Status3xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status3xx @@ -2561,7 +2561,7 @@ func (o *RealtimeEntryAggregated) GetStatus3xx() int32 { // GetStatus3xxOk returns a tuple with the Status3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus3xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus3xxOk() (*int64, bool) { if o == nil || o.Status3xx == nil { return nil, false } @@ -2577,15 +2577,15 @@ func (o *RealtimeEntryAggregated) HasStatus3xx() bool { return false } -// SetStatus3xx gets a reference to the given int32 and assigns it to the Status3xx field. -func (o *RealtimeEntryAggregated) SetStatus3xx(v int32) { +// SetStatus3xx gets a reference to the given int64 and assigns it to the Status3xx field. +func (o *RealtimeEntryAggregated) SetStatus3xx(v int64) { o.Status3xx = &v } // GetStatus4xx returns the Status4xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus4xx() int32 { +func (o *RealtimeEntryAggregated) GetStatus4xx() int64 { if o == nil || o.Status4xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status4xx @@ -2593,7 +2593,7 @@ func (o *RealtimeEntryAggregated) GetStatus4xx() int32 { // GetStatus4xxOk returns a tuple with the Status4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus4xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus4xxOk() (*int64, bool) { if o == nil || o.Status4xx == nil { return nil, false } @@ -2609,15 +2609,15 @@ func (o *RealtimeEntryAggregated) HasStatus4xx() bool { return false } -// SetStatus4xx gets a reference to the given int32 and assigns it to the Status4xx field. -func (o *RealtimeEntryAggregated) SetStatus4xx(v int32) { +// SetStatus4xx gets a reference to the given int64 and assigns it to the Status4xx field. +func (o *RealtimeEntryAggregated) SetStatus4xx(v int64) { o.Status4xx = &v } // GetStatus5xx returns the Status5xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus5xx() int32 { +func (o *RealtimeEntryAggregated) GetStatus5xx() int64 { if o == nil || o.Status5xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status5xx @@ -2625,7 +2625,7 @@ func (o *RealtimeEntryAggregated) GetStatus5xx() int32 { // GetStatus5xxOk returns a tuple with the Status5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus5xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus5xxOk() (*int64, bool) { if o == nil || o.Status5xx == nil { return nil, false } @@ -2641,15 +2641,15 @@ func (o *RealtimeEntryAggregated) HasStatus5xx() bool { return false } -// SetStatus5xx gets a reference to the given int32 and assigns it to the Status5xx field. -func (o *RealtimeEntryAggregated) SetStatus5xx(v int32) { +// SetStatus5xx gets a reference to the given int64 and assigns it to the Status5xx field. +func (o *RealtimeEntryAggregated) SetStatus5xx(v int64) { o.Status5xx = &v } // GetStatus200 returns the Status200 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus200() int32 { +func (o *RealtimeEntryAggregated) GetStatus200() int64 { if o == nil || o.Status200 == nil { - var ret int32 + var ret int64 return ret } return *o.Status200 @@ -2657,7 +2657,7 @@ func (o *RealtimeEntryAggregated) GetStatus200() int32 { // GetStatus200Ok returns a tuple with the Status200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus200Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus200Ok() (*int64, bool) { if o == nil || o.Status200 == nil { return nil, false } @@ -2673,15 +2673,15 @@ func (o *RealtimeEntryAggregated) HasStatus200() bool { return false } -// SetStatus200 gets a reference to the given int32 and assigns it to the Status200 field. -func (o *RealtimeEntryAggregated) SetStatus200(v int32) { +// SetStatus200 gets a reference to the given int64 and assigns it to the Status200 field. +func (o *RealtimeEntryAggregated) SetStatus200(v int64) { o.Status200 = &v } // GetStatus204 returns the Status204 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus204() int32 { +func (o *RealtimeEntryAggregated) GetStatus204() int64 { if o == nil || o.Status204 == nil { - var ret int32 + var ret int64 return ret } return *o.Status204 @@ -2689,7 +2689,7 @@ func (o *RealtimeEntryAggregated) GetStatus204() int32 { // GetStatus204Ok returns a tuple with the Status204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus204Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus204Ok() (*int64, bool) { if o == nil || o.Status204 == nil { return nil, false } @@ -2705,15 +2705,15 @@ func (o *RealtimeEntryAggregated) HasStatus204() bool { return false } -// SetStatus204 gets a reference to the given int32 and assigns it to the Status204 field. -func (o *RealtimeEntryAggregated) SetStatus204(v int32) { +// SetStatus204 gets a reference to the given int64 and assigns it to the Status204 field. +func (o *RealtimeEntryAggregated) SetStatus204(v int64) { o.Status204 = &v } // GetStatus206 returns the Status206 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus206() int32 { +func (o *RealtimeEntryAggregated) GetStatus206() int64 { if o == nil || o.Status206 == nil { - var ret int32 + var ret int64 return ret } return *o.Status206 @@ -2721,7 +2721,7 @@ func (o *RealtimeEntryAggregated) GetStatus206() int32 { // GetStatus206Ok returns a tuple with the Status206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus206Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus206Ok() (*int64, bool) { if o == nil || o.Status206 == nil { return nil, false } @@ -2737,15 +2737,15 @@ func (o *RealtimeEntryAggregated) HasStatus206() bool { return false } -// SetStatus206 gets a reference to the given int32 and assigns it to the Status206 field. -func (o *RealtimeEntryAggregated) SetStatus206(v int32) { +// SetStatus206 gets a reference to the given int64 and assigns it to the Status206 field. +func (o *RealtimeEntryAggregated) SetStatus206(v int64) { o.Status206 = &v } // GetStatus301 returns the Status301 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus301() int32 { +func (o *RealtimeEntryAggregated) GetStatus301() int64 { if o == nil || o.Status301 == nil { - var ret int32 + var ret int64 return ret } return *o.Status301 @@ -2753,7 +2753,7 @@ func (o *RealtimeEntryAggregated) GetStatus301() int32 { // GetStatus301Ok returns a tuple with the Status301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus301Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus301Ok() (*int64, bool) { if o == nil || o.Status301 == nil { return nil, false } @@ -2769,15 +2769,15 @@ func (o *RealtimeEntryAggregated) HasStatus301() bool { return false } -// SetStatus301 gets a reference to the given int32 and assigns it to the Status301 field. -func (o *RealtimeEntryAggregated) SetStatus301(v int32) { +// SetStatus301 gets a reference to the given int64 and assigns it to the Status301 field. +func (o *RealtimeEntryAggregated) SetStatus301(v int64) { o.Status301 = &v } // GetStatus302 returns the Status302 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus302() int32 { +func (o *RealtimeEntryAggregated) GetStatus302() int64 { if o == nil || o.Status302 == nil { - var ret int32 + var ret int64 return ret } return *o.Status302 @@ -2785,7 +2785,7 @@ func (o *RealtimeEntryAggregated) GetStatus302() int32 { // GetStatus302Ok returns a tuple with the Status302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus302Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus302Ok() (*int64, bool) { if o == nil || o.Status302 == nil { return nil, false } @@ -2801,15 +2801,15 @@ func (o *RealtimeEntryAggregated) HasStatus302() bool { return false } -// SetStatus302 gets a reference to the given int32 and assigns it to the Status302 field. -func (o *RealtimeEntryAggregated) SetStatus302(v int32) { +// SetStatus302 gets a reference to the given int64 and assigns it to the Status302 field. +func (o *RealtimeEntryAggregated) SetStatus302(v int64) { o.Status302 = &v } // GetStatus304 returns the Status304 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus304() int32 { +func (o *RealtimeEntryAggregated) GetStatus304() int64 { if o == nil || o.Status304 == nil { - var ret int32 + var ret int64 return ret } return *o.Status304 @@ -2817,7 +2817,7 @@ func (o *RealtimeEntryAggregated) GetStatus304() int32 { // GetStatus304Ok returns a tuple with the Status304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus304Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus304Ok() (*int64, bool) { if o == nil || o.Status304 == nil { return nil, false } @@ -2833,15 +2833,15 @@ func (o *RealtimeEntryAggregated) HasStatus304() bool { return false } -// SetStatus304 gets a reference to the given int32 and assigns it to the Status304 field. -func (o *RealtimeEntryAggregated) SetStatus304(v int32) { +// SetStatus304 gets a reference to the given int64 and assigns it to the Status304 field. +func (o *RealtimeEntryAggregated) SetStatus304(v int64) { o.Status304 = &v } // GetStatus400 returns the Status400 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus400() int32 { +func (o *RealtimeEntryAggregated) GetStatus400() int64 { if o == nil || o.Status400 == nil { - var ret int32 + var ret int64 return ret } return *o.Status400 @@ -2849,7 +2849,7 @@ func (o *RealtimeEntryAggregated) GetStatus400() int32 { // GetStatus400Ok returns a tuple with the Status400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus400Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus400Ok() (*int64, bool) { if o == nil || o.Status400 == nil { return nil, false } @@ -2865,15 +2865,15 @@ func (o *RealtimeEntryAggregated) HasStatus400() bool { return false } -// SetStatus400 gets a reference to the given int32 and assigns it to the Status400 field. -func (o *RealtimeEntryAggregated) SetStatus400(v int32) { +// SetStatus400 gets a reference to the given int64 and assigns it to the Status400 field. +func (o *RealtimeEntryAggregated) SetStatus400(v int64) { o.Status400 = &v } // GetStatus401 returns the Status401 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus401() int32 { +func (o *RealtimeEntryAggregated) GetStatus401() int64 { if o == nil || o.Status401 == nil { - var ret int32 + var ret int64 return ret } return *o.Status401 @@ -2881,7 +2881,7 @@ func (o *RealtimeEntryAggregated) GetStatus401() int32 { // GetStatus401Ok returns a tuple with the Status401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus401Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus401Ok() (*int64, bool) { if o == nil || o.Status401 == nil { return nil, false } @@ -2897,15 +2897,15 @@ func (o *RealtimeEntryAggregated) HasStatus401() bool { return false } -// SetStatus401 gets a reference to the given int32 and assigns it to the Status401 field. -func (o *RealtimeEntryAggregated) SetStatus401(v int32) { +// SetStatus401 gets a reference to the given int64 and assigns it to the Status401 field. +func (o *RealtimeEntryAggregated) SetStatus401(v int64) { o.Status401 = &v } // GetStatus403 returns the Status403 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus403() int32 { +func (o *RealtimeEntryAggregated) GetStatus403() int64 { if o == nil || o.Status403 == nil { - var ret int32 + var ret int64 return ret } return *o.Status403 @@ -2913,7 +2913,7 @@ func (o *RealtimeEntryAggregated) GetStatus403() int32 { // GetStatus403Ok returns a tuple with the Status403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus403Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus403Ok() (*int64, bool) { if o == nil || o.Status403 == nil { return nil, false } @@ -2929,15 +2929,15 @@ func (o *RealtimeEntryAggregated) HasStatus403() bool { return false } -// SetStatus403 gets a reference to the given int32 and assigns it to the Status403 field. -func (o *RealtimeEntryAggregated) SetStatus403(v int32) { +// SetStatus403 gets a reference to the given int64 and assigns it to the Status403 field. +func (o *RealtimeEntryAggregated) SetStatus403(v int64) { o.Status403 = &v } // GetStatus404 returns the Status404 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus404() int32 { +func (o *RealtimeEntryAggregated) GetStatus404() int64 { if o == nil || o.Status404 == nil { - var ret int32 + var ret int64 return ret } return *o.Status404 @@ -2945,7 +2945,7 @@ func (o *RealtimeEntryAggregated) GetStatus404() int32 { // GetStatus404Ok returns a tuple with the Status404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus404Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus404Ok() (*int64, bool) { if o == nil || o.Status404 == nil { return nil, false } @@ -2961,15 +2961,15 @@ func (o *RealtimeEntryAggregated) HasStatus404() bool { return false } -// SetStatus404 gets a reference to the given int32 and assigns it to the Status404 field. -func (o *RealtimeEntryAggregated) SetStatus404(v int32) { +// SetStatus404 gets a reference to the given int64 and assigns it to the Status404 field. +func (o *RealtimeEntryAggregated) SetStatus404(v int64) { o.Status404 = &v } // GetStatus406 returns the Status406 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus406() int32 { +func (o *RealtimeEntryAggregated) GetStatus406() int64 { if o == nil || o.Status406 == nil { - var ret int32 + var ret int64 return ret } return *o.Status406 @@ -2977,7 +2977,7 @@ func (o *RealtimeEntryAggregated) GetStatus406() int32 { // GetStatus406Ok returns a tuple with the Status406 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus406Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus406Ok() (*int64, bool) { if o == nil || o.Status406 == nil { return nil, false } @@ -2993,15 +2993,15 @@ func (o *RealtimeEntryAggregated) HasStatus406() bool { return false } -// SetStatus406 gets a reference to the given int32 and assigns it to the Status406 field. -func (o *RealtimeEntryAggregated) SetStatus406(v int32) { +// SetStatus406 gets a reference to the given int64 and assigns it to the Status406 field. +func (o *RealtimeEntryAggregated) SetStatus406(v int64) { o.Status406 = &v } // GetStatus416 returns the Status416 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus416() int32 { +func (o *RealtimeEntryAggregated) GetStatus416() int64 { if o == nil || o.Status416 == nil { - var ret int32 + var ret int64 return ret } return *o.Status416 @@ -3009,7 +3009,7 @@ func (o *RealtimeEntryAggregated) GetStatus416() int32 { // GetStatus416Ok returns a tuple with the Status416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus416Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus416Ok() (*int64, bool) { if o == nil || o.Status416 == nil { return nil, false } @@ -3025,15 +3025,15 @@ func (o *RealtimeEntryAggregated) HasStatus416() bool { return false } -// SetStatus416 gets a reference to the given int32 and assigns it to the Status416 field. -func (o *RealtimeEntryAggregated) SetStatus416(v int32) { +// SetStatus416 gets a reference to the given int64 and assigns it to the Status416 field. +func (o *RealtimeEntryAggregated) SetStatus416(v int64) { o.Status416 = &v } // GetStatus429 returns the Status429 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus429() int32 { +func (o *RealtimeEntryAggregated) GetStatus429() int64 { if o == nil || o.Status429 == nil { - var ret int32 + var ret int64 return ret } return *o.Status429 @@ -3041,7 +3041,7 @@ func (o *RealtimeEntryAggregated) GetStatus429() int32 { // GetStatus429Ok returns a tuple with the Status429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus429Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus429Ok() (*int64, bool) { if o == nil || o.Status429 == nil { return nil, false } @@ -3057,15 +3057,15 @@ func (o *RealtimeEntryAggregated) HasStatus429() bool { return false } -// SetStatus429 gets a reference to the given int32 and assigns it to the Status429 field. -func (o *RealtimeEntryAggregated) SetStatus429(v int32) { +// SetStatus429 gets a reference to the given int64 and assigns it to the Status429 field. +func (o *RealtimeEntryAggregated) SetStatus429(v int64) { o.Status429 = &v } // GetStatus500 returns the Status500 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus500() int32 { +func (o *RealtimeEntryAggregated) GetStatus500() int64 { if o == nil || o.Status500 == nil { - var ret int32 + var ret int64 return ret } return *o.Status500 @@ -3073,7 +3073,7 @@ func (o *RealtimeEntryAggregated) GetStatus500() int32 { // GetStatus500Ok returns a tuple with the Status500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus500Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus500Ok() (*int64, bool) { if o == nil || o.Status500 == nil { return nil, false } @@ -3089,15 +3089,15 @@ func (o *RealtimeEntryAggregated) HasStatus500() bool { return false } -// SetStatus500 gets a reference to the given int32 and assigns it to the Status500 field. -func (o *RealtimeEntryAggregated) SetStatus500(v int32) { +// SetStatus500 gets a reference to the given int64 and assigns it to the Status500 field. +func (o *RealtimeEntryAggregated) SetStatus500(v int64) { o.Status500 = &v } // GetStatus501 returns the Status501 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus501() int32 { +func (o *RealtimeEntryAggregated) GetStatus501() int64 { if o == nil || o.Status501 == nil { - var ret int32 + var ret int64 return ret } return *o.Status501 @@ -3105,7 +3105,7 @@ func (o *RealtimeEntryAggregated) GetStatus501() int32 { // GetStatus501Ok returns a tuple with the Status501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus501Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus501Ok() (*int64, bool) { if o == nil || o.Status501 == nil { return nil, false } @@ -3121,15 +3121,15 @@ func (o *RealtimeEntryAggregated) HasStatus501() bool { return false } -// SetStatus501 gets a reference to the given int32 and assigns it to the Status501 field. -func (o *RealtimeEntryAggregated) SetStatus501(v int32) { +// SetStatus501 gets a reference to the given int64 and assigns it to the Status501 field. +func (o *RealtimeEntryAggregated) SetStatus501(v int64) { o.Status501 = &v } // GetStatus502 returns the Status502 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus502() int32 { +func (o *RealtimeEntryAggregated) GetStatus502() int64 { if o == nil || o.Status502 == nil { - var ret int32 + var ret int64 return ret } return *o.Status502 @@ -3137,7 +3137,7 @@ func (o *RealtimeEntryAggregated) GetStatus502() int32 { // GetStatus502Ok returns a tuple with the Status502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus502Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus502Ok() (*int64, bool) { if o == nil || o.Status502 == nil { return nil, false } @@ -3153,15 +3153,15 @@ func (o *RealtimeEntryAggregated) HasStatus502() bool { return false } -// SetStatus502 gets a reference to the given int32 and assigns it to the Status502 field. -func (o *RealtimeEntryAggregated) SetStatus502(v int32) { +// SetStatus502 gets a reference to the given int64 and assigns it to the Status502 field. +func (o *RealtimeEntryAggregated) SetStatus502(v int64) { o.Status502 = &v } // GetStatus503 returns the Status503 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus503() int32 { +func (o *RealtimeEntryAggregated) GetStatus503() int64 { if o == nil || o.Status503 == nil { - var ret int32 + var ret int64 return ret } return *o.Status503 @@ -3169,7 +3169,7 @@ func (o *RealtimeEntryAggregated) GetStatus503() int32 { // GetStatus503Ok returns a tuple with the Status503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus503Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus503Ok() (*int64, bool) { if o == nil || o.Status503 == nil { return nil, false } @@ -3185,15 +3185,15 @@ func (o *RealtimeEntryAggregated) HasStatus503() bool { return false } -// SetStatus503 gets a reference to the given int32 and assigns it to the Status503 field. -func (o *RealtimeEntryAggregated) SetStatus503(v int32) { +// SetStatus503 gets a reference to the given int64 and assigns it to the Status503 field. +func (o *RealtimeEntryAggregated) SetStatus503(v int64) { o.Status503 = &v } // GetStatus504 returns the Status504 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus504() int32 { +func (o *RealtimeEntryAggregated) GetStatus504() int64 { if o == nil || o.Status504 == nil { - var ret int32 + var ret int64 return ret } return *o.Status504 @@ -3201,7 +3201,7 @@ func (o *RealtimeEntryAggregated) GetStatus504() int32 { // GetStatus504Ok returns a tuple with the Status504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus504Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus504Ok() (*int64, bool) { if o == nil || o.Status504 == nil { return nil, false } @@ -3217,15 +3217,15 @@ func (o *RealtimeEntryAggregated) HasStatus504() bool { return false } -// SetStatus504 gets a reference to the given int32 and assigns it to the Status504 field. -func (o *RealtimeEntryAggregated) SetStatus504(v int32) { +// SetStatus504 gets a reference to the given int64 and assigns it to the Status504 field. +func (o *RealtimeEntryAggregated) SetStatus504(v int64) { o.Status504 = &v } // GetStatus505 returns the Status505 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetStatus505() int32 { +func (o *RealtimeEntryAggregated) GetStatus505() int64 { if o == nil || o.Status505 == nil { - var ret int32 + var ret int64 return ret } return *o.Status505 @@ -3233,7 +3233,7 @@ func (o *RealtimeEntryAggregated) GetStatus505() int32 { // GetStatus505Ok returns a tuple with the Status505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetStatus505Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetStatus505Ok() (*int64, bool) { if o == nil || o.Status505 == nil { return nil, false } @@ -3249,15 +3249,15 @@ func (o *RealtimeEntryAggregated) HasStatus505() bool { return false } -// SetStatus505 gets a reference to the given int32 and assigns it to the Status505 field. -func (o *RealtimeEntryAggregated) SetStatus505(v int32) { +// SetStatus505 gets a reference to the given int64 and assigns it to the Status505 field. +func (o *RealtimeEntryAggregated) SetStatus505(v int64) { o.Status505 = &v } // GetUncacheable returns the Uncacheable field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetUncacheable() int32 { +func (o *RealtimeEntryAggregated) GetUncacheable() int64 { if o == nil || o.Uncacheable == nil { - var ret int32 + var ret int64 return ret } return *o.Uncacheable @@ -3265,7 +3265,7 @@ func (o *RealtimeEntryAggregated) GetUncacheable() int32 { // GetUncacheableOk returns a tuple with the Uncacheable field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetUncacheableOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetUncacheableOk() (*int64, bool) { if o == nil || o.Uncacheable == nil { return nil, false } @@ -3281,8 +3281,8 @@ func (o *RealtimeEntryAggregated) HasUncacheable() bool { return false } -// SetUncacheable gets a reference to the given int32 and assigns it to the Uncacheable field. -func (o *RealtimeEntryAggregated) SetUncacheable(v int32) { +// SetUncacheable gets a reference to the given int64 and assigns it to the Uncacheable field. +func (o *RealtimeEntryAggregated) SetUncacheable(v int64) { o.Uncacheable = &v } @@ -3319,9 +3319,9 @@ func (o *RealtimeEntryAggregated) SetPassTime(v float32) { } // GetTLS returns the TLS field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetTLS() int32 { +func (o *RealtimeEntryAggregated) GetTLS() int64 { if o == nil || o.TLS == nil { - var ret int32 + var ret int64 return ret } return *o.TLS @@ -3329,7 +3329,7 @@ func (o *RealtimeEntryAggregated) GetTLS() int32 { // GetTLSOk returns a tuple with the TLS field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetTLSOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetTLSOk() (*int64, bool) { if o == nil || o.TLS == nil { return nil, false } @@ -3345,15 +3345,15 @@ func (o *RealtimeEntryAggregated) HasTLS() bool { return false } -// SetTLS gets a reference to the given int32 and assigns it to the TLS field. -func (o *RealtimeEntryAggregated) SetTLS(v int32) { +// SetTLS gets a reference to the given int64 and assigns it to the TLS field. +func (o *RealtimeEntryAggregated) SetTLS(v int64) { o.TLS = &v } // GetTLSV10 returns the TLSV10 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetTLSV10() int32 { +func (o *RealtimeEntryAggregated) GetTLSV10() int64 { if o == nil || o.TLSV10 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV10 @@ -3361,7 +3361,7 @@ func (o *RealtimeEntryAggregated) GetTLSV10() int32 { // GetTLSV10Ok returns a tuple with the TLSV10 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetTLSV10Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetTLSV10Ok() (*int64, bool) { if o == nil || o.TLSV10 == nil { return nil, false } @@ -3377,15 +3377,15 @@ func (o *RealtimeEntryAggregated) HasTLSV10() bool { return false } -// SetTLSV10 gets a reference to the given int32 and assigns it to the TLSV10 field. -func (o *RealtimeEntryAggregated) SetTLSV10(v int32) { +// SetTLSV10 gets a reference to the given int64 and assigns it to the TLSV10 field. +func (o *RealtimeEntryAggregated) SetTLSV10(v int64) { o.TLSV10 = &v } // GetTLSV11 returns the TLSV11 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetTLSV11() int32 { +func (o *RealtimeEntryAggregated) GetTLSV11() int64 { if o == nil || o.TLSV11 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV11 @@ -3393,7 +3393,7 @@ func (o *RealtimeEntryAggregated) GetTLSV11() int32 { // GetTLSV11Ok returns a tuple with the TLSV11 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetTLSV11Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetTLSV11Ok() (*int64, bool) { if o == nil || o.TLSV11 == nil { return nil, false } @@ -3409,15 +3409,15 @@ func (o *RealtimeEntryAggregated) HasTLSV11() bool { return false } -// SetTLSV11 gets a reference to the given int32 and assigns it to the TLSV11 field. -func (o *RealtimeEntryAggregated) SetTLSV11(v int32) { +// SetTLSV11 gets a reference to the given int64 and assigns it to the TLSV11 field. +func (o *RealtimeEntryAggregated) SetTLSV11(v int64) { o.TLSV11 = &v } // GetTLSV12 returns the TLSV12 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetTLSV12() int32 { +func (o *RealtimeEntryAggregated) GetTLSV12() int64 { if o == nil || o.TLSV12 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV12 @@ -3425,7 +3425,7 @@ func (o *RealtimeEntryAggregated) GetTLSV12() int32 { // GetTLSV12Ok returns a tuple with the TLSV12 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetTLSV12Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetTLSV12Ok() (*int64, bool) { if o == nil || o.TLSV12 == nil { return nil, false } @@ -3441,15 +3441,15 @@ func (o *RealtimeEntryAggregated) HasTLSV12() bool { return false } -// SetTLSV12 gets a reference to the given int32 and assigns it to the TLSV12 field. -func (o *RealtimeEntryAggregated) SetTLSV12(v int32) { +// SetTLSV12 gets a reference to the given int64 and assigns it to the TLSV12 field. +func (o *RealtimeEntryAggregated) SetTLSV12(v int64) { o.TLSV12 = &v } // GetTLSV13 returns the TLSV13 field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetTLSV13() int32 { +func (o *RealtimeEntryAggregated) GetTLSV13() int64 { if o == nil || o.TLSV13 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV13 @@ -3457,7 +3457,7 @@ func (o *RealtimeEntryAggregated) GetTLSV13() int32 { // GetTLSV13Ok returns a tuple with the TLSV13 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetTLSV13Ok() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetTLSV13Ok() (*int64, bool) { if o == nil || o.TLSV13 == nil { return nil, false } @@ -3473,15 +3473,15 @@ func (o *RealtimeEntryAggregated) HasTLSV13() bool { return false } -// SetTLSV13 gets a reference to the given int32 and assigns it to the TLSV13 field. -func (o *RealtimeEntryAggregated) SetTLSV13(v int32) { +// SetTLSV13 gets a reference to the given int64 and assigns it to the TLSV13 field. +func (o *RealtimeEntryAggregated) SetTLSV13(v int64) { o.TLSV13 = &v } // GetObjectSize1k returns the ObjectSize1k field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetObjectSize1k() int32 { +func (o *RealtimeEntryAggregated) GetObjectSize1k() int64 { if o == nil || o.ObjectSize1k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1k @@ -3489,7 +3489,7 @@ func (o *RealtimeEntryAggregated) GetObjectSize1k() int32 { // GetObjectSize1kOk returns a tuple with the ObjectSize1k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetObjectSize1kOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectSize1kOk() (*int64, bool) { if o == nil || o.ObjectSize1k == nil { return nil, false } @@ -3505,15 +3505,15 @@ func (o *RealtimeEntryAggregated) HasObjectSize1k() bool { return false } -// SetObjectSize1k gets a reference to the given int32 and assigns it to the ObjectSize1k field. -func (o *RealtimeEntryAggregated) SetObjectSize1k(v int32) { +// SetObjectSize1k gets a reference to the given int64 and assigns it to the ObjectSize1k field. +func (o *RealtimeEntryAggregated) SetObjectSize1k(v int64) { o.ObjectSize1k = &v } // GetObjectSize10k returns the ObjectSize10k field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetObjectSize10k() int32 { +func (o *RealtimeEntryAggregated) GetObjectSize10k() int64 { if o == nil || o.ObjectSize10k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize10k @@ -3521,7 +3521,7 @@ func (o *RealtimeEntryAggregated) GetObjectSize10k() int32 { // GetObjectSize10kOk returns a tuple with the ObjectSize10k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetObjectSize10kOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectSize10kOk() (*int64, bool) { if o == nil || o.ObjectSize10k == nil { return nil, false } @@ -3537,15 +3537,15 @@ func (o *RealtimeEntryAggregated) HasObjectSize10k() bool { return false } -// SetObjectSize10k gets a reference to the given int32 and assigns it to the ObjectSize10k field. -func (o *RealtimeEntryAggregated) SetObjectSize10k(v int32) { +// SetObjectSize10k gets a reference to the given int64 and assigns it to the ObjectSize10k field. +func (o *RealtimeEntryAggregated) SetObjectSize10k(v int64) { o.ObjectSize10k = &v } // GetObjectSize100k returns the ObjectSize100k field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetObjectSize100k() int32 { +func (o *RealtimeEntryAggregated) GetObjectSize100k() int64 { if o == nil || o.ObjectSize100k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize100k @@ -3553,7 +3553,7 @@ func (o *RealtimeEntryAggregated) GetObjectSize100k() int32 { // GetObjectSize100kOk returns a tuple with the ObjectSize100k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetObjectSize100kOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectSize100kOk() (*int64, bool) { if o == nil || o.ObjectSize100k == nil { return nil, false } @@ -3569,15 +3569,15 @@ func (o *RealtimeEntryAggregated) HasObjectSize100k() bool { return false } -// SetObjectSize100k gets a reference to the given int32 and assigns it to the ObjectSize100k field. -func (o *RealtimeEntryAggregated) SetObjectSize100k(v int32) { +// SetObjectSize100k gets a reference to the given int64 and assigns it to the ObjectSize100k field. +func (o *RealtimeEntryAggregated) SetObjectSize100k(v int64) { o.ObjectSize100k = &v } // GetObjectSize1m returns the ObjectSize1m field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetObjectSize1m() int32 { +func (o *RealtimeEntryAggregated) GetObjectSize1m() int64 { if o == nil || o.ObjectSize1m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1m @@ -3585,7 +3585,7 @@ func (o *RealtimeEntryAggregated) GetObjectSize1m() int32 { // GetObjectSize1mOk returns a tuple with the ObjectSize1m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetObjectSize1mOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectSize1mOk() (*int64, bool) { if o == nil || o.ObjectSize1m == nil { return nil, false } @@ -3601,15 +3601,15 @@ func (o *RealtimeEntryAggregated) HasObjectSize1m() bool { return false } -// SetObjectSize1m gets a reference to the given int32 and assigns it to the ObjectSize1m field. -func (o *RealtimeEntryAggregated) SetObjectSize1m(v int32) { +// SetObjectSize1m gets a reference to the given int64 and assigns it to the ObjectSize1m field. +func (o *RealtimeEntryAggregated) SetObjectSize1m(v int64) { o.ObjectSize1m = &v } // GetObjectSize10m returns the ObjectSize10m field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetObjectSize10m() int32 { +func (o *RealtimeEntryAggregated) GetObjectSize10m() int64 { if o == nil || o.ObjectSize10m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize10m @@ -3617,7 +3617,7 @@ func (o *RealtimeEntryAggregated) GetObjectSize10m() int32 { // GetObjectSize10mOk returns a tuple with the ObjectSize10m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetObjectSize10mOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectSize10mOk() (*int64, bool) { if o == nil || o.ObjectSize10m == nil { return nil, false } @@ -3633,15 +3633,15 @@ func (o *RealtimeEntryAggregated) HasObjectSize10m() bool { return false } -// SetObjectSize10m gets a reference to the given int32 and assigns it to the ObjectSize10m field. -func (o *RealtimeEntryAggregated) SetObjectSize10m(v int32) { +// SetObjectSize10m gets a reference to the given int64 and assigns it to the ObjectSize10m field. +func (o *RealtimeEntryAggregated) SetObjectSize10m(v int64) { o.ObjectSize10m = &v } // GetObjectSize100m returns the ObjectSize100m field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetObjectSize100m() int32 { +func (o *RealtimeEntryAggregated) GetObjectSize100m() int64 { if o == nil || o.ObjectSize100m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize100m @@ -3649,7 +3649,7 @@ func (o *RealtimeEntryAggregated) GetObjectSize100m() int32 { // GetObjectSize100mOk returns a tuple with the ObjectSize100m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetObjectSize100mOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectSize100mOk() (*int64, bool) { if o == nil || o.ObjectSize100m == nil { return nil, false } @@ -3665,15 +3665,15 @@ func (o *RealtimeEntryAggregated) HasObjectSize100m() bool { return false } -// SetObjectSize100m gets a reference to the given int32 and assigns it to the ObjectSize100m field. -func (o *RealtimeEntryAggregated) SetObjectSize100m(v int32) { +// SetObjectSize100m gets a reference to the given int64 and assigns it to the ObjectSize100m field. +func (o *RealtimeEntryAggregated) SetObjectSize100m(v int64) { o.ObjectSize100m = &v } // GetObjectSize1g returns the ObjectSize1g field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetObjectSize1g() int32 { +func (o *RealtimeEntryAggregated) GetObjectSize1g() int64 { if o == nil || o.ObjectSize1g == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1g @@ -3681,7 +3681,7 @@ func (o *RealtimeEntryAggregated) GetObjectSize1g() int32 { // GetObjectSize1gOk returns a tuple with the ObjectSize1g field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetObjectSize1gOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectSize1gOk() (*int64, bool) { if o == nil || o.ObjectSize1g == nil { return nil, false } @@ -3697,15 +3697,15 @@ func (o *RealtimeEntryAggregated) HasObjectSize1g() bool { return false } -// SetObjectSize1g gets a reference to the given int32 and assigns it to the ObjectSize1g field. -func (o *RealtimeEntryAggregated) SetObjectSize1g(v int32) { +// SetObjectSize1g gets a reference to the given int64 and assigns it to the ObjectSize1g field. +func (o *RealtimeEntryAggregated) SetObjectSize1g(v int64) { o.ObjectSize1g = &v } // GetObjectSizeOther returns the ObjectSizeOther field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetObjectSizeOther() int32 { +func (o *RealtimeEntryAggregated) GetObjectSizeOther() int64 { if o == nil || o.ObjectSizeOther == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSizeOther @@ -3713,7 +3713,7 @@ func (o *RealtimeEntryAggregated) GetObjectSizeOther() int32 { // GetObjectSizeOtherOk returns a tuple with the ObjectSizeOther field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetObjectSizeOtherOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectSizeOtherOk() (*int64, bool) { if o == nil || o.ObjectSizeOther == nil { return nil, false } @@ -3729,8 +3729,8 @@ func (o *RealtimeEntryAggregated) HasObjectSizeOther() bool { return false } -// SetObjectSizeOther gets a reference to the given int32 and assigns it to the ObjectSizeOther field. -func (o *RealtimeEntryAggregated) SetObjectSizeOther(v int32) { +// SetObjectSizeOther gets a reference to the given int64 and assigns it to the ObjectSizeOther field. +func (o *RealtimeEntryAggregated) SetObjectSizeOther(v int64) { o.ObjectSizeOther = &v } @@ -3767,9 +3767,9 @@ func (o *RealtimeEntryAggregated) SetRecvSubTime(v float32) { } // GetRecvSubCount returns the RecvSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetRecvSubCount() int32 { +func (o *RealtimeEntryAggregated) GetRecvSubCount() int64 { if o == nil || o.RecvSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.RecvSubCount @@ -3777,7 +3777,7 @@ func (o *RealtimeEntryAggregated) GetRecvSubCount() int32 { // GetRecvSubCountOk returns a tuple with the RecvSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetRecvSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetRecvSubCountOk() (*int64, bool) { if o == nil || o.RecvSubCount == nil { return nil, false } @@ -3793,8 +3793,8 @@ func (o *RealtimeEntryAggregated) HasRecvSubCount() bool { return false } -// SetRecvSubCount gets a reference to the given int32 and assigns it to the RecvSubCount field. -func (o *RealtimeEntryAggregated) SetRecvSubCount(v int32) { +// SetRecvSubCount gets a reference to the given int64 and assigns it to the RecvSubCount field. +func (o *RealtimeEntryAggregated) SetRecvSubCount(v int64) { o.RecvSubCount = &v } @@ -3831,9 +3831,9 @@ func (o *RealtimeEntryAggregated) SetHashSubTime(v float32) { } // GetHashSubCount returns the HashSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetHashSubCount() int32 { +func (o *RealtimeEntryAggregated) GetHashSubCount() int64 { if o == nil || o.HashSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.HashSubCount @@ -3841,7 +3841,7 @@ func (o *RealtimeEntryAggregated) GetHashSubCount() int32 { // GetHashSubCountOk returns a tuple with the HashSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetHashSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetHashSubCountOk() (*int64, bool) { if o == nil || o.HashSubCount == nil { return nil, false } @@ -3857,8 +3857,8 @@ func (o *RealtimeEntryAggregated) HasHashSubCount() bool { return false } -// SetHashSubCount gets a reference to the given int32 and assigns it to the HashSubCount field. -func (o *RealtimeEntryAggregated) SetHashSubCount(v int32) { +// SetHashSubCount gets a reference to the given int64 and assigns it to the HashSubCount field. +func (o *RealtimeEntryAggregated) SetHashSubCount(v int64) { o.HashSubCount = &v } @@ -3895,9 +3895,9 @@ func (o *RealtimeEntryAggregated) SetMissSubTime(v float32) { } // GetMissSubCount returns the MissSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetMissSubCount() int32 { +func (o *RealtimeEntryAggregated) GetMissSubCount() int64 { if o == nil || o.MissSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.MissSubCount @@ -3905,7 +3905,7 @@ func (o *RealtimeEntryAggregated) GetMissSubCount() int32 { // GetMissSubCountOk returns a tuple with the MissSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetMissSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetMissSubCountOk() (*int64, bool) { if o == nil || o.MissSubCount == nil { return nil, false } @@ -3921,8 +3921,8 @@ func (o *RealtimeEntryAggregated) HasMissSubCount() bool { return false } -// SetMissSubCount gets a reference to the given int32 and assigns it to the MissSubCount field. -func (o *RealtimeEntryAggregated) SetMissSubCount(v int32) { +// SetMissSubCount gets a reference to the given int64 and assigns it to the MissSubCount field. +func (o *RealtimeEntryAggregated) SetMissSubCount(v int64) { o.MissSubCount = &v } @@ -3959,9 +3959,9 @@ func (o *RealtimeEntryAggregated) SetFetchSubTime(v float32) { } // GetFetchSubCount returns the FetchSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFetchSubCount() int32 { +func (o *RealtimeEntryAggregated) GetFetchSubCount() int64 { if o == nil || o.FetchSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.FetchSubCount @@ -3969,7 +3969,7 @@ func (o *RealtimeEntryAggregated) GetFetchSubCount() int32 { // GetFetchSubCountOk returns a tuple with the FetchSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFetchSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFetchSubCountOk() (*int64, bool) { if o == nil || o.FetchSubCount == nil { return nil, false } @@ -3985,8 +3985,8 @@ func (o *RealtimeEntryAggregated) HasFetchSubCount() bool { return false } -// SetFetchSubCount gets a reference to the given int32 and assigns it to the FetchSubCount field. -func (o *RealtimeEntryAggregated) SetFetchSubCount(v int32) { +// SetFetchSubCount gets a reference to the given int64 and assigns it to the FetchSubCount field. +func (o *RealtimeEntryAggregated) SetFetchSubCount(v int64) { o.FetchSubCount = &v } @@ -4023,9 +4023,9 @@ func (o *RealtimeEntryAggregated) SetPassSubTime(v float32) { } // GetPassSubCount returns the PassSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetPassSubCount() int32 { +func (o *RealtimeEntryAggregated) GetPassSubCount() int64 { if o == nil || o.PassSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PassSubCount @@ -4033,7 +4033,7 @@ func (o *RealtimeEntryAggregated) GetPassSubCount() int32 { // GetPassSubCountOk returns a tuple with the PassSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetPassSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetPassSubCountOk() (*int64, bool) { if o == nil || o.PassSubCount == nil { return nil, false } @@ -4049,8 +4049,8 @@ func (o *RealtimeEntryAggregated) HasPassSubCount() bool { return false } -// SetPassSubCount gets a reference to the given int32 and assigns it to the PassSubCount field. -func (o *RealtimeEntryAggregated) SetPassSubCount(v int32) { +// SetPassSubCount gets a reference to the given int64 and assigns it to the PassSubCount field. +func (o *RealtimeEntryAggregated) SetPassSubCount(v int64) { o.PassSubCount = &v } @@ -4087,9 +4087,9 @@ func (o *RealtimeEntryAggregated) SetPipeSubTime(v float32) { } // GetPipeSubCount returns the PipeSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetPipeSubCount() int32 { +func (o *RealtimeEntryAggregated) GetPipeSubCount() int64 { if o == nil || o.PipeSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PipeSubCount @@ -4097,7 +4097,7 @@ func (o *RealtimeEntryAggregated) GetPipeSubCount() int32 { // GetPipeSubCountOk returns a tuple with the PipeSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetPipeSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetPipeSubCountOk() (*int64, bool) { if o == nil || o.PipeSubCount == nil { return nil, false } @@ -4113,8 +4113,8 @@ func (o *RealtimeEntryAggregated) HasPipeSubCount() bool { return false } -// SetPipeSubCount gets a reference to the given int32 and assigns it to the PipeSubCount field. -func (o *RealtimeEntryAggregated) SetPipeSubCount(v int32) { +// SetPipeSubCount gets a reference to the given int64 and assigns it to the PipeSubCount field. +func (o *RealtimeEntryAggregated) SetPipeSubCount(v int64) { o.PipeSubCount = &v } @@ -4151,9 +4151,9 @@ func (o *RealtimeEntryAggregated) SetDeliverSubTime(v float32) { } // GetDeliverSubCount returns the DeliverSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDeliverSubCount() int32 { +func (o *RealtimeEntryAggregated) GetDeliverSubCount() int64 { if o == nil || o.DeliverSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.DeliverSubCount @@ -4161,7 +4161,7 @@ func (o *RealtimeEntryAggregated) GetDeliverSubCount() int32 { // GetDeliverSubCountOk returns a tuple with the DeliverSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDeliverSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDeliverSubCountOk() (*int64, bool) { if o == nil || o.DeliverSubCount == nil { return nil, false } @@ -4177,8 +4177,8 @@ func (o *RealtimeEntryAggregated) HasDeliverSubCount() bool { return false } -// SetDeliverSubCount gets a reference to the given int32 and assigns it to the DeliverSubCount field. -func (o *RealtimeEntryAggregated) SetDeliverSubCount(v int32) { +// SetDeliverSubCount gets a reference to the given int64 and assigns it to the DeliverSubCount field. +func (o *RealtimeEntryAggregated) SetDeliverSubCount(v int64) { o.DeliverSubCount = &v } @@ -4215,9 +4215,9 @@ func (o *RealtimeEntryAggregated) SetErrorSubTime(v float32) { } // GetErrorSubCount returns the ErrorSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetErrorSubCount() int32 { +func (o *RealtimeEntryAggregated) GetErrorSubCount() int64 { if o == nil || o.ErrorSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.ErrorSubCount @@ -4225,7 +4225,7 @@ func (o *RealtimeEntryAggregated) GetErrorSubCount() int32 { // GetErrorSubCountOk returns a tuple with the ErrorSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetErrorSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetErrorSubCountOk() (*int64, bool) { if o == nil || o.ErrorSubCount == nil { return nil, false } @@ -4241,8 +4241,8 @@ func (o *RealtimeEntryAggregated) HasErrorSubCount() bool { return false } -// SetErrorSubCount gets a reference to the given int32 and assigns it to the ErrorSubCount field. -func (o *RealtimeEntryAggregated) SetErrorSubCount(v int32) { +// SetErrorSubCount gets a reference to the given int64 and assigns it to the ErrorSubCount field. +func (o *RealtimeEntryAggregated) SetErrorSubCount(v int64) { o.ErrorSubCount = &v } @@ -4279,9 +4279,9 @@ func (o *RealtimeEntryAggregated) SetHitSubTime(v float32) { } // GetHitSubCount returns the HitSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetHitSubCount() int32 { +func (o *RealtimeEntryAggregated) GetHitSubCount() int64 { if o == nil || o.HitSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.HitSubCount @@ -4289,7 +4289,7 @@ func (o *RealtimeEntryAggregated) GetHitSubCount() int32 { // GetHitSubCountOk returns a tuple with the HitSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetHitSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetHitSubCountOk() (*int64, bool) { if o == nil || o.HitSubCount == nil { return nil, false } @@ -4305,8 +4305,8 @@ func (o *RealtimeEntryAggregated) HasHitSubCount() bool { return false } -// SetHitSubCount gets a reference to the given int32 and assigns it to the HitSubCount field. -func (o *RealtimeEntryAggregated) SetHitSubCount(v int32) { +// SetHitSubCount gets a reference to the given int64 and assigns it to the HitSubCount field. +func (o *RealtimeEntryAggregated) SetHitSubCount(v int64) { o.HitSubCount = &v } @@ -4343,9 +4343,9 @@ func (o *RealtimeEntryAggregated) SetPrehashSubTime(v float32) { } // GetPrehashSubCount returns the PrehashSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetPrehashSubCount() int32 { +func (o *RealtimeEntryAggregated) GetPrehashSubCount() int64 { if o == nil || o.PrehashSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PrehashSubCount @@ -4353,7 +4353,7 @@ func (o *RealtimeEntryAggregated) GetPrehashSubCount() int32 { // GetPrehashSubCountOk returns a tuple with the PrehashSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetPrehashSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetPrehashSubCountOk() (*int64, bool) { if o == nil || o.PrehashSubCount == nil { return nil, false } @@ -4369,8 +4369,8 @@ func (o *RealtimeEntryAggregated) HasPrehashSubCount() bool { return false } -// SetPrehashSubCount gets a reference to the given int32 and assigns it to the PrehashSubCount field. -func (o *RealtimeEntryAggregated) SetPrehashSubCount(v int32) { +// SetPrehashSubCount gets a reference to the given int64 and assigns it to the PrehashSubCount field. +func (o *RealtimeEntryAggregated) SetPrehashSubCount(v int64) { o.PrehashSubCount = &v } @@ -4407,9 +4407,9 @@ func (o *RealtimeEntryAggregated) SetPredeliverSubTime(v float32) { } // GetPredeliverSubCount returns the PredeliverSubCount field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetPredeliverSubCount() int32 { +func (o *RealtimeEntryAggregated) GetPredeliverSubCount() int64 { if o == nil || o.PredeliverSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PredeliverSubCount @@ -4417,7 +4417,7 @@ func (o *RealtimeEntryAggregated) GetPredeliverSubCount() int32 { // GetPredeliverSubCountOk returns a tuple with the PredeliverSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetPredeliverSubCountOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetPredeliverSubCountOk() (*int64, bool) { if o == nil || o.PredeliverSubCount == nil { return nil, false } @@ -4433,15 +4433,15 @@ func (o *RealtimeEntryAggregated) HasPredeliverSubCount() bool { return false } -// SetPredeliverSubCount gets a reference to the given int32 and assigns it to the PredeliverSubCount field. -func (o *RealtimeEntryAggregated) SetPredeliverSubCount(v int32) { +// SetPredeliverSubCount gets a reference to the given int64 and assigns it to the PredeliverSubCount field. +func (o *RealtimeEntryAggregated) SetPredeliverSubCount(v int64) { o.PredeliverSubCount = &v } // GetHitRespBodyBytes returns the HitRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetHitRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetHitRespBodyBytes() int64 { if o == nil || o.HitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.HitRespBodyBytes @@ -4449,7 +4449,7 @@ func (o *RealtimeEntryAggregated) GetHitRespBodyBytes() int32 { // GetHitRespBodyBytesOk returns a tuple with the HitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetHitRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.HitRespBodyBytes == nil { return nil, false } @@ -4465,15 +4465,15 @@ func (o *RealtimeEntryAggregated) HasHitRespBodyBytes() bool { return false } -// SetHitRespBodyBytes gets a reference to the given int32 and assigns it to the HitRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetHitRespBodyBytes(v int32) { +// SetHitRespBodyBytes gets a reference to the given int64 and assigns it to the HitRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetHitRespBodyBytes(v int64) { o.HitRespBodyBytes = &v } // GetMissRespBodyBytes returns the MissRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetMissRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetMissRespBodyBytes() int64 { if o == nil || o.MissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.MissRespBodyBytes @@ -4481,7 +4481,7 @@ func (o *RealtimeEntryAggregated) GetMissRespBodyBytes() int32 { // GetMissRespBodyBytesOk returns a tuple with the MissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetMissRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.MissRespBodyBytes == nil { return nil, false } @@ -4497,15 +4497,15 @@ func (o *RealtimeEntryAggregated) HasMissRespBodyBytes() bool { return false } -// SetMissRespBodyBytes gets a reference to the given int32 and assigns it to the MissRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetMissRespBodyBytes(v int32) { +// SetMissRespBodyBytes gets a reference to the given int64 and assigns it to the MissRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetMissRespBodyBytes(v int64) { o.MissRespBodyBytes = &v } // GetPassRespBodyBytes returns the PassRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetPassRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetPassRespBodyBytes() int64 { if o == nil || o.PassRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.PassRespBodyBytes @@ -4513,7 +4513,7 @@ func (o *RealtimeEntryAggregated) GetPassRespBodyBytes() int32 { // GetPassRespBodyBytesOk returns a tuple with the PassRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetPassRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetPassRespBodyBytesOk() (*int64, bool) { if o == nil || o.PassRespBodyBytes == nil { return nil, false } @@ -4529,15 +4529,15 @@ func (o *RealtimeEntryAggregated) HasPassRespBodyBytes() bool { return false } -// SetPassRespBodyBytes gets a reference to the given int32 and assigns it to the PassRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetPassRespBodyBytes(v int32) { +// SetPassRespBodyBytes gets a reference to the given int64 and assigns it to the PassRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetPassRespBodyBytes(v int64) { o.PassRespBodyBytes = &v } // GetComputeReqHeaderBytes returns the ComputeReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytes() int64 { if o == nil || o.ComputeReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeReqHeaderBytes @@ -4545,7 +4545,7 @@ func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytes() int32 { // GetComputeReqHeaderBytesOk returns a tuple with the ComputeReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeReqHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeReqHeaderBytes == nil { return nil, false } @@ -4561,15 +4561,15 @@ func (o *RealtimeEntryAggregated) HasComputeReqHeaderBytes() bool { return false } -// SetComputeReqHeaderBytes gets a reference to the given int32 and assigns it to the ComputeReqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetComputeReqHeaderBytes(v int32) { +// SetComputeReqHeaderBytes gets a reference to the given int64 and assigns it to the ComputeReqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetComputeReqHeaderBytes(v int64) { o.ComputeReqHeaderBytes = &v } // GetComputeReqBodyBytes returns the ComputeReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeReqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetComputeReqBodyBytes() int64 { if o == nil || o.ComputeReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeReqBodyBytes @@ -4577,7 +4577,7 @@ func (o *RealtimeEntryAggregated) GetComputeReqBodyBytes() int32 { // GetComputeReqBodyBytesOk returns a tuple with the ComputeReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeReqBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeReqBodyBytes == nil { return nil, false } @@ -4593,15 +4593,15 @@ func (o *RealtimeEntryAggregated) HasComputeReqBodyBytes() bool { return false } -// SetComputeReqBodyBytes gets a reference to the given int32 and assigns it to the ComputeReqBodyBytes field. -func (o *RealtimeEntryAggregated) SetComputeReqBodyBytes(v int32) { +// SetComputeReqBodyBytes gets a reference to the given int64 and assigns it to the ComputeReqBodyBytes field. +func (o *RealtimeEntryAggregated) SetComputeReqBodyBytes(v int64) { o.ComputeReqBodyBytes = &v } // GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytes() int64 { if o == nil || o.ComputeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespHeaderBytes @@ -4609,7 +4609,7 @@ func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytes() int32 { // GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeRespHeaderBytes == nil { return nil, false } @@ -4625,15 +4625,15 @@ func (o *RealtimeEntryAggregated) HasComputeRespHeaderBytes() bool { return false } -// SetComputeRespHeaderBytes gets a reference to the given int32 and assigns it to the ComputeRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetComputeRespHeaderBytes(v int32) { +// SetComputeRespHeaderBytes gets a reference to the given int64 and assigns it to the ComputeRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetComputeRespHeaderBytes(v int64) { o.ComputeRespHeaderBytes = &v } // GetComputeRespBodyBytes returns the ComputeRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetComputeRespBodyBytes() int64 { if o == nil || o.ComputeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespBodyBytes @@ -4641,7 +4641,7 @@ func (o *RealtimeEntryAggregated) GetComputeRespBodyBytes() int32 { // GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRespBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeRespBodyBytes == nil { return nil, false } @@ -4657,15 +4657,15 @@ func (o *RealtimeEntryAggregated) HasComputeRespBodyBytes() bool { return false } -// SetComputeRespBodyBytes gets a reference to the given int32 and assigns it to the ComputeRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetComputeRespBodyBytes(v int32) { +// SetComputeRespBodyBytes gets a reference to the given int64 and assigns it to the ComputeRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetComputeRespBodyBytes(v int64) { o.ComputeRespBodyBytes = &v } // GetImgvideo returns the Imgvideo field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgvideo() int32 { +func (o *RealtimeEntryAggregated) GetImgvideo() int64 { if o == nil || o.Imgvideo == nil { - var ret int32 + var ret int64 return ret } return *o.Imgvideo @@ -4673,7 +4673,7 @@ func (o *RealtimeEntryAggregated) GetImgvideo() int32 { // GetImgvideoOk returns a tuple with the Imgvideo field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgvideoOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgvideoOk() (*int64, bool) { if o == nil || o.Imgvideo == nil { return nil, false } @@ -4689,15 +4689,15 @@ func (o *RealtimeEntryAggregated) HasImgvideo() bool { return false } -// SetImgvideo gets a reference to the given int32 and assigns it to the Imgvideo field. -func (o *RealtimeEntryAggregated) SetImgvideo(v int32) { +// SetImgvideo gets a reference to the given int64 and assigns it to the Imgvideo field. +func (o *RealtimeEntryAggregated) SetImgvideo(v int64) { o.Imgvideo = &v } // GetImgvideoFrames returns the ImgvideoFrames field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgvideoFrames() int32 { +func (o *RealtimeEntryAggregated) GetImgvideoFrames() int64 { if o == nil || o.ImgvideoFrames == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoFrames @@ -4705,7 +4705,7 @@ func (o *RealtimeEntryAggregated) GetImgvideoFrames() int32 { // GetImgvideoFramesOk returns a tuple with the ImgvideoFrames field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgvideoFramesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgvideoFramesOk() (*int64, bool) { if o == nil || o.ImgvideoFrames == nil { return nil, false } @@ -4721,15 +4721,15 @@ func (o *RealtimeEntryAggregated) HasImgvideoFrames() bool { return false } -// SetImgvideoFrames gets a reference to the given int32 and assigns it to the ImgvideoFrames field. -func (o *RealtimeEntryAggregated) SetImgvideoFrames(v int32) { +// SetImgvideoFrames gets a reference to the given int64 and assigns it to the ImgvideoFrames field. +func (o *RealtimeEntryAggregated) SetImgvideoFrames(v int64) { o.ImgvideoFrames = &v } // GetImgvideoRespHeaderBytes returns the ImgvideoRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytes() int64 { if o == nil || o.ImgvideoRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoRespHeaderBytes @@ -4737,7 +4737,7 @@ func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytes() int32 { // GetImgvideoRespHeaderBytesOk returns a tuple with the ImgvideoRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgvideoRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgvideoRespHeaderBytes == nil { return nil, false } @@ -4753,15 +4753,15 @@ func (o *RealtimeEntryAggregated) HasImgvideoRespHeaderBytes() bool { return false } -// SetImgvideoRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgvideoRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetImgvideoRespHeaderBytes(v int32) { +// SetImgvideoRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgvideoRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetImgvideoRespHeaderBytes(v int64) { o.ImgvideoRespHeaderBytes = &v } // GetImgvideoRespBodyBytes returns the ImgvideoRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytes() int64 { if o == nil || o.ImgvideoRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoRespBodyBytes @@ -4769,7 +4769,7 @@ func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytes() int32 { // GetImgvideoRespBodyBytesOk returns a tuple with the ImgvideoRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgvideoRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgvideoRespBodyBytes == nil { return nil, false } @@ -4785,15 +4785,15 @@ func (o *RealtimeEntryAggregated) HasImgvideoRespBodyBytes() bool { return false } -// SetImgvideoRespBodyBytes gets a reference to the given int32 and assigns it to the ImgvideoRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetImgvideoRespBodyBytes(v int32) { +// SetImgvideoRespBodyBytes gets a reference to the given int64 and assigns it to the ImgvideoRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetImgvideoRespBodyBytes(v int64) { o.ImgvideoRespBodyBytes = &v } // GetImgvideoShield returns the ImgvideoShield field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgvideoShield() int32 { +func (o *RealtimeEntryAggregated) GetImgvideoShield() int64 { if o == nil || o.ImgvideoShield == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShield @@ -4801,7 +4801,7 @@ func (o *RealtimeEntryAggregated) GetImgvideoShield() int32 { // GetImgvideoShieldOk returns a tuple with the ImgvideoShield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgvideoShieldOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgvideoShieldOk() (*int64, bool) { if o == nil || o.ImgvideoShield == nil { return nil, false } @@ -4817,15 +4817,15 @@ func (o *RealtimeEntryAggregated) HasImgvideoShield() bool { return false } -// SetImgvideoShield gets a reference to the given int32 and assigns it to the ImgvideoShield field. -func (o *RealtimeEntryAggregated) SetImgvideoShield(v int32) { +// SetImgvideoShield gets a reference to the given int64 and assigns it to the ImgvideoShield field. +func (o *RealtimeEntryAggregated) SetImgvideoShield(v int64) { o.ImgvideoShield = &v } // GetImgvideoShieldFrames returns the ImgvideoShieldFrames field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgvideoShieldFrames() int32 { +func (o *RealtimeEntryAggregated) GetImgvideoShieldFrames() int64 { if o == nil || o.ImgvideoShieldFrames == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldFrames @@ -4833,7 +4833,7 @@ func (o *RealtimeEntryAggregated) GetImgvideoShieldFrames() int32 { // GetImgvideoShieldFramesOk returns a tuple with the ImgvideoShieldFrames field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgvideoShieldFramesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgvideoShieldFramesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldFrames == nil { return nil, false } @@ -4849,15 +4849,15 @@ func (o *RealtimeEntryAggregated) HasImgvideoShieldFrames() bool { return false } -// SetImgvideoShieldFrames gets a reference to the given int32 and assigns it to the ImgvideoShieldFrames field. -func (o *RealtimeEntryAggregated) SetImgvideoShieldFrames(v int32) { +// SetImgvideoShieldFrames gets a reference to the given int64 and assigns it to the ImgvideoShieldFrames field. +func (o *RealtimeEntryAggregated) SetImgvideoShieldFrames(v int64) { o.ImgvideoShieldFrames = &v } // GetImgvideoShieldRespHeaderBytes returns the ImgvideoShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytes() int64 { if o == nil || o.ImgvideoShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldRespHeaderBytes @@ -4865,7 +4865,7 @@ func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytes() int32 { // GetImgvideoShieldRespHeaderBytesOk returns a tuple with the ImgvideoShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgvideoShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldRespHeaderBytes == nil { return nil, false } @@ -4881,15 +4881,15 @@ func (o *RealtimeEntryAggregated) HasImgvideoShieldRespHeaderBytes() bool { return false } -// SetImgvideoShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgvideoShieldRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetImgvideoShieldRespHeaderBytes(v int32) { +// SetImgvideoShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgvideoShieldRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetImgvideoShieldRespHeaderBytes(v int64) { o.ImgvideoShieldRespHeaderBytes = &v } // GetImgvideoShieldRespBodyBytes returns the ImgvideoShieldRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytes() int64 { if o == nil || o.ImgvideoShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldRespBodyBytes @@ -4897,7 +4897,7 @@ func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytes() int32 { // GetImgvideoShieldRespBodyBytesOk returns a tuple with the ImgvideoShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetImgvideoShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldRespBodyBytes == nil { return nil, false } @@ -4913,15 +4913,15 @@ func (o *RealtimeEntryAggregated) HasImgvideoShieldRespBodyBytes() bool { return false } -// SetImgvideoShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ImgvideoShieldRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetImgvideoShieldRespBodyBytes(v int32) { +// SetImgvideoShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ImgvideoShieldRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetImgvideoShieldRespBodyBytes(v int64) { o.ImgvideoShieldRespBodyBytes = &v } // GetLogBytes returns the LogBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetLogBytes() int32 { +func (o *RealtimeEntryAggregated) GetLogBytes() int64 { if o == nil || o.LogBytes == nil { - var ret int32 + var ret int64 return ret } return *o.LogBytes @@ -4929,7 +4929,7 @@ func (o *RealtimeEntryAggregated) GetLogBytes() int32 { // GetLogBytesOk returns a tuple with the LogBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetLogBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetLogBytesOk() (*int64, bool) { if o == nil || o.LogBytes == nil { return nil, false } @@ -4945,15 +4945,15 @@ func (o *RealtimeEntryAggregated) HasLogBytes() bool { return false } -// SetLogBytes gets a reference to the given int32 and assigns it to the LogBytes field. -func (o *RealtimeEntryAggregated) SetLogBytes(v int32) { +// SetLogBytes gets a reference to the given int64 and assigns it to the LogBytes field. +func (o *RealtimeEntryAggregated) SetLogBytes(v int64) { o.LogBytes = &v } // GetEdgeRequests returns the EdgeRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeRequests() int32 { +func (o *RealtimeEntryAggregated) GetEdgeRequests() int64 { if o == nil || o.EdgeRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRequests @@ -4961,7 +4961,7 @@ func (o *RealtimeEntryAggregated) GetEdgeRequests() int32 { // GetEdgeRequestsOk returns a tuple with the EdgeRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeRequestsOk() (*int64, bool) { if o == nil || o.EdgeRequests == nil { return nil, false } @@ -4977,15 +4977,15 @@ func (o *RealtimeEntryAggregated) HasEdgeRequests() bool { return false } -// SetEdgeRequests gets a reference to the given int32 and assigns it to the EdgeRequests field. -func (o *RealtimeEntryAggregated) SetEdgeRequests(v int32) { +// SetEdgeRequests gets a reference to the given int64 and assigns it to the EdgeRequests field. +func (o *RealtimeEntryAggregated) SetEdgeRequests(v int64) { o.EdgeRequests = &v } // GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytes() int64 { if o == nil || o.EdgeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespHeaderBytes @@ -4993,7 +4993,7 @@ func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytes() int32 { // GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeRespHeaderBytes == nil { return nil, false } @@ -5009,15 +5009,15 @@ func (o *RealtimeEntryAggregated) HasEdgeRespHeaderBytes() bool { return false } -// SetEdgeRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetEdgeRespHeaderBytes(v int32) { +// SetEdgeRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetEdgeRespHeaderBytes(v int64) { o.EdgeRespHeaderBytes = &v } // GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytes() int64 { if o == nil || o.EdgeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespBodyBytes @@ -5025,7 +5025,7 @@ func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytes() int32 { // GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeRespBodyBytes == nil { return nil, false } @@ -5041,15 +5041,15 @@ func (o *RealtimeEntryAggregated) HasEdgeRespBodyBytes() bool { return false } -// SetEdgeRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetEdgeRespBodyBytes(v int32) { +// SetEdgeRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetEdgeRespBodyBytes(v int64) { o.EdgeRespBodyBytes = &v } // GetOriginRevalidations returns the OriginRevalidations field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginRevalidations() int32 { +func (o *RealtimeEntryAggregated) GetOriginRevalidations() int64 { if o == nil || o.OriginRevalidations == nil { - var ret int32 + var ret int64 return ret } return *o.OriginRevalidations @@ -5057,7 +5057,7 @@ func (o *RealtimeEntryAggregated) GetOriginRevalidations() int32 { // GetOriginRevalidationsOk returns a tuple with the OriginRevalidations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginRevalidationsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginRevalidationsOk() (*int64, bool) { if o == nil || o.OriginRevalidations == nil { return nil, false } @@ -5073,15 +5073,15 @@ func (o *RealtimeEntryAggregated) HasOriginRevalidations() bool { return false } -// SetOriginRevalidations gets a reference to the given int32 and assigns it to the OriginRevalidations field. -func (o *RealtimeEntryAggregated) SetOriginRevalidations(v int32) { +// SetOriginRevalidations gets a reference to the given int64 and assigns it to the OriginRevalidations field. +func (o *RealtimeEntryAggregated) SetOriginRevalidations(v int64) { o.OriginRevalidations = &v } // GetOriginFetches returns the OriginFetches field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginFetches() int32 { +func (o *RealtimeEntryAggregated) GetOriginFetches() int64 { if o == nil || o.OriginFetches == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetches @@ -5089,7 +5089,7 @@ func (o *RealtimeEntryAggregated) GetOriginFetches() int32 { // GetOriginFetchesOk returns a tuple with the OriginFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginFetchesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginFetchesOk() (*int64, bool) { if o == nil || o.OriginFetches == nil { return nil, false } @@ -5105,15 +5105,15 @@ func (o *RealtimeEntryAggregated) HasOriginFetches() bool { return false } -// SetOriginFetches gets a reference to the given int32 and assigns it to the OriginFetches field. -func (o *RealtimeEntryAggregated) SetOriginFetches(v int32) { +// SetOriginFetches gets a reference to the given int64 and assigns it to the OriginFetches field. +func (o *RealtimeEntryAggregated) SetOriginFetches(v int64) { o.OriginFetches = &v } // GetOriginFetchHeaderBytes returns the OriginFetchHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytes() int64 { if o == nil || o.OriginFetchHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchHeaderBytes @@ -5121,7 +5121,7 @@ func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytes() int32 { // GetOriginFetchHeaderBytesOk returns a tuple with the OriginFetchHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginFetchHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginFetchHeaderBytes == nil { return nil, false } @@ -5137,15 +5137,15 @@ func (o *RealtimeEntryAggregated) HasOriginFetchHeaderBytes() bool { return false } -// SetOriginFetchHeaderBytes gets a reference to the given int32 and assigns it to the OriginFetchHeaderBytes field. -func (o *RealtimeEntryAggregated) SetOriginFetchHeaderBytes(v int32) { +// SetOriginFetchHeaderBytes gets a reference to the given int64 and assigns it to the OriginFetchHeaderBytes field. +func (o *RealtimeEntryAggregated) SetOriginFetchHeaderBytes(v int64) { o.OriginFetchHeaderBytes = &v } // GetOriginFetchBodyBytes returns the OriginFetchBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytes() int64 { if o == nil || o.OriginFetchBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchBodyBytes @@ -5153,7 +5153,7 @@ func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytes() int32 { // GetOriginFetchBodyBytesOk returns a tuple with the OriginFetchBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginFetchBodyBytesOk() (*int64, bool) { if o == nil || o.OriginFetchBodyBytes == nil { return nil, false } @@ -5169,15 +5169,15 @@ func (o *RealtimeEntryAggregated) HasOriginFetchBodyBytes() bool { return false } -// SetOriginFetchBodyBytes gets a reference to the given int32 and assigns it to the OriginFetchBodyBytes field. -func (o *RealtimeEntryAggregated) SetOriginFetchBodyBytes(v int32) { +// SetOriginFetchBodyBytes gets a reference to the given int64 and assigns it to the OriginFetchBodyBytes field. +func (o *RealtimeEntryAggregated) SetOriginFetchBodyBytes(v int64) { o.OriginFetchBodyBytes = &v } // GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytes() int64 { if o == nil || o.OriginFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespHeaderBytes @@ -5185,7 +5185,7 @@ func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytes() int32 { // GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespHeaderBytes == nil { return nil, false } @@ -5201,15 +5201,15 @@ func (o *RealtimeEntryAggregated) HasOriginFetchRespHeaderBytes() bool { return false } -// SetOriginFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the OriginFetchRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetOriginFetchRespHeaderBytes(v int32) { +// SetOriginFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the OriginFetchRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetOriginFetchRespHeaderBytes(v int64) { o.OriginFetchRespHeaderBytes = &v } // GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytes() int64 { if o == nil || o.OriginFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespBodyBytes @@ -5217,7 +5217,7 @@ func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytes() int32 { // GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespBodyBytes == nil { return nil, false } @@ -5233,15 +5233,15 @@ func (o *RealtimeEntryAggregated) HasOriginFetchRespBodyBytes() bool { return false } -// SetOriginFetchRespBodyBytes gets a reference to the given int32 and assigns it to the OriginFetchRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetOriginFetchRespBodyBytes(v int32) { +// SetOriginFetchRespBodyBytes gets a reference to the given int64 and assigns it to the OriginFetchRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetOriginFetchRespBodyBytes(v int64) { o.OriginFetchRespBodyBytes = &v } // GetShieldRevalidations returns the ShieldRevalidations field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldRevalidations() int32 { +func (o *RealtimeEntryAggregated) GetShieldRevalidations() int64 { if o == nil || o.ShieldRevalidations == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRevalidations @@ -5249,7 +5249,7 @@ func (o *RealtimeEntryAggregated) GetShieldRevalidations() int32 { // GetShieldRevalidationsOk returns a tuple with the ShieldRevalidations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldRevalidationsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldRevalidationsOk() (*int64, bool) { if o == nil || o.ShieldRevalidations == nil { return nil, false } @@ -5265,15 +5265,15 @@ func (o *RealtimeEntryAggregated) HasShieldRevalidations() bool { return false } -// SetShieldRevalidations gets a reference to the given int32 and assigns it to the ShieldRevalidations field. -func (o *RealtimeEntryAggregated) SetShieldRevalidations(v int32) { +// SetShieldRevalidations gets a reference to the given int64 and assigns it to the ShieldRevalidations field. +func (o *RealtimeEntryAggregated) SetShieldRevalidations(v int64) { o.ShieldRevalidations = &v } // GetShieldFetches returns the ShieldFetches field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldFetches() int32 { +func (o *RealtimeEntryAggregated) GetShieldFetches() int64 { if o == nil || o.ShieldFetches == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetches @@ -5281,7 +5281,7 @@ func (o *RealtimeEntryAggregated) GetShieldFetches() int32 { // GetShieldFetchesOk returns a tuple with the ShieldFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldFetchesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldFetchesOk() (*int64, bool) { if o == nil || o.ShieldFetches == nil { return nil, false } @@ -5297,15 +5297,15 @@ func (o *RealtimeEntryAggregated) HasShieldFetches() bool { return false } -// SetShieldFetches gets a reference to the given int32 and assigns it to the ShieldFetches field. -func (o *RealtimeEntryAggregated) SetShieldFetches(v int32) { +// SetShieldFetches gets a reference to the given int64 and assigns it to the ShieldFetches field. +func (o *RealtimeEntryAggregated) SetShieldFetches(v int64) { o.ShieldFetches = &v } // GetShieldFetchHeaderBytes returns the ShieldFetchHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytes() int64 { if o == nil || o.ShieldFetchHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchHeaderBytes @@ -5313,7 +5313,7 @@ func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytes() int32 { // GetShieldFetchHeaderBytesOk returns a tuple with the ShieldFetchHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldFetchHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchHeaderBytes == nil { return nil, false } @@ -5329,15 +5329,15 @@ func (o *RealtimeEntryAggregated) HasShieldFetchHeaderBytes() bool { return false } -// SetShieldFetchHeaderBytes gets a reference to the given int32 and assigns it to the ShieldFetchHeaderBytes field. -func (o *RealtimeEntryAggregated) SetShieldFetchHeaderBytes(v int32) { +// SetShieldFetchHeaderBytes gets a reference to the given int64 and assigns it to the ShieldFetchHeaderBytes field. +func (o *RealtimeEntryAggregated) SetShieldFetchHeaderBytes(v int64) { o.ShieldFetchHeaderBytes = &v } // GetShieldFetchBodyBytes returns the ShieldFetchBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytes() int64 { if o == nil || o.ShieldFetchBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchBodyBytes @@ -5345,7 +5345,7 @@ func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytes() int32 { // GetShieldFetchBodyBytesOk returns a tuple with the ShieldFetchBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldFetchBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchBodyBytes == nil { return nil, false } @@ -5361,15 +5361,15 @@ func (o *RealtimeEntryAggregated) HasShieldFetchBodyBytes() bool { return false } -// SetShieldFetchBodyBytes gets a reference to the given int32 and assigns it to the ShieldFetchBodyBytes field. -func (o *RealtimeEntryAggregated) SetShieldFetchBodyBytes(v int32) { +// SetShieldFetchBodyBytes gets a reference to the given int64 and assigns it to the ShieldFetchBodyBytes field. +func (o *RealtimeEntryAggregated) SetShieldFetchBodyBytes(v int64) { o.ShieldFetchBodyBytes = &v } // GetShieldFetchRespHeaderBytes returns the ShieldFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytes() int64 { if o == nil || o.ShieldFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchRespHeaderBytes @@ -5377,7 +5377,7 @@ func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytes() int32 { // GetShieldFetchRespHeaderBytesOk returns a tuple with the ShieldFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchRespHeaderBytes == nil { return nil, false } @@ -5393,15 +5393,15 @@ func (o *RealtimeEntryAggregated) HasShieldFetchRespHeaderBytes() bool { return false } -// SetShieldFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldFetchRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetShieldFetchRespHeaderBytes(v int32) { +// SetShieldFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldFetchRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetShieldFetchRespHeaderBytes(v int64) { o.ShieldFetchRespHeaderBytes = &v } // GetShieldFetchRespBodyBytes returns the ShieldFetchRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytes() int64 { if o == nil || o.ShieldFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchRespBodyBytes @@ -5409,7 +5409,7 @@ func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytes() int32 { // GetShieldFetchRespBodyBytesOk returns a tuple with the ShieldFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchRespBodyBytes == nil { return nil, false } @@ -5425,15 +5425,15 @@ func (o *RealtimeEntryAggregated) HasShieldFetchRespBodyBytes() bool { return false } -// SetShieldFetchRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldFetchRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetShieldFetchRespBodyBytes(v int32) { +// SetShieldFetchRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldFetchRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetShieldFetchRespBodyBytes(v int64) { o.ShieldFetchRespBodyBytes = &v } // GetSegblockOriginFetches returns the SegblockOriginFetches field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetSegblockOriginFetches() int32 { +func (o *RealtimeEntryAggregated) GetSegblockOriginFetches() int64 { if o == nil || o.SegblockOriginFetches == nil { - var ret int32 + var ret int64 return ret } return *o.SegblockOriginFetches @@ -5441,7 +5441,7 @@ func (o *RealtimeEntryAggregated) GetSegblockOriginFetches() int32 { // GetSegblockOriginFetchesOk returns a tuple with the SegblockOriginFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetSegblockOriginFetchesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetSegblockOriginFetchesOk() (*int64, bool) { if o == nil || o.SegblockOriginFetches == nil { return nil, false } @@ -5457,15 +5457,15 @@ func (o *RealtimeEntryAggregated) HasSegblockOriginFetches() bool { return false } -// SetSegblockOriginFetches gets a reference to the given int32 and assigns it to the SegblockOriginFetches field. -func (o *RealtimeEntryAggregated) SetSegblockOriginFetches(v int32) { +// SetSegblockOriginFetches gets a reference to the given int64 and assigns it to the SegblockOriginFetches field. +func (o *RealtimeEntryAggregated) SetSegblockOriginFetches(v int64) { o.SegblockOriginFetches = &v } // GetSegblockShieldFetches returns the SegblockShieldFetches field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetSegblockShieldFetches() int32 { +func (o *RealtimeEntryAggregated) GetSegblockShieldFetches() int64 { if o == nil || o.SegblockShieldFetches == nil { - var ret int32 + var ret int64 return ret } return *o.SegblockShieldFetches @@ -5473,7 +5473,7 @@ func (o *RealtimeEntryAggregated) GetSegblockShieldFetches() int32 { // GetSegblockShieldFetchesOk returns a tuple with the SegblockShieldFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetSegblockShieldFetchesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetSegblockShieldFetchesOk() (*int64, bool) { if o == nil || o.SegblockShieldFetches == nil { return nil, false } @@ -5489,15 +5489,15 @@ func (o *RealtimeEntryAggregated) HasSegblockShieldFetches() bool { return false } -// SetSegblockShieldFetches gets a reference to the given int32 and assigns it to the SegblockShieldFetches field. -func (o *RealtimeEntryAggregated) SetSegblockShieldFetches(v int32) { +// SetSegblockShieldFetches gets a reference to the given int64 and assigns it to the SegblockShieldFetches field. +func (o *RealtimeEntryAggregated) SetSegblockShieldFetches(v int64) { o.SegblockShieldFetches = &v } // GetComputeRespStatus1xx returns the ComputeRespStatus1xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRespStatus1xx() int32 { +func (o *RealtimeEntryAggregated) GetComputeRespStatus1xx() int64 { if o == nil || o.ComputeRespStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus1xx @@ -5505,7 +5505,7 @@ func (o *RealtimeEntryAggregated) GetComputeRespStatus1xx() int32 { // GetComputeRespStatus1xxOk returns a tuple with the ComputeRespStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRespStatus1xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRespStatus1xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus1xx == nil { return nil, false } @@ -5521,15 +5521,15 @@ func (o *RealtimeEntryAggregated) HasComputeRespStatus1xx() bool { return false } -// SetComputeRespStatus1xx gets a reference to the given int32 and assigns it to the ComputeRespStatus1xx field. -func (o *RealtimeEntryAggregated) SetComputeRespStatus1xx(v int32) { +// SetComputeRespStatus1xx gets a reference to the given int64 and assigns it to the ComputeRespStatus1xx field. +func (o *RealtimeEntryAggregated) SetComputeRespStatus1xx(v int64) { o.ComputeRespStatus1xx = &v } // GetComputeRespStatus2xx returns the ComputeRespStatus2xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRespStatus2xx() int32 { +func (o *RealtimeEntryAggregated) GetComputeRespStatus2xx() int64 { if o == nil || o.ComputeRespStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus2xx @@ -5537,7 +5537,7 @@ func (o *RealtimeEntryAggregated) GetComputeRespStatus2xx() int32 { // GetComputeRespStatus2xxOk returns a tuple with the ComputeRespStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRespStatus2xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRespStatus2xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus2xx == nil { return nil, false } @@ -5553,15 +5553,15 @@ func (o *RealtimeEntryAggregated) HasComputeRespStatus2xx() bool { return false } -// SetComputeRespStatus2xx gets a reference to the given int32 and assigns it to the ComputeRespStatus2xx field. -func (o *RealtimeEntryAggregated) SetComputeRespStatus2xx(v int32) { +// SetComputeRespStatus2xx gets a reference to the given int64 and assigns it to the ComputeRespStatus2xx field. +func (o *RealtimeEntryAggregated) SetComputeRespStatus2xx(v int64) { o.ComputeRespStatus2xx = &v } // GetComputeRespStatus3xx returns the ComputeRespStatus3xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRespStatus3xx() int32 { +func (o *RealtimeEntryAggregated) GetComputeRespStatus3xx() int64 { if o == nil || o.ComputeRespStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus3xx @@ -5569,7 +5569,7 @@ func (o *RealtimeEntryAggregated) GetComputeRespStatus3xx() int32 { // GetComputeRespStatus3xxOk returns a tuple with the ComputeRespStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRespStatus3xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRespStatus3xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus3xx == nil { return nil, false } @@ -5585,15 +5585,15 @@ func (o *RealtimeEntryAggregated) HasComputeRespStatus3xx() bool { return false } -// SetComputeRespStatus3xx gets a reference to the given int32 and assigns it to the ComputeRespStatus3xx field. -func (o *RealtimeEntryAggregated) SetComputeRespStatus3xx(v int32) { +// SetComputeRespStatus3xx gets a reference to the given int64 and assigns it to the ComputeRespStatus3xx field. +func (o *RealtimeEntryAggregated) SetComputeRespStatus3xx(v int64) { o.ComputeRespStatus3xx = &v } // GetComputeRespStatus4xx returns the ComputeRespStatus4xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRespStatus4xx() int32 { +func (o *RealtimeEntryAggregated) GetComputeRespStatus4xx() int64 { if o == nil || o.ComputeRespStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus4xx @@ -5601,7 +5601,7 @@ func (o *RealtimeEntryAggregated) GetComputeRespStatus4xx() int32 { // GetComputeRespStatus4xxOk returns a tuple with the ComputeRespStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRespStatus4xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRespStatus4xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus4xx == nil { return nil, false } @@ -5617,15 +5617,15 @@ func (o *RealtimeEntryAggregated) HasComputeRespStatus4xx() bool { return false } -// SetComputeRespStatus4xx gets a reference to the given int32 and assigns it to the ComputeRespStatus4xx field. -func (o *RealtimeEntryAggregated) SetComputeRespStatus4xx(v int32) { +// SetComputeRespStatus4xx gets a reference to the given int64 and assigns it to the ComputeRespStatus4xx field. +func (o *RealtimeEntryAggregated) SetComputeRespStatus4xx(v int64) { o.ComputeRespStatus4xx = &v } // GetComputeRespStatus5xx returns the ComputeRespStatus5xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRespStatus5xx() int32 { +func (o *RealtimeEntryAggregated) GetComputeRespStatus5xx() int64 { if o == nil || o.ComputeRespStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus5xx @@ -5633,7 +5633,7 @@ func (o *RealtimeEntryAggregated) GetComputeRespStatus5xx() int32 { // GetComputeRespStatus5xxOk returns a tuple with the ComputeRespStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRespStatus5xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRespStatus5xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus5xx == nil { return nil, false } @@ -5649,15 +5649,15 @@ func (o *RealtimeEntryAggregated) HasComputeRespStatus5xx() bool { return false } -// SetComputeRespStatus5xx gets a reference to the given int32 and assigns it to the ComputeRespStatus5xx field. -func (o *RealtimeEntryAggregated) SetComputeRespStatus5xx(v int32) { +// SetComputeRespStatus5xx gets a reference to the given int64 and assigns it to the ComputeRespStatus5xx field. +func (o *RealtimeEntryAggregated) SetComputeRespStatus5xx(v int64) { o.ComputeRespStatus5xx = &v } // GetEdgeHitRequests returns the EdgeHitRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeHitRequests() int32 { +func (o *RealtimeEntryAggregated) GetEdgeHitRequests() int64 { if o == nil || o.EdgeHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRequests @@ -5665,7 +5665,7 @@ func (o *RealtimeEntryAggregated) GetEdgeHitRequests() int32 { // GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeHitRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeHitRequestsOk() (*int64, bool) { if o == nil || o.EdgeHitRequests == nil { return nil, false } @@ -5681,15 +5681,15 @@ func (o *RealtimeEntryAggregated) HasEdgeHitRequests() bool { return false } -// SetEdgeHitRequests gets a reference to the given int32 and assigns it to the EdgeHitRequests field. -func (o *RealtimeEntryAggregated) SetEdgeHitRequests(v int32) { +// SetEdgeHitRequests gets a reference to the given int64 and assigns it to the EdgeHitRequests field. +func (o *RealtimeEntryAggregated) SetEdgeHitRequests(v int64) { o.EdgeHitRequests = &v } // GetEdgeMissRequests returns the EdgeMissRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeMissRequests() int32 { +func (o *RealtimeEntryAggregated) GetEdgeMissRequests() int64 { if o == nil || o.EdgeMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRequests @@ -5697,7 +5697,7 @@ func (o *RealtimeEntryAggregated) GetEdgeMissRequests() int32 { // GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeMissRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeMissRequestsOk() (*int64, bool) { if o == nil || o.EdgeMissRequests == nil { return nil, false } @@ -5713,15 +5713,15 @@ func (o *RealtimeEntryAggregated) HasEdgeMissRequests() bool { return false } -// SetEdgeMissRequests gets a reference to the given int32 and assigns it to the EdgeMissRequests field. -func (o *RealtimeEntryAggregated) SetEdgeMissRequests(v int32) { +// SetEdgeMissRequests gets a reference to the given int64 and assigns it to the EdgeMissRequests field. +func (o *RealtimeEntryAggregated) SetEdgeMissRequests(v int64) { o.EdgeMissRequests = &v } // GetComputeBereqHeaderBytes returns the ComputeBereqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytes() int64 { if o == nil || o.ComputeBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqHeaderBytes @@ -5729,7 +5729,7 @@ func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytes() int32 { // GetComputeBereqHeaderBytesOk returns a tuple with the ComputeBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeBereqHeaderBytes == nil { return nil, false } @@ -5745,15 +5745,15 @@ func (o *RealtimeEntryAggregated) HasComputeBereqHeaderBytes() bool { return false } -// SetComputeBereqHeaderBytes gets a reference to the given int32 and assigns it to the ComputeBereqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetComputeBereqHeaderBytes(v int32) { +// SetComputeBereqHeaderBytes gets a reference to the given int64 and assigns it to the ComputeBereqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetComputeBereqHeaderBytes(v int64) { o.ComputeBereqHeaderBytes = &v } // GetComputeBereqBodyBytes returns the ComputeBereqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytes() int64 { if o == nil || o.ComputeBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqBodyBytes @@ -5761,7 +5761,7 @@ func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytes() int32 { // GetComputeBereqBodyBytesOk returns a tuple with the ComputeBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeBereqBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeBereqBodyBytes == nil { return nil, false } @@ -5777,15 +5777,15 @@ func (o *RealtimeEntryAggregated) HasComputeBereqBodyBytes() bool { return false } -// SetComputeBereqBodyBytes gets a reference to the given int32 and assigns it to the ComputeBereqBodyBytes field. -func (o *RealtimeEntryAggregated) SetComputeBereqBodyBytes(v int32) { +// SetComputeBereqBodyBytes gets a reference to the given int64 and assigns it to the ComputeBereqBodyBytes field. +func (o *RealtimeEntryAggregated) SetComputeBereqBodyBytes(v int64) { o.ComputeBereqBodyBytes = &v } // GetComputeBerespHeaderBytes returns the ComputeBerespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytes() int64 { if o == nil || o.ComputeBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBerespHeaderBytes @@ -5793,7 +5793,7 @@ func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytes() int32 { // GetComputeBerespHeaderBytesOk returns a tuple with the ComputeBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeBerespHeaderBytes == nil { return nil, false } @@ -5809,15 +5809,15 @@ func (o *RealtimeEntryAggregated) HasComputeBerespHeaderBytes() bool { return false } -// SetComputeBerespHeaderBytes gets a reference to the given int32 and assigns it to the ComputeBerespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetComputeBerespHeaderBytes(v int32) { +// SetComputeBerespHeaderBytes gets a reference to the given int64 and assigns it to the ComputeBerespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetComputeBerespHeaderBytes(v int64) { o.ComputeBerespHeaderBytes = &v } // GetComputeBerespBodyBytes returns the ComputeBerespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytes() int64 { if o == nil || o.ComputeBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBerespBodyBytes @@ -5825,7 +5825,7 @@ func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytes() int32 { // GetComputeBerespBodyBytesOk returns a tuple with the ComputeBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeBerespBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeBerespBodyBytes == nil { return nil, false } @@ -5841,15 +5841,15 @@ func (o *RealtimeEntryAggregated) HasComputeBerespBodyBytes() bool { return false } -// SetComputeBerespBodyBytes gets a reference to the given int32 and assigns it to the ComputeBerespBodyBytes field. -func (o *RealtimeEntryAggregated) SetComputeBerespBodyBytes(v int32) { +// SetComputeBerespBodyBytes gets a reference to the given int64 and assigns it to the ComputeBerespBodyBytes field. +func (o *RealtimeEntryAggregated) SetComputeBerespBodyBytes(v int64) { o.ComputeBerespBodyBytes = &v } // GetOriginCacheFetches returns the OriginCacheFetches field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginCacheFetches() int32 { +func (o *RealtimeEntryAggregated) GetOriginCacheFetches() int64 { if o == nil || o.OriginCacheFetches == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetches @@ -5857,7 +5857,7 @@ func (o *RealtimeEntryAggregated) GetOriginCacheFetches() int32 { // GetOriginCacheFetchesOk returns a tuple with the OriginCacheFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginCacheFetchesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginCacheFetchesOk() (*int64, bool) { if o == nil || o.OriginCacheFetches == nil { return nil, false } @@ -5873,15 +5873,15 @@ func (o *RealtimeEntryAggregated) HasOriginCacheFetches() bool { return false } -// SetOriginCacheFetches gets a reference to the given int32 and assigns it to the OriginCacheFetches field. -func (o *RealtimeEntryAggregated) SetOriginCacheFetches(v int32) { +// SetOriginCacheFetches gets a reference to the given int64 and assigns it to the OriginCacheFetches field. +func (o *RealtimeEntryAggregated) SetOriginCacheFetches(v int64) { o.OriginCacheFetches = &v } // GetShieldCacheFetches returns the ShieldCacheFetches field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldCacheFetches() int32 { +func (o *RealtimeEntryAggregated) GetShieldCacheFetches() int64 { if o == nil || o.ShieldCacheFetches == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldCacheFetches @@ -5889,7 +5889,7 @@ func (o *RealtimeEntryAggregated) GetShieldCacheFetches() int32 { // GetShieldCacheFetchesOk returns a tuple with the ShieldCacheFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldCacheFetchesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldCacheFetchesOk() (*int64, bool) { if o == nil || o.ShieldCacheFetches == nil { return nil, false } @@ -5905,15 +5905,15 @@ func (o *RealtimeEntryAggregated) HasShieldCacheFetches() bool { return false } -// SetShieldCacheFetches gets a reference to the given int32 and assigns it to the ShieldCacheFetches field. -func (o *RealtimeEntryAggregated) SetShieldCacheFetches(v int32) { +// SetShieldCacheFetches gets a reference to the given int64 and assigns it to the ShieldCacheFetches field. +func (o *RealtimeEntryAggregated) SetShieldCacheFetches(v int64) { o.ShieldCacheFetches = &v } // GetComputeBereqs returns the ComputeBereqs field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeBereqs() int32 { +func (o *RealtimeEntryAggregated) GetComputeBereqs() int64 { if o == nil || o.ComputeBereqs == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqs @@ -5921,7 +5921,7 @@ func (o *RealtimeEntryAggregated) GetComputeBereqs() int32 { // GetComputeBereqsOk returns a tuple with the ComputeBereqs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeBereqsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeBereqsOk() (*int64, bool) { if o == nil || o.ComputeBereqs == nil { return nil, false } @@ -5937,15 +5937,15 @@ func (o *RealtimeEntryAggregated) HasComputeBereqs() bool { return false } -// SetComputeBereqs gets a reference to the given int32 and assigns it to the ComputeBereqs field. -func (o *RealtimeEntryAggregated) SetComputeBereqs(v int32) { +// SetComputeBereqs gets a reference to the given int64 and assigns it to the ComputeBereqs field. +func (o *RealtimeEntryAggregated) SetComputeBereqs(v int64) { o.ComputeBereqs = &v } // GetComputeBereqErrors returns the ComputeBereqErrors field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeBereqErrors() int32 { +func (o *RealtimeEntryAggregated) GetComputeBereqErrors() int64 { if o == nil || o.ComputeBereqErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqErrors @@ -5953,7 +5953,7 @@ func (o *RealtimeEntryAggregated) GetComputeBereqErrors() int32 { // GetComputeBereqErrorsOk returns a tuple with the ComputeBereqErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeBereqErrorsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeBereqErrorsOk() (*int64, bool) { if o == nil || o.ComputeBereqErrors == nil { return nil, false } @@ -5969,15 +5969,15 @@ func (o *RealtimeEntryAggregated) HasComputeBereqErrors() bool { return false } -// SetComputeBereqErrors gets a reference to the given int32 and assigns it to the ComputeBereqErrors field. -func (o *RealtimeEntryAggregated) SetComputeBereqErrors(v int32) { +// SetComputeBereqErrors gets a reference to the given int64 and assigns it to the ComputeBereqErrors field. +func (o *RealtimeEntryAggregated) SetComputeBereqErrors(v int64) { o.ComputeBereqErrors = &v } // GetComputeResourceLimitExceeded returns the ComputeResourceLimitExceeded field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceeded() int32 { +func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceeded() int64 { if o == nil || o.ComputeResourceLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeResourceLimitExceeded @@ -5985,7 +5985,7 @@ func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceeded() int32 { // GetComputeResourceLimitExceededOk returns a tuple with the ComputeResourceLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceededOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeResourceLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeResourceLimitExceeded == nil { return nil, false } @@ -6001,15 +6001,15 @@ func (o *RealtimeEntryAggregated) HasComputeResourceLimitExceeded() bool { return false } -// SetComputeResourceLimitExceeded gets a reference to the given int32 and assigns it to the ComputeResourceLimitExceeded field. -func (o *RealtimeEntryAggregated) SetComputeResourceLimitExceeded(v int32) { +// SetComputeResourceLimitExceeded gets a reference to the given int64 and assigns it to the ComputeResourceLimitExceeded field. +func (o *RealtimeEntryAggregated) SetComputeResourceLimitExceeded(v int64) { o.ComputeResourceLimitExceeded = &v } // GetComputeHeapLimitExceeded returns the ComputeHeapLimitExceeded field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceeded() int32 { +func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceeded() int64 { if o == nil || o.ComputeHeapLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeHeapLimitExceeded @@ -6017,7 +6017,7 @@ func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceeded() int32 { // GetComputeHeapLimitExceededOk returns a tuple with the ComputeHeapLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceededOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeHeapLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeHeapLimitExceeded == nil { return nil, false } @@ -6033,15 +6033,15 @@ func (o *RealtimeEntryAggregated) HasComputeHeapLimitExceeded() bool { return false } -// SetComputeHeapLimitExceeded gets a reference to the given int32 and assigns it to the ComputeHeapLimitExceeded field. -func (o *RealtimeEntryAggregated) SetComputeHeapLimitExceeded(v int32) { +// SetComputeHeapLimitExceeded gets a reference to the given int64 and assigns it to the ComputeHeapLimitExceeded field. +func (o *RealtimeEntryAggregated) SetComputeHeapLimitExceeded(v int64) { o.ComputeHeapLimitExceeded = &v } // GetComputeStackLimitExceeded returns the ComputeStackLimitExceeded field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeStackLimitExceeded() int32 { +func (o *RealtimeEntryAggregated) GetComputeStackLimitExceeded() int64 { if o == nil || o.ComputeStackLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStackLimitExceeded @@ -6049,7 +6049,7 @@ func (o *RealtimeEntryAggregated) GetComputeStackLimitExceeded() int32 { // GetComputeStackLimitExceededOk returns a tuple with the ComputeStackLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeStackLimitExceededOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeStackLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeStackLimitExceeded == nil { return nil, false } @@ -6065,15 +6065,15 @@ func (o *RealtimeEntryAggregated) HasComputeStackLimitExceeded() bool { return false } -// SetComputeStackLimitExceeded gets a reference to the given int32 and assigns it to the ComputeStackLimitExceeded field. -func (o *RealtimeEntryAggregated) SetComputeStackLimitExceeded(v int32) { +// SetComputeStackLimitExceeded gets a reference to the given int64 and assigns it to the ComputeStackLimitExceeded field. +func (o *RealtimeEntryAggregated) SetComputeStackLimitExceeded(v int64) { o.ComputeStackLimitExceeded = &v } // GetComputeGlobalsLimitExceeded returns the ComputeGlobalsLimitExceeded field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceeded() int32 { +func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceeded() int64 { if o == nil || o.ComputeGlobalsLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeGlobalsLimitExceeded @@ -6081,7 +6081,7 @@ func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceeded() int32 { // GetComputeGlobalsLimitExceededOk returns a tuple with the ComputeGlobalsLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceededOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeGlobalsLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeGlobalsLimitExceeded == nil { return nil, false } @@ -6097,15 +6097,15 @@ func (o *RealtimeEntryAggregated) HasComputeGlobalsLimitExceeded() bool { return false } -// SetComputeGlobalsLimitExceeded gets a reference to the given int32 and assigns it to the ComputeGlobalsLimitExceeded field. -func (o *RealtimeEntryAggregated) SetComputeGlobalsLimitExceeded(v int32) { +// SetComputeGlobalsLimitExceeded gets a reference to the given int64 and assigns it to the ComputeGlobalsLimitExceeded field. +func (o *RealtimeEntryAggregated) SetComputeGlobalsLimitExceeded(v int64) { o.ComputeGlobalsLimitExceeded = &v } // GetComputeGuestErrors returns the ComputeGuestErrors field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeGuestErrors() int32 { +func (o *RealtimeEntryAggregated) GetComputeGuestErrors() int64 { if o == nil || o.ComputeGuestErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeGuestErrors @@ -6113,7 +6113,7 @@ func (o *RealtimeEntryAggregated) GetComputeGuestErrors() int32 { // GetComputeGuestErrorsOk returns a tuple with the ComputeGuestErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeGuestErrorsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeGuestErrorsOk() (*int64, bool) { if o == nil || o.ComputeGuestErrors == nil { return nil, false } @@ -6129,15 +6129,15 @@ func (o *RealtimeEntryAggregated) HasComputeGuestErrors() bool { return false } -// SetComputeGuestErrors gets a reference to the given int32 and assigns it to the ComputeGuestErrors field. -func (o *RealtimeEntryAggregated) SetComputeGuestErrors(v int32) { +// SetComputeGuestErrors gets a reference to the given int64 and assigns it to the ComputeGuestErrors field. +func (o *RealtimeEntryAggregated) SetComputeGuestErrors(v int64) { o.ComputeGuestErrors = &v } // GetComputeRuntimeErrors returns the ComputeRuntimeErrors field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetComputeRuntimeErrors() int32 { +func (o *RealtimeEntryAggregated) GetComputeRuntimeErrors() int64 { if o == nil || o.ComputeRuntimeErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRuntimeErrors @@ -6145,7 +6145,7 @@ func (o *RealtimeEntryAggregated) GetComputeRuntimeErrors() int32 { // GetComputeRuntimeErrorsOk returns a tuple with the ComputeRuntimeErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetComputeRuntimeErrorsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetComputeRuntimeErrorsOk() (*int64, bool) { if o == nil || o.ComputeRuntimeErrors == nil { return nil, false } @@ -6161,15 +6161,15 @@ func (o *RealtimeEntryAggregated) HasComputeRuntimeErrors() bool { return false } -// SetComputeRuntimeErrors gets a reference to the given int32 and assigns it to the ComputeRuntimeErrors field. -func (o *RealtimeEntryAggregated) SetComputeRuntimeErrors(v int32) { +// SetComputeRuntimeErrors gets a reference to the given int64 and assigns it to the ComputeRuntimeErrors field. +func (o *RealtimeEntryAggregated) SetComputeRuntimeErrors(v int64) { o.ComputeRuntimeErrors = &v } // GetEdgeHitRespBodyBytes returns the EdgeHitRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytes() int64 { if o == nil || o.EdgeHitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRespBodyBytes @@ -6177,7 +6177,7 @@ func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytes() int32 { // GetEdgeHitRespBodyBytesOk returns a tuple with the EdgeHitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeHitRespBodyBytes == nil { return nil, false } @@ -6193,15 +6193,15 @@ func (o *RealtimeEntryAggregated) HasEdgeHitRespBodyBytes() bool { return false } -// SetEdgeHitRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeHitRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetEdgeHitRespBodyBytes(v int32) { +// SetEdgeHitRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeHitRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetEdgeHitRespBodyBytes(v int64) { o.EdgeHitRespBodyBytes = &v } // GetEdgeHitRespHeaderBytes returns the EdgeHitRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytes() int64 { if o == nil || o.EdgeHitRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRespHeaderBytes @@ -6209,7 +6209,7 @@ func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytes() int32 { // GetEdgeHitRespHeaderBytesOk returns a tuple with the EdgeHitRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeHitRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeHitRespHeaderBytes == nil { return nil, false } @@ -6225,15 +6225,15 @@ func (o *RealtimeEntryAggregated) HasEdgeHitRespHeaderBytes() bool { return false } -// SetEdgeHitRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeHitRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetEdgeHitRespHeaderBytes(v int32) { +// SetEdgeHitRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeHitRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetEdgeHitRespHeaderBytes(v int64) { o.EdgeHitRespHeaderBytes = &v } // GetEdgeMissRespBodyBytes returns the EdgeMissRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytes() int64 { if o == nil || o.EdgeMissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRespBodyBytes @@ -6241,7 +6241,7 @@ func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytes() int32 { // GetEdgeMissRespBodyBytesOk returns a tuple with the EdgeMissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeMissRespBodyBytes == nil { return nil, false } @@ -6257,15 +6257,15 @@ func (o *RealtimeEntryAggregated) HasEdgeMissRespBodyBytes() bool { return false } -// SetEdgeMissRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeMissRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetEdgeMissRespBodyBytes(v int32) { +// SetEdgeMissRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeMissRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetEdgeMissRespBodyBytes(v int64) { o.EdgeMissRespBodyBytes = &v } // GetEdgeMissRespHeaderBytes returns the EdgeMissRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytes() int64 { if o == nil || o.EdgeMissRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRespHeaderBytes @@ -6273,7 +6273,7 @@ func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytes() int32 { // GetEdgeMissRespHeaderBytesOk returns a tuple with the EdgeMissRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetEdgeMissRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeMissRespHeaderBytes == nil { return nil, false } @@ -6289,15 +6289,15 @@ func (o *RealtimeEntryAggregated) HasEdgeMissRespHeaderBytes() bool { return false } -// SetEdgeMissRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeMissRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetEdgeMissRespHeaderBytes(v int32) { +// SetEdgeMissRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeMissRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetEdgeMissRespHeaderBytes(v int64) { o.EdgeMissRespHeaderBytes = &v } // GetOriginCacheFetchRespBodyBytes returns the OriginCacheFetchRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytes() int64 { if o == nil || o.OriginCacheFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetchRespBodyBytes @@ -6305,7 +6305,7 @@ func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytes() int32 { // GetOriginCacheFetchRespBodyBytesOk returns a tuple with the OriginCacheFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.OriginCacheFetchRespBodyBytes == nil { return nil, false } @@ -6321,15 +6321,15 @@ func (o *RealtimeEntryAggregated) HasOriginCacheFetchRespBodyBytes() bool { return false } -// SetOriginCacheFetchRespBodyBytes gets a reference to the given int32 and assigns it to the OriginCacheFetchRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetOriginCacheFetchRespBodyBytes(v int32) { +// SetOriginCacheFetchRespBodyBytes gets a reference to the given int64 and assigns it to the OriginCacheFetchRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetOriginCacheFetchRespBodyBytes(v int64) { o.OriginCacheFetchRespBodyBytes = &v } // GetOriginCacheFetchRespHeaderBytes returns the OriginCacheFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytes() int64 { if o == nil || o.OriginCacheFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetchRespHeaderBytes @@ -6337,7 +6337,7 @@ func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytes() int32 { // GetOriginCacheFetchRespHeaderBytesOk returns a tuple with the OriginCacheFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetOriginCacheFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginCacheFetchRespHeaderBytes == nil { return nil, false } @@ -6353,15 +6353,15 @@ func (o *RealtimeEntryAggregated) HasOriginCacheFetchRespHeaderBytes() bool { return false } -// SetOriginCacheFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the OriginCacheFetchRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetOriginCacheFetchRespHeaderBytes(v int32) { +// SetOriginCacheFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the OriginCacheFetchRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetOriginCacheFetchRespHeaderBytes(v int64) { o.OriginCacheFetchRespHeaderBytes = &v } // GetShieldHitRequests returns the ShieldHitRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldHitRequests() int32 { +func (o *RealtimeEntryAggregated) GetShieldHitRequests() int64 { if o == nil || o.ShieldHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRequests @@ -6369,7 +6369,7 @@ func (o *RealtimeEntryAggregated) GetShieldHitRequests() int32 { // GetShieldHitRequestsOk returns a tuple with the ShieldHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldHitRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldHitRequestsOk() (*int64, bool) { if o == nil || o.ShieldHitRequests == nil { return nil, false } @@ -6385,15 +6385,15 @@ func (o *RealtimeEntryAggregated) HasShieldHitRequests() bool { return false } -// SetShieldHitRequests gets a reference to the given int32 and assigns it to the ShieldHitRequests field. -func (o *RealtimeEntryAggregated) SetShieldHitRequests(v int32) { +// SetShieldHitRequests gets a reference to the given int64 and assigns it to the ShieldHitRequests field. +func (o *RealtimeEntryAggregated) SetShieldHitRequests(v int64) { o.ShieldHitRequests = &v } // GetShieldMissRequests returns the ShieldMissRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldMissRequests() int32 { +func (o *RealtimeEntryAggregated) GetShieldMissRequests() int64 { if o == nil || o.ShieldMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRequests @@ -6401,7 +6401,7 @@ func (o *RealtimeEntryAggregated) GetShieldMissRequests() int32 { // GetShieldMissRequestsOk returns a tuple with the ShieldMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldMissRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldMissRequestsOk() (*int64, bool) { if o == nil || o.ShieldMissRequests == nil { return nil, false } @@ -6417,15 +6417,15 @@ func (o *RealtimeEntryAggregated) HasShieldMissRequests() bool { return false } -// SetShieldMissRequests gets a reference to the given int32 and assigns it to the ShieldMissRequests field. -func (o *RealtimeEntryAggregated) SetShieldMissRequests(v int32) { +// SetShieldMissRequests gets a reference to the given int64 and assigns it to the ShieldMissRequests field. +func (o *RealtimeEntryAggregated) SetShieldMissRequests(v int64) { o.ShieldMissRequests = &v } // GetShieldHitRespHeaderBytes returns the ShieldHitRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytes() int64 { if o == nil || o.ShieldHitRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRespHeaderBytes @@ -6433,7 +6433,7 @@ func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytes() int32 { // GetShieldHitRespHeaderBytesOk returns a tuple with the ShieldHitRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldHitRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldHitRespHeaderBytes == nil { return nil, false } @@ -6449,15 +6449,15 @@ func (o *RealtimeEntryAggregated) HasShieldHitRespHeaderBytes() bool { return false } -// SetShieldHitRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldHitRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetShieldHitRespHeaderBytes(v int32) { +// SetShieldHitRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldHitRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetShieldHitRespHeaderBytes(v int64) { o.ShieldHitRespHeaderBytes = &v } // GetShieldHitRespBodyBytes returns the ShieldHitRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytes() int64 { if o == nil || o.ShieldHitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRespBodyBytes @@ -6465,7 +6465,7 @@ func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytes() int32 { // GetShieldHitRespBodyBytesOk returns a tuple with the ShieldHitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldHitRespBodyBytes == nil { return nil, false } @@ -6481,15 +6481,15 @@ func (o *RealtimeEntryAggregated) HasShieldHitRespBodyBytes() bool { return false } -// SetShieldHitRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldHitRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetShieldHitRespBodyBytes(v int32) { +// SetShieldHitRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldHitRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetShieldHitRespBodyBytes(v int64) { o.ShieldHitRespBodyBytes = &v } // GetShieldMissRespHeaderBytes returns the ShieldMissRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytes() int64 { if o == nil || o.ShieldMissRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRespHeaderBytes @@ -6497,7 +6497,7 @@ func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytes() int32 { // GetShieldMissRespHeaderBytesOk returns a tuple with the ShieldMissRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldMissRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldMissRespHeaderBytes == nil { return nil, false } @@ -6513,15 +6513,15 @@ func (o *RealtimeEntryAggregated) HasShieldMissRespHeaderBytes() bool { return false } -// SetShieldMissRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldMissRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetShieldMissRespHeaderBytes(v int32) { +// SetShieldMissRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldMissRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetShieldMissRespHeaderBytes(v int64) { o.ShieldMissRespHeaderBytes = &v } // GetShieldMissRespBodyBytes returns the ShieldMissRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytes() int64 { if o == nil || o.ShieldMissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRespBodyBytes @@ -6529,7 +6529,7 @@ func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytes() int32 { // GetShieldMissRespBodyBytesOk returns a tuple with the ShieldMissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetShieldMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldMissRespBodyBytes == nil { return nil, false } @@ -6545,15 +6545,15 @@ func (o *RealtimeEntryAggregated) HasShieldMissRespBodyBytes() bool { return false } -// SetShieldMissRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldMissRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetShieldMissRespBodyBytes(v int32) { +// SetShieldMissRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldMissRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetShieldMissRespBodyBytes(v int64) { o.ShieldMissRespBodyBytes = &v } // GetWebsocketReqHeaderBytes returns the WebsocketReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytes() int64 { if o == nil || o.WebsocketReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketReqHeaderBytes @@ -6561,7 +6561,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytes() int32 { // GetWebsocketReqHeaderBytesOk returns a tuple with the WebsocketReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketReqHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketReqHeaderBytes == nil { return nil, false } @@ -6577,15 +6577,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketReqHeaderBytes() bool { return false } -// SetWebsocketReqHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketReqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetWebsocketReqHeaderBytes(v int32) { +// SetWebsocketReqHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketReqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetWebsocketReqHeaderBytes(v int64) { o.WebsocketReqHeaderBytes = &v } // GetWebsocketReqBodyBytes returns the WebsocketReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytes() int64 { if o == nil || o.WebsocketReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketReqBodyBytes @@ -6593,7 +6593,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytes() int32 { // GetWebsocketReqBodyBytesOk returns a tuple with the WebsocketReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketReqBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketReqBodyBytes == nil { return nil, false } @@ -6609,15 +6609,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketReqBodyBytes() bool { return false } -// SetWebsocketReqBodyBytes gets a reference to the given int32 and assigns it to the WebsocketReqBodyBytes field. -func (o *RealtimeEntryAggregated) SetWebsocketReqBodyBytes(v int32) { +// SetWebsocketReqBodyBytes gets a reference to the given int64 and assigns it to the WebsocketReqBodyBytes field. +func (o *RealtimeEntryAggregated) SetWebsocketReqBodyBytes(v int64) { o.WebsocketReqBodyBytes = &v } // GetWebsocketRespHeaderBytes returns the WebsocketRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytes() int64 { if o == nil || o.WebsocketRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketRespHeaderBytes @@ -6625,7 +6625,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytes() int32 { // GetWebsocketRespHeaderBytesOk returns a tuple with the WebsocketRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketRespHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketRespHeaderBytes == nil { return nil, false } @@ -6641,15 +6641,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketRespHeaderBytes() bool { return false } -// SetWebsocketRespHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetWebsocketRespHeaderBytes(v int32) { +// SetWebsocketRespHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetWebsocketRespHeaderBytes(v int64) { o.WebsocketRespHeaderBytes = &v } // GetWebsocketBereqHeaderBytes returns the WebsocketBereqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytes() int64 { if o == nil || o.WebsocketBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBereqHeaderBytes @@ -6657,7 +6657,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytes() int32 { // GetWebsocketBereqHeaderBytesOk returns a tuple with the WebsocketBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketBereqHeaderBytes == nil { return nil, false } @@ -6673,15 +6673,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketBereqHeaderBytes() bool { return false } -// SetWebsocketBereqHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketBereqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetWebsocketBereqHeaderBytes(v int32) { +// SetWebsocketBereqHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketBereqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetWebsocketBereqHeaderBytes(v int64) { o.WebsocketBereqHeaderBytes = &v } // GetWebsocketBereqBodyBytes returns the WebsocketBereqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytes() int64 { if o == nil || o.WebsocketBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBereqBodyBytes @@ -6689,7 +6689,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytes() int32 { // GetWebsocketBereqBodyBytesOk returns a tuple with the WebsocketBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketBereqBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketBereqBodyBytes == nil { return nil, false } @@ -6705,15 +6705,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketBereqBodyBytes() bool { return false } -// SetWebsocketBereqBodyBytes gets a reference to the given int32 and assigns it to the WebsocketBereqBodyBytes field. -func (o *RealtimeEntryAggregated) SetWebsocketBereqBodyBytes(v int32) { +// SetWebsocketBereqBodyBytes gets a reference to the given int64 and assigns it to the WebsocketBereqBodyBytes field. +func (o *RealtimeEntryAggregated) SetWebsocketBereqBodyBytes(v int64) { o.WebsocketBereqBodyBytes = &v } // GetWebsocketBerespHeaderBytes returns the WebsocketBerespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytes() int64 { if o == nil || o.WebsocketBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBerespHeaderBytes @@ -6721,7 +6721,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytes() int32 { // GetWebsocketBerespHeaderBytesOk returns a tuple with the WebsocketBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketBerespHeaderBytes == nil { return nil, false } @@ -6737,15 +6737,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketBerespHeaderBytes() bool { return false } -// SetWebsocketBerespHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketBerespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetWebsocketBerespHeaderBytes(v int32) { +// SetWebsocketBerespHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketBerespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetWebsocketBerespHeaderBytes(v int64) { o.WebsocketBerespHeaderBytes = &v } // GetWebsocketBerespBodyBytes returns the WebsocketBerespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytes() int64 { if o == nil || o.WebsocketBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBerespBodyBytes @@ -6753,7 +6753,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytes() int32 { // GetWebsocketBerespBodyBytesOk returns a tuple with the WebsocketBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketBerespBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketBerespBodyBytes == nil { return nil, false } @@ -6769,15 +6769,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketBerespBodyBytes() bool { return false } -// SetWebsocketBerespBodyBytes gets a reference to the given int32 and assigns it to the WebsocketBerespBodyBytes field. -func (o *RealtimeEntryAggregated) SetWebsocketBerespBodyBytes(v int32) { +// SetWebsocketBerespBodyBytes gets a reference to the given int64 and assigns it to the WebsocketBerespBodyBytes field. +func (o *RealtimeEntryAggregated) SetWebsocketBerespBodyBytes(v int64) { o.WebsocketBerespBodyBytes = &v } // GetWebsocketConnTimeMs returns the WebsocketConnTimeMs field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMs() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMs() int64 { if o == nil || o.WebsocketConnTimeMs == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketConnTimeMs @@ -6785,7 +6785,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMs() int32 { // GetWebsocketConnTimeMsOk returns a tuple with the WebsocketConnTimeMs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketConnTimeMsOk() (*int64, bool) { if o == nil || o.WebsocketConnTimeMs == nil { return nil, false } @@ -6801,15 +6801,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketConnTimeMs() bool { return false } -// SetWebsocketConnTimeMs gets a reference to the given int32 and assigns it to the WebsocketConnTimeMs field. -func (o *RealtimeEntryAggregated) SetWebsocketConnTimeMs(v int32) { +// SetWebsocketConnTimeMs gets a reference to the given int64 and assigns it to the WebsocketConnTimeMs field. +func (o *RealtimeEntryAggregated) SetWebsocketConnTimeMs(v int64) { o.WebsocketConnTimeMs = &v } // GetWebsocketRespBodyBytes returns the WebsocketRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytes() int64 { if o == nil || o.WebsocketRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketRespBodyBytes @@ -6817,7 +6817,7 @@ func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytes() int32 { // GetWebsocketRespBodyBytesOk returns a tuple with the WebsocketRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetWebsocketRespBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketRespBodyBytes == nil { return nil, false } @@ -6833,15 +6833,15 @@ func (o *RealtimeEntryAggregated) HasWebsocketRespBodyBytes() bool { return false } -// SetWebsocketRespBodyBytes gets a reference to the given int32 and assigns it to the WebsocketRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetWebsocketRespBodyBytes(v int32) { +// SetWebsocketRespBodyBytes gets a reference to the given int64 and assigns it to the WebsocketRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetWebsocketRespBodyBytes(v int64) { o.WebsocketRespBodyBytes = &v } // GetFanoutRecvPublishes returns the FanoutRecvPublishes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutRecvPublishes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutRecvPublishes() int64 { if o == nil || o.FanoutRecvPublishes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRecvPublishes @@ -6849,7 +6849,7 @@ func (o *RealtimeEntryAggregated) GetFanoutRecvPublishes() int32 { // GetFanoutRecvPublishesOk returns a tuple with the FanoutRecvPublishes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutRecvPublishesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutRecvPublishesOk() (*int64, bool) { if o == nil || o.FanoutRecvPublishes == nil { return nil, false } @@ -6865,15 +6865,15 @@ func (o *RealtimeEntryAggregated) HasFanoutRecvPublishes() bool { return false } -// SetFanoutRecvPublishes gets a reference to the given int32 and assigns it to the FanoutRecvPublishes field. -func (o *RealtimeEntryAggregated) SetFanoutRecvPublishes(v int32) { +// SetFanoutRecvPublishes gets a reference to the given int64 and assigns it to the FanoutRecvPublishes field. +func (o *RealtimeEntryAggregated) SetFanoutRecvPublishes(v int64) { o.FanoutRecvPublishes = &v } // GetFanoutSendPublishes returns the FanoutSendPublishes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutSendPublishes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutSendPublishes() int64 { if o == nil || o.FanoutSendPublishes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutSendPublishes @@ -6881,7 +6881,7 @@ func (o *RealtimeEntryAggregated) GetFanoutSendPublishes() int32 { // GetFanoutSendPublishesOk returns a tuple with the FanoutSendPublishes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutSendPublishesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutSendPublishesOk() (*int64, bool) { if o == nil || o.FanoutSendPublishes == nil { return nil, false } @@ -6897,15 +6897,15 @@ func (o *RealtimeEntryAggregated) HasFanoutSendPublishes() bool { return false } -// SetFanoutSendPublishes gets a reference to the given int32 and assigns it to the FanoutSendPublishes field. -func (o *RealtimeEntryAggregated) SetFanoutSendPublishes(v int32) { +// SetFanoutSendPublishes gets a reference to the given int64 and assigns it to the FanoutSendPublishes field. +func (o *RealtimeEntryAggregated) SetFanoutSendPublishes(v int64) { o.FanoutSendPublishes = &v } // GetKvStoreClassAOperations returns the KvStoreClassAOperations field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetKvStoreClassAOperations() int32 { +func (o *RealtimeEntryAggregated) GetKvStoreClassAOperations() int64 { if o == nil || o.KvStoreClassAOperations == nil { - var ret int32 + var ret int64 return ret } return *o.KvStoreClassAOperations @@ -6913,7 +6913,7 @@ func (o *RealtimeEntryAggregated) GetKvStoreClassAOperations() int32 { // GetKvStoreClassAOperationsOk returns a tuple with the KvStoreClassAOperations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetKvStoreClassAOperationsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetKvStoreClassAOperationsOk() (*int64, bool) { if o == nil || o.KvStoreClassAOperations == nil { return nil, false } @@ -6929,15 +6929,15 @@ func (o *RealtimeEntryAggregated) HasKvStoreClassAOperations() bool { return false } -// SetKvStoreClassAOperations gets a reference to the given int32 and assigns it to the KvStoreClassAOperations field. -func (o *RealtimeEntryAggregated) SetKvStoreClassAOperations(v int32) { +// SetKvStoreClassAOperations gets a reference to the given int64 and assigns it to the KvStoreClassAOperations field. +func (o *RealtimeEntryAggregated) SetKvStoreClassAOperations(v int64) { o.KvStoreClassAOperations = &v } // GetKvStoreClassBOperations returns the KvStoreClassBOperations field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetKvStoreClassBOperations() int32 { +func (o *RealtimeEntryAggregated) GetKvStoreClassBOperations() int64 { if o == nil || o.KvStoreClassBOperations == nil { - var ret int32 + var ret int64 return ret } return *o.KvStoreClassBOperations @@ -6945,7 +6945,7 @@ func (o *RealtimeEntryAggregated) GetKvStoreClassBOperations() int32 { // GetKvStoreClassBOperationsOk returns a tuple with the KvStoreClassBOperations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetKvStoreClassBOperationsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetKvStoreClassBOperationsOk() (*int64, bool) { if o == nil || o.KvStoreClassBOperations == nil { return nil, false } @@ -6961,16 +6961,16 @@ func (o *RealtimeEntryAggregated) HasKvStoreClassBOperations() bool { return false } -// SetKvStoreClassBOperations gets a reference to the given int32 and assigns it to the KvStoreClassBOperations field. -func (o *RealtimeEntryAggregated) SetKvStoreClassBOperations(v int32) { +// SetKvStoreClassBOperations gets a reference to the given int64 and assigns it to the KvStoreClassBOperations field. +func (o *RealtimeEntryAggregated) SetKvStoreClassBOperations(v int64) { o.KvStoreClassBOperations = &v } // GetObjectStoreClassAOperations returns the ObjectStoreClassAOperations field value if set, zero value otherwise. // Deprecated -func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperations() int32 { +func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperations() int64 { if o == nil || o.ObjectStoreClassAOperations == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectStoreClassAOperations @@ -6979,7 +6979,7 @@ func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperations() int32 { // GetObjectStoreClassAOperationsOk returns a tuple with the ObjectStoreClassAOperations field value if set, nil otherwise // and a boolean to check if the value has been set. // Deprecated -func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperationsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectStoreClassAOperationsOk() (*int64, bool) { if o == nil || o.ObjectStoreClassAOperations == nil { return nil, false } @@ -6995,17 +6995,17 @@ func (o *RealtimeEntryAggregated) HasObjectStoreClassAOperations() bool { return false } -// SetObjectStoreClassAOperations gets a reference to the given int32 and assigns it to the ObjectStoreClassAOperations field. +// SetObjectStoreClassAOperations gets a reference to the given int64 and assigns it to the ObjectStoreClassAOperations field. // Deprecated -func (o *RealtimeEntryAggregated) SetObjectStoreClassAOperations(v int32) { +func (o *RealtimeEntryAggregated) SetObjectStoreClassAOperations(v int64) { o.ObjectStoreClassAOperations = &v } // GetObjectStoreClassBOperations returns the ObjectStoreClassBOperations field value if set, zero value otherwise. // Deprecated -func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperations() int32 { +func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperations() int64 { if o == nil || o.ObjectStoreClassBOperations == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectStoreClassBOperations @@ -7014,7 +7014,7 @@ func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperations() int32 { // GetObjectStoreClassBOperationsOk returns a tuple with the ObjectStoreClassBOperations field value if set, nil otherwise // and a boolean to check if the value has been set. // Deprecated -func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperationsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetObjectStoreClassBOperationsOk() (*int64, bool) { if o == nil || o.ObjectStoreClassBOperations == nil { return nil, false } @@ -7030,16 +7030,16 @@ func (o *RealtimeEntryAggregated) HasObjectStoreClassBOperations() bool { return false } -// SetObjectStoreClassBOperations gets a reference to the given int32 and assigns it to the ObjectStoreClassBOperations field. +// SetObjectStoreClassBOperations gets a reference to the given int64 and assigns it to the ObjectStoreClassBOperations field. // Deprecated -func (o *RealtimeEntryAggregated) SetObjectStoreClassBOperations(v int32) { +func (o *RealtimeEntryAggregated) SetObjectStoreClassBOperations(v int64) { o.ObjectStoreClassBOperations = &v } // GetFanoutReqHeaderBytes returns the FanoutReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytes() int64 { if o == nil || o.FanoutReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutReqHeaderBytes @@ -7047,7 +7047,7 @@ func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytes() int32 { // GetFanoutReqHeaderBytesOk returns a tuple with the FanoutReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutReqHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutReqHeaderBytes == nil { return nil, false } @@ -7063,15 +7063,15 @@ func (o *RealtimeEntryAggregated) HasFanoutReqHeaderBytes() bool { return false } -// SetFanoutReqHeaderBytes gets a reference to the given int32 and assigns it to the FanoutReqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetFanoutReqHeaderBytes(v int32) { +// SetFanoutReqHeaderBytes gets a reference to the given int64 and assigns it to the FanoutReqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetFanoutReqHeaderBytes(v int64) { o.FanoutReqHeaderBytes = &v } // GetFanoutReqBodyBytes returns the FanoutReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytes() int64 { if o == nil || o.FanoutReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutReqBodyBytes @@ -7079,7 +7079,7 @@ func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytes() int32 { // GetFanoutReqBodyBytesOk returns a tuple with the FanoutReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutReqBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutReqBodyBytes == nil { return nil, false } @@ -7095,15 +7095,15 @@ func (o *RealtimeEntryAggregated) HasFanoutReqBodyBytes() bool { return false } -// SetFanoutReqBodyBytes gets a reference to the given int32 and assigns it to the FanoutReqBodyBytes field. -func (o *RealtimeEntryAggregated) SetFanoutReqBodyBytes(v int32) { +// SetFanoutReqBodyBytes gets a reference to the given int64 and assigns it to the FanoutReqBodyBytes field. +func (o *RealtimeEntryAggregated) SetFanoutReqBodyBytes(v int64) { o.FanoutReqBodyBytes = &v } // GetFanoutRespHeaderBytes returns the FanoutRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytes() int64 { if o == nil || o.FanoutRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRespHeaderBytes @@ -7111,7 +7111,7 @@ func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytes() int32 { // GetFanoutRespHeaderBytesOk returns a tuple with the FanoutRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutRespHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutRespHeaderBytes == nil { return nil, false } @@ -7127,15 +7127,15 @@ func (o *RealtimeEntryAggregated) HasFanoutRespHeaderBytes() bool { return false } -// SetFanoutRespHeaderBytes gets a reference to the given int32 and assigns it to the FanoutRespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetFanoutRespHeaderBytes(v int32) { +// SetFanoutRespHeaderBytes gets a reference to the given int64 and assigns it to the FanoutRespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetFanoutRespHeaderBytes(v int64) { o.FanoutRespHeaderBytes = &v } // GetFanoutRespBodyBytes returns the FanoutRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytes() int64 { if o == nil || o.FanoutRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRespBodyBytes @@ -7143,7 +7143,7 @@ func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytes() int32 { // GetFanoutRespBodyBytesOk returns a tuple with the FanoutRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutRespBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutRespBodyBytes == nil { return nil, false } @@ -7159,15 +7159,15 @@ func (o *RealtimeEntryAggregated) HasFanoutRespBodyBytes() bool { return false } -// SetFanoutRespBodyBytes gets a reference to the given int32 and assigns it to the FanoutRespBodyBytes field. -func (o *RealtimeEntryAggregated) SetFanoutRespBodyBytes(v int32) { +// SetFanoutRespBodyBytes gets a reference to the given int64 and assigns it to the FanoutRespBodyBytes field. +func (o *RealtimeEntryAggregated) SetFanoutRespBodyBytes(v int64) { o.FanoutRespBodyBytes = &v } // GetFanoutBereqHeaderBytes returns the FanoutBereqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytes() int64 { if o == nil || o.FanoutBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBereqHeaderBytes @@ -7175,7 +7175,7 @@ func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytes() int32 { // GetFanoutBereqHeaderBytesOk returns a tuple with the FanoutBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutBereqHeaderBytes == nil { return nil, false } @@ -7191,15 +7191,15 @@ func (o *RealtimeEntryAggregated) HasFanoutBereqHeaderBytes() bool { return false } -// SetFanoutBereqHeaderBytes gets a reference to the given int32 and assigns it to the FanoutBereqHeaderBytes field. -func (o *RealtimeEntryAggregated) SetFanoutBereqHeaderBytes(v int32) { +// SetFanoutBereqHeaderBytes gets a reference to the given int64 and assigns it to the FanoutBereqHeaderBytes field. +func (o *RealtimeEntryAggregated) SetFanoutBereqHeaderBytes(v int64) { o.FanoutBereqHeaderBytes = &v } // GetFanoutBereqBodyBytes returns the FanoutBereqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytes() int64 { if o == nil || o.FanoutBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBereqBodyBytes @@ -7207,7 +7207,7 @@ func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytes() int32 { // GetFanoutBereqBodyBytesOk returns a tuple with the FanoutBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutBereqBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutBereqBodyBytes == nil { return nil, false } @@ -7223,15 +7223,15 @@ func (o *RealtimeEntryAggregated) HasFanoutBereqBodyBytes() bool { return false } -// SetFanoutBereqBodyBytes gets a reference to the given int32 and assigns it to the FanoutBereqBodyBytes field. -func (o *RealtimeEntryAggregated) SetFanoutBereqBodyBytes(v int32) { +// SetFanoutBereqBodyBytes gets a reference to the given int64 and assigns it to the FanoutBereqBodyBytes field. +func (o *RealtimeEntryAggregated) SetFanoutBereqBodyBytes(v int64) { o.FanoutBereqBodyBytes = &v } // GetFanoutBerespHeaderBytes returns the FanoutBerespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytes() int64 { if o == nil || o.FanoutBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBerespHeaderBytes @@ -7239,7 +7239,7 @@ func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytes() int32 { // GetFanoutBerespHeaderBytesOk returns a tuple with the FanoutBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutBerespHeaderBytes == nil { return nil, false } @@ -7255,15 +7255,15 @@ func (o *RealtimeEntryAggregated) HasFanoutBerespHeaderBytes() bool { return false } -// SetFanoutBerespHeaderBytes gets a reference to the given int32 and assigns it to the FanoutBerespHeaderBytes field. -func (o *RealtimeEntryAggregated) SetFanoutBerespHeaderBytes(v int32) { +// SetFanoutBerespHeaderBytes gets a reference to the given int64 and assigns it to the FanoutBerespHeaderBytes field. +func (o *RealtimeEntryAggregated) SetFanoutBerespHeaderBytes(v int64) { o.FanoutBerespHeaderBytes = &v } // GetFanoutBerespBodyBytes returns the FanoutBerespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytes() int32 { +func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytes() int64 { if o == nil || o.FanoutBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBerespBodyBytes @@ -7271,7 +7271,7 @@ func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytes() int32 { // GetFanoutBerespBodyBytesOk returns a tuple with the FanoutBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytesOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutBerespBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutBerespBodyBytes == nil { return nil, false } @@ -7287,15 +7287,15 @@ func (o *RealtimeEntryAggregated) HasFanoutBerespBodyBytes() bool { return false } -// SetFanoutBerespBodyBytes gets a reference to the given int32 and assigns it to the FanoutBerespBodyBytes field. -func (o *RealtimeEntryAggregated) SetFanoutBerespBodyBytes(v int32) { +// SetFanoutBerespBodyBytes gets a reference to the given int64 and assigns it to the FanoutBerespBodyBytes field. +func (o *RealtimeEntryAggregated) SetFanoutBerespBodyBytes(v int64) { o.FanoutBerespBodyBytes = &v } // GetFanoutConnTimeMs returns the FanoutConnTimeMs field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetFanoutConnTimeMs() int32 { +func (o *RealtimeEntryAggregated) GetFanoutConnTimeMs() int64 { if o == nil || o.FanoutConnTimeMs == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutConnTimeMs @@ -7303,7 +7303,7 @@ func (o *RealtimeEntryAggregated) GetFanoutConnTimeMs() int32 { // GetFanoutConnTimeMsOk returns a tuple with the FanoutConnTimeMs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetFanoutConnTimeMsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetFanoutConnTimeMsOk() (*int64, bool) { if o == nil || o.FanoutConnTimeMs == nil { return nil, false } @@ -7319,15 +7319,15 @@ func (o *RealtimeEntryAggregated) HasFanoutConnTimeMs() bool { return false } -// SetFanoutConnTimeMs gets a reference to the given int32 and assigns it to the FanoutConnTimeMs field. -func (o *RealtimeEntryAggregated) SetFanoutConnTimeMs(v int32) { +// SetFanoutConnTimeMs gets a reference to the given int64 and assigns it to the FanoutConnTimeMs field. +func (o *RealtimeEntryAggregated) SetFanoutConnTimeMs(v int64) { o.FanoutConnTimeMs = &v } // GetDdosActionLimitStreamsConnections returns the DdosActionLimitStreamsConnections field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnections() int32 { +func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnections() int64 { if o == nil || o.DdosActionLimitStreamsConnections == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionLimitStreamsConnections @@ -7335,7 +7335,7 @@ func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnections() int32 { // GetDdosActionLimitStreamsConnectionsOk returns a tuple with the DdosActionLimitStreamsConnections field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnectionsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsConnectionsOk() (*int64, bool) { if o == nil || o.DdosActionLimitStreamsConnections == nil { return nil, false } @@ -7351,15 +7351,15 @@ func (o *RealtimeEntryAggregated) HasDdosActionLimitStreamsConnections() bool { return false } -// SetDdosActionLimitStreamsConnections gets a reference to the given int32 and assigns it to the DdosActionLimitStreamsConnections field. -func (o *RealtimeEntryAggregated) SetDdosActionLimitStreamsConnections(v int32) { +// SetDdosActionLimitStreamsConnections gets a reference to the given int64 and assigns it to the DdosActionLimitStreamsConnections field. +func (o *RealtimeEntryAggregated) SetDdosActionLimitStreamsConnections(v int64) { o.DdosActionLimitStreamsConnections = &v } // GetDdosActionLimitStreamsRequests returns the DdosActionLimitStreamsRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequests() int32 { +func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequests() int64 { if o == nil || o.DdosActionLimitStreamsRequests == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionLimitStreamsRequests @@ -7367,7 +7367,7 @@ func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequests() int32 { // GetDdosActionLimitStreamsRequestsOk returns a tuple with the DdosActionLimitStreamsRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDdosActionLimitStreamsRequestsOk() (*int64, bool) { if o == nil || o.DdosActionLimitStreamsRequests == nil { return nil, false } @@ -7383,15 +7383,15 @@ func (o *RealtimeEntryAggregated) HasDdosActionLimitStreamsRequests() bool { return false } -// SetDdosActionLimitStreamsRequests gets a reference to the given int32 and assigns it to the DdosActionLimitStreamsRequests field. -func (o *RealtimeEntryAggregated) SetDdosActionLimitStreamsRequests(v int32) { +// SetDdosActionLimitStreamsRequests gets a reference to the given int64 and assigns it to the DdosActionLimitStreamsRequests field. +func (o *RealtimeEntryAggregated) SetDdosActionLimitStreamsRequests(v int64) { o.DdosActionLimitStreamsRequests = &v } // GetDdosActionTarpitAccept returns the DdosActionTarpitAccept field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDdosActionTarpitAccept() int32 { +func (o *RealtimeEntryAggregated) GetDdosActionTarpitAccept() int64 { if o == nil || o.DdosActionTarpitAccept == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionTarpitAccept @@ -7399,7 +7399,7 @@ func (o *RealtimeEntryAggregated) GetDdosActionTarpitAccept() int32 { // GetDdosActionTarpitAcceptOk returns a tuple with the DdosActionTarpitAccept field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDdosActionTarpitAcceptOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDdosActionTarpitAcceptOk() (*int64, bool) { if o == nil || o.DdosActionTarpitAccept == nil { return nil, false } @@ -7415,15 +7415,15 @@ func (o *RealtimeEntryAggregated) HasDdosActionTarpitAccept() bool { return false } -// SetDdosActionTarpitAccept gets a reference to the given int32 and assigns it to the DdosActionTarpitAccept field. -func (o *RealtimeEntryAggregated) SetDdosActionTarpitAccept(v int32) { +// SetDdosActionTarpitAccept gets a reference to the given int64 and assigns it to the DdosActionTarpitAccept field. +func (o *RealtimeEntryAggregated) SetDdosActionTarpitAccept(v int64) { o.DdosActionTarpitAccept = &v } // GetDdosActionTarpit returns the DdosActionTarpit field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDdosActionTarpit() int32 { +func (o *RealtimeEntryAggregated) GetDdosActionTarpit() int64 { if o == nil || o.DdosActionTarpit == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionTarpit @@ -7431,7 +7431,7 @@ func (o *RealtimeEntryAggregated) GetDdosActionTarpit() int32 { // GetDdosActionTarpitOk returns a tuple with the DdosActionTarpit field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDdosActionTarpitOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDdosActionTarpitOk() (*int64, bool) { if o == nil || o.DdosActionTarpit == nil { return nil, false } @@ -7447,15 +7447,15 @@ func (o *RealtimeEntryAggregated) HasDdosActionTarpit() bool { return false } -// SetDdosActionTarpit gets a reference to the given int32 and assigns it to the DdosActionTarpit field. -func (o *RealtimeEntryAggregated) SetDdosActionTarpit(v int32) { +// SetDdosActionTarpit gets a reference to the given int64 and assigns it to the DdosActionTarpit field. +func (o *RealtimeEntryAggregated) SetDdosActionTarpit(v int64) { o.DdosActionTarpit = &v } // GetDdosActionClose returns the DdosActionClose field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDdosActionClose() int32 { +func (o *RealtimeEntryAggregated) GetDdosActionClose() int64 { if o == nil || o.DdosActionClose == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionClose @@ -7463,7 +7463,7 @@ func (o *RealtimeEntryAggregated) GetDdosActionClose() int32 { // GetDdosActionCloseOk returns a tuple with the DdosActionClose field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDdosActionCloseOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDdosActionCloseOk() (*int64, bool) { if o == nil || o.DdosActionClose == nil { return nil, false } @@ -7479,15 +7479,15 @@ func (o *RealtimeEntryAggregated) HasDdosActionClose() bool { return false } -// SetDdosActionClose gets a reference to the given int32 and assigns it to the DdosActionClose field. -func (o *RealtimeEntryAggregated) SetDdosActionClose(v int32) { +// SetDdosActionClose gets a reference to the given int64 and assigns it to the DdosActionClose field. +func (o *RealtimeEntryAggregated) SetDdosActionClose(v int64) { o.DdosActionClose = &v } // GetDdosActionBlackhole returns the DdosActionBlackhole field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDdosActionBlackhole() int32 { +func (o *RealtimeEntryAggregated) GetDdosActionBlackhole() int64 { if o == nil || o.DdosActionBlackhole == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionBlackhole @@ -7495,7 +7495,7 @@ func (o *RealtimeEntryAggregated) GetDdosActionBlackhole() int32 { // GetDdosActionBlackholeOk returns a tuple with the DdosActionBlackhole field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDdosActionBlackholeOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDdosActionBlackholeOk() (*int64, bool) { if o == nil || o.DdosActionBlackhole == nil { return nil, false } @@ -7511,15 +7511,15 @@ func (o *RealtimeEntryAggregated) HasDdosActionBlackhole() bool { return false } -// SetDdosActionBlackhole gets a reference to the given int32 and assigns it to the DdosActionBlackhole field. -func (o *RealtimeEntryAggregated) SetDdosActionBlackhole(v int32) { +// SetDdosActionBlackhole gets a reference to the given int64 and assigns it to the DdosActionBlackhole field. +func (o *RealtimeEntryAggregated) SetDdosActionBlackhole(v int64) { o.DdosActionBlackhole = &v } // GetBotChallengeStarts returns the BotChallengeStarts field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengeStarts() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengeStarts() int64 { if o == nil || o.BotChallengeStarts == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeStarts @@ -7527,7 +7527,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengeStarts() int32 { // GetBotChallengeStartsOk returns a tuple with the BotChallengeStarts field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengeStartsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengeStartsOk() (*int64, bool) { if o == nil || o.BotChallengeStarts == nil { return nil, false } @@ -7543,15 +7543,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengeStarts() bool { return false } -// SetBotChallengeStarts gets a reference to the given int32 and assigns it to the BotChallengeStarts field. -func (o *RealtimeEntryAggregated) SetBotChallengeStarts(v int32) { +// SetBotChallengeStarts gets a reference to the given int64 and assigns it to the BotChallengeStarts field. +func (o *RealtimeEntryAggregated) SetBotChallengeStarts(v int64) { o.BotChallengeStarts = &v } // GetBotChallengeCompleteTokensPassed returns the BotChallengeCompleteTokensPassed field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassed() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassed() int64 { if o == nil || o.BotChallengeCompleteTokensPassed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensPassed @@ -7559,7 +7559,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassed() int32 { // GetBotChallengeCompleteTokensPassedOk returns a tuple with the BotChallengeCompleteTokensPassed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensPassedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensPassed == nil { return nil, false } @@ -7575,15 +7575,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengeCompleteTokensPassed() bool { return false } -// SetBotChallengeCompleteTokensPassed gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensPassed field. -func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensPassed(v int32) { +// SetBotChallengeCompleteTokensPassed gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensPassed field. +func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensPassed(v int64) { o.BotChallengeCompleteTokensPassed = &v } // GetBotChallengeCompleteTokensFailed returns the BotChallengeCompleteTokensFailed field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailed() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailed() int64 { if o == nil || o.BotChallengeCompleteTokensFailed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensFailed @@ -7591,7 +7591,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailed() int32 { // GetBotChallengeCompleteTokensFailedOk returns a tuple with the BotChallengeCompleteTokensFailed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensFailedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensFailed == nil { return nil, false } @@ -7607,15 +7607,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengeCompleteTokensFailed() bool { return false } -// SetBotChallengeCompleteTokensFailed gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensFailed field. -func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensFailed(v int32) { +// SetBotChallengeCompleteTokensFailed gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensFailed field. +func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensFailed(v int64) { o.BotChallengeCompleteTokensFailed = &v } // GetBotChallengeCompleteTokensChecked returns the BotChallengeCompleteTokensChecked field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensChecked() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensChecked() int64 { if o == nil || o.BotChallengeCompleteTokensChecked == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensChecked @@ -7623,7 +7623,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensChecked() int32 { // GetBotChallengeCompleteTokensCheckedOk returns a tuple with the BotChallengeCompleteTokensChecked field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensCheckedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensCheckedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensChecked == nil { return nil, false } @@ -7639,15 +7639,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengeCompleteTokensChecked() bool { return false } -// SetBotChallengeCompleteTokensChecked gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensChecked field. -func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensChecked(v int32) { +// SetBotChallengeCompleteTokensChecked gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensChecked field. +func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensChecked(v int64) { o.BotChallengeCompleteTokensChecked = &v } // GetBotChallengeCompleteTokensDisabled returns the BotChallengeCompleteTokensDisabled field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabled() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabled() int64 { if o == nil || o.BotChallengeCompleteTokensDisabled == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensDisabled @@ -7655,7 +7655,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabled() int32 // GetBotChallengeCompleteTokensDisabledOk returns a tuple with the BotChallengeCompleteTokensDisabled field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabledOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensDisabledOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensDisabled == nil { return nil, false } @@ -7671,15 +7671,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengeCompleteTokensDisabled() bool { return false } -// SetBotChallengeCompleteTokensDisabled gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensDisabled field. -func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensDisabled(v int32) { +// SetBotChallengeCompleteTokensDisabled gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensDisabled field. +func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensDisabled(v int64) { o.BotChallengeCompleteTokensDisabled = &v } // GetBotChallengesIssued returns the BotChallengesIssued field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengesIssued() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengesIssued() int64 { if o == nil || o.BotChallengesIssued == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesIssued @@ -7687,7 +7687,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengesIssued() int32 { // GetBotChallengesIssuedOk returns a tuple with the BotChallengesIssued field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengesIssuedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengesIssuedOk() (*int64, bool) { if o == nil || o.BotChallengesIssued == nil { return nil, false } @@ -7703,15 +7703,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengesIssued() bool { return false } -// SetBotChallengesIssued gets a reference to the given int32 and assigns it to the BotChallengesIssued field. -func (o *RealtimeEntryAggregated) SetBotChallengesIssued(v int32) { +// SetBotChallengesIssued gets a reference to the given int64 and assigns it to the BotChallengesIssued field. +func (o *RealtimeEntryAggregated) SetBotChallengesIssued(v int64) { o.BotChallengesIssued = &v } // GetBotChallengesSucceeded returns the BotChallengesSucceeded field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengesSucceeded() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengesSucceeded() int64 { if o == nil || o.BotChallengesSucceeded == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesSucceeded @@ -7719,7 +7719,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengesSucceeded() int32 { // GetBotChallengesSucceededOk returns a tuple with the BotChallengesSucceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengesSucceededOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengesSucceededOk() (*int64, bool) { if o == nil || o.BotChallengesSucceeded == nil { return nil, false } @@ -7735,15 +7735,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengesSucceeded() bool { return false } -// SetBotChallengesSucceeded gets a reference to the given int32 and assigns it to the BotChallengesSucceeded field. -func (o *RealtimeEntryAggregated) SetBotChallengesSucceeded(v int32) { +// SetBotChallengesSucceeded gets a reference to the given int64 and assigns it to the BotChallengesSucceeded field. +func (o *RealtimeEntryAggregated) SetBotChallengesSucceeded(v int64) { o.BotChallengesSucceeded = &v } // GetBotChallengesFailed returns the BotChallengesFailed field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengesFailed() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengesFailed() int64 { if o == nil || o.BotChallengesFailed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesFailed @@ -7751,7 +7751,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengesFailed() int32 { // GetBotChallengesFailedOk returns a tuple with the BotChallengesFailed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengesFailedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengesFailedOk() (*int64, bool) { if o == nil || o.BotChallengesFailed == nil { return nil, false } @@ -7767,15 +7767,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengesFailed() bool { return false } -// SetBotChallengesFailed gets a reference to the given int32 and assigns it to the BotChallengesFailed field. -func (o *RealtimeEntryAggregated) SetBotChallengesFailed(v int32) { +// SetBotChallengesFailed gets a reference to the given int64 and assigns it to the BotChallengesFailed field. +func (o *RealtimeEntryAggregated) SetBotChallengesFailed(v int64) { o.BotChallengesFailed = &v } // GetBotChallengeCompleteTokensIssued returns the BotChallengeCompleteTokensIssued field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssued() int32 { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssued() int64 { if o == nil || o.BotChallengeCompleteTokensIssued == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensIssued @@ -7783,7 +7783,7 @@ func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssued() int32 { // GetBotChallengeCompleteTokensIssuedOk returns a tuple with the BotChallengeCompleteTokensIssued field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssuedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetBotChallengeCompleteTokensIssuedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensIssued == nil { return nil, false } @@ -7799,15 +7799,15 @@ func (o *RealtimeEntryAggregated) HasBotChallengeCompleteTokensIssued() bool { return false } -// SetBotChallengeCompleteTokensIssued gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensIssued field. -func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensIssued(v int32) { +// SetBotChallengeCompleteTokensIssued gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensIssued field. +func (o *RealtimeEntryAggregated) SetBotChallengeCompleteTokensIssued(v int64) { o.BotChallengeCompleteTokensIssued = &v } // GetDdosActionDowngrade returns the DdosActionDowngrade field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDdosActionDowngrade() int32 { +func (o *RealtimeEntryAggregated) GetDdosActionDowngrade() int64 { if o == nil || o.DdosActionDowngrade == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionDowngrade @@ -7815,7 +7815,7 @@ func (o *RealtimeEntryAggregated) GetDdosActionDowngrade() int32 { // GetDdosActionDowngradeOk returns a tuple with the DdosActionDowngrade field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDdosActionDowngradeOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDdosActionDowngradeOk() (*int64, bool) { if o == nil || o.DdosActionDowngrade == nil { return nil, false } @@ -7831,15 +7831,15 @@ func (o *RealtimeEntryAggregated) HasDdosActionDowngrade() bool { return false } -// SetDdosActionDowngrade gets a reference to the given int32 and assigns it to the DdosActionDowngrade field. -func (o *RealtimeEntryAggregated) SetDdosActionDowngrade(v int32) { +// SetDdosActionDowngrade gets a reference to the given int64 and assigns it to the DdosActionDowngrade field. +func (o *RealtimeEntryAggregated) SetDdosActionDowngrade(v int64) { o.DdosActionDowngrade = &v } // GetDdosActionDowngradedConnections returns the DdosActionDowngradedConnections field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnections() int32 { +func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnections() int64 { if o == nil || o.DdosActionDowngradedConnections == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionDowngradedConnections @@ -7847,7 +7847,7 @@ func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnections() int32 { // GetDdosActionDowngradedConnectionsOk returns a tuple with the DdosActionDowngradedConnections field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnectionsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetDdosActionDowngradedConnectionsOk() (*int64, bool) { if o == nil || o.DdosActionDowngradedConnections == nil { return nil, false } @@ -7863,15 +7863,15 @@ func (o *RealtimeEntryAggregated) HasDdosActionDowngradedConnections() bool { return false } -// SetDdosActionDowngradedConnections gets a reference to the given int32 and assigns it to the DdosActionDowngradedConnections field. -func (o *RealtimeEntryAggregated) SetDdosActionDowngradedConnections(v int32) { +// SetDdosActionDowngradedConnections gets a reference to the given int64 and assigns it to the DdosActionDowngradedConnections field. +func (o *RealtimeEntryAggregated) SetDdosActionDowngradedConnections(v int64) { o.DdosActionDowngradedConnections = &v } // GetAllHitRequests returns the AllHitRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllHitRequests() int32 { +func (o *RealtimeEntryAggregated) GetAllHitRequests() int64 { if o == nil || o.AllHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllHitRequests @@ -7879,7 +7879,7 @@ func (o *RealtimeEntryAggregated) GetAllHitRequests() int32 { // GetAllHitRequestsOk returns a tuple with the AllHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllHitRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllHitRequestsOk() (*int64, bool) { if o == nil || o.AllHitRequests == nil { return nil, false } @@ -7895,15 +7895,15 @@ func (o *RealtimeEntryAggregated) HasAllHitRequests() bool { return false } -// SetAllHitRequests gets a reference to the given int32 and assigns it to the AllHitRequests field. -func (o *RealtimeEntryAggregated) SetAllHitRequests(v int32) { +// SetAllHitRequests gets a reference to the given int64 and assigns it to the AllHitRequests field. +func (o *RealtimeEntryAggregated) SetAllHitRequests(v int64) { o.AllHitRequests = &v } // GetAllMissRequests returns the AllMissRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllMissRequests() int32 { +func (o *RealtimeEntryAggregated) GetAllMissRequests() int64 { if o == nil || o.AllMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllMissRequests @@ -7911,7 +7911,7 @@ func (o *RealtimeEntryAggregated) GetAllMissRequests() int32 { // GetAllMissRequestsOk returns a tuple with the AllMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllMissRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllMissRequestsOk() (*int64, bool) { if o == nil || o.AllMissRequests == nil { return nil, false } @@ -7927,15 +7927,15 @@ func (o *RealtimeEntryAggregated) HasAllMissRequests() bool { return false } -// SetAllMissRequests gets a reference to the given int32 and assigns it to the AllMissRequests field. -func (o *RealtimeEntryAggregated) SetAllMissRequests(v int32) { +// SetAllMissRequests gets a reference to the given int64 and assigns it to the AllMissRequests field. +func (o *RealtimeEntryAggregated) SetAllMissRequests(v int64) { o.AllMissRequests = &v } // GetAllPassRequests returns the AllPassRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllPassRequests() int32 { +func (o *RealtimeEntryAggregated) GetAllPassRequests() int64 { if o == nil || o.AllPassRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllPassRequests @@ -7943,7 +7943,7 @@ func (o *RealtimeEntryAggregated) GetAllPassRequests() int32 { // GetAllPassRequestsOk returns a tuple with the AllPassRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllPassRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllPassRequestsOk() (*int64, bool) { if o == nil || o.AllPassRequests == nil { return nil, false } @@ -7959,15 +7959,15 @@ func (o *RealtimeEntryAggregated) HasAllPassRequests() bool { return false } -// SetAllPassRequests gets a reference to the given int32 and assigns it to the AllPassRequests field. -func (o *RealtimeEntryAggregated) SetAllPassRequests(v int32) { +// SetAllPassRequests gets a reference to the given int64 and assigns it to the AllPassRequests field. +func (o *RealtimeEntryAggregated) SetAllPassRequests(v int64) { o.AllPassRequests = &v } // GetAllErrorRequests returns the AllErrorRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllErrorRequests() int32 { +func (o *RealtimeEntryAggregated) GetAllErrorRequests() int64 { if o == nil || o.AllErrorRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllErrorRequests @@ -7975,7 +7975,7 @@ func (o *RealtimeEntryAggregated) GetAllErrorRequests() int32 { // GetAllErrorRequestsOk returns a tuple with the AllErrorRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllErrorRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllErrorRequestsOk() (*int64, bool) { if o == nil || o.AllErrorRequests == nil { return nil, false } @@ -7991,15 +7991,15 @@ func (o *RealtimeEntryAggregated) HasAllErrorRequests() bool { return false } -// SetAllErrorRequests gets a reference to the given int32 and assigns it to the AllErrorRequests field. -func (o *RealtimeEntryAggregated) SetAllErrorRequests(v int32) { +// SetAllErrorRequests gets a reference to the given int64 and assigns it to the AllErrorRequests field. +func (o *RealtimeEntryAggregated) SetAllErrorRequests(v int64) { o.AllErrorRequests = &v } // GetAllSynthRequests returns the AllSynthRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllSynthRequests() int32 { +func (o *RealtimeEntryAggregated) GetAllSynthRequests() int64 { if o == nil || o.AllSynthRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllSynthRequests @@ -8007,7 +8007,7 @@ func (o *RealtimeEntryAggregated) GetAllSynthRequests() int32 { // GetAllSynthRequestsOk returns a tuple with the AllSynthRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllSynthRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllSynthRequestsOk() (*int64, bool) { if o == nil || o.AllSynthRequests == nil { return nil, false } @@ -8023,15 +8023,15 @@ func (o *RealtimeEntryAggregated) HasAllSynthRequests() bool { return false } -// SetAllSynthRequests gets a reference to the given int32 and assigns it to the AllSynthRequests field. -func (o *RealtimeEntryAggregated) SetAllSynthRequests(v int32) { +// SetAllSynthRequests gets a reference to the given int64 and assigns it to the AllSynthRequests field. +func (o *RealtimeEntryAggregated) SetAllSynthRequests(v int64) { o.AllSynthRequests = &v } // GetAllEdgeHitRequests returns the AllEdgeHitRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllEdgeHitRequests() int32 { +func (o *RealtimeEntryAggregated) GetAllEdgeHitRequests() int64 { if o == nil || o.AllEdgeHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllEdgeHitRequests @@ -8039,7 +8039,7 @@ func (o *RealtimeEntryAggregated) GetAllEdgeHitRequests() int32 { // GetAllEdgeHitRequestsOk returns a tuple with the AllEdgeHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllEdgeHitRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllEdgeHitRequestsOk() (*int64, bool) { if o == nil || o.AllEdgeHitRequests == nil { return nil, false } @@ -8055,15 +8055,15 @@ func (o *RealtimeEntryAggregated) HasAllEdgeHitRequests() bool { return false } -// SetAllEdgeHitRequests gets a reference to the given int32 and assigns it to the AllEdgeHitRequests field. -func (o *RealtimeEntryAggregated) SetAllEdgeHitRequests(v int32) { +// SetAllEdgeHitRequests gets a reference to the given int64 and assigns it to the AllEdgeHitRequests field. +func (o *RealtimeEntryAggregated) SetAllEdgeHitRequests(v int64) { o.AllEdgeHitRequests = &v } // GetAllEdgeMissRequests returns the AllEdgeMissRequests field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllEdgeMissRequests() int32 { +func (o *RealtimeEntryAggregated) GetAllEdgeMissRequests() int64 { if o == nil || o.AllEdgeMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllEdgeMissRequests @@ -8071,7 +8071,7 @@ func (o *RealtimeEntryAggregated) GetAllEdgeMissRequests() int32 { // GetAllEdgeMissRequestsOk returns a tuple with the AllEdgeMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllEdgeMissRequestsOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllEdgeMissRequestsOk() (*int64, bool) { if o == nil || o.AllEdgeMissRequests == nil { return nil, false } @@ -8087,15 +8087,15 @@ func (o *RealtimeEntryAggregated) HasAllEdgeMissRequests() bool { return false } -// SetAllEdgeMissRequests gets a reference to the given int32 and assigns it to the AllEdgeMissRequests field. -func (o *RealtimeEntryAggregated) SetAllEdgeMissRequests(v int32) { +// SetAllEdgeMissRequests gets a reference to the given int64 and assigns it to the AllEdgeMissRequests field. +func (o *RealtimeEntryAggregated) SetAllEdgeMissRequests(v int64) { o.AllEdgeMissRequests = &v } // GetAllStatus1xx returns the AllStatus1xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllStatus1xx() int32 { +func (o *RealtimeEntryAggregated) GetAllStatus1xx() int64 { if o == nil || o.AllStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus1xx @@ -8103,7 +8103,7 @@ func (o *RealtimeEntryAggregated) GetAllStatus1xx() int32 { // GetAllStatus1xxOk returns a tuple with the AllStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllStatus1xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllStatus1xxOk() (*int64, bool) { if o == nil || o.AllStatus1xx == nil { return nil, false } @@ -8119,15 +8119,15 @@ func (o *RealtimeEntryAggregated) HasAllStatus1xx() bool { return false } -// SetAllStatus1xx gets a reference to the given int32 and assigns it to the AllStatus1xx field. -func (o *RealtimeEntryAggregated) SetAllStatus1xx(v int32) { +// SetAllStatus1xx gets a reference to the given int64 and assigns it to the AllStatus1xx field. +func (o *RealtimeEntryAggregated) SetAllStatus1xx(v int64) { o.AllStatus1xx = &v } // GetAllStatus2xx returns the AllStatus2xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllStatus2xx() int32 { +func (o *RealtimeEntryAggregated) GetAllStatus2xx() int64 { if o == nil || o.AllStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus2xx @@ -8135,7 +8135,7 @@ func (o *RealtimeEntryAggregated) GetAllStatus2xx() int32 { // GetAllStatus2xxOk returns a tuple with the AllStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllStatus2xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllStatus2xxOk() (*int64, bool) { if o == nil || o.AllStatus2xx == nil { return nil, false } @@ -8151,15 +8151,15 @@ func (o *RealtimeEntryAggregated) HasAllStatus2xx() bool { return false } -// SetAllStatus2xx gets a reference to the given int32 and assigns it to the AllStatus2xx field. -func (o *RealtimeEntryAggregated) SetAllStatus2xx(v int32) { +// SetAllStatus2xx gets a reference to the given int64 and assigns it to the AllStatus2xx field. +func (o *RealtimeEntryAggregated) SetAllStatus2xx(v int64) { o.AllStatus2xx = &v } // GetAllStatus3xx returns the AllStatus3xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllStatus3xx() int32 { +func (o *RealtimeEntryAggregated) GetAllStatus3xx() int64 { if o == nil || o.AllStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus3xx @@ -8167,7 +8167,7 @@ func (o *RealtimeEntryAggregated) GetAllStatus3xx() int32 { // GetAllStatus3xxOk returns a tuple with the AllStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllStatus3xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllStatus3xxOk() (*int64, bool) { if o == nil || o.AllStatus3xx == nil { return nil, false } @@ -8183,15 +8183,15 @@ func (o *RealtimeEntryAggregated) HasAllStatus3xx() bool { return false } -// SetAllStatus3xx gets a reference to the given int32 and assigns it to the AllStatus3xx field. -func (o *RealtimeEntryAggregated) SetAllStatus3xx(v int32) { +// SetAllStatus3xx gets a reference to the given int64 and assigns it to the AllStatus3xx field. +func (o *RealtimeEntryAggregated) SetAllStatus3xx(v int64) { o.AllStatus3xx = &v } // GetAllStatus4xx returns the AllStatus4xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllStatus4xx() int32 { +func (o *RealtimeEntryAggregated) GetAllStatus4xx() int64 { if o == nil || o.AllStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus4xx @@ -8199,7 +8199,7 @@ func (o *RealtimeEntryAggregated) GetAllStatus4xx() int32 { // GetAllStatus4xxOk returns a tuple with the AllStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllStatus4xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllStatus4xxOk() (*int64, bool) { if o == nil || o.AllStatus4xx == nil { return nil, false } @@ -8215,15 +8215,15 @@ func (o *RealtimeEntryAggregated) HasAllStatus4xx() bool { return false } -// SetAllStatus4xx gets a reference to the given int32 and assigns it to the AllStatus4xx field. -func (o *RealtimeEntryAggregated) SetAllStatus4xx(v int32) { +// SetAllStatus4xx gets a reference to the given int64 and assigns it to the AllStatus4xx field. +func (o *RealtimeEntryAggregated) SetAllStatus4xx(v int64) { o.AllStatus4xx = &v } // GetAllStatus5xx returns the AllStatus5xx field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetAllStatus5xx() int32 { +func (o *RealtimeEntryAggregated) GetAllStatus5xx() int64 { if o == nil || o.AllStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus5xx @@ -8231,7 +8231,7 @@ func (o *RealtimeEntryAggregated) GetAllStatus5xx() int32 { // GetAllStatus5xxOk returns a tuple with the AllStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetAllStatus5xxOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetAllStatus5xxOk() (*int64, bool) { if o == nil || o.AllStatus5xx == nil { return nil, false } @@ -8247,8 +8247,8 @@ func (o *RealtimeEntryAggregated) HasAllStatus5xx() bool { return false } -// SetAllStatus5xx gets a reference to the given int32 and assigns it to the AllStatus5xx field. -func (o *RealtimeEntryAggregated) SetAllStatus5xx(v int32) { +// SetAllStatus5xx gets a reference to the given int64 and assigns it to the AllStatus5xx field. +func (o *RealtimeEntryAggregated) SetAllStatus5xx(v int64) { o.AllStatus5xx = &v } @@ -8285,9 +8285,9 @@ func (o *RealtimeEntryAggregated) SetOriginOffload(v float32) { } // GetRequestDeniedGetHeadBody returns the RequestDeniedGetHeadBody field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBody() int32 { +func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBody() int64 { if o == nil || o.RequestDeniedGetHeadBody == nil { - var ret int32 + var ret int64 return ret } return *o.RequestDeniedGetHeadBody @@ -8295,7 +8295,7 @@ func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBody() int32 { // GetRequestDeniedGetHeadBodyOk returns a tuple with the RequestDeniedGetHeadBody field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBodyOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetRequestDeniedGetHeadBodyOk() (*int64, bool) { if o == nil || o.RequestDeniedGetHeadBody == nil { return nil, false } @@ -8311,15 +8311,15 @@ func (o *RealtimeEntryAggregated) HasRequestDeniedGetHeadBody() bool { return false } -// SetRequestDeniedGetHeadBody gets a reference to the given int32 and assigns it to the RequestDeniedGetHeadBody field. -func (o *RealtimeEntryAggregated) SetRequestDeniedGetHeadBody(v int32) { +// SetRequestDeniedGetHeadBody gets a reference to the given int64 and assigns it to the RequestDeniedGetHeadBody field. +func (o *RealtimeEntryAggregated) SetRequestDeniedGetHeadBody(v int64) { o.RequestDeniedGetHeadBody = &v } // GetServiceDdosRequestsDetected returns the ServiceDdosRequestsDetected field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetected() int32 { +func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetected() int64 { if o == nil || o.ServiceDdosRequestsDetected == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsDetected @@ -8327,7 +8327,7 @@ func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetected() int32 { // GetServiceDdosRequestsDetectedOk returns a tuple with the ServiceDdosRequestsDetected field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetectedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetServiceDdosRequestsDetectedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsDetected == nil { return nil, false } @@ -8343,15 +8343,15 @@ func (o *RealtimeEntryAggregated) HasServiceDdosRequestsDetected() bool { return false } -// SetServiceDdosRequestsDetected gets a reference to the given int32 and assigns it to the ServiceDdosRequestsDetected field. -func (o *RealtimeEntryAggregated) SetServiceDdosRequestsDetected(v int32) { +// SetServiceDdosRequestsDetected gets a reference to the given int64 and assigns it to the ServiceDdosRequestsDetected field. +func (o *RealtimeEntryAggregated) SetServiceDdosRequestsDetected(v int64) { o.ServiceDdosRequestsDetected = &v } // GetServiceDdosRequestsMitigated returns the ServiceDdosRequestsMitigated field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigated() int32 { +func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigated() int64 { if o == nil || o.ServiceDdosRequestsMitigated == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsMitigated @@ -8359,7 +8359,7 @@ func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigated() int32 { // GetServiceDdosRequestsMitigatedOk returns a tuple with the ServiceDdosRequestsMitigated field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigatedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetServiceDdosRequestsMitigatedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsMitigated == nil { return nil, false } @@ -8375,15 +8375,15 @@ func (o *RealtimeEntryAggregated) HasServiceDdosRequestsMitigated() bool { return false } -// SetServiceDdosRequestsMitigated gets a reference to the given int32 and assigns it to the ServiceDdosRequestsMitigated field. -func (o *RealtimeEntryAggregated) SetServiceDdosRequestsMitigated(v int32) { +// SetServiceDdosRequestsMitigated gets a reference to the given int64 and assigns it to the ServiceDdosRequestsMitigated field. +func (o *RealtimeEntryAggregated) SetServiceDdosRequestsMitigated(v int64) { o.ServiceDdosRequestsMitigated = &v } // GetServiceDdosRequestsAllowed returns the ServiceDdosRequestsAllowed field value if set, zero value otherwise. -func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowed() int32 { +func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowed() int64 { if o == nil || o.ServiceDdosRequestsAllowed == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsAllowed @@ -8391,7 +8391,7 @@ func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowed() int32 { // GetServiceDdosRequestsAllowedOk returns a tuple with the ServiceDdosRequestsAllowed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowedOk() (*int32, bool) { +func (o *RealtimeEntryAggregated) GetServiceDdosRequestsAllowedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsAllowed == nil { return nil, false } @@ -8407,8 +8407,8 @@ func (o *RealtimeEntryAggregated) HasServiceDdosRequestsAllowed() bool { return false } -// SetServiceDdosRequestsAllowed gets a reference to the given int32 and assigns it to the ServiceDdosRequestsAllowed field. -func (o *RealtimeEntryAggregated) SetServiceDdosRequestsAllowed(v int32) { +// SetServiceDdosRequestsAllowed gets a reference to the given int64 and assigns it to the ServiceDdosRequestsAllowed field. +func (o *RealtimeEntryAggregated) SetServiceDdosRequestsAllowed(v int64) { o.ServiceDdosRequestsAllowed = &v } diff --git a/fastly/model_realtime_measurements.go b/fastly/model_realtime_measurements.go index 8cf3837..df15d82 100644 --- a/fastly/model_realtime_measurements.go +++ b/fastly/model_realtime_measurements.go @@ -19,29 +19,29 @@ import ( // RealtimeMeasurements Statistics that have occurred since the last request. type RealtimeMeasurements struct { // Number of requests processed. - Requests *int32 `json:"requests,omitempty"` + Requests *int64 `json:"requests,omitempty"` // Number of log lines sent (alias for `log`). - Logging *int32 `json:"logging,omitempty"` + Logging *int64 `json:"logging,omitempty"` // Number of log lines sent. - Log *int32 `json:"log,omitempty"` + Log *int64 `json:"log,omitempty"` // Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). - RespHeaderBytes *int32 `json:"resp_header_bytes,omitempty"` + RespHeaderBytes *int64 `json:"resp_header_bytes,omitempty"` // Total header bytes delivered (alias for resp_header_bytes). - HeaderSize *int32 `json:"header_size,omitempty"` + HeaderSize *int64 `json:"header_size,omitempty"` // Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). - RespBodyBytes *int32 `json:"resp_body_bytes,omitempty"` + RespBodyBytes *int64 `json:"resp_body_bytes,omitempty"` // Total body bytes delivered (alias for resp_body_bytes). - BodySize *int32 `json:"body_size,omitempty"` + BodySize *int64 `json:"body_size,omitempty"` // Number of cache hits. - Hits *int32 `json:"hits,omitempty"` + Hits *int64 `json:"hits,omitempty"` // Number of cache misses. - Miss *int32 `json:"miss,omitempty"` + Miss *int64 `json:"miss,omitempty"` // Number of requests that passed through the CDN without being cached. - Pass *int32 `json:"pass,omitempty"` + Pass *int64 `json:"pass,omitempty"` // Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). - Synth *int32 `json:"synth,omitempty"` + Synth *int64 `json:"synth,omitempty"` // Number of cache errors. - Errors *int32 `json:"errors,omitempty"` + Errors *int64 `json:"errors,omitempty"` // Total amount of time spent processing cache hits (in seconds). HitsTime *float32 `json:"hits_time,omitempty"` // Total amount of time spent processing cache misses (in seconds). @@ -49,469 +49,469 @@ type RealtimeMeasurements struct { // A histogram. The value in each bucket is the number of requests to the origin whose responses arrived during the time period represented by the bucket. The key of each bucket represents the upper bound (in response time) of that bucket. The buckets vary in width and cover the time periods 0-10ms (in 1ms increments), 10-250ms (in 10ms increments), 250-1,000ms (in 50ms increments), 1,000-3,000ms (in 100ms increments), 3,000-10,000ms (in 500 ms increments), 10,000-20,000ms (in 1,000ms increments), 20,000-60,000ms (in 5,000ms increments), and 60,000ms through infinity (in a single bucket). MissHistogram map[string]map[string]any `json:"miss_histogram,omitempty"` // The total number of requests that were received for your service by Fastly. - ComputeRequests *int32 `json:"compute_requests,omitempty"` + ComputeRequests *int64 `json:"compute_requests,omitempty"` // The amount of active CPU time used to process your requests (in milliseconds). ComputeExecutionTimeMs *float32 `json:"compute_execution_time_ms,omitempty"` // The amount of RAM used for your service by Fastly (in bytes). - ComputeRAMUsed *int32 `json:"compute_ram_used,omitempty"` + ComputeRAMUsed *int64 `json:"compute_ram_used,omitempty"` // The total, actual amount of time used to process your requests, including active CPU time (in milliseconds). ComputeRequestTimeMs *float32 `json:"compute_request_time_ms,omitempty"` // The total amount of request processing time you will be billed for, measured in 50 millisecond increments. ComputeRequestTimeBilledMs *float32 `json:"compute_request_time_billed_ms,omitempty"` // Number of requests from edge to the shield POP. - Shield *int32 `json:"shield,omitempty"` + Shield *int64 `json:"shield,omitempty"` // Number of requests that were received over IPv6. - Ipv6 *int32 `json:"ipv6,omitempty"` + Ipv6 *int64 `json:"ipv6,omitempty"` // Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. - Imgopto *int32 `json:"imgopto,omitempty"` + Imgopto *int64 `json:"imgopto,omitempty"` // Number of responses that came from the Fastly Image Optimizer service via a shield. - ImgoptoShield *int32 `json:"imgopto_shield,omitempty"` + ImgoptoShield *int64 `json:"imgopto_shield,omitempty"` // Number of transforms performed by the Fastly Image Optimizer service. - ImgoptoTransforms *int32 `json:"imgopto_transforms,omitempty"` + ImgoptoTransforms *int64 `json:"imgopto_transforms,omitempty"` // Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. - Otfp *int32 `json:"otfp,omitempty"` + Otfp *int64 `json:"otfp,omitempty"` // Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand via a shield. - OtfpShield *int32 `json:"otfp_shield,omitempty"` + OtfpShield *int64 `json:"otfp_shield,omitempty"` // Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpManifests *int32 `json:"otfp_manifests,omitempty"` + OtfpManifests *int64 `json:"otfp_manifests,omitempty"` // Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). - Video *int32 `json:"video,omitempty"` + Video *int64 `json:"video,omitempty"` // Number of responses with the PCI flag turned on. - Pci *int32 `json:"pci,omitempty"` + Pci *int64 `json:"pci,omitempty"` // Number of requests received over HTTP/2. - HTTP2 *int32 `json:"http2,omitempty"` + HTTP2 *int64 `json:"http2,omitempty"` // Number of requests received over HTTP/3. - HTTP3 *int32 `json:"http3,omitempty"` + HTTP3 *int64 `json:"http3,omitempty"` // Number of restarts performed. - Restarts *int32 `json:"restarts,omitempty"` + Restarts *int64 `json:"restarts,omitempty"` // Total header bytes received. - ReqHeaderBytes *int32 `json:"req_header_bytes,omitempty"` + ReqHeaderBytes *int64 `json:"req_header_bytes,omitempty"` // Total body bytes received. - ReqBodyBytes *int32 `json:"req_body_bytes,omitempty"` + ReqBodyBytes *int64 `json:"req_body_bytes,omitempty"` // Total header bytes sent to origin. - BereqHeaderBytes *int32 `json:"bereq_header_bytes,omitempty"` + BereqHeaderBytes *int64 `json:"bereq_header_bytes,omitempty"` // Total body bytes sent to origin. - BereqBodyBytes *int32 `json:"bereq_body_bytes,omitempty"` + BereqBodyBytes *int64 `json:"bereq_body_bytes,omitempty"` // Number of requests that triggered a WAF rule and were blocked. - WafBlocked *int32 `json:"waf_blocked,omitempty"` + WafBlocked *int64 `json:"waf_blocked,omitempty"` // Number of requests that triggered a WAF rule and were logged. - WafLogged *int32 `json:"waf_logged,omitempty"` + WafLogged *int64 `json:"waf_logged,omitempty"` // Number of requests that triggered a WAF rule and were passed. - WafPassed *int32 `json:"waf_passed,omitempty"` + WafPassed *int64 `json:"waf_passed,omitempty"` // Total header bytes received from requests that triggered a WAF rule. - AttackReqHeaderBytes *int32 `json:"attack_req_header_bytes,omitempty"` + AttackReqHeaderBytes *int64 `json:"attack_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule. - AttackReqBodyBytes *int32 `json:"attack_req_body_bytes,omitempty"` + AttackReqBodyBytes *int64 `json:"attack_req_body_bytes,omitempty"` // Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. - AttackRespSynthBytes *int32 `json:"attack_resp_synth_bytes,omitempty"` + AttackRespSynthBytes *int64 `json:"attack_resp_synth_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was logged. - AttackLoggedReqHeaderBytes *int32 `json:"attack_logged_req_header_bytes,omitempty"` + AttackLoggedReqHeaderBytes *int64 `json:"attack_logged_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was logged. - AttackLoggedReqBodyBytes *int32 `json:"attack_logged_req_body_bytes,omitempty"` + AttackLoggedReqBodyBytes *int64 `json:"attack_logged_req_body_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was blocked. - AttackBlockedReqHeaderBytes *int32 `json:"attack_blocked_req_header_bytes,omitempty"` + AttackBlockedReqHeaderBytes *int64 `json:"attack_blocked_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was blocked. - AttackBlockedReqBodyBytes *int32 `json:"attack_blocked_req_body_bytes,omitempty"` + AttackBlockedReqBodyBytes *int64 `json:"attack_blocked_req_body_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was passed. - AttackPassedReqHeaderBytes *int32 `json:"attack_passed_req_header_bytes,omitempty"` + AttackPassedReqHeaderBytes *int64 `json:"attack_passed_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was passed. - AttackPassedReqBodyBytes *int32 `json:"attack_passed_req_body_bytes,omitempty"` + AttackPassedReqBodyBytes *int64 `json:"attack_passed_req_body_bytes,omitempty"` // Total header bytes delivered via a shield. - ShieldRespHeaderBytes *int32 `json:"shield_resp_header_bytes,omitempty"` + ShieldRespHeaderBytes *int64 `json:"shield_resp_header_bytes,omitempty"` // Total body bytes delivered via a shield. - ShieldRespBodyBytes *int32 `json:"shield_resp_body_bytes,omitempty"` + ShieldRespBodyBytes *int64 `json:"shield_resp_body_bytes,omitempty"` // Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpRespHeaderBytes *int32 `json:"otfp_resp_header_bytes,omitempty"` + OtfpRespHeaderBytes *int64 `json:"otfp_resp_header_bytes,omitempty"` // Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpRespBodyBytes *int32 `json:"otfp_resp_body_bytes,omitempty"` + OtfpRespBodyBytes *int64 `json:"otfp_resp_body_bytes,omitempty"` // Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpShieldRespHeaderBytes *int32 `json:"otfp_shield_resp_header_bytes,omitempty"` + OtfpShieldRespHeaderBytes *int64 `json:"otfp_shield_resp_header_bytes,omitempty"` // Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpShieldRespBodyBytes *int32 `json:"otfp_shield_resp_body_bytes,omitempty"` + OtfpShieldRespBodyBytes *int64 `json:"otfp_shield_resp_body_bytes,omitempty"` // Total amount of time spent delivering a response via a shield from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). OtfpShieldTime *float32 `json:"otfp_shield_time,omitempty"` // Total amount of time spent delivering a response from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). OtfpDeliverTime *float32 `json:"otfp_deliver_time,omitempty"` // Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. - ImgoptoRespHeaderBytes *int32 `json:"imgopto_resp_header_bytes,omitempty"` + ImgoptoRespHeaderBytes *int64 `json:"imgopto_resp_header_bytes,omitempty"` // Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. - ImgoptoRespBodyBytes *int32 `json:"imgopto_resp_body_bytes,omitempty"` + ImgoptoRespBodyBytes *int64 `json:"imgopto_resp_body_bytes,omitempty"` // Total header bytes delivered via a shield from the Fastly Image Optimizer service. - ImgoptoShieldRespHeaderBytes *int32 `json:"imgopto_shield_resp_header_bytes,omitempty"` + ImgoptoShieldRespHeaderBytes *int64 `json:"imgopto_shield_resp_header_bytes,omitempty"` // Total body bytes delivered via a shield from the Fastly Image Optimizer service. - ImgoptoShieldRespBodyBytes *int32 `json:"imgopto_shield_resp_body_bytes,omitempty"` + ImgoptoShieldRespBodyBytes *int64 `json:"imgopto_shield_resp_body_bytes,omitempty"` // Number of \"Informational\" category status codes delivered. - Status1xx *int32 `json:"status_1xx,omitempty"` + Status1xx *int64 `json:"status_1xx,omitempty"` // Number of \"Success\" status codes delivered. - Status2xx *int32 `json:"status_2xx,omitempty"` + Status2xx *int64 `json:"status_2xx,omitempty"` // Number of \"Redirection\" codes delivered. - Status3xx *int32 `json:"status_3xx,omitempty"` + Status3xx *int64 `json:"status_3xx,omitempty"` // Number of \"Client Error\" codes delivered. - Status4xx *int32 `json:"status_4xx,omitempty"` + Status4xx *int64 `json:"status_4xx,omitempty"` // Number of \"Server Error\" codes delivered. - Status5xx *int32 `json:"status_5xx,omitempty"` + Status5xx *int64 `json:"status_5xx,omitempty"` // Number of responses sent with status code 200 (Success). - Status200 *int32 `json:"status_200,omitempty"` + Status200 *int64 `json:"status_200,omitempty"` // Number of responses sent with status code 204 (No Content). - Status204 *int32 `json:"status_204,omitempty"` + Status204 *int64 `json:"status_204,omitempty"` // Number of responses sent with status code 206 (Partial Content). - Status206 *int32 `json:"status_206,omitempty"` + Status206 *int64 `json:"status_206,omitempty"` // Number of responses sent with status code 301 (Moved Permanently). - Status301 *int32 `json:"status_301,omitempty"` + Status301 *int64 `json:"status_301,omitempty"` // Number of responses sent with status code 302 (Found). - Status302 *int32 `json:"status_302,omitempty"` + Status302 *int64 `json:"status_302,omitempty"` // Number of responses sent with status code 304 (Not Modified). - Status304 *int32 `json:"status_304,omitempty"` + Status304 *int64 `json:"status_304,omitempty"` // Number of responses sent with status code 400 (Bad Request). - Status400 *int32 `json:"status_400,omitempty"` + Status400 *int64 `json:"status_400,omitempty"` // Number of responses sent with status code 401 (Unauthorized). - Status401 *int32 `json:"status_401,omitempty"` + Status401 *int64 `json:"status_401,omitempty"` // Number of responses sent with status code 403 (Forbidden). - Status403 *int32 `json:"status_403,omitempty"` + Status403 *int64 `json:"status_403,omitempty"` // Number of responses sent with status code 404 (Not Found). - Status404 *int32 `json:"status_404,omitempty"` + Status404 *int64 `json:"status_404,omitempty"` // Number of responses sent with status code 406 (Not Acceptable). - Status406 *int32 `json:"status_406,omitempty"` + Status406 *int64 `json:"status_406,omitempty"` // Number of responses sent with status code 416 (Range Not Satisfiable). - Status416 *int32 `json:"status_416,omitempty"` + Status416 *int64 `json:"status_416,omitempty"` // Number of responses sent with status code 429 (Too Many Requests). - Status429 *int32 `json:"status_429,omitempty"` + Status429 *int64 `json:"status_429,omitempty"` // Number of responses sent with status code 500 (Internal Server Error). - Status500 *int32 `json:"status_500,omitempty"` + Status500 *int64 `json:"status_500,omitempty"` // Number of responses sent with status code 501 (Not Implemented). - Status501 *int32 `json:"status_501,omitempty"` + Status501 *int64 `json:"status_501,omitempty"` // Number of responses sent with status code 502 (Bad Gateway). - Status502 *int32 `json:"status_502,omitempty"` + Status502 *int64 `json:"status_502,omitempty"` // Number of responses sent with status code 503 (Service Unavailable). - Status503 *int32 `json:"status_503,omitempty"` + Status503 *int64 `json:"status_503,omitempty"` // Number of responses sent with status code 504 (Gateway Timeout). - Status504 *int32 `json:"status_504,omitempty"` + Status504 *int64 `json:"status_504,omitempty"` // Number of responses sent with status code 505 (HTTP Version Not Supported). - Status505 *int32 `json:"status_505,omitempty"` + Status505 *int64 `json:"status_505,omitempty"` // Number of requests that were designated uncachable. - Uncacheable *int32 `json:"uncacheable,omitempty"` + Uncacheable *int64 `json:"uncacheable,omitempty"` // Total amount of time spent processing cache passes (in seconds). PassTime *float32 `json:"pass_time,omitempty"` // Number of requests that were received over TLS. - TLS *int32 `json:"tls,omitempty"` + TLS *int64 `json:"tls,omitempty"` // Number of requests received over TLS 1.0. - TLSV10 *int32 `json:"tls_v10,omitempty"` + TLSV10 *int64 `json:"tls_v10,omitempty"` // Number of requests received over TLS 1.1. - TLSV11 *int32 `json:"tls_v11,omitempty"` + TLSV11 *int64 `json:"tls_v11,omitempty"` // Number of requests received over TLS 1.2. - TLSV12 *int32 `json:"tls_v12,omitempty"` + TLSV12 *int64 `json:"tls_v12,omitempty"` // Number of requests received over TLS 1.3. - TLSV13 *int32 `json:"tls_v13,omitempty"` + TLSV13 *int64 `json:"tls_v13,omitempty"` // Number of objects served that were under 1KB in size. - ObjectSize1k *int32 `json:"object_size_1k,omitempty"` + ObjectSize1k *int64 `json:"object_size_1k,omitempty"` // Number of objects served that were between 1KB and 10KB in size. - ObjectSize10k *int32 `json:"object_size_10k,omitempty"` + ObjectSize10k *int64 `json:"object_size_10k,omitempty"` // Number of objects served that were between 10KB and 100KB in size. - ObjectSize100k *int32 `json:"object_size_100k,omitempty"` + ObjectSize100k *int64 `json:"object_size_100k,omitempty"` // Number of objects served that were between 100KB and 1MB in size. - ObjectSize1m *int32 `json:"object_size_1m,omitempty"` + ObjectSize1m *int64 `json:"object_size_1m,omitempty"` // Number of objects served that were between 1MB and 10MB in size. - ObjectSize10m *int32 `json:"object_size_10m,omitempty"` + ObjectSize10m *int64 `json:"object_size_10m,omitempty"` // Number of objects served that were between 10MB and 100MB in size. - ObjectSize100m *int32 `json:"object_size_100m,omitempty"` + ObjectSize100m *int64 `json:"object_size_100m,omitempty"` // Number of objects served that were between 100MB and 1GB in size. - ObjectSize1g *int32 `json:"object_size_1g,omitempty"` + ObjectSize1g *int64 `json:"object_size_1g,omitempty"` // Number of objects served that were larger than 1GB in size. - ObjectSizeOther *int32 `json:"object_size_other,omitempty"` + ObjectSizeOther *int64 `json:"object_size_other,omitempty"` // Time spent inside the `vcl_recv` Varnish subroutine (in nanoseconds). RecvSubTime *float32 `json:"recv_sub_time,omitempty"` // Number of executions of the `vcl_recv` Varnish subroutine. - RecvSubCount *int32 `json:"recv_sub_count,omitempty"` + RecvSubCount *int64 `json:"recv_sub_count,omitempty"` // Time spent inside the `vcl_hash` Varnish subroutine (in nanoseconds). HashSubTime *float32 `json:"hash_sub_time,omitempty"` // Number of executions of the `vcl_hash` Varnish subroutine. - HashSubCount *int32 `json:"hash_sub_count,omitempty"` + HashSubCount *int64 `json:"hash_sub_count,omitempty"` // Time spent inside the `vcl_miss` Varnish subroutine (in nanoseconds). MissSubTime *float32 `json:"miss_sub_time,omitempty"` // Number of executions of the `vcl_miss` Varnish subroutine. - MissSubCount *int32 `json:"miss_sub_count,omitempty"` + MissSubCount *int64 `json:"miss_sub_count,omitempty"` // Time spent inside the `vcl_fetch` Varnish subroutine (in nanoseconds). FetchSubTime *float32 `json:"fetch_sub_time,omitempty"` // Number of executions of the `vcl_fetch` Varnish subroutine. - FetchSubCount *int32 `json:"fetch_sub_count,omitempty"` + FetchSubCount *int64 `json:"fetch_sub_count,omitempty"` // Time spent inside the `vcl_pass` Varnish subroutine (in nanoseconds). PassSubTime *float32 `json:"pass_sub_time,omitempty"` // Number of executions of the `vcl_pass` Varnish subroutine. - PassSubCount *int32 `json:"pass_sub_count,omitempty"` + PassSubCount *int64 `json:"pass_sub_count,omitempty"` // Time spent inside the `vcl_pipe` Varnish subroutine (in nanoseconds). PipeSubTime *float32 `json:"pipe_sub_time,omitempty"` // Number of executions of the `vcl_pipe` Varnish subroutine. - PipeSubCount *int32 `json:"pipe_sub_count,omitempty"` + PipeSubCount *int64 `json:"pipe_sub_count,omitempty"` // Time spent inside the `vcl_deliver` Varnish subroutine (in nanoseconds). DeliverSubTime *float32 `json:"deliver_sub_time,omitempty"` // Number of executions of the `vcl_deliver` Varnish subroutine. - DeliverSubCount *int32 `json:"deliver_sub_count,omitempty"` + DeliverSubCount *int64 `json:"deliver_sub_count,omitempty"` // Time spent inside the `vcl_error` Varnish subroutine (in nanoseconds). ErrorSubTime *float32 `json:"error_sub_time,omitempty"` // Number of executions of the `vcl_error` Varnish subroutine. - ErrorSubCount *int32 `json:"error_sub_count,omitempty"` + ErrorSubCount *int64 `json:"error_sub_count,omitempty"` // Time spent inside the `vcl_hit` Varnish subroutine (in nanoseconds). HitSubTime *float32 `json:"hit_sub_time,omitempty"` // Number of executions of the `vcl_hit` Varnish subroutine. - HitSubCount *int32 `json:"hit_sub_count,omitempty"` + HitSubCount *int64 `json:"hit_sub_count,omitempty"` // Time spent inside the `vcl_prehash` Varnish subroutine (in nanoseconds). PrehashSubTime *float32 `json:"prehash_sub_time,omitempty"` // Number of executions of the `vcl_prehash` Varnish subroutine. - PrehashSubCount *int32 `json:"prehash_sub_count,omitempty"` + PrehashSubCount *int64 `json:"prehash_sub_count,omitempty"` // Time spent inside the `vcl_predeliver` Varnish subroutine (in nanoseconds). PredeliverSubTime *float32 `json:"predeliver_sub_time,omitempty"` // Number of executions of the `vcl_predeliver` Varnish subroutine. - PredeliverSubCount *int32 `json:"predeliver_sub_count,omitempty"` + PredeliverSubCount *int64 `json:"predeliver_sub_count,omitempty"` // Total body bytes delivered for cache hits. - HitRespBodyBytes *int32 `json:"hit_resp_body_bytes,omitempty"` + HitRespBodyBytes *int64 `json:"hit_resp_body_bytes,omitempty"` // Total body bytes delivered for cache misses. - MissRespBodyBytes *int32 `json:"miss_resp_body_bytes,omitempty"` + MissRespBodyBytes *int64 `json:"miss_resp_body_bytes,omitempty"` // Total body bytes delivered for cache passes. - PassRespBodyBytes *int32 `json:"pass_resp_body_bytes,omitempty"` + PassRespBodyBytes *int64 `json:"pass_resp_body_bytes,omitempty"` // Total header bytes received by the Compute platform. - ComputeReqHeaderBytes *int32 `json:"compute_req_header_bytes,omitempty"` + ComputeReqHeaderBytes *int64 `json:"compute_req_header_bytes,omitempty"` // Total body bytes received by the Compute platform. - ComputeReqBodyBytes *int32 `json:"compute_req_body_bytes,omitempty"` + ComputeReqBodyBytes *int64 `json:"compute_req_body_bytes,omitempty"` // Total header bytes sent from Compute to end user. - ComputeRespHeaderBytes *int32 `json:"compute_resp_header_bytes,omitempty"` + ComputeRespHeaderBytes *int64 `json:"compute_resp_header_bytes,omitempty"` // Total body bytes sent from Compute to end user. - ComputeRespBodyBytes *int32 `json:"compute_resp_body_bytes,omitempty"` + ComputeRespBodyBytes *int64 `json:"compute_resp_body_bytes,omitempty"` // Number of video responses that came from the Fastly Image Optimizer service. - Imgvideo *int32 `json:"imgvideo,omitempty"` + Imgvideo *int64 `json:"imgvideo,omitempty"` // Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. - ImgvideoFrames *int32 `json:"imgvideo_frames,omitempty"` + ImgvideoFrames *int64 `json:"imgvideo_frames,omitempty"` // Total header bytes of video delivered from the Fastly Image Optimizer service. - ImgvideoRespHeaderBytes *int32 `json:"imgvideo_resp_header_bytes,omitempty"` + ImgvideoRespHeaderBytes *int64 `json:"imgvideo_resp_header_bytes,omitempty"` // Total body bytes of video delivered from the Fastly Image Optimizer service. - ImgvideoRespBodyBytes *int32 `json:"imgvideo_resp_body_bytes,omitempty"` + ImgvideoRespBodyBytes *int64 `json:"imgvideo_resp_body_bytes,omitempty"` // Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. - ImgvideoShield *int32 `json:"imgvideo_shield,omitempty"` + ImgvideoShield *int64 `json:"imgvideo_shield,omitempty"` // Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. - ImgvideoShieldFrames *int32 `json:"imgvideo_shield_frames,omitempty"` + ImgvideoShieldFrames *int64 `json:"imgvideo_shield_frames,omitempty"` // Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. - ImgvideoShieldRespHeaderBytes *int32 `json:"imgvideo_shield_resp_header_bytes,omitempty"` + ImgvideoShieldRespHeaderBytes *int64 `json:"imgvideo_shield_resp_header_bytes,omitempty"` // Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. - ImgvideoShieldRespBodyBytes *int32 `json:"imgvideo_shield_resp_body_bytes,omitempty"` + ImgvideoShieldRespBodyBytes *int64 `json:"imgvideo_shield_resp_body_bytes,omitempty"` // Total log bytes sent. - LogBytes *int32 `json:"log_bytes,omitempty"` + LogBytes *int64 `json:"log_bytes,omitempty"` // Number of requests sent by end users to Fastly. - EdgeRequests *int32 `json:"edge_requests,omitempty"` + EdgeRequests *int64 `json:"edge_requests,omitempty"` // Total header bytes delivered from Fastly to the end user. - EdgeRespHeaderBytes *int32 `json:"edge_resp_header_bytes,omitempty"` + EdgeRespHeaderBytes *int64 `json:"edge_resp_header_bytes,omitempty"` // Total body bytes delivered from Fastly to the end user. - EdgeRespBodyBytes *int32 `json:"edge_resp_body_bytes,omitempty"` + EdgeRespBodyBytes *int64 `json:"edge_resp_body_bytes,omitempty"` // Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. - OriginRevalidations *int32 `json:"origin_revalidations,omitempty"` + OriginRevalidations *int64 `json:"origin_revalidations,omitempty"` // Number of requests sent to origin. - OriginFetches *int32 `json:"origin_fetches,omitempty"` + OriginFetches *int64 `json:"origin_fetches,omitempty"` // Total request header bytes sent to origin. - OriginFetchHeaderBytes *int32 `json:"origin_fetch_header_bytes,omitempty"` + OriginFetchHeaderBytes *int64 `json:"origin_fetch_header_bytes,omitempty"` // Total request body bytes sent to origin. - OriginFetchBodyBytes *int32 `json:"origin_fetch_body_bytes,omitempty"` + OriginFetchBodyBytes *int64 `json:"origin_fetch_body_bytes,omitempty"` // Total header bytes received from origin. - OriginFetchRespHeaderBytes *int32 `json:"origin_fetch_resp_header_bytes,omitempty"` + OriginFetchRespHeaderBytes *int64 `json:"origin_fetch_resp_header_bytes,omitempty"` // Total body bytes received from origin. - OriginFetchRespBodyBytes *int32 `json:"origin_fetch_resp_body_bytes,omitempty"` + OriginFetchRespBodyBytes *int64 `json:"origin_fetch_resp_body_bytes,omitempty"` // Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. - ShieldRevalidations *int32 `json:"shield_revalidations,omitempty"` + ShieldRevalidations *int64 `json:"shield_revalidations,omitempty"` // Number of requests made from one Fastly POP to another, as part of shielding. - ShieldFetches *int32 `json:"shield_fetches,omitempty"` + ShieldFetches *int64 `json:"shield_fetches,omitempty"` // Total request header bytes sent to a shield. - ShieldFetchHeaderBytes *int32 `json:"shield_fetch_header_bytes,omitempty"` + ShieldFetchHeaderBytes *int64 `json:"shield_fetch_header_bytes,omitempty"` // Total request body bytes sent to a shield. - ShieldFetchBodyBytes *int32 `json:"shield_fetch_body_bytes,omitempty"` + ShieldFetchBodyBytes *int64 `json:"shield_fetch_body_bytes,omitempty"` // Total response header bytes sent from a shield to the edge. - ShieldFetchRespHeaderBytes *int32 `json:"shield_fetch_resp_header_bytes,omitempty"` + ShieldFetchRespHeaderBytes *int64 `json:"shield_fetch_resp_header_bytes,omitempty"` // Total response body bytes sent from a shield to the edge. - ShieldFetchRespBodyBytes *int32 `json:"shield_fetch_resp_body_bytes,omitempty"` + ShieldFetchRespBodyBytes *int64 `json:"shield_fetch_resp_body_bytes,omitempty"` // Number of `Range` requests to origin for segments of resources when using segmented caching. - SegblockOriginFetches *int32 `json:"segblock_origin_fetches,omitempty"` + SegblockOriginFetches *int64 `json:"segblock_origin_fetches,omitempty"` // Number of `Range` requests to a shield for segments of resources when using segmented caching. - SegblockShieldFetches *int32 `json:"segblock_shield_fetches,omitempty"` + SegblockShieldFetches *int64 `json:"segblock_shield_fetches,omitempty"` // Number of \"Informational\" category status codes delivered by the Compute platform. - ComputeRespStatus1xx *int32 `json:"compute_resp_status_1xx,omitempty"` + ComputeRespStatus1xx *int64 `json:"compute_resp_status_1xx,omitempty"` // Number of \"Success\" category status codes delivered by the Compute platform. - ComputeRespStatus2xx *int32 `json:"compute_resp_status_2xx,omitempty"` + ComputeRespStatus2xx *int64 `json:"compute_resp_status_2xx,omitempty"` // Number of \"Redirection\" category status codes delivered by the Compute platform. - ComputeRespStatus3xx *int32 `json:"compute_resp_status_3xx,omitempty"` + ComputeRespStatus3xx *int64 `json:"compute_resp_status_3xx,omitempty"` // Number of \"Client Error\" category status codes delivered by the Compute platform. - ComputeRespStatus4xx *int32 `json:"compute_resp_status_4xx,omitempty"` + ComputeRespStatus4xx *int64 `json:"compute_resp_status_4xx,omitempty"` // Number of \"Server Error\" category status codes delivered by the Compute platform. - ComputeRespStatus5xx *int32 `json:"compute_resp_status_5xx,omitempty"` + ComputeRespStatus5xx *int64 `json:"compute_resp_status_5xx,omitempty"` // Number of requests sent by end users to Fastly that resulted in a hit at the edge. - EdgeHitRequests *int32 `json:"edge_hit_requests,omitempty"` + EdgeHitRequests *int64 `json:"edge_hit_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a miss at the edge. - EdgeMissRequests *int32 `json:"edge_miss_requests,omitempty"` + EdgeMissRequests *int64 `json:"edge_miss_requests,omitempty"` // Total header bytes sent to backends (origins) by the Compute platform. - ComputeBereqHeaderBytes *int32 `json:"compute_bereq_header_bytes,omitempty"` + ComputeBereqHeaderBytes *int64 `json:"compute_bereq_header_bytes,omitempty"` // Total body bytes sent to backends (origins) by the Compute platform. - ComputeBereqBodyBytes *int32 `json:"compute_bereq_body_bytes,omitempty"` + ComputeBereqBodyBytes *int64 `json:"compute_bereq_body_bytes,omitempty"` // Total header bytes received from backends (origins) by the Compute platform. - ComputeBerespHeaderBytes *int32 `json:"compute_beresp_header_bytes,omitempty"` + ComputeBerespHeaderBytes *int64 `json:"compute_beresp_header_bytes,omitempty"` // Total body bytes received from backends (origins) by the Compute platform. - ComputeBerespBodyBytes *int32 `json:"compute_beresp_body_bytes,omitempty"` + ComputeBerespBodyBytes *int64 `json:"compute_beresp_body_bytes,omitempty"` // The total number of completed requests made to backends (origins) that returned cacheable content. - OriginCacheFetches *int32 `json:"origin_cache_fetches,omitempty"` + OriginCacheFetches *int64 `json:"origin_cache_fetches,omitempty"` // The total number of completed requests made to shields that returned cacheable content. - ShieldCacheFetches *int32 `json:"shield_cache_fetches,omitempty"` + ShieldCacheFetches *int64 `json:"shield_cache_fetches,omitempty"` // Number of backend requests started. - ComputeBereqs *int32 `json:"compute_bereqs,omitempty"` + ComputeBereqs *int64 `json:"compute_bereqs,omitempty"` // Number of backend request errors, including timeouts. - ComputeBereqErrors *int32 `json:"compute_bereq_errors,omitempty"` + ComputeBereqErrors *int64 `json:"compute_bereq_errors,omitempty"` // Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. - ComputeResourceLimitExceeded *int32 `json:"compute_resource_limit_exceeded,omitempty"` + ComputeResourceLimitExceeded *int64 `json:"compute_resource_limit_exceeded,omitempty"` // Number of times a guest exceeded its heap limit. - ComputeHeapLimitExceeded *int32 `json:"compute_heap_limit_exceeded,omitempty"` + ComputeHeapLimitExceeded *int64 `json:"compute_heap_limit_exceeded,omitempty"` // Number of times a guest exceeded its stack limit. - ComputeStackLimitExceeded *int32 `json:"compute_stack_limit_exceeded,omitempty"` + ComputeStackLimitExceeded *int64 `json:"compute_stack_limit_exceeded,omitempty"` // Number of times a guest exceeded its globals limit. - ComputeGlobalsLimitExceeded *int32 `json:"compute_globals_limit_exceeded,omitempty"` + ComputeGlobalsLimitExceeded *int64 `json:"compute_globals_limit_exceeded,omitempty"` // Number of times a service experienced a guest code error. - ComputeGuestErrors *int32 `json:"compute_guest_errors,omitempty"` + ComputeGuestErrors *int64 `json:"compute_guest_errors,omitempty"` // Number of times a service experienced a guest runtime error. - ComputeRuntimeErrors *int32 `json:"compute_runtime_errors,omitempty"` + ComputeRuntimeErrors *int64 `json:"compute_runtime_errors,omitempty"` // Body bytes delivered for edge hits. - EdgeHitRespBodyBytes *int32 `json:"edge_hit_resp_body_bytes,omitempty"` + EdgeHitRespBodyBytes *int64 `json:"edge_hit_resp_body_bytes,omitempty"` // Header bytes delivered for edge hits. - EdgeHitRespHeaderBytes *int32 `json:"edge_hit_resp_header_bytes,omitempty"` + EdgeHitRespHeaderBytes *int64 `json:"edge_hit_resp_header_bytes,omitempty"` // Body bytes delivered for edge misses. - EdgeMissRespBodyBytes *int32 `json:"edge_miss_resp_body_bytes,omitempty"` + EdgeMissRespBodyBytes *int64 `json:"edge_miss_resp_body_bytes,omitempty"` // Header bytes delivered for edge misses. - EdgeMissRespHeaderBytes *int32 `json:"edge_miss_resp_header_bytes,omitempty"` + EdgeMissRespHeaderBytes *int64 `json:"edge_miss_resp_header_bytes,omitempty"` // Body bytes received from origin for cacheable content. - OriginCacheFetchRespBodyBytes *int32 `json:"origin_cache_fetch_resp_body_bytes,omitempty"` + OriginCacheFetchRespBodyBytes *int64 `json:"origin_cache_fetch_resp_body_bytes,omitempty"` // Header bytes received from an origin for cacheable content. - OriginCacheFetchRespHeaderBytes *int32 `json:"origin_cache_fetch_resp_header_bytes,omitempty"` + OriginCacheFetchRespHeaderBytes *int64 `json:"origin_cache_fetch_resp_header_bytes,omitempty"` // Number of requests that resulted in a hit at a shield. - ShieldHitRequests *int32 `json:"shield_hit_requests,omitempty"` + ShieldHitRequests *int64 `json:"shield_hit_requests,omitempty"` // Number of requests that resulted in a miss at a shield. - ShieldMissRequests *int32 `json:"shield_miss_requests,omitempty"` + ShieldMissRequests *int64 `json:"shield_miss_requests,omitempty"` // Header bytes delivered for shield hits. - ShieldHitRespHeaderBytes *int32 `json:"shield_hit_resp_header_bytes,omitempty"` + ShieldHitRespHeaderBytes *int64 `json:"shield_hit_resp_header_bytes,omitempty"` // Body bytes delivered for shield hits. - ShieldHitRespBodyBytes *int32 `json:"shield_hit_resp_body_bytes,omitempty"` + ShieldHitRespBodyBytes *int64 `json:"shield_hit_resp_body_bytes,omitempty"` // Header bytes delivered for shield misses. - ShieldMissRespHeaderBytes *int32 `json:"shield_miss_resp_header_bytes,omitempty"` + ShieldMissRespHeaderBytes *int64 `json:"shield_miss_resp_header_bytes,omitempty"` // Body bytes delivered for shield misses. - ShieldMissRespBodyBytes *int32 `json:"shield_miss_resp_body_bytes,omitempty"` + ShieldMissRespBodyBytes *int64 `json:"shield_miss_resp_body_bytes,omitempty"` // Total header bytes received from end users over passthrough WebSocket connections. - WebsocketReqHeaderBytes *int32 `json:"websocket_req_header_bytes,omitempty"` + WebsocketReqHeaderBytes *int64 `json:"websocket_req_header_bytes,omitempty"` // Total message content bytes received from end users over passthrough WebSocket connections. - WebsocketReqBodyBytes *int32 `json:"websocket_req_body_bytes,omitempty"` + WebsocketReqBodyBytes *int64 `json:"websocket_req_body_bytes,omitempty"` // Total header bytes sent to end users over passthrough WebSocket connections. - WebsocketRespHeaderBytes *int32 `json:"websocket_resp_header_bytes,omitempty"` + WebsocketRespHeaderBytes *int64 `json:"websocket_resp_header_bytes,omitempty"` // Total header bytes sent to backends over passthrough WebSocket connections. - WebsocketBereqHeaderBytes *int32 `json:"websocket_bereq_header_bytes,omitempty"` + WebsocketBereqHeaderBytes *int64 `json:"websocket_bereq_header_bytes,omitempty"` // Total message content bytes sent to backends over passthrough WebSocket connections. - WebsocketBereqBodyBytes *int32 `json:"websocket_bereq_body_bytes,omitempty"` + WebsocketBereqBodyBytes *int64 `json:"websocket_bereq_body_bytes,omitempty"` // Total header bytes received from backends over passthrough WebSocket connections. - WebsocketBerespHeaderBytes *int32 `json:"websocket_beresp_header_bytes,omitempty"` + WebsocketBerespHeaderBytes *int64 `json:"websocket_beresp_header_bytes,omitempty"` // Total message content bytes received from backends over passthrough WebSocket connections. - WebsocketBerespBodyBytes *int32 `json:"websocket_beresp_body_bytes,omitempty"` + WebsocketBerespBodyBytes *int64 `json:"websocket_beresp_body_bytes,omitempty"` // Total duration of passthrough WebSocket connections with end users. - WebsocketConnTimeMs *int32 `json:"websocket_conn_time_ms,omitempty"` + WebsocketConnTimeMs *int64 `json:"websocket_conn_time_ms,omitempty"` // Total message content bytes sent to end users over passthrough WebSocket connections. - WebsocketRespBodyBytes *int32 `json:"websocket_resp_body_bytes,omitempty"` + WebsocketRespBodyBytes *int64 `json:"websocket_resp_body_bytes,omitempty"` // Total published messages received from the publish API endpoint. - FanoutRecvPublishes *int32 `json:"fanout_recv_publishes,omitempty"` + FanoutRecvPublishes *int64 `json:"fanout_recv_publishes,omitempty"` // Total published messages sent to end users. - FanoutSendPublishes *int32 `json:"fanout_send_publishes,omitempty"` + FanoutSendPublishes *int64 `json:"fanout_send_publishes,omitempty"` // The total number of class a operations for the KV store. - KvStoreClassAOperations *int32 `json:"kv_store_class_a_operations,omitempty"` + KvStoreClassAOperations *int64 `json:"kv_store_class_a_operations,omitempty"` // The total number of class b operations for the KV store. - KvStoreClassBOperations *int32 `json:"kv_store_class_b_operations,omitempty"` + KvStoreClassBOperations *int64 `json:"kv_store_class_b_operations,omitempty"` // Use kv_store_class_a_operations. // Deprecated - ObjectStoreClassAOperations *int32 `json:"object_store_class_a_operations,omitempty"` + ObjectStoreClassAOperations *int64 `json:"object_store_class_a_operations,omitempty"` // Use kv_store_class_b_operations. // Deprecated - ObjectStoreClassBOperations *int32 `json:"object_store_class_b_operations,omitempty"` + ObjectStoreClassBOperations *int64 `json:"object_store_class_b_operations,omitempty"` // Total header bytes received from end users over Fanout connections. - FanoutReqHeaderBytes *int32 `json:"fanout_req_header_bytes,omitempty"` + FanoutReqHeaderBytes *int64 `json:"fanout_req_header_bytes,omitempty"` // Total body or message content bytes received from end users over Fanout connections. - FanoutReqBodyBytes *int32 `json:"fanout_req_body_bytes,omitempty"` + FanoutReqBodyBytes *int64 `json:"fanout_req_body_bytes,omitempty"` // Total header bytes sent to end users over Fanout connections. - FanoutRespHeaderBytes *int32 `json:"fanout_resp_header_bytes,omitempty"` + FanoutRespHeaderBytes *int64 `json:"fanout_resp_header_bytes,omitempty"` // Total body or message content bytes sent to end users over Fanout connections, excluding published message content. - FanoutRespBodyBytes *int32 `json:"fanout_resp_body_bytes,omitempty"` + FanoutRespBodyBytes *int64 `json:"fanout_resp_body_bytes,omitempty"` // Total header bytes sent to backends over Fanout connections. - FanoutBereqHeaderBytes *int32 `json:"fanout_bereq_header_bytes,omitempty"` + FanoutBereqHeaderBytes *int64 `json:"fanout_bereq_header_bytes,omitempty"` // Total body or message content bytes sent to backends over Fanout connections. - FanoutBereqBodyBytes *int32 `json:"fanout_bereq_body_bytes,omitempty"` + FanoutBereqBodyBytes *int64 `json:"fanout_bereq_body_bytes,omitempty"` // Total header bytes received from backends over Fanout connections. - FanoutBerespHeaderBytes *int32 `json:"fanout_beresp_header_bytes,omitempty"` + FanoutBerespHeaderBytes *int64 `json:"fanout_beresp_header_bytes,omitempty"` // Total body or message content bytes received from backends over Fanout connections. - FanoutBerespBodyBytes *int32 `json:"fanout_beresp_body_bytes,omitempty"` + FanoutBerespBodyBytes *int64 `json:"fanout_beresp_body_bytes,omitempty"` // Total duration of Fanout connections with end users. - FanoutConnTimeMs *int32 `json:"fanout_conn_time_ms,omitempty"` + FanoutConnTimeMs *int64 `json:"fanout_conn_time_ms,omitempty"` // For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. - DdosActionLimitStreamsConnections *int32 `json:"ddos_action_limit_streams_connections,omitempty"` + DdosActionLimitStreamsConnections *int64 `json:"ddos_action_limit_streams_connections,omitempty"` // For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. - DdosActionLimitStreamsRequests *int32 `json:"ddos_action_limit_streams_requests,omitempty"` + DdosActionLimitStreamsRequests *int64 `json:"ddos_action_limit_streams_requests,omitempty"` // The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. - DdosActionTarpitAccept *int32 `json:"ddos_action_tarpit_accept,omitempty"` + DdosActionTarpitAccept *int64 `json:"ddos_action_tarpit_accept,omitempty"` // The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. - DdosActionTarpit *int32 `json:"ddos_action_tarpit,omitempty"` + DdosActionTarpit *int64 `json:"ddos_action_tarpit,omitempty"` // The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. - DdosActionClose *int32 `json:"ddos_action_close,omitempty"` + DdosActionClose *int64 `json:"ddos_action_close,omitempty"` // The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). - DdosActionBlackhole *int32 `json:"ddos_action_blackhole,omitempty"` + DdosActionBlackhole *int64 `json:"ddos_action_blackhole,omitempty"` // The number of challenge-start tokens created. - BotChallengeStarts *int32 `json:"bot_challenge_starts,omitempty"` + BotChallengeStarts *int64 `json:"bot_challenge_starts,omitempty"` // The number of challenge-complete tokens that passed validation. - BotChallengeCompleteTokensPassed *int32 `json:"bot_challenge_complete_tokens_passed,omitempty"` + BotChallengeCompleteTokensPassed *int64 `json:"bot_challenge_complete_tokens_passed,omitempty"` // The number of challenge-complete tokens that failed validation. - BotChallengeCompleteTokensFailed *int32 `json:"bot_challenge_complete_tokens_failed,omitempty"` + BotChallengeCompleteTokensFailed *int64 `json:"bot_challenge_complete_tokens_failed,omitempty"` // The number of challenge-complete tokens checked. - BotChallengeCompleteTokensChecked *int32 `json:"bot_challenge_complete_tokens_checked,omitempty"` + BotChallengeCompleteTokensChecked *int64 `json:"bot_challenge_complete_tokens_checked,omitempty"` // The number of challenge-complete tokens not checked because the feature was disabled. - BotChallengeCompleteTokensDisabled *int32 `json:"bot_challenge_complete_tokens_disabled,omitempty"` + BotChallengeCompleteTokensDisabled *int64 `json:"bot_challenge_complete_tokens_disabled,omitempty"` // The number of challenges issued. For example, the issuance of a CAPTCHA challenge. - BotChallengesIssued *int32 `json:"bot_challenges_issued,omitempty"` + BotChallengesIssued *int64 `json:"bot_challenges_issued,omitempty"` // The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. - BotChallengesSucceeded *int32 `json:"bot_challenges_succeeded,omitempty"` + BotChallengesSucceeded *int64 `json:"bot_challenges_succeeded,omitempty"` // The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. - BotChallengesFailed *int32 `json:"bot_challenges_failed,omitempty"` + BotChallengesFailed *int64 `json:"bot_challenges_failed,omitempty"` // The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. - BotChallengeCompleteTokensIssued *int32 `json:"bot_challenge_complete_tokens_issued,omitempty"` + BotChallengeCompleteTokensIssued *int64 `json:"bot_challenge_complete_tokens_issued,omitempty"` // The number of times the downgrade action was taken. The downgrade action restricts the client to http1. - DdosActionDowngrade *int32 `json:"ddos_action_downgrade,omitempty"` + DdosActionDowngrade *int64 `json:"ddos_action_downgrade,omitempty"` // The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. - DdosActionDowngradedConnections *int32 `json:"ddos_action_downgraded_connections,omitempty"` + DdosActionDowngradedConnections *int64 `json:"ddos_action_downgraded_connections,omitempty"` // Number of cache hits for a VCL service. - AllHitRequests *int32 `json:"all_hit_requests,omitempty"` + AllHitRequests *int64 `json:"all_hit_requests,omitempty"` // Number of cache misses for a VCL service. - AllMissRequests *int32 `json:"all_miss_requests,omitempty"` + AllMissRequests *int64 `json:"all_miss_requests,omitempty"` // Number of requests that passed through the CDN without being cached for a VCL service. - AllPassRequests *int32 `json:"all_pass_requests,omitempty"` + AllPassRequests *int64 `json:"all_pass_requests,omitempty"` // Number of cache errors for a VCL service. - AllErrorRequests *int32 `json:"all_error_requests,omitempty"` + AllErrorRequests *int64 `json:"all_error_requests,omitempty"` // Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. - AllSynthRequests *int32 `json:"all_synth_requests,omitempty"` + AllSynthRequests *int64 `json:"all_synth_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. - AllEdgeHitRequests *int32 `json:"all_edge_hit_requests,omitempty"` + AllEdgeHitRequests *int64 `json:"all_edge_hit_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. - AllEdgeMissRequests *int32 `json:"all_edge_miss_requests,omitempty"` + AllEdgeMissRequests *int64 `json:"all_edge_miss_requests,omitempty"` // Number of \"Informational\" category status codes delivered for all sources. - AllStatus1xx *int32 `json:"all_status_1xx,omitempty"` + AllStatus1xx *int64 `json:"all_status_1xx,omitempty"` // Number of \"Success\" status codes delivered for all sources. - AllStatus2xx *int32 `json:"all_status_2xx,omitempty"` + AllStatus2xx *int64 `json:"all_status_2xx,omitempty"` // Number of \"Redirection\" codes delivered for all sources. - AllStatus3xx *int32 `json:"all_status_3xx,omitempty"` + AllStatus3xx *int64 `json:"all_status_3xx,omitempty"` // Number of \"Client Error\" codes delivered for all sources. - AllStatus4xx *int32 `json:"all_status_4xx,omitempty"` + AllStatus4xx *int64 `json:"all_status_4xx,omitempty"` // Number of \"Server Error\" codes delivered for all sources. - AllStatus5xx *int32 `json:"all_status_5xx,omitempty"` + AllStatus5xx *int64 `json:"all_status_5xx,omitempty"` // Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). OriginOffload *float32 `json:"origin_offload,omitempty"` // Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. - RequestDeniedGetHeadBody *int32 `json:"request_denied_get_head_body,omitempty"` + RequestDeniedGetHeadBody *int64 `json:"request_denied_get_head_body,omitempty"` // Number of requests classified as a DDoS attack against a customer origin or service. - ServiceDdosRequestsDetected *int32 `json:"service_ddos_requests_detected,omitempty"` + ServiceDdosRequestsDetected *int64 `json:"service_ddos_requests_detected,omitempty"` // Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. - ServiceDdosRequestsMitigated *int32 `json:"service_ddos_requests_mitigated,omitempty"` + ServiceDdosRequestsMitigated *int64 `json:"service_ddos_requests_mitigated,omitempty"` // Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. - ServiceDdosRequestsAllowed *int32 `json:"service_ddos_requests_allowed,omitempty"` + ServiceDdosRequestsAllowed *int64 `json:"service_ddos_requests_allowed,omitempty"` AdditionalProperties map[string]any } @@ -535,9 +535,9 @@ func NewRealtimeMeasurementsWithDefaults() *RealtimeMeasurements { } // GetRequests returns the Requests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetRequests() int32 { +func (o *RealtimeMeasurements) GetRequests() int64 { if o == nil || o.Requests == nil { - var ret int32 + var ret int64 return ret } return *o.Requests @@ -545,7 +545,7 @@ func (o *RealtimeMeasurements) GetRequests() int32 { // GetRequestsOk returns a tuple with the Requests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetRequestsOk() (*int64, bool) { if o == nil || o.Requests == nil { return nil, false } @@ -561,15 +561,15 @@ func (o *RealtimeMeasurements) HasRequests() bool { return false } -// SetRequests gets a reference to the given int32 and assigns it to the Requests field. -func (o *RealtimeMeasurements) SetRequests(v int32) { +// SetRequests gets a reference to the given int64 and assigns it to the Requests field. +func (o *RealtimeMeasurements) SetRequests(v int64) { o.Requests = &v } // GetLogging returns the Logging field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetLogging() int32 { +func (o *RealtimeMeasurements) GetLogging() int64 { if o == nil || o.Logging == nil { - var ret int32 + var ret int64 return ret } return *o.Logging @@ -577,7 +577,7 @@ func (o *RealtimeMeasurements) GetLogging() int32 { // GetLoggingOk returns a tuple with the Logging field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetLoggingOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetLoggingOk() (*int64, bool) { if o == nil || o.Logging == nil { return nil, false } @@ -593,15 +593,15 @@ func (o *RealtimeMeasurements) HasLogging() bool { return false } -// SetLogging gets a reference to the given int32 and assigns it to the Logging field. -func (o *RealtimeMeasurements) SetLogging(v int32) { +// SetLogging gets a reference to the given int64 and assigns it to the Logging field. +func (o *RealtimeMeasurements) SetLogging(v int64) { o.Logging = &v } // GetLog returns the Log field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetLog() int32 { +func (o *RealtimeMeasurements) GetLog() int64 { if o == nil || o.Log == nil { - var ret int32 + var ret int64 return ret } return *o.Log @@ -609,7 +609,7 @@ func (o *RealtimeMeasurements) GetLog() int32 { // GetLogOk returns a tuple with the Log field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetLogOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetLogOk() (*int64, bool) { if o == nil || o.Log == nil { return nil, false } @@ -625,15 +625,15 @@ func (o *RealtimeMeasurements) HasLog() bool { return false } -// SetLog gets a reference to the given int32 and assigns it to the Log field. -func (o *RealtimeMeasurements) SetLog(v int32) { +// SetLog gets a reference to the given int64 and assigns it to the Log field. +func (o *RealtimeMeasurements) SetLog(v int64) { o.Log = &v } // GetRespHeaderBytes returns the RespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetRespHeaderBytes() int64 { if o == nil || o.RespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespHeaderBytes @@ -641,7 +641,7 @@ func (o *RealtimeMeasurements) GetRespHeaderBytes() int32 { // GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetRespHeaderBytesOk() (*int64, bool) { if o == nil || o.RespHeaderBytes == nil { return nil, false } @@ -657,15 +657,15 @@ func (o *RealtimeMeasurements) HasRespHeaderBytes() bool { return false } -// SetRespHeaderBytes gets a reference to the given int32 and assigns it to the RespHeaderBytes field. -func (o *RealtimeMeasurements) SetRespHeaderBytes(v int32) { +// SetRespHeaderBytes gets a reference to the given int64 and assigns it to the RespHeaderBytes field. +func (o *RealtimeMeasurements) SetRespHeaderBytes(v int64) { o.RespHeaderBytes = &v } // GetHeaderSize returns the HeaderSize field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetHeaderSize() int32 { +func (o *RealtimeMeasurements) GetHeaderSize() int64 { if o == nil || o.HeaderSize == nil { - var ret int32 + var ret int64 return ret } return *o.HeaderSize @@ -673,7 +673,7 @@ func (o *RealtimeMeasurements) GetHeaderSize() int32 { // GetHeaderSizeOk returns a tuple with the HeaderSize field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetHeaderSizeOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetHeaderSizeOk() (*int64, bool) { if o == nil || o.HeaderSize == nil { return nil, false } @@ -689,15 +689,15 @@ func (o *RealtimeMeasurements) HasHeaderSize() bool { return false } -// SetHeaderSize gets a reference to the given int32 and assigns it to the HeaderSize field. -func (o *RealtimeMeasurements) SetHeaderSize(v int32) { +// SetHeaderSize gets a reference to the given int64 and assigns it to the HeaderSize field. +func (o *RealtimeMeasurements) SetHeaderSize(v int64) { o.HeaderSize = &v } // GetRespBodyBytes returns the RespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetRespBodyBytes() int64 { if o == nil || o.RespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespBodyBytes @@ -705,7 +705,7 @@ func (o *RealtimeMeasurements) GetRespBodyBytes() int32 { // GetRespBodyBytesOk returns a tuple with the RespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetRespBodyBytesOk() (*int64, bool) { if o == nil || o.RespBodyBytes == nil { return nil, false } @@ -721,15 +721,15 @@ func (o *RealtimeMeasurements) HasRespBodyBytes() bool { return false } -// SetRespBodyBytes gets a reference to the given int32 and assigns it to the RespBodyBytes field. -func (o *RealtimeMeasurements) SetRespBodyBytes(v int32) { +// SetRespBodyBytes gets a reference to the given int64 and assigns it to the RespBodyBytes field. +func (o *RealtimeMeasurements) SetRespBodyBytes(v int64) { o.RespBodyBytes = &v } // GetBodySize returns the BodySize field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBodySize() int32 { +func (o *RealtimeMeasurements) GetBodySize() int64 { if o == nil || o.BodySize == nil { - var ret int32 + var ret int64 return ret } return *o.BodySize @@ -737,7 +737,7 @@ func (o *RealtimeMeasurements) GetBodySize() int32 { // GetBodySizeOk returns a tuple with the BodySize field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBodySizeOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBodySizeOk() (*int64, bool) { if o == nil || o.BodySize == nil { return nil, false } @@ -753,15 +753,15 @@ func (o *RealtimeMeasurements) HasBodySize() bool { return false } -// SetBodySize gets a reference to the given int32 and assigns it to the BodySize field. -func (o *RealtimeMeasurements) SetBodySize(v int32) { +// SetBodySize gets a reference to the given int64 and assigns it to the BodySize field. +func (o *RealtimeMeasurements) SetBodySize(v int64) { o.BodySize = &v } // GetHits returns the Hits field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetHits() int32 { +func (o *RealtimeMeasurements) GetHits() int64 { if o == nil || o.Hits == nil { - var ret int32 + var ret int64 return ret } return *o.Hits @@ -769,7 +769,7 @@ func (o *RealtimeMeasurements) GetHits() int32 { // GetHitsOk returns a tuple with the Hits field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetHitsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetHitsOk() (*int64, bool) { if o == nil || o.Hits == nil { return nil, false } @@ -785,15 +785,15 @@ func (o *RealtimeMeasurements) HasHits() bool { return false } -// SetHits gets a reference to the given int32 and assigns it to the Hits field. -func (o *RealtimeMeasurements) SetHits(v int32) { +// SetHits gets a reference to the given int64 and assigns it to the Hits field. +func (o *RealtimeMeasurements) SetHits(v int64) { o.Hits = &v } // GetMiss returns the Miss field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetMiss() int32 { +func (o *RealtimeMeasurements) GetMiss() int64 { if o == nil || o.Miss == nil { - var ret int32 + var ret int64 return ret } return *o.Miss @@ -801,7 +801,7 @@ func (o *RealtimeMeasurements) GetMiss() int32 { // GetMissOk returns a tuple with the Miss field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetMissOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetMissOk() (*int64, bool) { if o == nil || o.Miss == nil { return nil, false } @@ -817,15 +817,15 @@ func (o *RealtimeMeasurements) HasMiss() bool { return false } -// SetMiss gets a reference to the given int32 and assigns it to the Miss field. -func (o *RealtimeMeasurements) SetMiss(v int32) { +// SetMiss gets a reference to the given int64 and assigns it to the Miss field. +func (o *RealtimeMeasurements) SetMiss(v int64) { o.Miss = &v } // GetPass returns the Pass field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetPass() int32 { +func (o *RealtimeMeasurements) GetPass() int64 { if o == nil || o.Pass == nil { - var ret int32 + var ret int64 return ret } return *o.Pass @@ -833,7 +833,7 @@ func (o *RealtimeMeasurements) GetPass() int32 { // GetPassOk returns a tuple with the Pass field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetPassOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetPassOk() (*int64, bool) { if o == nil || o.Pass == nil { return nil, false } @@ -849,15 +849,15 @@ func (o *RealtimeMeasurements) HasPass() bool { return false } -// SetPass gets a reference to the given int32 and assigns it to the Pass field. -func (o *RealtimeMeasurements) SetPass(v int32) { +// SetPass gets a reference to the given int64 and assigns it to the Pass field. +func (o *RealtimeMeasurements) SetPass(v int64) { o.Pass = &v } // GetSynth returns the Synth field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetSynth() int32 { +func (o *RealtimeMeasurements) GetSynth() int64 { if o == nil || o.Synth == nil { - var ret int32 + var ret int64 return ret } return *o.Synth @@ -865,7 +865,7 @@ func (o *RealtimeMeasurements) GetSynth() int32 { // GetSynthOk returns a tuple with the Synth field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetSynthOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetSynthOk() (*int64, bool) { if o == nil || o.Synth == nil { return nil, false } @@ -881,15 +881,15 @@ func (o *RealtimeMeasurements) HasSynth() bool { return false } -// SetSynth gets a reference to the given int32 and assigns it to the Synth field. -func (o *RealtimeMeasurements) SetSynth(v int32) { +// SetSynth gets a reference to the given int64 and assigns it to the Synth field. +func (o *RealtimeMeasurements) SetSynth(v int64) { o.Synth = &v } // GetErrors returns the Errors field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetErrors() int32 { +func (o *RealtimeMeasurements) GetErrors() int64 { if o == nil || o.Errors == nil { - var ret int32 + var ret int64 return ret } return *o.Errors @@ -897,7 +897,7 @@ func (o *RealtimeMeasurements) GetErrors() int32 { // GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetErrorsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetErrorsOk() (*int64, bool) { if o == nil || o.Errors == nil { return nil, false } @@ -913,8 +913,8 @@ func (o *RealtimeMeasurements) HasErrors() bool { return false } -// SetErrors gets a reference to the given int32 and assigns it to the Errors field. -func (o *RealtimeMeasurements) SetErrors(v int32) { +// SetErrors gets a reference to the given int64 and assigns it to the Errors field. +func (o *RealtimeMeasurements) SetErrors(v int64) { o.Errors = &v } @@ -1015,9 +1015,9 @@ func (o *RealtimeMeasurements) SetMissHistogram(v map[string]map[string]any) { } // GetComputeRequests returns the ComputeRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRequests() int32 { +func (o *RealtimeMeasurements) GetComputeRequests() int64 { if o == nil || o.ComputeRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRequests @@ -1025,7 +1025,7 @@ func (o *RealtimeMeasurements) GetComputeRequests() int32 { // GetComputeRequestsOk returns a tuple with the ComputeRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRequestsOk() (*int64, bool) { if o == nil || o.ComputeRequests == nil { return nil, false } @@ -1041,8 +1041,8 @@ func (o *RealtimeMeasurements) HasComputeRequests() bool { return false } -// SetComputeRequests gets a reference to the given int32 and assigns it to the ComputeRequests field. -func (o *RealtimeMeasurements) SetComputeRequests(v int32) { +// SetComputeRequests gets a reference to the given int64 and assigns it to the ComputeRequests field. +func (o *RealtimeMeasurements) SetComputeRequests(v int64) { o.ComputeRequests = &v } @@ -1079,9 +1079,9 @@ func (o *RealtimeMeasurements) SetComputeExecutionTimeMs(v float32) { } // GetComputeRAMUsed returns the ComputeRAMUsed field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRAMUsed() int32 { +func (o *RealtimeMeasurements) GetComputeRAMUsed() int64 { if o == nil || o.ComputeRAMUsed == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRAMUsed @@ -1089,7 +1089,7 @@ func (o *RealtimeMeasurements) GetComputeRAMUsed() int32 { // GetComputeRAMUsedOk returns a tuple with the ComputeRAMUsed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRAMUsedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRAMUsedOk() (*int64, bool) { if o == nil || o.ComputeRAMUsed == nil { return nil, false } @@ -1105,8 +1105,8 @@ func (o *RealtimeMeasurements) HasComputeRAMUsed() bool { return false } -// SetComputeRAMUsed gets a reference to the given int32 and assigns it to the ComputeRAMUsed field. -func (o *RealtimeMeasurements) SetComputeRAMUsed(v int32) { +// SetComputeRAMUsed gets a reference to the given int64 and assigns it to the ComputeRAMUsed field. +func (o *RealtimeMeasurements) SetComputeRAMUsed(v int64) { o.ComputeRAMUsed = &v } @@ -1175,9 +1175,9 @@ func (o *RealtimeMeasurements) SetComputeRequestTimeBilledMs(v float32) { } // GetShield returns the Shield field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShield() int32 { +func (o *RealtimeMeasurements) GetShield() int64 { if o == nil || o.Shield == nil { - var ret int32 + var ret int64 return ret } return *o.Shield @@ -1185,7 +1185,7 @@ func (o *RealtimeMeasurements) GetShield() int32 { // GetShieldOk returns a tuple with the Shield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldOk() (*int64, bool) { if o == nil || o.Shield == nil { return nil, false } @@ -1201,15 +1201,15 @@ func (o *RealtimeMeasurements) HasShield() bool { return false } -// SetShield gets a reference to the given int32 and assigns it to the Shield field. -func (o *RealtimeMeasurements) SetShield(v int32) { +// SetShield gets a reference to the given int64 and assigns it to the Shield field. +func (o *RealtimeMeasurements) SetShield(v int64) { o.Shield = &v } // GetIpv6 returns the Ipv6 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetIpv6() int32 { +func (o *RealtimeMeasurements) GetIpv6() int64 { if o == nil || o.Ipv6 == nil { - var ret int32 + var ret int64 return ret } return *o.Ipv6 @@ -1217,7 +1217,7 @@ func (o *RealtimeMeasurements) GetIpv6() int32 { // GetIpv6Ok returns a tuple with the Ipv6 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetIpv6Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetIpv6Ok() (*int64, bool) { if o == nil || o.Ipv6 == nil { return nil, false } @@ -1233,15 +1233,15 @@ func (o *RealtimeMeasurements) HasIpv6() bool { return false } -// SetIpv6 gets a reference to the given int32 and assigns it to the Ipv6 field. -func (o *RealtimeMeasurements) SetIpv6(v int32) { +// SetIpv6 gets a reference to the given int64 and assigns it to the Ipv6 field. +func (o *RealtimeMeasurements) SetIpv6(v int64) { o.Ipv6 = &v } // GetImgopto returns the Imgopto field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgopto() int32 { +func (o *RealtimeMeasurements) GetImgopto() int64 { if o == nil || o.Imgopto == nil { - var ret int32 + var ret int64 return ret } return *o.Imgopto @@ -1249,7 +1249,7 @@ func (o *RealtimeMeasurements) GetImgopto() int32 { // GetImgoptoOk returns a tuple with the Imgopto field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgoptoOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgoptoOk() (*int64, bool) { if o == nil || o.Imgopto == nil { return nil, false } @@ -1265,15 +1265,15 @@ func (o *RealtimeMeasurements) HasImgopto() bool { return false } -// SetImgopto gets a reference to the given int32 and assigns it to the Imgopto field. -func (o *RealtimeMeasurements) SetImgopto(v int32) { +// SetImgopto gets a reference to the given int64 and assigns it to the Imgopto field. +func (o *RealtimeMeasurements) SetImgopto(v int64) { o.Imgopto = &v } // GetImgoptoShield returns the ImgoptoShield field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgoptoShield() int32 { +func (o *RealtimeMeasurements) GetImgoptoShield() int64 { if o == nil || o.ImgoptoShield == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShield @@ -1281,7 +1281,7 @@ func (o *RealtimeMeasurements) GetImgoptoShield() int32 { // GetImgoptoShieldOk returns a tuple with the ImgoptoShield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgoptoShieldOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgoptoShieldOk() (*int64, bool) { if o == nil || o.ImgoptoShield == nil { return nil, false } @@ -1297,15 +1297,15 @@ func (o *RealtimeMeasurements) HasImgoptoShield() bool { return false } -// SetImgoptoShield gets a reference to the given int32 and assigns it to the ImgoptoShield field. -func (o *RealtimeMeasurements) SetImgoptoShield(v int32) { +// SetImgoptoShield gets a reference to the given int64 and assigns it to the ImgoptoShield field. +func (o *RealtimeMeasurements) SetImgoptoShield(v int64) { o.ImgoptoShield = &v } // GetImgoptoTransforms returns the ImgoptoTransforms field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgoptoTransforms() int32 { +func (o *RealtimeMeasurements) GetImgoptoTransforms() int64 { if o == nil || o.ImgoptoTransforms == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoTransforms @@ -1313,7 +1313,7 @@ func (o *RealtimeMeasurements) GetImgoptoTransforms() int32 { // GetImgoptoTransformsOk returns a tuple with the ImgoptoTransforms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgoptoTransformsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgoptoTransformsOk() (*int64, bool) { if o == nil || o.ImgoptoTransforms == nil { return nil, false } @@ -1329,15 +1329,15 @@ func (o *RealtimeMeasurements) HasImgoptoTransforms() bool { return false } -// SetImgoptoTransforms gets a reference to the given int32 and assigns it to the ImgoptoTransforms field. -func (o *RealtimeMeasurements) SetImgoptoTransforms(v int32) { +// SetImgoptoTransforms gets a reference to the given int64 and assigns it to the ImgoptoTransforms field. +func (o *RealtimeMeasurements) SetImgoptoTransforms(v int64) { o.ImgoptoTransforms = &v } // GetOtfp returns the Otfp field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOtfp() int32 { +func (o *RealtimeMeasurements) GetOtfp() int64 { if o == nil || o.Otfp == nil { - var ret int32 + var ret int64 return ret } return *o.Otfp @@ -1345,7 +1345,7 @@ func (o *RealtimeMeasurements) GetOtfp() int32 { // GetOtfpOk returns a tuple with the Otfp field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOtfpOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOtfpOk() (*int64, bool) { if o == nil || o.Otfp == nil { return nil, false } @@ -1361,15 +1361,15 @@ func (o *RealtimeMeasurements) HasOtfp() bool { return false } -// SetOtfp gets a reference to the given int32 and assigns it to the Otfp field. -func (o *RealtimeMeasurements) SetOtfp(v int32) { +// SetOtfp gets a reference to the given int64 and assigns it to the Otfp field. +func (o *RealtimeMeasurements) SetOtfp(v int64) { o.Otfp = &v } // GetOtfpShield returns the OtfpShield field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOtfpShield() int32 { +func (o *RealtimeMeasurements) GetOtfpShield() int64 { if o == nil || o.OtfpShield == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpShield @@ -1377,7 +1377,7 @@ func (o *RealtimeMeasurements) GetOtfpShield() int32 { // GetOtfpShieldOk returns a tuple with the OtfpShield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOtfpShieldOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOtfpShieldOk() (*int64, bool) { if o == nil || o.OtfpShield == nil { return nil, false } @@ -1393,15 +1393,15 @@ func (o *RealtimeMeasurements) HasOtfpShield() bool { return false } -// SetOtfpShield gets a reference to the given int32 and assigns it to the OtfpShield field. -func (o *RealtimeMeasurements) SetOtfpShield(v int32) { +// SetOtfpShield gets a reference to the given int64 and assigns it to the OtfpShield field. +func (o *RealtimeMeasurements) SetOtfpShield(v int64) { o.OtfpShield = &v } // GetOtfpManifests returns the OtfpManifests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOtfpManifests() int32 { +func (o *RealtimeMeasurements) GetOtfpManifests() int64 { if o == nil || o.OtfpManifests == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpManifests @@ -1409,7 +1409,7 @@ func (o *RealtimeMeasurements) GetOtfpManifests() int32 { // GetOtfpManifestsOk returns a tuple with the OtfpManifests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOtfpManifestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOtfpManifestsOk() (*int64, bool) { if o == nil || o.OtfpManifests == nil { return nil, false } @@ -1425,15 +1425,15 @@ func (o *RealtimeMeasurements) HasOtfpManifests() bool { return false } -// SetOtfpManifests gets a reference to the given int32 and assigns it to the OtfpManifests field. -func (o *RealtimeMeasurements) SetOtfpManifests(v int32) { +// SetOtfpManifests gets a reference to the given int64 and assigns it to the OtfpManifests field. +func (o *RealtimeMeasurements) SetOtfpManifests(v int64) { o.OtfpManifests = &v } // GetVideo returns the Video field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetVideo() int32 { +func (o *RealtimeMeasurements) GetVideo() int64 { if o == nil || o.Video == nil { - var ret int32 + var ret int64 return ret } return *o.Video @@ -1441,7 +1441,7 @@ func (o *RealtimeMeasurements) GetVideo() int32 { // GetVideoOk returns a tuple with the Video field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetVideoOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetVideoOk() (*int64, bool) { if o == nil || o.Video == nil { return nil, false } @@ -1457,15 +1457,15 @@ func (o *RealtimeMeasurements) HasVideo() bool { return false } -// SetVideo gets a reference to the given int32 and assigns it to the Video field. -func (o *RealtimeMeasurements) SetVideo(v int32) { +// SetVideo gets a reference to the given int64 and assigns it to the Video field. +func (o *RealtimeMeasurements) SetVideo(v int64) { o.Video = &v } // GetPci returns the Pci field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetPci() int32 { +func (o *RealtimeMeasurements) GetPci() int64 { if o == nil || o.Pci == nil { - var ret int32 + var ret int64 return ret } return *o.Pci @@ -1473,7 +1473,7 @@ func (o *RealtimeMeasurements) GetPci() int32 { // GetPciOk returns a tuple with the Pci field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetPciOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetPciOk() (*int64, bool) { if o == nil || o.Pci == nil { return nil, false } @@ -1489,15 +1489,15 @@ func (o *RealtimeMeasurements) HasPci() bool { return false } -// SetPci gets a reference to the given int32 and assigns it to the Pci field. -func (o *RealtimeMeasurements) SetPci(v int32) { +// SetPci gets a reference to the given int64 and assigns it to the Pci field. +func (o *RealtimeMeasurements) SetPci(v int64) { o.Pci = &v } // GetHTTP2 returns the HTTP2 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetHTTP2() int32 { +func (o *RealtimeMeasurements) GetHTTP2() int64 { if o == nil || o.HTTP2 == nil { - var ret int32 + var ret int64 return ret } return *o.HTTP2 @@ -1505,7 +1505,7 @@ func (o *RealtimeMeasurements) GetHTTP2() int32 { // GetHTTP2Ok returns a tuple with the HTTP2 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetHTTP2Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetHTTP2Ok() (*int64, bool) { if o == nil || o.HTTP2 == nil { return nil, false } @@ -1521,15 +1521,15 @@ func (o *RealtimeMeasurements) HasHTTP2() bool { return false } -// SetHTTP2 gets a reference to the given int32 and assigns it to the HTTP2 field. -func (o *RealtimeMeasurements) SetHTTP2(v int32) { +// SetHTTP2 gets a reference to the given int64 and assigns it to the HTTP2 field. +func (o *RealtimeMeasurements) SetHTTP2(v int64) { o.HTTP2 = &v } // GetHTTP3 returns the HTTP3 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetHTTP3() int32 { +func (o *RealtimeMeasurements) GetHTTP3() int64 { if o == nil || o.HTTP3 == nil { - var ret int32 + var ret int64 return ret } return *o.HTTP3 @@ -1537,7 +1537,7 @@ func (o *RealtimeMeasurements) GetHTTP3() int32 { // GetHTTP3Ok returns a tuple with the HTTP3 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetHTTP3Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetHTTP3Ok() (*int64, bool) { if o == nil || o.HTTP3 == nil { return nil, false } @@ -1553,15 +1553,15 @@ func (o *RealtimeMeasurements) HasHTTP3() bool { return false } -// SetHTTP3 gets a reference to the given int32 and assigns it to the HTTP3 field. -func (o *RealtimeMeasurements) SetHTTP3(v int32) { +// SetHTTP3 gets a reference to the given int64 and assigns it to the HTTP3 field. +func (o *RealtimeMeasurements) SetHTTP3(v int64) { o.HTTP3 = &v } // GetRestarts returns the Restarts field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetRestarts() int32 { +func (o *RealtimeMeasurements) GetRestarts() int64 { if o == nil || o.Restarts == nil { - var ret int32 + var ret int64 return ret } return *o.Restarts @@ -1569,7 +1569,7 @@ func (o *RealtimeMeasurements) GetRestarts() int32 { // GetRestartsOk returns a tuple with the Restarts field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetRestartsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetRestartsOk() (*int64, bool) { if o == nil || o.Restarts == nil { return nil, false } @@ -1585,15 +1585,15 @@ func (o *RealtimeMeasurements) HasRestarts() bool { return false } -// SetRestarts gets a reference to the given int32 and assigns it to the Restarts field. -func (o *RealtimeMeasurements) SetRestarts(v int32) { +// SetRestarts gets a reference to the given int64 and assigns it to the Restarts field. +func (o *RealtimeMeasurements) SetRestarts(v int64) { o.Restarts = &v } // GetReqHeaderBytes returns the ReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetReqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetReqHeaderBytes() int64 { if o == nil || o.ReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ReqHeaderBytes @@ -1601,7 +1601,7 @@ func (o *RealtimeMeasurements) GetReqHeaderBytes() int32 { // GetReqHeaderBytesOk returns a tuple with the ReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetReqHeaderBytesOk() (*int64, bool) { if o == nil || o.ReqHeaderBytes == nil { return nil, false } @@ -1617,15 +1617,15 @@ func (o *RealtimeMeasurements) HasReqHeaderBytes() bool { return false } -// SetReqHeaderBytes gets a reference to the given int32 and assigns it to the ReqHeaderBytes field. -func (o *RealtimeMeasurements) SetReqHeaderBytes(v int32) { +// SetReqHeaderBytes gets a reference to the given int64 and assigns it to the ReqHeaderBytes field. +func (o *RealtimeMeasurements) SetReqHeaderBytes(v int64) { o.ReqHeaderBytes = &v } // GetReqBodyBytes returns the ReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetReqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetReqBodyBytes() int64 { if o == nil || o.ReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ReqBodyBytes @@ -1633,7 +1633,7 @@ func (o *RealtimeMeasurements) GetReqBodyBytes() int32 { // GetReqBodyBytesOk returns a tuple with the ReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetReqBodyBytesOk() (*int64, bool) { if o == nil || o.ReqBodyBytes == nil { return nil, false } @@ -1649,15 +1649,15 @@ func (o *RealtimeMeasurements) HasReqBodyBytes() bool { return false } -// SetReqBodyBytes gets a reference to the given int32 and assigns it to the ReqBodyBytes field. -func (o *RealtimeMeasurements) SetReqBodyBytes(v int32) { +// SetReqBodyBytes gets a reference to the given int64 and assigns it to the ReqBodyBytes field. +func (o *RealtimeMeasurements) SetReqBodyBytes(v int64) { o.ReqBodyBytes = &v } // GetBereqHeaderBytes returns the BereqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBereqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetBereqHeaderBytes() int64 { if o == nil || o.BereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqHeaderBytes @@ -1665,7 +1665,7 @@ func (o *RealtimeMeasurements) GetBereqHeaderBytes() int32 { // GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBereqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.BereqHeaderBytes == nil { return nil, false } @@ -1681,15 +1681,15 @@ func (o *RealtimeMeasurements) HasBereqHeaderBytes() bool { return false } -// SetBereqHeaderBytes gets a reference to the given int32 and assigns it to the BereqHeaderBytes field. -func (o *RealtimeMeasurements) SetBereqHeaderBytes(v int32) { +// SetBereqHeaderBytes gets a reference to the given int64 and assigns it to the BereqHeaderBytes field. +func (o *RealtimeMeasurements) SetBereqHeaderBytes(v int64) { o.BereqHeaderBytes = &v } // GetBereqBodyBytes returns the BereqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBereqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetBereqBodyBytes() int64 { if o == nil || o.BereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqBodyBytes @@ -1697,7 +1697,7 @@ func (o *RealtimeMeasurements) GetBereqBodyBytes() int32 { // GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBereqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBereqBodyBytesOk() (*int64, bool) { if o == nil || o.BereqBodyBytes == nil { return nil, false } @@ -1713,15 +1713,15 @@ func (o *RealtimeMeasurements) HasBereqBodyBytes() bool { return false } -// SetBereqBodyBytes gets a reference to the given int32 and assigns it to the BereqBodyBytes field. -func (o *RealtimeMeasurements) SetBereqBodyBytes(v int32) { +// SetBereqBodyBytes gets a reference to the given int64 and assigns it to the BereqBodyBytes field. +func (o *RealtimeMeasurements) SetBereqBodyBytes(v int64) { o.BereqBodyBytes = &v } // GetWafBlocked returns the WafBlocked field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWafBlocked() int32 { +func (o *RealtimeMeasurements) GetWafBlocked() int64 { if o == nil || o.WafBlocked == nil { - var ret int32 + var ret int64 return ret } return *o.WafBlocked @@ -1729,7 +1729,7 @@ func (o *RealtimeMeasurements) GetWafBlocked() int32 { // GetWafBlockedOk returns a tuple with the WafBlocked field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWafBlockedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWafBlockedOk() (*int64, bool) { if o == nil || o.WafBlocked == nil { return nil, false } @@ -1745,15 +1745,15 @@ func (o *RealtimeMeasurements) HasWafBlocked() bool { return false } -// SetWafBlocked gets a reference to the given int32 and assigns it to the WafBlocked field. -func (o *RealtimeMeasurements) SetWafBlocked(v int32) { +// SetWafBlocked gets a reference to the given int64 and assigns it to the WafBlocked field. +func (o *RealtimeMeasurements) SetWafBlocked(v int64) { o.WafBlocked = &v } // GetWafLogged returns the WafLogged field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWafLogged() int32 { +func (o *RealtimeMeasurements) GetWafLogged() int64 { if o == nil || o.WafLogged == nil { - var ret int32 + var ret int64 return ret } return *o.WafLogged @@ -1761,7 +1761,7 @@ func (o *RealtimeMeasurements) GetWafLogged() int32 { // GetWafLoggedOk returns a tuple with the WafLogged field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWafLoggedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWafLoggedOk() (*int64, bool) { if o == nil || o.WafLogged == nil { return nil, false } @@ -1777,15 +1777,15 @@ func (o *RealtimeMeasurements) HasWafLogged() bool { return false } -// SetWafLogged gets a reference to the given int32 and assigns it to the WafLogged field. -func (o *RealtimeMeasurements) SetWafLogged(v int32) { +// SetWafLogged gets a reference to the given int64 and assigns it to the WafLogged field. +func (o *RealtimeMeasurements) SetWafLogged(v int64) { o.WafLogged = &v } // GetWafPassed returns the WafPassed field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWafPassed() int32 { +func (o *RealtimeMeasurements) GetWafPassed() int64 { if o == nil || o.WafPassed == nil { - var ret int32 + var ret int64 return ret } return *o.WafPassed @@ -1793,7 +1793,7 @@ func (o *RealtimeMeasurements) GetWafPassed() int32 { // GetWafPassedOk returns a tuple with the WafPassed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWafPassedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWafPassedOk() (*int64, bool) { if o == nil || o.WafPassed == nil { return nil, false } @@ -1809,15 +1809,15 @@ func (o *RealtimeMeasurements) HasWafPassed() bool { return false } -// SetWafPassed gets a reference to the given int32 and assigns it to the WafPassed field. -func (o *RealtimeMeasurements) SetWafPassed(v int32) { +// SetWafPassed gets a reference to the given int64 and assigns it to the WafPassed field. +func (o *RealtimeMeasurements) SetWafPassed(v int64) { o.WafPassed = &v } // GetAttackReqHeaderBytes returns the AttackReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackReqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetAttackReqHeaderBytes() int64 { if o == nil || o.AttackReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackReqHeaderBytes @@ -1825,7 +1825,7 @@ func (o *RealtimeMeasurements) GetAttackReqHeaderBytes() int32 { // GetAttackReqHeaderBytesOk returns a tuple with the AttackReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackReqHeaderBytes == nil { return nil, false } @@ -1841,15 +1841,15 @@ func (o *RealtimeMeasurements) HasAttackReqHeaderBytes() bool { return false } -// SetAttackReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackReqHeaderBytes field. -func (o *RealtimeMeasurements) SetAttackReqHeaderBytes(v int32) { +// SetAttackReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackReqHeaderBytes field. +func (o *RealtimeMeasurements) SetAttackReqHeaderBytes(v int64) { o.AttackReqHeaderBytes = &v } // GetAttackReqBodyBytes returns the AttackReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackReqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetAttackReqBodyBytes() int64 { if o == nil || o.AttackReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackReqBodyBytes @@ -1857,7 +1857,7 @@ func (o *RealtimeMeasurements) GetAttackReqBodyBytes() int32 { // GetAttackReqBodyBytesOk returns a tuple with the AttackReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackReqBodyBytes == nil { return nil, false } @@ -1873,15 +1873,15 @@ func (o *RealtimeMeasurements) HasAttackReqBodyBytes() bool { return false } -// SetAttackReqBodyBytes gets a reference to the given int32 and assigns it to the AttackReqBodyBytes field. -func (o *RealtimeMeasurements) SetAttackReqBodyBytes(v int32) { +// SetAttackReqBodyBytes gets a reference to the given int64 and assigns it to the AttackReqBodyBytes field. +func (o *RealtimeMeasurements) SetAttackReqBodyBytes(v int64) { o.AttackReqBodyBytes = &v } // GetAttackRespSynthBytes returns the AttackRespSynthBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackRespSynthBytes() int32 { +func (o *RealtimeMeasurements) GetAttackRespSynthBytes() int64 { if o == nil || o.AttackRespSynthBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackRespSynthBytes @@ -1889,7 +1889,7 @@ func (o *RealtimeMeasurements) GetAttackRespSynthBytes() int32 { // GetAttackRespSynthBytesOk returns a tuple with the AttackRespSynthBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackRespSynthBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackRespSynthBytesOk() (*int64, bool) { if o == nil || o.AttackRespSynthBytes == nil { return nil, false } @@ -1905,15 +1905,15 @@ func (o *RealtimeMeasurements) HasAttackRespSynthBytes() bool { return false } -// SetAttackRespSynthBytes gets a reference to the given int32 and assigns it to the AttackRespSynthBytes field. -func (o *RealtimeMeasurements) SetAttackRespSynthBytes(v int32) { +// SetAttackRespSynthBytes gets a reference to the given int64 and assigns it to the AttackRespSynthBytes field. +func (o *RealtimeMeasurements) SetAttackRespSynthBytes(v int64) { o.AttackRespSynthBytes = &v } // GetAttackLoggedReqHeaderBytes returns the AttackLoggedReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytes() int64 { if o == nil || o.AttackLoggedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackLoggedReqHeaderBytes @@ -1921,7 +1921,7 @@ func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytes() int32 { // GetAttackLoggedReqHeaderBytesOk returns a tuple with the AttackLoggedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackLoggedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackLoggedReqHeaderBytes == nil { return nil, false } @@ -1937,15 +1937,15 @@ func (o *RealtimeMeasurements) HasAttackLoggedReqHeaderBytes() bool { return false } -// SetAttackLoggedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackLoggedReqHeaderBytes field. -func (o *RealtimeMeasurements) SetAttackLoggedReqHeaderBytes(v int32) { +// SetAttackLoggedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackLoggedReqHeaderBytes field. +func (o *RealtimeMeasurements) SetAttackLoggedReqHeaderBytes(v int64) { o.AttackLoggedReqHeaderBytes = &v } // GetAttackLoggedReqBodyBytes returns the AttackLoggedReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytes() int64 { if o == nil || o.AttackLoggedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackLoggedReqBodyBytes @@ -1953,7 +1953,7 @@ func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytes() int32 { // GetAttackLoggedReqBodyBytesOk returns a tuple with the AttackLoggedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackLoggedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackLoggedReqBodyBytes == nil { return nil, false } @@ -1969,15 +1969,15 @@ func (o *RealtimeMeasurements) HasAttackLoggedReqBodyBytes() bool { return false } -// SetAttackLoggedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackLoggedReqBodyBytes field. -func (o *RealtimeMeasurements) SetAttackLoggedReqBodyBytes(v int32) { +// SetAttackLoggedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackLoggedReqBodyBytes field. +func (o *RealtimeMeasurements) SetAttackLoggedReqBodyBytes(v int64) { o.AttackLoggedReqBodyBytes = &v } // GetAttackBlockedReqHeaderBytes returns the AttackBlockedReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytes() int64 { if o == nil || o.AttackBlockedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackBlockedReqHeaderBytes @@ -1985,7 +1985,7 @@ func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytes() int32 { // GetAttackBlockedReqHeaderBytesOk returns a tuple with the AttackBlockedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackBlockedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackBlockedReqHeaderBytes == nil { return nil, false } @@ -2001,15 +2001,15 @@ func (o *RealtimeMeasurements) HasAttackBlockedReqHeaderBytes() bool { return false } -// SetAttackBlockedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackBlockedReqHeaderBytes field. -func (o *RealtimeMeasurements) SetAttackBlockedReqHeaderBytes(v int32) { +// SetAttackBlockedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackBlockedReqHeaderBytes field. +func (o *RealtimeMeasurements) SetAttackBlockedReqHeaderBytes(v int64) { o.AttackBlockedReqHeaderBytes = &v } // GetAttackBlockedReqBodyBytes returns the AttackBlockedReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytes() int64 { if o == nil || o.AttackBlockedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackBlockedReqBodyBytes @@ -2017,7 +2017,7 @@ func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytes() int32 { // GetAttackBlockedReqBodyBytesOk returns a tuple with the AttackBlockedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackBlockedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackBlockedReqBodyBytes == nil { return nil, false } @@ -2033,15 +2033,15 @@ func (o *RealtimeMeasurements) HasAttackBlockedReqBodyBytes() bool { return false } -// SetAttackBlockedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackBlockedReqBodyBytes field. -func (o *RealtimeMeasurements) SetAttackBlockedReqBodyBytes(v int32) { +// SetAttackBlockedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackBlockedReqBodyBytes field. +func (o *RealtimeMeasurements) SetAttackBlockedReqBodyBytes(v int64) { o.AttackBlockedReqBodyBytes = &v } // GetAttackPassedReqHeaderBytes returns the AttackPassedReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytes() int64 { if o == nil || o.AttackPassedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackPassedReqHeaderBytes @@ -2049,7 +2049,7 @@ func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytes() int32 { // GetAttackPassedReqHeaderBytesOk returns a tuple with the AttackPassedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackPassedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackPassedReqHeaderBytes == nil { return nil, false } @@ -2065,15 +2065,15 @@ func (o *RealtimeMeasurements) HasAttackPassedReqHeaderBytes() bool { return false } -// SetAttackPassedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackPassedReqHeaderBytes field. -func (o *RealtimeMeasurements) SetAttackPassedReqHeaderBytes(v int32) { +// SetAttackPassedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackPassedReqHeaderBytes field. +func (o *RealtimeMeasurements) SetAttackPassedReqHeaderBytes(v int64) { o.AttackPassedReqHeaderBytes = &v } // GetAttackPassedReqBodyBytes returns the AttackPassedReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytes() int64 { if o == nil || o.AttackPassedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackPassedReqBodyBytes @@ -2081,7 +2081,7 @@ func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytes() int32 { // GetAttackPassedReqBodyBytesOk returns a tuple with the AttackPassedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAttackPassedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackPassedReqBodyBytes == nil { return nil, false } @@ -2097,15 +2097,15 @@ func (o *RealtimeMeasurements) HasAttackPassedReqBodyBytes() bool { return false } -// SetAttackPassedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackPassedReqBodyBytes field. -func (o *RealtimeMeasurements) SetAttackPassedReqBodyBytes(v int32) { +// SetAttackPassedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackPassedReqBodyBytes field. +func (o *RealtimeMeasurements) SetAttackPassedReqBodyBytes(v int64) { o.AttackPassedReqBodyBytes = &v } // GetShieldRespHeaderBytes returns the ShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetShieldRespHeaderBytes() int64 { if o == nil || o.ShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRespHeaderBytes @@ -2113,7 +2113,7 @@ func (o *RealtimeMeasurements) GetShieldRespHeaderBytes() int32 { // GetShieldRespHeaderBytesOk returns a tuple with the ShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldRespHeaderBytes == nil { return nil, false } @@ -2129,15 +2129,15 @@ func (o *RealtimeMeasurements) HasShieldRespHeaderBytes() bool { return false } -// SetShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldRespHeaderBytes field. -func (o *RealtimeMeasurements) SetShieldRespHeaderBytes(v int32) { +// SetShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldRespHeaderBytes field. +func (o *RealtimeMeasurements) SetShieldRespHeaderBytes(v int64) { o.ShieldRespHeaderBytes = &v } // GetShieldRespBodyBytes returns the ShieldRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetShieldRespBodyBytes() int64 { if o == nil || o.ShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRespBodyBytes @@ -2145,7 +2145,7 @@ func (o *RealtimeMeasurements) GetShieldRespBodyBytes() int32 { // GetShieldRespBodyBytesOk returns a tuple with the ShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldRespBodyBytes == nil { return nil, false } @@ -2161,15 +2161,15 @@ func (o *RealtimeMeasurements) HasShieldRespBodyBytes() bool { return false } -// SetShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldRespBodyBytes field. -func (o *RealtimeMeasurements) SetShieldRespBodyBytes(v int32) { +// SetShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldRespBodyBytes field. +func (o *RealtimeMeasurements) SetShieldRespBodyBytes(v int64) { o.ShieldRespBodyBytes = &v } // GetOtfpRespHeaderBytes returns the OtfpRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOtfpRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetOtfpRespHeaderBytes() int64 { if o == nil || o.OtfpRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpRespHeaderBytes @@ -2177,7 +2177,7 @@ func (o *RealtimeMeasurements) GetOtfpRespHeaderBytes() int32 { // GetOtfpRespHeaderBytesOk returns a tuple with the OtfpRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOtfpRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOtfpRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OtfpRespHeaderBytes == nil { return nil, false } @@ -2193,15 +2193,15 @@ func (o *RealtimeMeasurements) HasOtfpRespHeaderBytes() bool { return false } -// SetOtfpRespHeaderBytes gets a reference to the given int32 and assigns it to the OtfpRespHeaderBytes field. -func (o *RealtimeMeasurements) SetOtfpRespHeaderBytes(v int32) { +// SetOtfpRespHeaderBytes gets a reference to the given int64 and assigns it to the OtfpRespHeaderBytes field. +func (o *RealtimeMeasurements) SetOtfpRespHeaderBytes(v int64) { o.OtfpRespHeaderBytes = &v } // GetOtfpRespBodyBytes returns the OtfpRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOtfpRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetOtfpRespBodyBytes() int64 { if o == nil || o.OtfpRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpRespBodyBytes @@ -2209,7 +2209,7 @@ func (o *RealtimeMeasurements) GetOtfpRespBodyBytes() int32 { // GetOtfpRespBodyBytesOk returns a tuple with the OtfpRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOtfpRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOtfpRespBodyBytesOk() (*int64, bool) { if o == nil || o.OtfpRespBodyBytes == nil { return nil, false } @@ -2225,15 +2225,15 @@ func (o *RealtimeMeasurements) HasOtfpRespBodyBytes() bool { return false } -// SetOtfpRespBodyBytes gets a reference to the given int32 and assigns it to the OtfpRespBodyBytes field. -func (o *RealtimeMeasurements) SetOtfpRespBodyBytes(v int32) { +// SetOtfpRespBodyBytes gets a reference to the given int64 and assigns it to the OtfpRespBodyBytes field. +func (o *RealtimeMeasurements) SetOtfpRespBodyBytes(v int64) { o.OtfpRespBodyBytes = &v } // GetOtfpShieldRespHeaderBytes returns the OtfpShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytes() int64 { if o == nil || o.OtfpShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpShieldRespHeaderBytes @@ -2241,7 +2241,7 @@ func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytes() int32 { // GetOtfpShieldRespHeaderBytesOk returns a tuple with the OtfpShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOtfpShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OtfpShieldRespHeaderBytes == nil { return nil, false } @@ -2257,15 +2257,15 @@ func (o *RealtimeMeasurements) HasOtfpShieldRespHeaderBytes() bool { return false } -// SetOtfpShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the OtfpShieldRespHeaderBytes field. -func (o *RealtimeMeasurements) SetOtfpShieldRespHeaderBytes(v int32) { +// SetOtfpShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the OtfpShieldRespHeaderBytes field. +func (o *RealtimeMeasurements) SetOtfpShieldRespHeaderBytes(v int64) { o.OtfpShieldRespHeaderBytes = &v } // GetOtfpShieldRespBodyBytes returns the OtfpShieldRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytes() int64 { if o == nil || o.OtfpShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpShieldRespBodyBytes @@ -2273,7 +2273,7 @@ func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytes() int32 { // GetOtfpShieldRespBodyBytesOk returns a tuple with the OtfpShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOtfpShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.OtfpShieldRespBodyBytes == nil { return nil, false } @@ -2289,8 +2289,8 @@ func (o *RealtimeMeasurements) HasOtfpShieldRespBodyBytes() bool { return false } -// SetOtfpShieldRespBodyBytes gets a reference to the given int32 and assigns it to the OtfpShieldRespBodyBytes field. -func (o *RealtimeMeasurements) SetOtfpShieldRespBodyBytes(v int32) { +// SetOtfpShieldRespBodyBytes gets a reference to the given int64 and assigns it to the OtfpShieldRespBodyBytes field. +func (o *RealtimeMeasurements) SetOtfpShieldRespBodyBytes(v int64) { o.OtfpShieldRespBodyBytes = &v } @@ -2359,9 +2359,9 @@ func (o *RealtimeMeasurements) SetOtfpDeliverTime(v float32) { } // GetImgoptoRespHeaderBytes returns the ImgoptoRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytes() int64 { if o == nil || o.ImgoptoRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoRespHeaderBytes @@ -2369,7 +2369,7 @@ func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytes() int32 { // GetImgoptoRespHeaderBytesOk returns a tuple with the ImgoptoRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgoptoRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgoptoRespHeaderBytes == nil { return nil, false } @@ -2385,15 +2385,15 @@ func (o *RealtimeMeasurements) HasImgoptoRespHeaderBytes() bool { return false } -// SetImgoptoRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgoptoRespHeaderBytes field. -func (o *RealtimeMeasurements) SetImgoptoRespHeaderBytes(v int32) { +// SetImgoptoRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgoptoRespHeaderBytes field. +func (o *RealtimeMeasurements) SetImgoptoRespHeaderBytes(v int64) { o.ImgoptoRespHeaderBytes = &v } // GetImgoptoRespBodyBytes returns the ImgoptoRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgoptoRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetImgoptoRespBodyBytes() int64 { if o == nil || o.ImgoptoRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoRespBodyBytes @@ -2401,7 +2401,7 @@ func (o *RealtimeMeasurements) GetImgoptoRespBodyBytes() int32 { // GetImgoptoRespBodyBytesOk returns a tuple with the ImgoptoRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgoptoRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgoptoRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgoptoRespBodyBytes == nil { return nil, false } @@ -2417,15 +2417,15 @@ func (o *RealtimeMeasurements) HasImgoptoRespBodyBytes() bool { return false } -// SetImgoptoRespBodyBytes gets a reference to the given int32 and assigns it to the ImgoptoRespBodyBytes field. -func (o *RealtimeMeasurements) SetImgoptoRespBodyBytes(v int32) { +// SetImgoptoRespBodyBytes gets a reference to the given int64 and assigns it to the ImgoptoRespBodyBytes field. +func (o *RealtimeMeasurements) SetImgoptoRespBodyBytes(v int64) { o.ImgoptoRespBodyBytes = &v } // GetImgoptoShieldRespHeaderBytes returns the ImgoptoShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytes() int64 { if o == nil || o.ImgoptoShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShieldRespHeaderBytes @@ -2433,7 +2433,7 @@ func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytes() int32 { // GetImgoptoShieldRespHeaderBytesOk returns a tuple with the ImgoptoShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgoptoShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgoptoShieldRespHeaderBytes == nil { return nil, false } @@ -2449,15 +2449,15 @@ func (o *RealtimeMeasurements) HasImgoptoShieldRespHeaderBytes() bool { return false } -// SetImgoptoShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgoptoShieldRespHeaderBytes field. -func (o *RealtimeMeasurements) SetImgoptoShieldRespHeaderBytes(v int32) { +// SetImgoptoShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgoptoShieldRespHeaderBytes field. +func (o *RealtimeMeasurements) SetImgoptoShieldRespHeaderBytes(v int64) { o.ImgoptoShieldRespHeaderBytes = &v } // GetImgoptoShieldRespBodyBytes returns the ImgoptoShieldRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytes() int64 { if o == nil || o.ImgoptoShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShieldRespBodyBytes @@ -2465,7 +2465,7 @@ func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytes() int32 { // GetImgoptoShieldRespBodyBytesOk returns a tuple with the ImgoptoShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgoptoShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgoptoShieldRespBodyBytes == nil { return nil, false } @@ -2481,15 +2481,15 @@ func (o *RealtimeMeasurements) HasImgoptoShieldRespBodyBytes() bool { return false } -// SetImgoptoShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ImgoptoShieldRespBodyBytes field. -func (o *RealtimeMeasurements) SetImgoptoShieldRespBodyBytes(v int32) { +// SetImgoptoShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ImgoptoShieldRespBodyBytes field. +func (o *RealtimeMeasurements) SetImgoptoShieldRespBodyBytes(v int64) { o.ImgoptoShieldRespBodyBytes = &v } // GetStatus1xx returns the Status1xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus1xx() int32 { +func (o *RealtimeMeasurements) GetStatus1xx() int64 { if o == nil || o.Status1xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status1xx @@ -2497,7 +2497,7 @@ func (o *RealtimeMeasurements) GetStatus1xx() int32 { // GetStatus1xxOk returns a tuple with the Status1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus1xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus1xxOk() (*int64, bool) { if o == nil || o.Status1xx == nil { return nil, false } @@ -2513,15 +2513,15 @@ func (o *RealtimeMeasurements) HasStatus1xx() bool { return false } -// SetStatus1xx gets a reference to the given int32 and assigns it to the Status1xx field. -func (o *RealtimeMeasurements) SetStatus1xx(v int32) { +// SetStatus1xx gets a reference to the given int64 and assigns it to the Status1xx field. +func (o *RealtimeMeasurements) SetStatus1xx(v int64) { o.Status1xx = &v } // GetStatus2xx returns the Status2xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus2xx() int32 { +func (o *RealtimeMeasurements) GetStatus2xx() int64 { if o == nil || o.Status2xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status2xx @@ -2529,7 +2529,7 @@ func (o *RealtimeMeasurements) GetStatus2xx() int32 { // GetStatus2xxOk returns a tuple with the Status2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus2xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus2xxOk() (*int64, bool) { if o == nil || o.Status2xx == nil { return nil, false } @@ -2545,15 +2545,15 @@ func (o *RealtimeMeasurements) HasStatus2xx() bool { return false } -// SetStatus2xx gets a reference to the given int32 and assigns it to the Status2xx field. -func (o *RealtimeMeasurements) SetStatus2xx(v int32) { +// SetStatus2xx gets a reference to the given int64 and assigns it to the Status2xx field. +func (o *RealtimeMeasurements) SetStatus2xx(v int64) { o.Status2xx = &v } // GetStatus3xx returns the Status3xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus3xx() int32 { +func (o *RealtimeMeasurements) GetStatus3xx() int64 { if o == nil || o.Status3xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status3xx @@ -2561,7 +2561,7 @@ func (o *RealtimeMeasurements) GetStatus3xx() int32 { // GetStatus3xxOk returns a tuple with the Status3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus3xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus3xxOk() (*int64, bool) { if o == nil || o.Status3xx == nil { return nil, false } @@ -2577,15 +2577,15 @@ func (o *RealtimeMeasurements) HasStatus3xx() bool { return false } -// SetStatus3xx gets a reference to the given int32 and assigns it to the Status3xx field. -func (o *RealtimeMeasurements) SetStatus3xx(v int32) { +// SetStatus3xx gets a reference to the given int64 and assigns it to the Status3xx field. +func (o *RealtimeMeasurements) SetStatus3xx(v int64) { o.Status3xx = &v } // GetStatus4xx returns the Status4xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus4xx() int32 { +func (o *RealtimeMeasurements) GetStatus4xx() int64 { if o == nil || o.Status4xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status4xx @@ -2593,7 +2593,7 @@ func (o *RealtimeMeasurements) GetStatus4xx() int32 { // GetStatus4xxOk returns a tuple with the Status4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus4xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus4xxOk() (*int64, bool) { if o == nil || o.Status4xx == nil { return nil, false } @@ -2609,15 +2609,15 @@ func (o *RealtimeMeasurements) HasStatus4xx() bool { return false } -// SetStatus4xx gets a reference to the given int32 and assigns it to the Status4xx field. -func (o *RealtimeMeasurements) SetStatus4xx(v int32) { +// SetStatus4xx gets a reference to the given int64 and assigns it to the Status4xx field. +func (o *RealtimeMeasurements) SetStatus4xx(v int64) { o.Status4xx = &v } // GetStatus5xx returns the Status5xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus5xx() int32 { +func (o *RealtimeMeasurements) GetStatus5xx() int64 { if o == nil || o.Status5xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status5xx @@ -2625,7 +2625,7 @@ func (o *RealtimeMeasurements) GetStatus5xx() int32 { // GetStatus5xxOk returns a tuple with the Status5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus5xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus5xxOk() (*int64, bool) { if o == nil || o.Status5xx == nil { return nil, false } @@ -2641,15 +2641,15 @@ func (o *RealtimeMeasurements) HasStatus5xx() bool { return false } -// SetStatus5xx gets a reference to the given int32 and assigns it to the Status5xx field. -func (o *RealtimeMeasurements) SetStatus5xx(v int32) { +// SetStatus5xx gets a reference to the given int64 and assigns it to the Status5xx field. +func (o *RealtimeMeasurements) SetStatus5xx(v int64) { o.Status5xx = &v } // GetStatus200 returns the Status200 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus200() int32 { +func (o *RealtimeMeasurements) GetStatus200() int64 { if o == nil || o.Status200 == nil { - var ret int32 + var ret int64 return ret } return *o.Status200 @@ -2657,7 +2657,7 @@ func (o *RealtimeMeasurements) GetStatus200() int32 { // GetStatus200Ok returns a tuple with the Status200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus200Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus200Ok() (*int64, bool) { if o == nil || o.Status200 == nil { return nil, false } @@ -2673,15 +2673,15 @@ func (o *RealtimeMeasurements) HasStatus200() bool { return false } -// SetStatus200 gets a reference to the given int32 and assigns it to the Status200 field. -func (o *RealtimeMeasurements) SetStatus200(v int32) { +// SetStatus200 gets a reference to the given int64 and assigns it to the Status200 field. +func (o *RealtimeMeasurements) SetStatus200(v int64) { o.Status200 = &v } // GetStatus204 returns the Status204 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus204() int32 { +func (o *RealtimeMeasurements) GetStatus204() int64 { if o == nil || o.Status204 == nil { - var ret int32 + var ret int64 return ret } return *o.Status204 @@ -2689,7 +2689,7 @@ func (o *RealtimeMeasurements) GetStatus204() int32 { // GetStatus204Ok returns a tuple with the Status204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus204Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus204Ok() (*int64, bool) { if o == nil || o.Status204 == nil { return nil, false } @@ -2705,15 +2705,15 @@ func (o *RealtimeMeasurements) HasStatus204() bool { return false } -// SetStatus204 gets a reference to the given int32 and assigns it to the Status204 field. -func (o *RealtimeMeasurements) SetStatus204(v int32) { +// SetStatus204 gets a reference to the given int64 and assigns it to the Status204 field. +func (o *RealtimeMeasurements) SetStatus204(v int64) { o.Status204 = &v } // GetStatus206 returns the Status206 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus206() int32 { +func (o *RealtimeMeasurements) GetStatus206() int64 { if o == nil || o.Status206 == nil { - var ret int32 + var ret int64 return ret } return *o.Status206 @@ -2721,7 +2721,7 @@ func (o *RealtimeMeasurements) GetStatus206() int32 { // GetStatus206Ok returns a tuple with the Status206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus206Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus206Ok() (*int64, bool) { if o == nil || o.Status206 == nil { return nil, false } @@ -2737,15 +2737,15 @@ func (o *RealtimeMeasurements) HasStatus206() bool { return false } -// SetStatus206 gets a reference to the given int32 and assigns it to the Status206 field. -func (o *RealtimeMeasurements) SetStatus206(v int32) { +// SetStatus206 gets a reference to the given int64 and assigns it to the Status206 field. +func (o *RealtimeMeasurements) SetStatus206(v int64) { o.Status206 = &v } // GetStatus301 returns the Status301 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus301() int32 { +func (o *RealtimeMeasurements) GetStatus301() int64 { if o == nil || o.Status301 == nil { - var ret int32 + var ret int64 return ret } return *o.Status301 @@ -2753,7 +2753,7 @@ func (o *RealtimeMeasurements) GetStatus301() int32 { // GetStatus301Ok returns a tuple with the Status301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus301Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus301Ok() (*int64, bool) { if o == nil || o.Status301 == nil { return nil, false } @@ -2769,15 +2769,15 @@ func (o *RealtimeMeasurements) HasStatus301() bool { return false } -// SetStatus301 gets a reference to the given int32 and assigns it to the Status301 field. -func (o *RealtimeMeasurements) SetStatus301(v int32) { +// SetStatus301 gets a reference to the given int64 and assigns it to the Status301 field. +func (o *RealtimeMeasurements) SetStatus301(v int64) { o.Status301 = &v } // GetStatus302 returns the Status302 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus302() int32 { +func (o *RealtimeMeasurements) GetStatus302() int64 { if o == nil || o.Status302 == nil { - var ret int32 + var ret int64 return ret } return *o.Status302 @@ -2785,7 +2785,7 @@ func (o *RealtimeMeasurements) GetStatus302() int32 { // GetStatus302Ok returns a tuple with the Status302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus302Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus302Ok() (*int64, bool) { if o == nil || o.Status302 == nil { return nil, false } @@ -2801,15 +2801,15 @@ func (o *RealtimeMeasurements) HasStatus302() bool { return false } -// SetStatus302 gets a reference to the given int32 and assigns it to the Status302 field. -func (o *RealtimeMeasurements) SetStatus302(v int32) { +// SetStatus302 gets a reference to the given int64 and assigns it to the Status302 field. +func (o *RealtimeMeasurements) SetStatus302(v int64) { o.Status302 = &v } // GetStatus304 returns the Status304 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus304() int32 { +func (o *RealtimeMeasurements) GetStatus304() int64 { if o == nil || o.Status304 == nil { - var ret int32 + var ret int64 return ret } return *o.Status304 @@ -2817,7 +2817,7 @@ func (o *RealtimeMeasurements) GetStatus304() int32 { // GetStatus304Ok returns a tuple with the Status304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus304Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus304Ok() (*int64, bool) { if o == nil || o.Status304 == nil { return nil, false } @@ -2833,15 +2833,15 @@ func (o *RealtimeMeasurements) HasStatus304() bool { return false } -// SetStatus304 gets a reference to the given int32 and assigns it to the Status304 field. -func (o *RealtimeMeasurements) SetStatus304(v int32) { +// SetStatus304 gets a reference to the given int64 and assigns it to the Status304 field. +func (o *RealtimeMeasurements) SetStatus304(v int64) { o.Status304 = &v } // GetStatus400 returns the Status400 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus400() int32 { +func (o *RealtimeMeasurements) GetStatus400() int64 { if o == nil || o.Status400 == nil { - var ret int32 + var ret int64 return ret } return *o.Status400 @@ -2849,7 +2849,7 @@ func (o *RealtimeMeasurements) GetStatus400() int32 { // GetStatus400Ok returns a tuple with the Status400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus400Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus400Ok() (*int64, bool) { if o == nil || o.Status400 == nil { return nil, false } @@ -2865,15 +2865,15 @@ func (o *RealtimeMeasurements) HasStatus400() bool { return false } -// SetStatus400 gets a reference to the given int32 and assigns it to the Status400 field. -func (o *RealtimeMeasurements) SetStatus400(v int32) { +// SetStatus400 gets a reference to the given int64 and assigns it to the Status400 field. +func (o *RealtimeMeasurements) SetStatus400(v int64) { o.Status400 = &v } // GetStatus401 returns the Status401 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus401() int32 { +func (o *RealtimeMeasurements) GetStatus401() int64 { if o == nil || o.Status401 == nil { - var ret int32 + var ret int64 return ret } return *o.Status401 @@ -2881,7 +2881,7 @@ func (o *RealtimeMeasurements) GetStatus401() int32 { // GetStatus401Ok returns a tuple with the Status401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus401Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus401Ok() (*int64, bool) { if o == nil || o.Status401 == nil { return nil, false } @@ -2897,15 +2897,15 @@ func (o *RealtimeMeasurements) HasStatus401() bool { return false } -// SetStatus401 gets a reference to the given int32 and assigns it to the Status401 field. -func (o *RealtimeMeasurements) SetStatus401(v int32) { +// SetStatus401 gets a reference to the given int64 and assigns it to the Status401 field. +func (o *RealtimeMeasurements) SetStatus401(v int64) { o.Status401 = &v } // GetStatus403 returns the Status403 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus403() int32 { +func (o *RealtimeMeasurements) GetStatus403() int64 { if o == nil || o.Status403 == nil { - var ret int32 + var ret int64 return ret } return *o.Status403 @@ -2913,7 +2913,7 @@ func (o *RealtimeMeasurements) GetStatus403() int32 { // GetStatus403Ok returns a tuple with the Status403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus403Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus403Ok() (*int64, bool) { if o == nil || o.Status403 == nil { return nil, false } @@ -2929,15 +2929,15 @@ func (o *RealtimeMeasurements) HasStatus403() bool { return false } -// SetStatus403 gets a reference to the given int32 and assigns it to the Status403 field. -func (o *RealtimeMeasurements) SetStatus403(v int32) { +// SetStatus403 gets a reference to the given int64 and assigns it to the Status403 field. +func (o *RealtimeMeasurements) SetStatus403(v int64) { o.Status403 = &v } // GetStatus404 returns the Status404 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus404() int32 { +func (o *RealtimeMeasurements) GetStatus404() int64 { if o == nil || o.Status404 == nil { - var ret int32 + var ret int64 return ret } return *o.Status404 @@ -2945,7 +2945,7 @@ func (o *RealtimeMeasurements) GetStatus404() int32 { // GetStatus404Ok returns a tuple with the Status404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus404Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus404Ok() (*int64, bool) { if o == nil || o.Status404 == nil { return nil, false } @@ -2961,15 +2961,15 @@ func (o *RealtimeMeasurements) HasStatus404() bool { return false } -// SetStatus404 gets a reference to the given int32 and assigns it to the Status404 field. -func (o *RealtimeMeasurements) SetStatus404(v int32) { +// SetStatus404 gets a reference to the given int64 and assigns it to the Status404 field. +func (o *RealtimeMeasurements) SetStatus404(v int64) { o.Status404 = &v } // GetStatus406 returns the Status406 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus406() int32 { +func (o *RealtimeMeasurements) GetStatus406() int64 { if o == nil || o.Status406 == nil { - var ret int32 + var ret int64 return ret } return *o.Status406 @@ -2977,7 +2977,7 @@ func (o *RealtimeMeasurements) GetStatus406() int32 { // GetStatus406Ok returns a tuple with the Status406 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus406Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus406Ok() (*int64, bool) { if o == nil || o.Status406 == nil { return nil, false } @@ -2993,15 +2993,15 @@ func (o *RealtimeMeasurements) HasStatus406() bool { return false } -// SetStatus406 gets a reference to the given int32 and assigns it to the Status406 field. -func (o *RealtimeMeasurements) SetStatus406(v int32) { +// SetStatus406 gets a reference to the given int64 and assigns it to the Status406 field. +func (o *RealtimeMeasurements) SetStatus406(v int64) { o.Status406 = &v } // GetStatus416 returns the Status416 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus416() int32 { +func (o *RealtimeMeasurements) GetStatus416() int64 { if o == nil || o.Status416 == nil { - var ret int32 + var ret int64 return ret } return *o.Status416 @@ -3009,7 +3009,7 @@ func (o *RealtimeMeasurements) GetStatus416() int32 { // GetStatus416Ok returns a tuple with the Status416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus416Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus416Ok() (*int64, bool) { if o == nil || o.Status416 == nil { return nil, false } @@ -3025,15 +3025,15 @@ func (o *RealtimeMeasurements) HasStatus416() bool { return false } -// SetStatus416 gets a reference to the given int32 and assigns it to the Status416 field. -func (o *RealtimeMeasurements) SetStatus416(v int32) { +// SetStatus416 gets a reference to the given int64 and assigns it to the Status416 field. +func (o *RealtimeMeasurements) SetStatus416(v int64) { o.Status416 = &v } // GetStatus429 returns the Status429 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus429() int32 { +func (o *RealtimeMeasurements) GetStatus429() int64 { if o == nil || o.Status429 == nil { - var ret int32 + var ret int64 return ret } return *o.Status429 @@ -3041,7 +3041,7 @@ func (o *RealtimeMeasurements) GetStatus429() int32 { // GetStatus429Ok returns a tuple with the Status429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus429Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus429Ok() (*int64, bool) { if o == nil || o.Status429 == nil { return nil, false } @@ -3057,15 +3057,15 @@ func (o *RealtimeMeasurements) HasStatus429() bool { return false } -// SetStatus429 gets a reference to the given int32 and assigns it to the Status429 field. -func (o *RealtimeMeasurements) SetStatus429(v int32) { +// SetStatus429 gets a reference to the given int64 and assigns it to the Status429 field. +func (o *RealtimeMeasurements) SetStatus429(v int64) { o.Status429 = &v } // GetStatus500 returns the Status500 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus500() int32 { +func (o *RealtimeMeasurements) GetStatus500() int64 { if o == nil || o.Status500 == nil { - var ret int32 + var ret int64 return ret } return *o.Status500 @@ -3073,7 +3073,7 @@ func (o *RealtimeMeasurements) GetStatus500() int32 { // GetStatus500Ok returns a tuple with the Status500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus500Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus500Ok() (*int64, bool) { if o == nil || o.Status500 == nil { return nil, false } @@ -3089,15 +3089,15 @@ func (o *RealtimeMeasurements) HasStatus500() bool { return false } -// SetStatus500 gets a reference to the given int32 and assigns it to the Status500 field. -func (o *RealtimeMeasurements) SetStatus500(v int32) { +// SetStatus500 gets a reference to the given int64 and assigns it to the Status500 field. +func (o *RealtimeMeasurements) SetStatus500(v int64) { o.Status500 = &v } // GetStatus501 returns the Status501 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus501() int32 { +func (o *RealtimeMeasurements) GetStatus501() int64 { if o == nil || o.Status501 == nil { - var ret int32 + var ret int64 return ret } return *o.Status501 @@ -3105,7 +3105,7 @@ func (o *RealtimeMeasurements) GetStatus501() int32 { // GetStatus501Ok returns a tuple with the Status501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus501Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus501Ok() (*int64, bool) { if o == nil || o.Status501 == nil { return nil, false } @@ -3121,15 +3121,15 @@ func (o *RealtimeMeasurements) HasStatus501() bool { return false } -// SetStatus501 gets a reference to the given int32 and assigns it to the Status501 field. -func (o *RealtimeMeasurements) SetStatus501(v int32) { +// SetStatus501 gets a reference to the given int64 and assigns it to the Status501 field. +func (o *RealtimeMeasurements) SetStatus501(v int64) { o.Status501 = &v } // GetStatus502 returns the Status502 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus502() int32 { +func (o *RealtimeMeasurements) GetStatus502() int64 { if o == nil || o.Status502 == nil { - var ret int32 + var ret int64 return ret } return *o.Status502 @@ -3137,7 +3137,7 @@ func (o *RealtimeMeasurements) GetStatus502() int32 { // GetStatus502Ok returns a tuple with the Status502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus502Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus502Ok() (*int64, bool) { if o == nil || o.Status502 == nil { return nil, false } @@ -3153,15 +3153,15 @@ func (o *RealtimeMeasurements) HasStatus502() bool { return false } -// SetStatus502 gets a reference to the given int32 and assigns it to the Status502 field. -func (o *RealtimeMeasurements) SetStatus502(v int32) { +// SetStatus502 gets a reference to the given int64 and assigns it to the Status502 field. +func (o *RealtimeMeasurements) SetStatus502(v int64) { o.Status502 = &v } // GetStatus503 returns the Status503 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus503() int32 { +func (o *RealtimeMeasurements) GetStatus503() int64 { if o == nil || o.Status503 == nil { - var ret int32 + var ret int64 return ret } return *o.Status503 @@ -3169,7 +3169,7 @@ func (o *RealtimeMeasurements) GetStatus503() int32 { // GetStatus503Ok returns a tuple with the Status503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus503Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus503Ok() (*int64, bool) { if o == nil || o.Status503 == nil { return nil, false } @@ -3185,15 +3185,15 @@ func (o *RealtimeMeasurements) HasStatus503() bool { return false } -// SetStatus503 gets a reference to the given int32 and assigns it to the Status503 field. -func (o *RealtimeMeasurements) SetStatus503(v int32) { +// SetStatus503 gets a reference to the given int64 and assigns it to the Status503 field. +func (o *RealtimeMeasurements) SetStatus503(v int64) { o.Status503 = &v } // GetStatus504 returns the Status504 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus504() int32 { +func (o *RealtimeMeasurements) GetStatus504() int64 { if o == nil || o.Status504 == nil { - var ret int32 + var ret int64 return ret } return *o.Status504 @@ -3201,7 +3201,7 @@ func (o *RealtimeMeasurements) GetStatus504() int32 { // GetStatus504Ok returns a tuple with the Status504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus504Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus504Ok() (*int64, bool) { if o == nil || o.Status504 == nil { return nil, false } @@ -3217,15 +3217,15 @@ func (o *RealtimeMeasurements) HasStatus504() bool { return false } -// SetStatus504 gets a reference to the given int32 and assigns it to the Status504 field. -func (o *RealtimeMeasurements) SetStatus504(v int32) { +// SetStatus504 gets a reference to the given int64 and assigns it to the Status504 field. +func (o *RealtimeMeasurements) SetStatus504(v int64) { o.Status504 = &v } // GetStatus505 returns the Status505 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetStatus505() int32 { +func (o *RealtimeMeasurements) GetStatus505() int64 { if o == nil || o.Status505 == nil { - var ret int32 + var ret int64 return ret } return *o.Status505 @@ -3233,7 +3233,7 @@ func (o *RealtimeMeasurements) GetStatus505() int32 { // GetStatus505Ok returns a tuple with the Status505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetStatus505Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetStatus505Ok() (*int64, bool) { if o == nil || o.Status505 == nil { return nil, false } @@ -3249,15 +3249,15 @@ func (o *RealtimeMeasurements) HasStatus505() bool { return false } -// SetStatus505 gets a reference to the given int32 and assigns it to the Status505 field. -func (o *RealtimeMeasurements) SetStatus505(v int32) { +// SetStatus505 gets a reference to the given int64 and assigns it to the Status505 field. +func (o *RealtimeMeasurements) SetStatus505(v int64) { o.Status505 = &v } // GetUncacheable returns the Uncacheable field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetUncacheable() int32 { +func (o *RealtimeMeasurements) GetUncacheable() int64 { if o == nil || o.Uncacheable == nil { - var ret int32 + var ret int64 return ret } return *o.Uncacheable @@ -3265,7 +3265,7 @@ func (o *RealtimeMeasurements) GetUncacheable() int32 { // GetUncacheableOk returns a tuple with the Uncacheable field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetUncacheableOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetUncacheableOk() (*int64, bool) { if o == nil || o.Uncacheable == nil { return nil, false } @@ -3281,8 +3281,8 @@ func (o *RealtimeMeasurements) HasUncacheable() bool { return false } -// SetUncacheable gets a reference to the given int32 and assigns it to the Uncacheable field. -func (o *RealtimeMeasurements) SetUncacheable(v int32) { +// SetUncacheable gets a reference to the given int64 and assigns it to the Uncacheable field. +func (o *RealtimeMeasurements) SetUncacheable(v int64) { o.Uncacheable = &v } @@ -3319,9 +3319,9 @@ func (o *RealtimeMeasurements) SetPassTime(v float32) { } // GetTLS returns the TLS field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetTLS() int32 { +func (o *RealtimeMeasurements) GetTLS() int64 { if o == nil || o.TLS == nil { - var ret int32 + var ret int64 return ret } return *o.TLS @@ -3329,7 +3329,7 @@ func (o *RealtimeMeasurements) GetTLS() int32 { // GetTLSOk returns a tuple with the TLS field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetTLSOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetTLSOk() (*int64, bool) { if o == nil || o.TLS == nil { return nil, false } @@ -3345,15 +3345,15 @@ func (o *RealtimeMeasurements) HasTLS() bool { return false } -// SetTLS gets a reference to the given int32 and assigns it to the TLS field. -func (o *RealtimeMeasurements) SetTLS(v int32) { +// SetTLS gets a reference to the given int64 and assigns it to the TLS field. +func (o *RealtimeMeasurements) SetTLS(v int64) { o.TLS = &v } // GetTLSV10 returns the TLSV10 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetTLSV10() int32 { +func (o *RealtimeMeasurements) GetTLSV10() int64 { if o == nil || o.TLSV10 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV10 @@ -3361,7 +3361,7 @@ func (o *RealtimeMeasurements) GetTLSV10() int32 { // GetTLSV10Ok returns a tuple with the TLSV10 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetTLSV10Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetTLSV10Ok() (*int64, bool) { if o == nil || o.TLSV10 == nil { return nil, false } @@ -3377,15 +3377,15 @@ func (o *RealtimeMeasurements) HasTLSV10() bool { return false } -// SetTLSV10 gets a reference to the given int32 and assigns it to the TLSV10 field. -func (o *RealtimeMeasurements) SetTLSV10(v int32) { +// SetTLSV10 gets a reference to the given int64 and assigns it to the TLSV10 field. +func (o *RealtimeMeasurements) SetTLSV10(v int64) { o.TLSV10 = &v } // GetTLSV11 returns the TLSV11 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetTLSV11() int32 { +func (o *RealtimeMeasurements) GetTLSV11() int64 { if o == nil || o.TLSV11 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV11 @@ -3393,7 +3393,7 @@ func (o *RealtimeMeasurements) GetTLSV11() int32 { // GetTLSV11Ok returns a tuple with the TLSV11 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetTLSV11Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetTLSV11Ok() (*int64, bool) { if o == nil || o.TLSV11 == nil { return nil, false } @@ -3409,15 +3409,15 @@ func (o *RealtimeMeasurements) HasTLSV11() bool { return false } -// SetTLSV11 gets a reference to the given int32 and assigns it to the TLSV11 field. -func (o *RealtimeMeasurements) SetTLSV11(v int32) { +// SetTLSV11 gets a reference to the given int64 and assigns it to the TLSV11 field. +func (o *RealtimeMeasurements) SetTLSV11(v int64) { o.TLSV11 = &v } // GetTLSV12 returns the TLSV12 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetTLSV12() int32 { +func (o *RealtimeMeasurements) GetTLSV12() int64 { if o == nil || o.TLSV12 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV12 @@ -3425,7 +3425,7 @@ func (o *RealtimeMeasurements) GetTLSV12() int32 { // GetTLSV12Ok returns a tuple with the TLSV12 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetTLSV12Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetTLSV12Ok() (*int64, bool) { if o == nil || o.TLSV12 == nil { return nil, false } @@ -3441,15 +3441,15 @@ func (o *RealtimeMeasurements) HasTLSV12() bool { return false } -// SetTLSV12 gets a reference to the given int32 and assigns it to the TLSV12 field. -func (o *RealtimeMeasurements) SetTLSV12(v int32) { +// SetTLSV12 gets a reference to the given int64 and assigns it to the TLSV12 field. +func (o *RealtimeMeasurements) SetTLSV12(v int64) { o.TLSV12 = &v } // GetTLSV13 returns the TLSV13 field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetTLSV13() int32 { +func (o *RealtimeMeasurements) GetTLSV13() int64 { if o == nil || o.TLSV13 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV13 @@ -3457,7 +3457,7 @@ func (o *RealtimeMeasurements) GetTLSV13() int32 { // GetTLSV13Ok returns a tuple with the TLSV13 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetTLSV13Ok() (*int32, bool) { +func (o *RealtimeMeasurements) GetTLSV13Ok() (*int64, bool) { if o == nil || o.TLSV13 == nil { return nil, false } @@ -3473,15 +3473,15 @@ func (o *RealtimeMeasurements) HasTLSV13() bool { return false } -// SetTLSV13 gets a reference to the given int32 and assigns it to the TLSV13 field. -func (o *RealtimeMeasurements) SetTLSV13(v int32) { +// SetTLSV13 gets a reference to the given int64 and assigns it to the TLSV13 field. +func (o *RealtimeMeasurements) SetTLSV13(v int64) { o.TLSV13 = &v } // GetObjectSize1k returns the ObjectSize1k field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetObjectSize1k() int32 { +func (o *RealtimeMeasurements) GetObjectSize1k() int64 { if o == nil || o.ObjectSize1k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1k @@ -3489,7 +3489,7 @@ func (o *RealtimeMeasurements) GetObjectSize1k() int32 { // GetObjectSize1kOk returns a tuple with the ObjectSize1k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetObjectSize1kOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectSize1kOk() (*int64, bool) { if o == nil || o.ObjectSize1k == nil { return nil, false } @@ -3505,15 +3505,15 @@ func (o *RealtimeMeasurements) HasObjectSize1k() bool { return false } -// SetObjectSize1k gets a reference to the given int32 and assigns it to the ObjectSize1k field. -func (o *RealtimeMeasurements) SetObjectSize1k(v int32) { +// SetObjectSize1k gets a reference to the given int64 and assigns it to the ObjectSize1k field. +func (o *RealtimeMeasurements) SetObjectSize1k(v int64) { o.ObjectSize1k = &v } // GetObjectSize10k returns the ObjectSize10k field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetObjectSize10k() int32 { +func (o *RealtimeMeasurements) GetObjectSize10k() int64 { if o == nil || o.ObjectSize10k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize10k @@ -3521,7 +3521,7 @@ func (o *RealtimeMeasurements) GetObjectSize10k() int32 { // GetObjectSize10kOk returns a tuple with the ObjectSize10k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetObjectSize10kOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectSize10kOk() (*int64, bool) { if o == nil || o.ObjectSize10k == nil { return nil, false } @@ -3537,15 +3537,15 @@ func (o *RealtimeMeasurements) HasObjectSize10k() bool { return false } -// SetObjectSize10k gets a reference to the given int32 and assigns it to the ObjectSize10k field. -func (o *RealtimeMeasurements) SetObjectSize10k(v int32) { +// SetObjectSize10k gets a reference to the given int64 and assigns it to the ObjectSize10k field. +func (o *RealtimeMeasurements) SetObjectSize10k(v int64) { o.ObjectSize10k = &v } // GetObjectSize100k returns the ObjectSize100k field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetObjectSize100k() int32 { +func (o *RealtimeMeasurements) GetObjectSize100k() int64 { if o == nil || o.ObjectSize100k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize100k @@ -3553,7 +3553,7 @@ func (o *RealtimeMeasurements) GetObjectSize100k() int32 { // GetObjectSize100kOk returns a tuple with the ObjectSize100k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetObjectSize100kOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectSize100kOk() (*int64, bool) { if o == nil || o.ObjectSize100k == nil { return nil, false } @@ -3569,15 +3569,15 @@ func (o *RealtimeMeasurements) HasObjectSize100k() bool { return false } -// SetObjectSize100k gets a reference to the given int32 and assigns it to the ObjectSize100k field. -func (o *RealtimeMeasurements) SetObjectSize100k(v int32) { +// SetObjectSize100k gets a reference to the given int64 and assigns it to the ObjectSize100k field. +func (o *RealtimeMeasurements) SetObjectSize100k(v int64) { o.ObjectSize100k = &v } // GetObjectSize1m returns the ObjectSize1m field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetObjectSize1m() int32 { +func (o *RealtimeMeasurements) GetObjectSize1m() int64 { if o == nil || o.ObjectSize1m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1m @@ -3585,7 +3585,7 @@ func (o *RealtimeMeasurements) GetObjectSize1m() int32 { // GetObjectSize1mOk returns a tuple with the ObjectSize1m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetObjectSize1mOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectSize1mOk() (*int64, bool) { if o == nil || o.ObjectSize1m == nil { return nil, false } @@ -3601,15 +3601,15 @@ func (o *RealtimeMeasurements) HasObjectSize1m() bool { return false } -// SetObjectSize1m gets a reference to the given int32 and assigns it to the ObjectSize1m field. -func (o *RealtimeMeasurements) SetObjectSize1m(v int32) { +// SetObjectSize1m gets a reference to the given int64 and assigns it to the ObjectSize1m field. +func (o *RealtimeMeasurements) SetObjectSize1m(v int64) { o.ObjectSize1m = &v } // GetObjectSize10m returns the ObjectSize10m field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetObjectSize10m() int32 { +func (o *RealtimeMeasurements) GetObjectSize10m() int64 { if o == nil || o.ObjectSize10m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize10m @@ -3617,7 +3617,7 @@ func (o *RealtimeMeasurements) GetObjectSize10m() int32 { // GetObjectSize10mOk returns a tuple with the ObjectSize10m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetObjectSize10mOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectSize10mOk() (*int64, bool) { if o == nil || o.ObjectSize10m == nil { return nil, false } @@ -3633,15 +3633,15 @@ func (o *RealtimeMeasurements) HasObjectSize10m() bool { return false } -// SetObjectSize10m gets a reference to the given int32 and assigns it to the ObjectSize10m field. -func (o *RealtimeMeasurements) SetObjectSize10m(v int32) { +// SetObjectSize10m gets a reference to the given int64 and assigns it to the ObjectSize10m field. +func (o *RealtimeMeasurements) SetObjectSize10m(v int64) { o.ObjectSize10m = &v } // GetObjectSize100m returns the ObjectSize100m field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetObjectSize100m() int32 { +func (o *RealtimeMeasurements) GetObjectSize100m() int64 { if o == nil || o.ObjectSize100m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize100m @@ -3649,7 +3649,7 @@ func (o *RealtimeMeasurements) GetObjectSize100m() int32 { // GetObjectSize100mOk returns a tuple with the ObjectSize100m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetObjectSize100mOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectSize100mOk() (*int64, bool) { if o == nil || o.ObjectSize100m == nil { return nil, false } @@ -3665,15 +3665,15 @@ func (o *RealtimeMeasurements) HasObjectSize100m() bool { return false } -// SetObjectSize100m gets a reference to the given int32 and assigns it to the ObjectSize100m field. -func (o *RealtimeMeasurements) SetObjectSize100m(v int32) { +// SetObjectSize100m gets a reference to the given int64 and assigns it to the ObjectSize100m field. +func (o *RealtimeMeasurements) SetObjectSize100m(v int64) { o.ObjectSize100m = &v } // GetObjectSize1g returns the ObjectSize1g field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetObjectSize1g() int32 { +func (o *RealtimeMeasurements) GetObjectSize1g() int64 { if o == nil || o.ObjectSize1g == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1g @@ -3681,7 +3681,7 @@ func (o *RealtimeMeasurements) GetObjectSize1g() int32 { // GetObjectSize1gOk returns a tuple with the ObjectSize1g field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetObjectSize1gOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectSize1gOk() (*int64, bool) { if o == nil || o.ObjectSize1g == nil { return nil, false } @@ -3697,15 +3697,15 @@ func (o *RealtimeMeasurements) HasObjectSize1g() bool { return false } -// SetObjectSize1g gets a reference to the given int32 and assigns it to the ObjectSize1g field. -func (o *RealtimeMeasurements) SetObjectSize1g(v int32) { +// SetObjectSize1g gets a reference to the given int64 and assigns it to the ObjectSize1g field. +func (o *RealtimeMeasurements) SetObjectSize1g(v int64) { o.ObjectSize1g = &v } // GetObjectSizeOther returns the ObjectSizeOther field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetObjectSizeOther() int32 { +func (o *RealtimeMeasurements) GetObjectSizeOther() int64 { if o == nil || o.ObjectSizeOther == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSizeOther @@ -3713,7 +3713,7 @@ func (o *RealtimeMeasurements) GetObjectSizeOther() int32 { // GetObjectSizeOtherOk returns a tuple with the ObjectSizeOther field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetObjectSizeOtherOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectSizeOtherOk() (*int64, bool) { if o == nil || o.ObjectSizeOther == nil { return nil, false } @@ -3729,8 +3729,8 @@ func (o *RealtimeMeasurements) HasObjectSizeOther() bool { return false } -// SetObjectSizeOther gets a reference to the given int32 and assigns it to the ObjectSizeOther field. -func (o *RealtimeMeasurements) SetObjectSizeOther(v int32) { +// SetObjectSizeOther gets a reference to the given int64 and assigns it to the ObjectSizeOther field. +func (o *RealtimeMeasurements) SetObjectSizeOther(v int64) { o.ObjectSizeOther = &v } @@ -3767,9 +3767,9 @@ func (o *RealtimeMeasurements) SetRecvSubTime(v float32) { } // GetRecvSubCount returns the RecvSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetRecvSubCount() int32 { +func (o *RealtimeMeasurements) GetRecvSubCount() int64 { if o == nil || o.RecvSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.RecvSubCount @@ -3777,7 +3777,7 @@ func (o *RealtimeMeasurements) GetRecvSubCount() int32 { // GetRecvSubCountOk returns a tuple with the RecvSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetRecvSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetRecvSubCountOk() (*int64, bool) { if o == nil || o.RecvSubCount == nil { return nil, false } @@ -3793,8 +3793,8 @@ func (o *RealtimeMeasurements) HasRecvSubCount() bool { return false } -// SetRecvSubCount gets a reference to the given int32 and assigns it to the RecvSubCount field. -func (o *RealtimeMeasurements) SetRecvSubCount(v int32) { +// SetRecvSubCount gets a reference to the given int64 and assigns it to the RecvSubCount field. +func (o *RealtimeMeasurements) SetRecvSubCount(v int64) { o.RecvSubCount = &v } @@ -3831,9 +3831,9 @@ func (o *RealtimeMeasurements) SetHashSubTime(v float32) { } // GetHashSubCount returns the HashSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetHashSubCount() int32 { +func (o *RealtimeMeasurements) GetHashSubCount() int64 { if o == nil || o.HashSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.HashSubCount @@ -3841,7 +3841,7 @@ func (o *RealtimeMeasurements) GetHashSubCount() int32 { // GetHashSubCountOk returns a tuple with the HashSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetHashSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetHashSubCountOk() (*int64, bool) { if o == nil || o.HashSubCount == nil { return nil, false } @@ -3857,8 +3857,8 @@ func (o *RealtimeMeasurements) HasHashSubCount() bool { return false } -// SetHashSubCount gets a reference to the given int32 and assigns it to the HashSubCount field. -func (o *RealtimeMeasurements) SetHashSubCount(v int32) { +// SetHashSubCount gets a reference to the given int64 and assigns it to the HashSubCount field. +func (o *RealtimeMeasurements) SetHashSubCount(v int64) { o.HashSubCount = &v } @@ -3895,9 +3895,9 @@ func (o *RealtimeMeasurements) SetMissSubTime(v float32) { } // GetMissSubCount returns the MissSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetMissSubCount() int32 { +func (o *RealtimeMeasurements) GetMissSubCount() int64 { if o == nil || o.MissSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.MissSubCount @@ -3905,7 +3905,7 @@ func (o *RealtimeMeasurements) GetMissSubCount() int32 { // GetMissSubCountOk returns a tuple with the MissSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetMissSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetMissSubCountOk() (*int64, bool) { if o == nil || o.MissSubCount == nil { return nil, false } @@ -3921,8 +3921,8 @@ func (o *RealtimeMeasurements) HasMissSubCount() bool { return false } -// SetMissSubCount gets a reference to the given int32 and assigns it to the MissSubCount field. -func (o *RealtimeMeasurements) SetMissSubCount(v int32) { +// SetMissSubCount gets a reference to the given int64 and assigns it to the MissSubCount field. +func (o *RealtimeMeasurements) SetMissSubCount(v int64) { o.MissSubCount = &v } @@ -3959,9 +3959,9 @@ func (o *RealtimeMeasurements) SetFetchSubTime(v float32) { } // GetFetchSubCount returns the FetchSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFetchSubCount() int32 { +func (o *RealtimeMeasurements) GetFetchSubCount() int64 { if o == nil || o.FetchSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.FetchSubCount @@ -3969,7 +3969,7 @@ func (o *RealtimeMeasurements) GetFetchSubCount() int32 { // GetFetchSubCountOk returns a tuple with the FetchSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFetchSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFetchSubCountOk() (*int64, bool) { if o == nil || o.FetchSubCount == nil { return nil, false } @@ -3985,8 +3985,8 @@ func (o *RealtimeMeasurements) HasFetchSubCount() bool { return false } -// SetFetchSubCount gets a reference to the given int32 and assigns it to the FetchSubCount field. -func (o *RealtimeMeasurements) SetFetchSubCount(v int32) { +// SetFetchSubCount gets a reference to the given int64 and assigns it to the FetchSubCount field. +func (o *RealtimeMeasurements) SetFetchSubCount(v int64) { o.FetchSubCount = &v } @@ -4023,9 +4023,9 @@ func (o *RealtimeMeasurements) SetPassSubTime(v float32) { } // GetPassSubCount returns the PassSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetPassSubCount() int32 { +func (o *RealtimeMeasurements) GetPassSubCount() int64 { if o == nil || o.PassSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PassSubCount @@ -4033,7 +4033,7 @@ func (o *RealtimeMeasurements) GetPassSubCount() int32 { // GetPassSubCountOk returns a tuple with the PassSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetPassSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetPassSubCountOk() (*int64, bool) { if o == nil || o.PassSubCount == nil { return nil, false } @@ -4049,8 +4049,8 @@ func (o *RealtimeMeasurements) HasPassSubCount() bool { return false } -// SetPassSubCount gets a reference to the given int32 and assigns it to the PassSubCount field. -func (o *RealtimeMeasurements) SetPassSubCount(v int32) { +// SetPassSubCount gets a reference to the given int64 and assigns it to the PassSubCount field. +func (o *RealtimeMeasurements) SetPassSubCount(v int64) { o.PassSubCount = &v } @@ -4087,9 +4087,9 @@ func (o *RealtimeMeasurements) SetPipeSubTime(v float32) { } // GetPipeSubCount returns the PipeSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetPipeSubCount() int32 { +func (o *RealtimeMeasurements) GetPipeSubCount() int64 { if o == nil || o.PipeSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PipeSubCount @@ -4097,7 +4097,7 @@ func (o *RealtimeMeasurements) GetPipeSubCount() int32 { // GetPipeSubCountOk returns a tuple with the PipeSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetPipeSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetPipeSubCountOk() (*int64, bool) { if o == nil || o.PipeSubCount == nil { return nil, false } @@ -4113,8 +4113,8 @@ func (o *RealtimeMeasurements) HasPipeSubCount() bool { return false } -// SetPipeSubCount gets a reference to the given int32 and assigns it to the PipeSubCount field. -func (o *RealtimeMeasurements) SetPipeSubCount(v int32) { +// SetPipeSubCount gets a reference to the given int64 and assigns it to the PipeSubCount field. +func (o *RealtimeMeasurements) SetPipeSubCount(v int64) { o.PipeSubCount = &v } @@ -4151,9 +4151,9 @@ func (o *RealtimeMeasurements) SetDeliverSubTime(v float32) { } // GetDeliverSubCount returns the DeliverSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDeliverSubCount() int32 { +func (o *RealtimeMeasurements) GetDeliverSubCount() int64 { if o == nil || o.DeliverSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.DeliverSubCount @@ -4161,7 +4161,7 @@ func (o *RealtimeMeasurements) GetDeliverSubCount() int32 { // GetDeliverSubCountOk returns a tuple with the DeliverSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDeliverSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDeliverSubCountOk() (*int64, bool) { if o == nil || o.DeliverSubCount == nil { return nil, false } @@ -4177,8 +4177,8 @@ func (o *RealtimeMeasurements) HasDeliverSubCount() bool { return false } -// SetDeliverSubCount gets a reference to the given int32 and assigns it to the DeliverSubCount field. -func (o *RealtimeMeasurements) SetDeliverSubCount(v int32) { +// SetDeliverSubCount gets a reference to the given int64 and assigns it to the DeliverSubCount field. +func (o *RealtimeMeasurements) SetDeliverSubCount(v int64) { o.DeliverSubCount = &v } @@ -4215,9 +4215,9 @@ func (o *RealtimeMeasurements) SetErrorSubTime(v float32) { } // GetErrorSubCount returns the ErrorSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetErrorSubCount() int32 { +func (o *RealtimeMeasurements) GetErrorSubCount() int64 { if o == nil || o.ErrorSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.ErrorSubCount @@ -4225,7 +4225,7 @@ func (o *RealtimeMeasurements) GetErrorSubCount() int32 { // GetErrorSubCountOk returns a tuple with the ErrorSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetErrorSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetErrorSubCountOk() (*int64, bool) { if o == nil || o.ErrorSubCount == nil { return nil, false } @@ -4241,8 +4241,8 @@ func (o *RealtimeMeasurements) HasErrorSubCount() bool { return false } -// SetErrorSubCount gets a reference to the given int32 and assigns it to the ErrorSubCount field. -func (o *RealtimeMeasurements) SetErrorSubCount(v int32) { +// SetErrorSubCount gets a reference to the given int64 and assigns it to the ErrorSubCount field. +func (o *RealtimeMeasurements) SetErrorSubCount(v int64) { o.ErrorSubCount = &v } @@ -4279,9 +4279,9 @@ func (o *RealtimeMeasurements) SetHitSubTime(v float32) { } // GetHitSubCount returns the HitSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetHitSubCount() int32 { +func (o *RealtimeMeasurements) GetHitSubCount() int64 { if o == nil || o.HitSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.HitSubCount @@ -4289,7 +4289,7 @@ func (o *RealtimeMeasurements) GetHitSubCount() int32 { // GetHitSubCountOk returns a tuple with the HitSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetHitSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetHitSubCountOk() (*int64, bool) { if o == nil || o.HitSubCount == nil { return nil, false } @@ -4305,8 +4305,8 @@ func (o *RealtimeMeasurements) HasHitSubCount() bool { return false } -// SetHitSubCount gets a reference to the given int32 and assigns it to the HitSubCount field. -func (o *RealtimeMeasurements) SetHitSubCount(v int32) { +// SetHitSubCount gets a reference to the given int64 and assigns it to the HitSubCount field. +func (o *RealtimeMeasurements) SetHitSubCount(v int64) { o.HitSubCount = &v } @@ -4343,9 +4343,9 @@ func (o *RealtimeMeasurements) SetPrehashSubTime(v float32) { } // GetPrehashSubCount returns the PrehashSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetPrehashSubCount() int32 { +func (o *RealtimeMeasurements) GetPrehashSubCount() int64 { if o == nil || o.PrehashSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PrehashSubCount @@ -4353,7 +4353,7 @@ func (o *RealtimeMeasurements) GetPrehashSubCount() int32 { // GetPrehashSubCountOk returns a tuple with the PrehashSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetPrehashSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetPrehashSubCountOk() (*int64, bool) { if o == nil || o.PrehashSubCount == nil { return nil, false } @@ -4369,8 +4369,8 @@ func (o *RealtimeMeasurements) HasPrehashSubCount() bool { return false } -// SetPrehashSubCount gets a reference to the given int32 and assigns it to the PrehashSubCount field. -func (o *RealtimeMeasurements) SetPrehashSubCount(v int32) { +// SetPrehashSubCount gets a reference to the given int64 and assigns it to the PrehashSubCount field. +func (o *RealtimeMeasurements) SetPrehashSubCount(v int64) { o.PrehashSubCount = &v } @@ -4407,9 +4407,9 @@ func (o *RealtimeMeasurements) SetPredeliverSubTime(v float32) { } // GetPredeliverSubCount returns the PredeliverSubCount field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetPredeliverSubCount() int32 { +func (o *RealtimeMeasurements) GetPredeliverSubCount() int64 { if o == nil || o.PredeliverSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PredeliverSubCount @@ -4417,7 +4417,7 @@ func (o *RealtimeMeasurements) GetPredeliverSubCount() int32 { // GetPredeliverSubCountOk returns a tuple with the PredeliverSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetPredeliverSubCountOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetPredeliverSubCountOk() (*int64, bool) { if o == nil || o.PredeliverSubCount == nil { return nil, false } @@ -4433,15 +4433,15 @@ func (o *RealtimeMeasurements) HasPredeliverSubCount() bool { return false } -// SetPredeliverSubCount gets a reference to the given int32 and assigns it to the PredeliverSubCount field. -func (o *RealtimeMeasurements) SetPredeliverSubCount(v int32) { +// SetPredeliverSubCount gets a reference to the given int64 and assigns it to the PredeliverSubCount field. +func (o *RealtimeMeasurements) SetPredeliverSubCount(v int64) { o.PredeliverSubCount = &v } // GetHitRespBodyBytes returns the HitRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetHitRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetHitRespBodyBytes() int64 { if o == nil || o.HitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.HitRespBodyBytes @@ -4449,7 +4449,7 @@ func (o *RealtimeMeasurements) GetHitRespBodyBytes() int32 { // GetHitRespBodyBytesOk returns a tuple with the HitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetHitRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.HitRespBodyBytes == nil { return nil, false } @@ -4465,15 +4465,15 @@ func (o *RealtimeMeasurements) HasHitRespBodyBytes() bool { return false } -// SetHitRespBodyBytes gets a reference to the given int32 and assigns it to the HitRespBodyBytes field. -func (o *RealtimeMeasurements) SetHitRespBodyBytes(v int32) { +// SetHitRespBodyBytes gets a reference to the given int64 and assigns it to the HitRespBodyBytes field. +func (o *RealtimeMeasurements) SetHitRespBodyBytes(v int64) { o.HitRespBodyBytes = &v } // GetMissRespBodyBytes returns the MissRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetMissRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetMissRespBodyBytes() int64 { if o == nil || o.MissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.MissRespBodyBytes @@ -4481,7 +4481,7 @@ func (o *RealtimeMeasurements) GetMissRespBodyBytes() int32 { // GetMissRespBodyBytesOk returns a tuple with the MissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetMissRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.MissRespBodyBytes == nil { return nil, false } @@ -4497,15 +4497,15 @@ func (o *RealtimeMeasurements) HasMissRespBodyBytes() bool { return false } -// SetMissRespBodyBytes gets a reference to the given int32 and assigns it to the MissRespBodyBytes field. -func (o *RealtimeMeasurements) SetMissRespBodyBytes(v int32) { +// SetMissRespBodyBytes gets a reference to the given int64 and assigns it to the MissRespBodyBytes field. +func (o *RealtimeMeasurements) SetMissRespBodyBytes(v int64) { o.MissRespBodyBytes = &v } // GetPassRespBodyBytes returns the PassRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetPassRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetPassRespBodyBytes() int64 { if o == nil || o.PassRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.PassRespBodyBytes @@ -4513,7 +4513,7 @@ func (o *RealtimeMeasurements) GetPassRespBodyBytes() int32 { // GetPassRespBodyBytesOk returns a tuple with the PassRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetPassRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetPassRespBodyBytesOk() (*int64, bool) { if o == nil || o.PassRespBodyBytes == nil { return nil, false } @@ -4529,15 +4529,15 @@ func (o *RealtimeMeasurements) HasPassRespBodyBytes() bool { return false } -// SetPassRespBodyBytes gets a reference to the given int32 and assigns it to the PassRespBodyBytes field. -func (o *RealtimeMeasurements) SetPassRespBodyBytes(v int32) { +// SetPassRespBodyBytes gets a reference to the given int64 and assigns it to the PassRespBodyBytes field. +func (o *RealtimeMeasurements) SetPassRespBodyBytes(v int64) { o.PassRespBodyBytes = &v } // GetComputeReqHeaderBytes returns the ComputeReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeReqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetComputeReqHeaderBytes() int64 { if o == nil || o.ComputeReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeReqHeaderBytes @@ -4545,7 +4545,7 @@ func (o *RealtimeMeasurements) GetComputeReqHeaderBytes() int32 { // GetComputeReqHeaderBytesOk returns a tuple with the ComputeReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeReqHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeReqHeaderBytes == nil { return nil, false } @@ -4561,15 +4561,15 @@ func (o *RealtimeMeasurements) HasComputeReqHeaderBytes() bool { return false } -// SetComputeReqHeaderBytes gets a reference to the given int32 and assigns it to the ComputeReqHeaderBytes field. -func (o *RealtimeMeasurements) SetComputeReqHeaderBytes(v int32) { +// SetComputeReqHeaderBytes gets a reference to the given int64 and assigns it to the ComputeReqHeaderBytes field. +func (o *RealtimeMeasurements) SetComputeReqHeaderBytes(v int64) { o.ComputeReqHeaderBytes = &v } // GetComputeReqBodyBytes returns the ComputeReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeReqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetComputeReqBodyBytes() int64 { if o == nil || o.ComputeReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeReqBodyBytes @@ -4577,7 +4577,7 @@ func (o *RealtimeMeasurements) GetComputeReqBodyBytes() int32 { // GetComputeReqBodyBytesOk returns a tuple with the ComputeReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeReqBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeReqBodyBytes == nil { return nil, false } @@ -4593,15 +4593,15 @@ func (o *RealtimeMeasurements) HasComputeReqBodyBytes() bool { return false } -// SetComputeReqBodyBytes gets a reference to the given int32 and assigns it to the ComputeReqBodyBytes field. -func (o *RealtimeMeasurements) SetComputeReqBodyBytes(v int32) { +// SetComputeReqBodyBytes gets a reference to the given int64 and assigns it to the ComputeReqBodyBytes field. +func (o *RealtimeMeasurements) SetComputeReqBodyBytes(v int64) { o.ComputeReqBodyBytes = &v } // GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetComputeRespHeaderBytes() int64 { if o == nil || o.ComputeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespHeaderBytes @@ -4609,7 +4609,7 @@ func (o *RealtimeMeasurements) GetComputeRespHeaderBytes() int32 { // GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeRespHeaderBytes == nil { return nil, false } @@ -4625,15 +4625,15 @@ func (o *RealtimeMeasurements) HasComputeRespHeaderBytes() bool { return false } -// SetComputeRespHeaderBytes gets a reference to the given int32 and assigns it to the ComputeRespHeaderBytes field. -func (o *RealtimeMeasurements) SetComputeRespHeaderBytes(v int32) { +// SetComputeRespHeaderBytes gets a reference to the given int64 and assigns it to the ComputeRespHeaderBytes field. +func (o *RealtimeMeasurements) SetComputeRespHeaderBytes(v int64) { o.ComputeRespHeaderBytes = &v } // GetComputeRespBodyBytes returns the ComputeRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetComputeRespBodyBytes() int64 { if o == nil || o.ComputeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespBodyBytes @@ -4641,7 +4641,7 @@ func (o *RealtimeMeasurements) GetComputeRespBodyBytes() int32 { // GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRespBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeRespBodyBytes == nil { return nil, false } @@ -4657,15 +4657,15 @@ func (o *RealtimeMeasurements) HasComputeRespBodyBytes() bool { return false } -// SetComputeRespBodyBytes gets a reference to the given int32 and assigns it to the ComputeRespBodyBytes field. -func (o *RealtimeMeasurements) SetComputeRespBodyBytes(v int32) { +// SetComputeRespBodyBytes gets a reference to the given int64 and assigns it to the ComputeRespBodyBytes field. +func (o *RealtimeMeasurements) SetComputeRespBodyBytes(v int64) { o.ComputeRespBodyBytes = &v } // GetImgvideo returns the Imgvideo field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgvideo() int32 { +func (o *RealtimeMeasurements) GetImgvideo() int64 { if o == nil || o.Imgvideo == nil { - var ret int32 + var ret int64 return ret } return *o.Imgvideo @@ -4673,7 +4673,7 @@ func (o *RealtimeMeasurements) GetImgvideo() int32 { // GetImgvideoOk returns a tuple with the Imgvideo field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgvideoOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgvideoOk() (*int64, bool) { if o == nil || o.Imgvideo == nil { return nil, false } @@ -4689,15 +4689,15 @@ func (o *RealtimeMeasurements) HasImgvideo() bool { return false } -// SetImgvideo gets a reference to the given int32 and assigns it to the Imgvideo field. -func (o *RealtimeMeasurements) SetImgvideo(v int32) { +// SetImgvideo gets a reference to the given int64 and assigns it to the Imgvideo field. +func (o *RealtimeMeasurements) SetImgvideo(v int64) { o.Imgvideo = &v } // GetImgvideoFrames returns the ImgvideoFrames field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgvideoFrames() int32 { +func (o *RealtimeMeasurements) GetImgvideoFrames() int64 { if o == nil || o.ImgvideoFrames == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoFrames @@ -4705,7 +4705,7 @@ func (o *RealtimeMeasurements) GetImgvideoFrames() int32 { // GetImgvideoFramesOk returns a tuple with the ImgvideoFrames field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgvideoFramesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgvideoFramesOk() (*int64, bool) { if o == nil || o.ImgvideoFrames == nil { return nil, false } @@ -4721,15 +4721,15 @@ func (o *RealtimeMeasurements) HasImgvideoFrames() bool { return false } -// SetImgvideoFrames gets a reference to the given int32 and assigns it to the ImgvideoFrames field. -func (o *RealtimeMeasurements) SetImgvideoFrames(v int32) { +// SetImgvideoFrames gets a reference to the given int64 and assigns it to the ImgvideoFrames field. +func (o *RealtimeMeasurements) SetImgvideoFrames(v int64) { o.ImgvideoFrames = &v } // GetImgvideoRespHeaderBytes returns the ImgvideoRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytes() int64 { if o == nil || o.ImgvideoRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoRespHeaderBytes @@ -4737,7 +4737,7 @@ func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytes() int32 { // GetImgvideoRespHeaderBytesOk returns a tuple with the ImgvideoRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgvideoRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgvideoRespHeaderBytes == nil { return nil, false } @@ -4753,15 +4753,15 @@ func (o *RealtimeMeasurements) HasImgvideoRespHeaderBytes() bool { return false } -// SetImgvideoRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgvideoRespHeaderBytes field. -func (o *RealtimeMeasurements) SetImgvideoRespHeaderBytes(v int32) { +// SetImgvideoRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgvideoRespHeaderBytes field. +func (o *RealtimeMeasurements) SetImgvideoRespHeaderBytes(v int64) { o.ImgvideoRespHeaderBytes = &v } // GetImgvideoRespBodyBytes returns the ImgvideoRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgvideoRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetImgvideoRespBodyBytes() int64 { if o == nil || o.ImgvideoRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoRespBodyBytes @@ -4769,7 +4769,7 @@ func (o *RealtimeMeasurements) GetImgvideoRespBodyBytes() int32 { // GetImgvideoRespBodyBytesOk returns a tuple with the ImgvideoRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgvideoRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgvideoRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgvideoRespBodyBytes == nil { return nil, false } @@ -4785,15 +4785,15 @@ func (o *RealtimeMeasurements) HasImgvideoRespBodyBytes() bool { return false } -// SetImgvideoRespBodyBytes gets a reference to the given int32 and assigns it to the ImgvideoRespBodyBytes field. -func (o *RealtimeMeasurements) SetImgvideoRespBodyBytes(v int32) { +// SetImgvideoRespBodyBytes gets a reference to the given int64 and assigns it to the ImgvideoRespBodyBytes field. +func (o *RealtimeMeasurements) SetImgvideoRespBodyBytes(v int64) { o.ImgvideoRespBodyBytes = &v } // GetImgvideoShield returns the ImgvideoShield field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgvideoShield() int32 { +func (o *RealtimeMeasurements) GetImgvideoShield() int64 { if o == nil || o.ImgvideoShield == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShield @@ -4801,7 +4801,7 @@ func (o *RealtimeMeasurements) GetImgvideoShield() int32 { // GetImgvideoShieldOk returns a tuple with the ImgvideoShield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgvideoShieldOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgvideoShieldOk() (*int64, bool) { if o == nil || o.ImgvideoShield == nil { return nil, false } @@ -4817,15 +4817,15 @@ func (o *RealtimeMeasurements) HasImgvideoShield() bool { return false } -// SetImgvideoShield gets a reference to the given int32 and assigns it to the ImgvideoShield field. -func (o *RealtimeMeasurements) SetImgvideoShield(v int32) { +// SetImgvideoShield gets a reference to the given int64 and assigns it to the ImgvideoShield field. +func (o *RealtimeMeasurements) SetImgvideoShield(v int64) { o.ImgvideoShield = &v } // GetImgvideoShieldFrames returns the ImgvideoShieldFrames field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgvideoShieldFrames() int32 { +func (o *RealtimeMeasurements) GetImgvideoShieldFrames() int64 { if o == nil || o.ImgvideoShieldFrames == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldFrames @@ -4833,7 +4833,7 @@ func (o *RealtimeMeasurements) GetImgvideoShieldFrames() int32 { // GetImgvideoShieldFramesOk returns a tuple with the ImgvideoShieldFrames field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgvideoShieldFramesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgvideoShieldFramesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldFrames == nil { return nil, false } @@ -4849,15 +4849,15 @@ func (o *RealtimeMeasurements) HasImgvideoShieldFrames() bool { return false } -// SetImgvideoShieldFrames gets a reference to the given int32 and assigns it to the ImgvideoShieldFrames field. -func (o *RealtimeMeasurements) SetImgvideoShieldFrames(v int32) { +// SetImgvideoShieldFrames gets a reference to the given int64 and assigns it to the ImgvideoShieldFrames field. +func (o *RealtimeMeasurements) SetImgvideoShieldFrames(v int64) { o.ImgvideoShieldFrames = &v } // GetImgvideoShieldRespHeaderBytes returns the ImgvideoShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytes() int64 { if o == nil || o.ImgvideoShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldRespHeaderBytes @@ -4865,7 +4865,7 @@ func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytes() int32 { // GetImgvideoShieldRespHeaderBytesOk returns a tuple with the ImgvideoShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgvideoShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldRespHeaderBytes == nil { return nil, false } @@ -4881,15 +4881,15 @@ func (o *RealtimeMeasurements) HasImgvideoShieldRespHeaderBytes() bool { return false } -// SetImgvideoShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgvideoShieldRespHeaderBytes field. -func (o *RealtimeMeasurements) SetImgvideoShieldRespHeaderBytes(v int32) { +// SetImgvideoShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgvideoShieldRespHeaderBytes field. +func (o *RealtimeMeasurements) SetImgvideoShieldRespHeaderBytes(v int64) { o.ImgvideoShieldRespHeaderBytes = &v } // GetImgvideoShieldRespBodyBytes returns the ImgvideoShieldRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytes() int64 { if o == nil || o.ImgvideoShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldRespBodyBytes @@ -4897,7 +4897,7 @@ func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytes() int32 { // GetImgvideoShieldRespBodyBytesOk returns a tuple with the ImgvideoShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetImgvideoShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldRespBodyBytes == nil { return nil, false } @@ -4913,15 +4913,15 @@ func (o *RealtimeMeasurements) HasImgvideoShieldRespBodyBytes() bool { return false } -// SetImgvideoShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ImgvideoShieldRespBodyBytes field. -func (o *RealtimeMeasurements) SetImgvideoShieldRespBodyBytes(v int32) { +// SetImgvideoShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ImgvideoShieldRespBodyBytes field. +func (o *RealtimeMeasurements) SetImgvideoShieldRespBodyBytes(v int64) { o.ImgvideoShieldRespBodyBytes = &v } // GetLogBytes returns the LogBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetLogBytes() int32 { +func (o *RealtimeMeasurements) GetLogBytes() int64 { if o == nil || o.LogBytes == nil { - var ret int32 + var ret int64 return ret } return *o.LogBytes @@ -4929,7 +4929,7 @@ func (o *RealtimeMeasurements) GetLogBytes() int32 { // GetLogBytesOk returns a tuple with the LogBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetLogBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetLogBytesOk() (*int64, bool) { if o == nil || o.LogBytes == nil { return nil, false } @@ -4945,15 +4945,15 @@ func (o *RealtimeMeasurements) HasLogBytes() bool { return false } -// SetLogBytes gets a reference to the given int32 and assigns it to the LogBytes field. -func (o *RealtimeMeasurements) SetLogBytes(v int32) { +// SetLogBytes gets a reference to the given int64 and assigns it to the LogBytes field. +func (o *RealtimeMeasurements) SetLogBytes(v int64) { o.LogBytes = &v } // GetEdgeRequests returns the EdgeRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeRequests() int32 { +func (o *RealtimeMeasurements) GetEdgeRequests() int64 { if o == nil || o.EdgeRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRequests @@ -4961,7 +4961,7 @@ func (o *RealtimeMeasurements) GetEdgeRequests() int32 { // GetEdgeRequestsOk returns a tuple with the EdgeRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeRequestsOk() (*int64, bool) { if o == nil || o.EdgeRequests == nil { return nil, false } @@ -4977,15 +4977,15 @@ func (o *RealtimeMeasurements) HasEdgeRequests() bool { return false } -// SetEdgeRequests gets a reference to the given int32 and assigns it to the EdgeRequests field. -func (o *RealtimeMeasurements) SetEdgeRequests(v int32) { +// SetEdgeRequests gets a reference to the given int64 and assigns it to the EdgeRequests field. +func (o *RealtimeMeasurements) SetEdgeRequests(v int64) { o.EdgeRequests = &v } // GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetEdgeRespHeaderBytes() int64 { if o == nil || o.EdgeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespHeaderBytes @@ -4993,7 +4993,7 @@ func (o *RealtimeMeasurements) GetEdgeRespHeaderBytes() int32 { // GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeRespHeaderBytes == nil { return nil, false } @@ -5009,15 +5009,15 @@ func (o *RealtimeMeasurements) HasEdgeRespHeaderBytes() bool { return false } -// SetEdgeRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeRespHeaderBytes field. -func (o *RealtimeMeasurements) SetEdgeRespHeaderBytes(v int32) { +// SetEdgeRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeRespHeaderBytes field. +func (o *RealtimeMeasurements) SetEdgeRespHeaderBytes(v int64) { o.EdgeRespHeaderBytes = &v } // GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetEdgeRespBodyBytes() int64 { if o == nil || o.EdgeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespBodyBytes @@ -5025,7 +5025,7 @@ func (o *RealtimeMeasurements) GetEdgeRespBodyBytes() int32 { // GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeRespBodyBytes == nil { return nil, false } @@ -5041,15 +5041,15 @@ func (o *RealtimeMeasurements) HasEdgeRespBodyBytes() bool { return false } -// SetEdgeRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeRespBodyBytes field. -func (o *RealtimeMeasurements) SetEdgeRespBodyBytes(v int32) { +// SetEdgeRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeRespBodyBytes field. +func (o *RealtimeMeasurements) SetEdgeRespBodyBytes(v int64) { o.EdgeRespBodyBytes = &v } // GetOriginRevalidations returns the OriginRevalidations field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginRevalidations() int32 { +func (o *RealtimeMeasurements) GetOriginRevalidations() int64 { if o == nil || o.OriginRevalidations == nil { - var ret int32 + var ret int64 return ret } return *o.OriginRevalidations @@ -5057,7 +5057,7 @@ func (o *RealtimeMeasurements) GetOriginRevalidations() int32 { // GetOriginRevalidationsOk returns a tuple with the OriginRevalidations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginRevalidationsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginRevalidationsOk() (*int64, bool) { if o == nil || o.OriginRevalidations == nil { return nil, false } @@ -5073,15 +5073,15 @@ func (o *RealtimeMeasurements) HasOriginRevalidations() bool { return false } -// SetOriginRevalidations gets a reference to the given int32 and assigns it to the OriginRevalidations field. -func (o *RealtimeMeasurements) SetOriginRevalidations(v int32) { +// SetOriginRevalidations gets a reference to the given int64 and assigns it to the OriginRevalidations field. +func (o *RealtimeMeasurements) SetOriginRevalidations(v int64) { o.OriginRevalidations = &v } // GetOriginFetches returns the OriginFetches field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginFetches() int32 { +func (o *RealtimeMeasurements) GetOriginFetches() int64 { if o == nil || o.OriginFetches == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetches @@ -5089,7 +5089,7 @@ func (o *RealtimeMeasurements) GetOriginFetches() int32 { // GetOriginFetchesOk returns a tuple with the OriginFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginFetchesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginFetchesOk() (*int64, bool) { if o == nil || o.OriginFetches == nil { return nil, false } @@ -5105,15 +5105,15 @@ func (o *RealtimeMeasurements) HasOriginFetches() bool { return false } -// SetOriginFetches gets a reference to the given int32 and assigns it to the OriginFetches field. -func (o *RealtimeMeasurements) SetOriginFetches(v int32) { +// SetOriginFetches gets a reference to the given int64 and assigns it to the OriginFetches field. +func (o *RealtimeMeasurements) SetOriginFetches(v int64) { o.OriginFetches = &v } // GetOriginFetchHeaderBytes returns the OriginFetchHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginFetchHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetOriginFetchHeaderBytes() int64 { if o == nil || o.OriginFetchHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchHeaderBytes @@ -5121,7 +5121,7 @@ func (o *RealtimeMeasurements) GetOriginFetchHeaderBytes() int32 { // GetOriginFetchHeaderBytesOk returns a tuple with the OriginFetchHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginFetchHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginFetchHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginFetchHeaderBytes == nil { return nil, false } @@ -5137,15 +5137,15 @@ func (o *RealtimeMeasurements) HasOriginFetchHeaderBytes() bool { return false } -// SetOriginFetchHeaderBytes gets a reference to the given int32 and assigns it to the OriginFetchHeaderBytes field. -func (o *RealtimeMeasurements) SetOriginFetchHeaderBytes(v int32) { +// SetOriginFetchHeaderBytes gets a reference to the given int64 and assigns it to the OriginFetchHeaderBytes field. +func (o *RealtimeMeasurements) SetOriginFetchHeaderBytes(v int64) { o.OriginFetchHeaderBytes = &v } // GetOriginFetchBodyBytes returns the OriginFetchBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginFetchBodyBytes() int32 { +func (o *RealtimeMeasurements) GetOriginFetchBodyBytes() int64 { if o == nil || o.OriginFetchBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchBodyBytes @@ -5153,7 +5153,7 @@ func (o *RealtimeMeasurements) GetOriginFetchBodyBytes() int32 { // GetOriginFetchBodyBytesOk returns a tuple with the OriginFetchBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginFetchBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginFetchBodyBytesOk() (*int64, bool) { if o == nil || o.OriginFetchBodyBytes == nil { return nil, false } @@ -5169,15 +5169,15 @@ func (o *RealtimeMeasurements) HasOriginFetchBodyBytes() bool { return false } -// SetOriginFetchBodyBytes gets a reference to the given int32 and assigns it to the OriginFetchBodyBytes field. -func (o *RealtimeMeasurements) SetOriginFetchBodyBytes(v int32) { +// SetOriginFetchBodyBytes gets a reference to the given int64 and assigns it to the OriginFetchBodyBytes field. +func (o *RealtimeMeasurements) SetOriginFetchBodyBytes(v int64) { o.OriginFetchBodyBytes = &v } // GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytes() int64 { if o == nil || o.OriginFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespHeaderBytes @@ -5185,7 +5185,7 @@ func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytes() int32 { // GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespHeaderBytes == nil { return nil, false } @@ -5201,15 +5201,15 @@ func (o *RealtimeMeasurements) HasOriginFetchRespHeaderBytes() bool { return false } -// SetOriginFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the OriginFetchRespHeaderBytes field. -func (o *RealtimeMeasurements) SetOriginFetchRespHeaderBytes(v int32) { +// SetOriginFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the OriginFetchRespHeaderBytes field. +func (o *RealtimeMeasurements) SetOriginFetchRespHeaderBytes(v int64) { o.OriginFetchRespHeaderBytes = &v } // GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytes() int64 { if o == nil || o.OriginFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespBodyBytes @@ -5217,7 +5217,7 @@ func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytes() int32 { // GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespBodyBytes == nil { return nil, false } @@ -5233,15 +5233,15 @@ func (o *RealtimeMeasurements) HasOriginFetchRespBodyBytes() bool { return false } -// SetOriginFetchRespBodyBytes gets a reference to the given int32 and assigns it to the OriginFetchRespBodyBytes field. -func (o *RealtimeMeasurements) SetOriginFetchRespBodyBytes(v int32) { +// SetOriginFetchRespBodyBytes gets a reference to the given int64 and assigns it to the OriginFetchRespBodyBytes field. +func (o *RealtimeMeasurements) SetOriginFetchRespBodyBytes(v int64) { o.OriginFetchRespBodyBytes = &v } // GetShieldRevalidations returns the ShieldRevalidations field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldRevalidations() int32 { +func (o *RealtimeMeasurements) GetShieldRevalidations() int64 { if o == nil || o.ShieldRevalidations == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRevalidations @@ -5249,7 +5249,7 @@ func (o *RealtimeMeasurements) GetShieldRevalidations() int32 { // GetShieldRevalidationsOk returns a tuple with the ShieldRevalidations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldRevalidationsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldRevalidationsOk() (*int64, bool) { if o == nil || o.ShieldRevalidations == nil { return nil, false } @@ -5265,15 +5265,15 @@ func (o *RealtimeMeasurements) HasShieldRevalidations() bool { return false } -// SetShieldRevalidations gets a reference to the given int32 and assigns it to the ShieldRevalidations field. -func (o *RealtimeMeasurements) SetShieldRevalidations(v int32) { +// SetShieldRevalidations gets a reference to the given int64 and assigns it to the ShieldRevalidations field. +func (o *RealtimeMeasurements) SetShieldRevalidations(v int64) { o.ShieldRevalidations = &v } // GetShieldFetches returns the ShieldFetches field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldFetches() int32 { +func (o *RealtimeMeasurements) GetShieldFetches() int64 { if o == nil || o.ShieldFetches == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetches @@ -5281,7 +5281,7 @@ func (o *RealtimeMeasurements) GetShieldFetches() int32 { // GetShieldFetchesOk returns a tuple with the ShieldFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldFetchesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldFetchesOk() (*int64, bool) { if o == nil || o.ShieldFetches == nil { return nil, false } @@ -5297,15 +5297,15 @@ func (o *RealtimeMeasurements) HasShieldFetches() bool { return false } -// SetShieldFetches gets a reference to the given int32 and assigns it to the ShieldFetches field. -func (o *RealtimeMeasurements) SetShieldFetches(v int32) { +// SetShieldFetches gets a reference to the given int64 and assigns it to the ShieldFetches field. +func (o *RealtimeMeasurements) SetShieldFetches(v int64) { o.ShieldFetches = &v } // GetShieldFetchHeaderBytes returns the ShieldFetchHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldFetchHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetShieldFetchHeaderBytes() int64 { if o == nil || o.ShieldFetchHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchHeaderBytes @@ -5313,7 +5313,7 @@ func (o *RealtimeMeasurements) GetShieldFetchHeaderBytes() int32 { // GetShieldFetchHeaderBytesOk returns a tuple with the ShieldFetchHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldFetchHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldFetchHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchHeaderBytes == nil { return nil, false } @@ -5329,15 +5329,15 @@ func (o *RealtimeMeasurements) HasShieldFetchHeaderBytes() bool { return false } -// SetShieldFetchHeaderBytes gets a reference to the given int32 and assigns it to the ShieldFetchHeaderBytes field. -func (o *RealtimeMeasurements) SetShieldFetchHeaderBytes(v int32) { +// SetShieldFetchHeaderBytes gets a reference to the given int64 and assigns it to the ShieldFetchHeaderBytes field. +func (o *RealtimeMeasurements) SetShieldFetchHeaderBytes(v int64) { o.ShieldFetchHeaderBytes = &v } // GetShieldFetchBodyBytes returns the ShieldFetchBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldFetchBodyBytes() int32 { +func (o *RealtimeMeasurements) GetShieldFetchBodyBytes() int64 { if o == nil || o.ShieldFetchBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchBodyBytes @@ -5345,7 +5345,7 @@ func (o *RealtimeMeasurements) GetShieldFetchBodyBytes() int32 { // GetShieldFetchBodyBytesOk returns a tuple with the ShieldFetchBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldFetchBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldFetchBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchBodyBytes == nil { return nil, false } @@ -5361,15 +5361,15 @@ func (o *RealtimeMeasurements) HasShieldFetchBodyBytes() bool { return false } -// SetShieldFetchBodyBytes gets a reference to the given int32 and assigns it to the ShieldFetchBodyBytes field. -func (o *RealtimeMeasurements) SetShieldFetchBodyBytes(v int32) { +// SetShieldFetchBodyBytes gets a reference to the given int64 and assigns it to the ShieldFetchBodyBytes field. +func (o *RealtimeMeasurements) SetShieldFetchBodyBytes(v int64) { o.ShieldFetchBodyBytes = &v } // GetShieldFetchRespHeaderBytes returns the ShieldFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytes() int64 { if o == nil || o.ShieldFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchRespHeaderBytes @@ -5377,7 +5377,7 @@ func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytes() int32 { // GetShieldFetchRespHeaderBytesOk returns a tuple with the ShieldFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchRespHeaderBytes == nil { return nil, false } @@ -5393,15 +5393,15 @@ func (o *RealtimeMeasurements) HasShieldFetchRespHeaderBytes() bool { return false } -// SetShieldFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldFetchRespHeaderBytes field. -func (o *RealtimeMeasurements) SetShieldFetchRespHeaderBytes(v int32) { +// SetShieldFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldFetchRespHeaderBytes field. +func (o *RealtimeMeasurements) SetShieldFetchRespHeaderBytes(v int64) { o.ShieldFetchRespHeaderBytes = &v } // GetShieldFetchRespBodyBytes returns the ShieldFetchRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytes() int64 { if o == nil || o.ShieldFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchRespBodyBytes @@ -5409,7 +5409,7 @@ func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytes() int32 { // GetShieldFetchRespBodyBytesOk returns a tuple with the ShieldFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchRespBodyBytes == nil { return nil, false } @@ -5425,15 +5425,15 @@ func (o *RealtimeMeasurements) HasShieldFetchRespBodyBytes() bool { return false } -// SetShieldFetchRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldFetchRespBodyBytes field. -func (o *RealtimeMeasurements) SetShieldFetchRespBodyBytes(v int32) { +// SetShieldFetchRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldFetchRespBodyBytes field. +func (o *RealtimeMeasurements) SetShieldFetchRespBodyBytes(v int64) { o.ShieldFetchRespBodyBytes = &v } // GetSegblockOriginFetches returns the SegblockOriginFetches field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetSegblockOriginFetches() int32 { +func (o *RealtimeMeasurements) GetSegblockOriginFetches() int64 { if o == nil || o.SegblockOriginFetches == nil { - var ret int32 + var ret int64 return ret } return *o.SegblockOriginFetches @@ -5441,7 +5441,7 @@ func (o *RealtimeMeasurements) GetSegblockOriginFetches() int32 { // GetSegblockOriginFetchesOk returns a tuple with the SegblockOriginFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetSegblockOriginFetchesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetSegblockOriginFetchesOk() (*int64, bool) { if o == nil || o.SegblockOriginFetches == nil { return nil, false } @@ -5457,15 +5457,15 @@ func (o *RealtimeMeasurements) HasSegblockOriginFetches() bool { return false } -// SetSegblockOriginFetches gets a reference to the given int32 and assigns it to the SegblockOriginFetches field. -func (o *RealtimeMeasurements) SetSegblockOriginFetches(v int32) { +// SetSegblockOriginFetches gets a reference to the given int64 and assigns it to the SegblockOriginFetches field. +func (o *RealtimeMeasurements) SetSegblockOriginFetches(v int64) { o.SegblockOriginFetches = &v } // GetSegblockShieldFetches returns the SegblockShieldFetches field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetSegblockShieldFetches() int32 { +func (o *RealtimeMeasurements) GetSegblockShieldFetches() int64 { if o == nil || o.SegblockShieldFetches == nil { - var ret int32 + var ret int64 return ret } return *o.SegblockShieldFetches @@ -5473,7 +5473,7 @@ func (o *RealtimeMeasurements) GetSegblockShieldFetches() int32 { // GetSegblockShieldFetchesOk returns a tuple with the SegblockShieldFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetSegblockShieldFetchesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetSegblockShieldFetchesOk() (*int64, bool) { if o == nil || o.SegblockShieldFetches == nil { return nil, false } @@ -5489,15 +5489,15 @@ func (o *RealtimeMeasurements) HasSegblockShieldFetches() bool { return false } -// SetSegblockShieldFetches gets a reference to the given int32 and assigns it to the SegblockShieldFetches field. -func (o *RealtimeMeasurements) SetSegblockShieldFetches(v int32) { +// SetSegblockShieldFetches gets a reference to the given int64 and assigns it to the SegblockShieldFetches field. +func (o *RealtimeMeasurements) SetSegblockShieldFetches(v int64) { o.SegblockShieldFetches = &v } // GetComputeRespStatus1xx returns the ComputeRespStatus1xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRespStatus1xx() int32 { +func (o *RealtimeMeasurements) GetComputeRespStatus1xx() int64 { if o == nil || o.ComputeRespStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus1xx @@ -5505,7 +5505,7 @@ func (o *RealtimeMeasurements) GetComputeRespStatus1xx() int32 { // GetComputeRespStatus1xxOk returns a tuple with the ComputeRespStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRespStatus1xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRespStatus1xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus1xx == nil { return nil, false } @@ -5521,15 +5521,15 @@ func (o *RealtimeMeasurements) HasComputeRespStatus1xx() bool { return false } -// SetComputeRespStatus1xx gets a reference to the given int32 and assigns it to the ComputeRespStatus1xx field. -func (o *RealtimeMeasurements) SetComputeRespStatus1xx(v int32) { +// SetComputeRespStatus1xx gets a reference to the given int64 and assigns it to the ComputeRespStatus1xx field. +func (o *RealtimeMeasurements) SetComputeRespStatus1xx(v int64) { o.ComputeRespStatus1xx = &v } // GetComputeRespStatus2xx returns the ComputeRespStatus2xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRespStatus2xx() int32 { +func (o *RealtimeMeasurements) GetComputeRespStatus2xx() int64 { if o == nil || o.ComputeRespStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus2xx @@ -5537,7 +5537,7 @@ func (o *RealtimeMeasurements) GetComputeRespStatus2xx() int32 { // GetComputeRespStatus2xxOk returns a tuple with the ComputeRespStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRespStatus2xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRespStatus2xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus2xx == nil { return nil, false } @@ -5553,15 +5553,15 @@ func (o *RealtimeMeasurements) HasComputeRespStatus2xx() bool { return false } -// SetComputeRespStatus2xx gets a reference to the given int32 and assigns it to the ComputeRespStatus2xx field. -func (o *RealtimeMeasurements) SetComputeRespStatus2xx(v int32) { +// SetComputeRespStatus2xx gets a reference to the given int64 and assigns it to the ComputeRespStatus2xx field. +func (o *RealtimeMeasurements) SetComputeRespStatus2xx(v int64) { o.ComputeRespStatus2xx = &v } // GetComputeRespStatus3xx returns the ComputeRespStatus3xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRespStatus3xx() int32 { +func (o *RealtimeMeasurements) GetComputeRespStatus3xx() int64 { if o == nil || o.ComputeRespStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus3xx @@ -5569,7 +5569,7 @@ func (o *RealtimeMeasurements) GetComputeRespStatus3xx() int32 { // GetComputeRespStatus3xxOk returns a tuple with the ComputeRespStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRespStatus3xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRespStatus3xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus3xx == nil { return nil, false } @@ -5585,15 +5585,15 @@ func (o *RealtimeMeasurements) HasComputeRespStatus3xx() bool { return false } -// SetComputeRespStatus3xx gets a reference to the given int32 and assigns it to the ComputeRespStatus3xx field. -func (o *RealtimeMeasurements) SetComputeRespStatus3xx(v int32) { +// SetComputeRespStatus3xx gets a reference to the given int64 and assigns it to the ComputeRespStatus3xx field. +func (o *RealtimeMeasurements) SetComputeRespStatus3xx(v int64) { o.ComputeRespStatus3xx = &v } // GetComputeRespStatus4xx returns the ComputeRespStatus4xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRespStatus4xx() int32 { +func (o *RealtimeMeasurements) GetComputeRespStatus4xx() int64 { if o == nil || o.ComputeRespStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus4xx @@ -5601,7 +5601,7 @@ func (o *RealtimeMeasurements) GetComputeRespStatus4xx() int32 { // GetComputeRespStatus4xxOk returns a tuple with the ComputeRespStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRespStatus4xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRespStatus4xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus4xx == nil { return nil, false } @@ -5617,15 +5617,15 @@ func (o *RealtimeMeasurements) HasComputeRespStatus4xx() bool { return false } -// SetComputeRespStatus4xx gets a reference to the given int32 and assigns it to the ComputeRespStatus4xx field. -func (o *RealtimeMeasurements) SetComputeRespStatus4xx(v int32) { +// SetComputeRespStatus4xx gets a reference to the given int64 and assigns it to the ComputeRespStatus4xx field. +func (o *RealtimeMeasurements) SetComputeRespStatus4xx(v int64) { o.ComputeRespStatus4xx = &v } // GetComputeRespStatus5xx returns the ComputeRespStatus5xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRespStatus5xx() int32 { +func (o *RealtimeMeasurements) GetComputeRespStatus5xx() int64 { if o == nil || o.ComputeRespStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus5xx @@ -5633,7 +5633,7 @@ func (o *RealtimeMeasurements) GetComputeRespStatus5xx() int32 { // GetComputeRespStatus5xxOk returns a tuple with the ComputeRespStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRespStatus5xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRespStatus5xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus5xx == nil { return nil, false } @@ -5649,15 +5649,15 @@ func (o *RealtimeMeasurements) HasComputeRespStatus5xx() bool { return false } -// SetComputeRespStatus5xx gets a reference to the given int32 and assigns it to the ComputeRespStatus5xx field. -func (o *RealtimeMeasurements) SetComputeRespStatus5xx(v int32) { +// SetComputeRespStatus5xx gets a reference to the given int64 and assigns it to the ComputeRespStatus5xx field. +func (o *RealtimeMeasurements) SetComputeRespStatus5xx(v int64) { o.ComputeRespStatus5xx = &v } // GetEdgeHitRequests returns the EdgeHitRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeHitRequests() int32 { +func (o *RealtimeMeasurements) GetEdgeHitRequests() int64 { if o == nil || o.EdgeHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRequests @@ -5665,7 +5665,7 @@ func (o *RealtimeMeasurements) GetEdgeHitRequests() int32 { // GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeHitRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeHitRequestsOk() (*int64, bool) { if o == nil || o.EdgeHitRequests == nil { return nil, false } @@ -5681,15 +5681,15 @@ func (o *RealtimeMeasurements) HasEdgeHitRequests() bool { return false } -// SetEdgeHitRequests gets a reference to the given int32 and assigns it to the EdgeHitRequests field. -func (o *RealtimeMeasurements) SetEdgeHitRequests(v int32) { +// SetEdgeHitRequests gets a reference to the given int64 and assigns it to the EdgeHitRequests field. +func (o *RealtimeMeasurements) SetEdgeHitRequests(v int64) { o.EdgeHitRequests = &v } // GetEdgeMissRequests returns the EdgeMissRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeMissRequests() int32 { +func (o *RealtimeMeasurements) GetEdgeMissRequests() int64 { if o == nil || o.EdgeMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRequests @@ -5697,7 +5697,7 @@ func (o *RealtimeMeasurements) GetEdgeMissRequests() int32 { // GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeMissRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeMissRequestsOk() (*int64, bool) { if o == nil || o.EdgeMissRequests == nil { return nil, false } @@ -5713,15 +5713,15 @@ func (o *RealtimeMeasurements) HasEdgeMissRequests() bool { return false } -// SetEdgeMissRequests gets a reference to the given int32 and assigns it to the EdgeMissRequests field. -func (o *RealtimeMeasurements) SetEdgeMissRequests(v int32) { +// SetEdgeMissRequests gets a reference to the given int64 and assigns it to the EdgeMissRequests field. +func (o *RealtimeMeasurements) SetEdgeMissRequests(v int64) { o.EdgeMissRequests = &v } // GetComputeBereqHeaderBytes returns the ComputeBereqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeBereqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetComputeBereqHeaderBytes() int64 { if o == nil || o.ComputeBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqHeaderBytes @@ -5729,7 +5729,7 @@ func (o *RealtimeMeasurements) GetComputeBereqHeaderBytes() int32 { // GetComputeBereqHeaderBytesOk returns a tuple with the ComputeBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeBereqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeBereqHeaderBytes == nil { return nil, false } @@ -5745,15 +5745,15 @@ func (o *RealtimeMeasurements) HasComputeBereqHeaderBytes() bool { return false } -// SetComputeBereqHeaderBytes gets a reference to the given int32 and assigns it to the ComputeBereqHeaderBytes field. -func (o *RealtimeMeasurements) SetComputeBereqHeaderBytes(v int32) { +// SetComputeBereqHeaderBytes gets a reference to the given int64 and assigns it to the ComputeBereqHeaderBytes field. +func (o *RealtimeMeasurements) SetComputeBereqHeaderBytes(v int64) { o.ComputeBereqHeaderBytes = &v } // GetComputeBereqBodyBytes returns the ComputeBereqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeBereqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetComputeBereqBodyBytes() int64 { if o == nil || o.ComputeBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqBodyBytes @@ -5761,7 +5761,7 @@ func (o *RealtimeMeasurements) GetComputeBereqBodyBytes() int32 { // GetComputeBereqBodyBytesOk returns a tuple with the ComputeBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeBereqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeBereqBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeBereqBodyBytes == nil { return nil, false } @@ -5777,15 +5777,15 @@ func (o *RealtimeMeasurements) HasComputeBereqBodyBytes() bool { return false } -// SetComputeBereqBodyBytes gets a reference to the given int32 and assigns it to the ComputeBereqBodyBytes field. -func (o *RealtimeMeasurements) SetComputeBereqBodyBytes(v int32) { +// SetComputeBereqBodyBytes gets a reference to the given int64 and assigns it to the ComputeBereqBodyBytes field. +func (o *RealtimeMeasurements) SetComputeBereqBodyBytes(v int64) { o.ComputeBereqBodyBytes = &v } // GetComputeBerespHeaderBytes returns the ComputeBerespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeBerespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetComputeBerespHeaderBytes() int64 { if o == nil || o.ComputeBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBerespHeaderBytes @@ -5793,7 +5793,7 @@ func (o *RealtimeMeasurements) GetComputeBerespHeaderBytes() int32 { // GetComputeBerespHeaderBytesOk returns a tuple with the ComputeBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeBerespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeBerespHeaderBytes == nil { return nil, false } @@ -5809,15 +5809,15 @@ func (o *RealtimeMeasurements) HasComputeBerespHeaderBytes() bool { return false } -// SetComputeBerespHeaderBytes gets a reference to the given int32 and assigns it to the ComputeBerespHeaderBytes field. -func (o *RealtimeMeasurements) SetComputeBerespHeaderBytes(v int32) { +// SetComputeBerespHeaderBytes gets a reference to the given int64 and assigns it to the ComputeBerespHeaderBytes field. +func (o *RealtimeMeasurements) SetComputeBerespHeaderBytes(v int64) { o.ComputeBerespHeaderBytes = &v } // GetComputeBerespBodyBytes returns the ComputeBerespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeBerespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetComputeBerespBodyBytes() int64 { if o == nil || o.ComputeBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBerespBodyBytes @@ -5825,7 +5825,7 @@ func (o *RealtimeMeasurements) GetComputeBerespBodyBytes() int32 { // GetComputeBerespBodyBytesOk returns a tuple with the ComputeBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeBerespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeBerespBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeBerespBodyBytes == nil { return nil, false } @@ -5841,15 +5841,15 @@ func (o *RealtimeMeasurements) HasComputeBerespBodyBytes() bool { return false } -// SetComputeBerespBodyBytes gets a reference to the given int32 and assigns it to the ComputeBerespBodyBytes field. -func (o *RealtimeMeasurements) SetComputeBerespBodyBytes(v int32) { +// SetComputeBerespBodyBytes gets a reference to the given int64 and assigns it to the ComputeBerespBodyBytes field. +func (o *RealtimeMeasurements) SetComputeBerespBodyBytes(v int64) { o.ComputeBerespBodyBytes = &v } // GetOriginCacheFetches returns the OriginCacheFetches field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginCacheFetches() int32 { +func (o *RealtimeMeasurements) GetOriginCacheFetches() int64 { if o == nil || o.OriginCacheFetches == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetches @@ -5857,7 +5857,7 @@ func (o *RealtimeMeasurements) GetOriginCacheFetches() int32 { // GetOriginCacheFetchesOk returns a tuple with the OriginCacheFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginCacheFetchesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginCacheFetchesOk() (*int64, bool) { if o == nil || o.OriginCacheFetches == nil { return nil, false } @@ -5873,15 +5873,15 @@ func (o *RealtimeMeasurements) HasOriginCacheFetches() bool { return false } -// SetOriginCacheFetches gets a reference to the given int32 and assigns it to the OriginCacheFetches field. -func (o *RealtimeMeasurements) SetOriginCacheFetches(v int32) { +// SetOriginCacheFetches gets a reference to the given int64 and assigns it to the OriginCacheFetches field. +func (o *RealtimeMeasurements) SetOriginCacheFetches(v int64) { o.OriginCacheFetches = &v } // GetShieldCacheFetches returns the ShieldCacheFetches field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldCacheFetches() int32 { +func (o *RealtimeMeasurements) GetShieldCacheFetches() int64 { if o == nil || o.ShieldCacheFetches == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldCacheFetches @@ -5889,7 +5889,7 @@ func (o *RealtimeMeasurements) GetShieldCacheFetches() int32 { // GetShieldCacheFetchesOk returns a tuple with the ShieldCacheFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldCacheFetchesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldCacheFetchesOk() (*int64, bool) { if o == nil || o.ShieldCacheFetches == nil { return nil, false } @@ -5905,15 +5905,15 @@ func (o *RealtimeMeasurements) HasShieldCacheFetches() bool { return false } -// SetShieldCacheFetches gets a reference to the given int32 and assigns it to the ShieldCacheFetches field. -func (o *RealtimeMeasurements) SetShieldCacheFetches(v int32) { +// SetShieldCacheFetches gets a reference to the given int64 and assigns it to the ShieldCacheFetches field. +func (o *RealtimeMeasurements) SetShieldCacheFetches(v int64) { o.ShieldCacheFetches = &v } // GetComputeBereqs returns the ComputeBereqs field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeBereqs() int32 { +func (o *RealtimeMeasurements) GetComputeBereqs() int64 { if o == nil || o.ComputeBereqs == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqs @@ -5921,7 +5921,7 @@ func (o *RealtimeMeasurements) GetComputeBereqs() int32 { // GetComputeBereqsOk returns a tuple with the ComputeBereqs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeBereqsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeBereqsOk() (*int64, bool) { if o == nil || o.ComputeBereqs == nil { return nil, false } @@ -5937,15 +5937,15 @@ func (o *RealtimeMeasurements) HasComputeBereqs() bool { return false } -// SetComputeBereqs gets a reference to the given int32 and assigns it to the ComputeBereqs field. -func (o *RealtimeMeasurements) SetComputeBereqs(v int32) { +// SetComputeBereqs gets a reference to the given int64 and assigns it to the ComputeBereqs field. +func (o *RealtimeMeasurements) SetComputeBereqs(v int64) { o.ComputeBereqs = &v } // GetComputeBereqErrors returns the ComputeBereqErrors field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeBereqErrors() int32 { +func (o *RealtimeMeasurements) GetComputeBereqErrors() int64 { if o == nil || o.ComputeBereqErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqErrors @@ -5953,7 +5953,7 @@ func (o *RealtimeMeasurements) GetComputeBereqErrors() int32 { // GetComputeBereqErrorsOk returns a tuple with the ComputeBereqErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeBereqErrorsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeBereqErrorsOk() (*int64, bool) { if o == nil || o.ComputeBereqErrors == nil { return nil, false } @@ -5969,15 +5969,15 @@ func (o *RealtimeMeasurements) HasComputeBereqErrors() bool { return false } -// SetComputeBereqErrors gets a reference to the given int32 and assigns it to the ComputeBereqErrors field. -func (o *RealtimeMeasurements) SetComputeBereqErrors(v int32) { +// SetComputeBereqErrors gets a reference to the given int64 and assigns it to the ComputeBereqErrors field. +func (o *RealtimeMeasurements) SetComputeBereqErrors(v int64) { o.ComputeBereqErrors = &v } // GetComputeResourceLimitExceeded returns the ComputeResourceLimitExceeded field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeResourceLimitExceeded() int32 { +func (o *RealtimeMeasurements) GetComputeResourceLimitExceeded() int64 { if o == nil || o.ComputeResourceLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeResourceLimitExceeded @@ -5985,7 +5985,7 @@ func (o *RealtimeMeasurements) GetComputeResourceLimitExceeded() int32 { // GetComputeResourceLimitExceededOk returns a tuple with the ComputeResourceLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeResourceLimitExceededOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeResourceLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeResourceLimitExceeded == nil { return nil, false } @@ -6001,15 +6001,15 @@ func (o *RealtimeMeasurements) HasComputeResourceLimitExceeded() bool { return false } -// SetComputeResourceLimitExceeded gets a reference to the given int32 and assigns it to the ComputeResourceLimitExceeded field. -func (o *RealtimeMeasurements) SetComputeResourceLimitExceeded(v int32) { +// SetComputeResourceLimitExceeded gets a reference to the given int64 and assigns it to the ComputeResourceLimitExceeded field. +func (o *RealtimeMeasurements) SetComputeResourceLimitExceeded(v int64) { o.ComputeResourceLimitExceeded = &v } // GetComputeHeapLimitExceeded returns the ComputeHeapLimitExceeded field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeHeapLimitExceeded() int32 { +func (o *RealtimeMeasurements) GetComputeHeapLimitExceeded() int64 { if o == nil || o.ComputeHeapLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeHeapLimitExceeded @@ -6017,7 +6017,7 @@ func (o *RealtimeMeasurements) GetComputeHeapLimitExceeded() int32 { // GetComputeHeapLimitExceededOk returns a tuple with the ComputeHeapLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeHeapLimitExceededOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeHeapLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeHeapLimitExceeded == nil { return nil, false } @@ -6033,15 +6033,15 @@ func (o *RealtimeMeasurements) HasComputeHeapLimitExceeded() bool { return false } -// SetComputeHeapLimitExceeded gets a reference to the given int32 and assigns it to the ComputeHeapLimitExceeded field. -func (o *RealtimeMeasurements) SetComputeHeapLimitExceeded(v int32) { +// SetComputeHeapLimitExceeded gets a reference to the given int64 and assigns it to the ComputeHeapLimitExceeded field. +func (o *RealtimeMeasurements) SetComputeHeapLimitExceeded(v int64) { o.ComputeHeapLimitExceeded = &v } // GetComputeStackLimitExceeded returns the ComputeStackLimitExceeded field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeStackLimitExceeded() int32 { +func (o *RealtimeMeasurements) GetComputeStackLimitExceeded() int64 { if o == nil || o.ComputeStackLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStackLimitExceeded @@ -6049,7 +6049,7 @@ func (o *RealtimeMeasurements) GetComputeStackLimitExceeded() int32 { // GetComputeStackLimitExceededOk returns a tuple with the ComputeStackLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeStackLimitExceededOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeStackLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeStackLimitExceeded == nil { return nil, false } @@ -6065,15 +6065,15 @@ func (o *RealtimeMeasurements) HasComputeStackLimitExceeded() bool { return false } -// SetComputeStackLimitExceeded gets a reference to the given int32 and assigns it to the ComputeStackLimitExceeded field. -func (o *RealtimeMeasurements) SetComputeStackLimitExceeded(v int32) { +// SetComputeStackLimitExceeded gets a reference to the given int64 and assigns it to the ComputeStackLimitExceeded field. +func (o *RealtimeMeasurements) SetComputeStackLimitExceeded(v int64) { o.ComputeStackLimitExceeded = &v } // GetComputeGlobalsLimitExceeded returns the ComputeGlobalsLimitExceeded field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceeded() int32 { +func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceeded() int64 { if o == nil || o.ComputeGlobalsLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeGlobalsLimitExceeded @@ -6081,7 +6081,7 @@ func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceeded() int32 { // GetComputeGlobalsLimitExceededOk returns a tuple with the ComputeGlobalsLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceededOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeGlobalsLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeGlobalsLimitExceeded == nil { return nil, false } @@ -6097,15 +6097,15 @@ func (o *RealtimeMeasurements) HasComputeGlobalsLimitExceeded() bool { return false } -// SetComputeGlobalsLimitExceeded gets a reference to the given int32 and assigns it to the ComputeGlobalsLimitExceeded field. -func (o *RealtimeMeasurements) SetComputeGlobalsLimitExceeded(v int32) { +// SetComputeGlobalsLimitExceeded gets a reference to the given int64 and assigns it to the ComputeGlobalsLimitExceeded field. +func (o *RealtimeMeasurements) SetComputeGlobalsLimitExceeded(v int64) { o.ComputeGlobalsLimitExceeded = &v } // GetComputeGuestErrors returns the ComputeGuestErrors field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeGuestErrors() int32 { +func (o *RealtimeMeasurements) GetComputeGuestErrors() int64 { if o == nil || o.ComputeGuestErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeGuestErrors @@ -6113,7 +6113,7 @@ func (o *RealtimeMeasurements) GetComputeGuestErrors() int32 { // GetComputeGuestErrorsOk returns a tuple with the ComputeGuestErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeGuestErrorsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeGuestErrorsOk() (*int64, bool) { if o == nil || o.ComputeGuestErrors == nil { return nil, false } @@ -6129,15 +6129,15 @@ func (o *RealtimeMeasurements) HasComputeGuestErrors() bool { return false } -// SetComputeGuestErrors gets a reference to the given int32 and assigns it to the ComputeGuestErrors field. -func (o *RealtimeMeasurements) SetComputeGuestErrors(v int32) { +// SetComputeGuestErrors gets a reference to the given int64 and assigns it to the ComputeGuestErrors field. +func (o *RealtimeMeasurements) SetComputeGuestErrors(v int64) { o.ComputeGuestErrors = &v } // GetComputeRuntimeErrors returns the ComputeRuntimeErrors field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetComputeRuntimeErrors() int32 { +func (o *RealtimeMeasurements) GetComputeRuntimeErrors() int64 { if o == nil || o.ComputeRuntimeErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRuntimeErrors @@ -6145,7 +6145,7 @@ func (o *RealtimeMeasurements) GetComputeRuntimeErrors() int32 { // GetComputeRuntimeErrorsOk returns a tuple with the ComputeRuntimeErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetComputeRuntimeErrorsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetComputeRuntimeErrorsOk() (*int64, bool) { if o == nil || o.ComputeRuntimeErrors == nil { return nil, false } @@ -6161,15 +6161,15 @@ func (o *RealtimeMeasurements) HasComputeRuntimeErrors() bool { return false } -// SetComputeRuntimeErrors gets a reference to the given int32 and assigns it to the ComputeRuntimeErrors field. -func (o *RealtimeMeasurements) SetComputeRuntimeErrors(v int32) { +// SetComputeRuntimeErrors gets a reference to the given int64 and assigns it to the ComputeRuntimeErrors field. +func (o *RealtimeMeasurements) SetComputeRuntimeErrors(v int64) { o.ComputeRuntimeErrors = &v } // GetEdgeHitRespBodyBytes returns the EdgeHitRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytes() int64 { if o == nil || o.EdgeHitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRespBodyBytes @@ -6177,7 +6177,7 @@ func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytes() int32 { // GetEdgeHitRespBodyBytesOk returns a tuple with the EdgeHitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeHitRespBodyBytes == nil { return nil, false } @@ -6193,15 +6193,15 @@ func (o *RealtimeMeasurements) HasEdgeHitRespBodyBytes() bool { return false } -// SetEdgeHitRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeHitRespBodyBytes field. -func (o *RealtimeMeasurements) SetEdgeHitRespBodyBytes(v int32) { +// SetEdgeHitRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeHitRespBodyBytes field. +func (o *RealtimeMeasurements) SetEdgeHitRespBodyBytes(v int64) { o.EdgeHitRespBodyBytes = &v } // GetEdgeHitRespHeaderBytes returns the EdgeHitRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytes() int64 { if o == nil || o.EdgeHitRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRespHeaderBytes @@ -6209,7 +6209,7 @@ func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytes() int32 { // GetEdgeHitRespHeaderBytesOk returns a tuple with the EdgeHitRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeHitRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeHitRespHeaderBytes == nil { return nil, false } @@ -6225,15 +6225,15 @@ func (o *RealtimeMeasurements) HasEdgeHitRespHeaderBytes() bool { return false } -// SetEdgeHitRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeHitRespHeaderBytes field. -func (o *RealtimeMeasurements) SetEdgeHitRespHeaderBytes(v int32) { +// SetEdgeHitRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeHitRespHeaderBytes field. +func (o *RealtimeMeasurements) SetEdgeHitRespHeaderBytes(v int64) { o.EdgeHitRespHeaderBytes = &v } // GetEdgeMissRespBodyBytes returns the EdgeMissRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytes() int64 { if o == nil || o.EdgeMissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRespBodyBytes @@ -6241,7 +6241,7 @@ func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytes() int32 { // GetEdgeMissRespBodyBytesOk returns a tuple with the EdgeMissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeMissRespBodyBytes == nil { return nil, false } @@ -6257,15 +6257,15 @@ func (o *RealtimeMeasurements) HasEdgeMissRespBodyBytes() bool { return false } -// SetEdgeMissRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeMissRespBodyBytes field. -func (o *RealtimeMeasurements) SetEdgeMissRespBodyBytes(v int32) { +// SetEdgeMissRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeMissRespBodyBytes field. +func (o *RealtimeMeasurements) SetEdgeMissRespBodyBytes(v int64) { o.EdgeMissRespBodyBytes = &v } // GetEdgeMissRespHeaderBytes returns the EdgeMissRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytes() int64 { if o == nil || o.EdgeMissRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRespHeaderBytes @@ -6273,7 +6273,7 @@ func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytes() int32 { // GetEdgeMissRespHeaderBytesOk returns a tuple with the EdgeMissRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetEdgeMissRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeMissRespHeaderBytes == nil { return nil, false } @@ -6289,15 +6289,15 @@ func (o *RealtimeMeasurements) HasEdgeMissRespHeaderBytes() bool { return false } -// SetEdgeMissRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeMissRespHeaderBytes field. -func (o *RealtimeMeasurements) SetEdgeMissRespHeaderBytes(v int32) { +// SetEdgeMissRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeMissRespHeaderBytes field. +func (o *RealtimeMeasurements) SetEdgeMissRespHeaderBytes(v int64) { o.EdgeMissRespHeaderBytes = &v } // GetOriginCacheFetchRespBodyBytes returns the OriginCacheFetchRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytes() int64 { if o == nil || o.OriginCacheFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetchRespBodyBytes @@ -6305,7 +6305,7 @@ func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytes() int32 { // GetOriginCacheFetchRespBodyBytesOk returns a tuple with the OriginCacheFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginCacheFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.OriginCacheFetchRespBodyBytes == nil { return nil, false } @@ -6321,15 +6321,15 @@ func (o *RealtimeMeasurements) HasOriginCacheFetchRespBodyBytes() bool { return false } -// SetOriginCacheFetchRespBodyBytes gets a reference to the given int32 and assigns it to the OriginCacheFetchRespBodyBytes field. -func (o *RealtimeMeasurements) SetOriginCacheFetchRespBodyBytes(v int32) { +// SetOriginCacheFetchRespBodyBytes gets a reference to the given int64 and assigns it to the OriginCacheFetchRespBodyBytes field. +func (o *RealtimeMeasurements) SetOriginCacheFetchRespBodyBytes(v int64) { o.OriginCacheFetchRespBodyBytes = &v } // GetOriginCacheFetchRespHeaderBytes returns the OriginCacheFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytes() int64 { if o == nil || o.OriginCacheFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetchRespHeaderBytes @@ -6337,7 +6337,7 @@ func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytes() int32 { // GetOriginCacheFetchRespHeaderBytesOk returns a tuple with the OriginCacheFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetOriginCacheFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginCacheFetchRespHeaderBytes == nil { return nil, false } @@ -6353,15 +6353,15 @@ func (o *RealtimeMeasurements) HasOriginCacheFetchRespHeaderBytes() bool { return false } -// SetOriginCacheFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the OriginCacheFetchRespHeaderBytes field. -func (o *RealtimeMeasurements) SetOriginCacheFetchRespHeaderBytes(v int32) { +// SetOriginCacheFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the OriginCacheFetchRespHeaderBytes field. +func (o *RealtimeMeasurements) SetOriginCacheFetchRespHeaderBytes(v int64) { o.OriginCacheFetchRespHeaderBytes = &v } // GetShieldHitRequests returns the ShieldHitRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldHitRequests() int32 { +func (o *RealtimeMeasurements) GetShieldHitRequests() int64 { if o == nil || o.ShieldHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRequests @@ -6369,7 +6369,7 @@ func (o *RealtimeMeasurements) GetShieldHitRequests() int32 { // GetShieldHitRequestsOk returns a tuple with the ShieldHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldHitRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldHitRequestsOk() (*int64, bool) { if o == nil || o.ShieldHitRequests == nil { return nil, false } @@ -6385,15 +6385,15 @@ func (o *RealtimeMeasurements) HasShieldHitRequests() bool { return false } -// SetShieldHitRequests gets a reference to the given int32 and assigns it to the ShieldHitRequests field. -func (o *RealtimeMeasurements) SetShieldHitRequests(v int32) { +// SetShieldHitRequests gets a reference to the given int64 and assigns it to the ShieldHitRequests field. +func (o *RealtimeMeasurements) SetShieldHitRequests(v int64) { o.ShieldHitRequests = &v } // GetShieldMissRequests returns the ShieldMissRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldMissRequests() int32 { +func (o *RealtimeMeasurements) GetShieldMissRequests() int64 { if o == nil || o.ShieldMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRequests @@ -6401,7 +6401,7 @@ func (o *RealtimeMeasurements) GetShieldMissRequests() int32 { // GetShieldMissRequestsOk returns a tuple with the ShieldMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldMissRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldMissRequestsOk() (*int64, bool) { if o == nil || o.ShieldMissRequests == nil { return nil, false } @@ -6417,15 +6417,15 @@ func (o *RealtimeMeasurements) HasShieldMissRequests() bool { return false } -// SetShieldMissRequests gets a reference to the given int32 and assigns it to the ShieldMissRequests field. -func (o *RealtimeMeasurements) SetShieldMissRequests(v int32) { +// SetShieldMissRequests gets a reference to the given int64 and assigns it to the ShieldMissRequests field. +func (o *RealtimeMeasurements) SetShieldMissRequests(v int64) { o.ShieldMissRequests = &v } // GetShieldHitRespHeaderBytes returns the ShieldHitRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytes() int64 { if o == nil || o.ShieldHitRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRespHeaderBytes @@ -6433,7 +6433,7 @@ func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytes() int32 { // GetShieldHitRespHeaderBytesOk returns a tuple with the ShieldHitRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldHitRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldHitRespHeaderBytes == nil { return nil, false } @@ -6449,15 +6449,15 @@ func (o *RealtimeMeasurements) HasShieldHitRespHeaderBytes() bool { return false } -// SetShieldHitRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldHitRespHeaderBytes field. -func (o *RealtimeMeasurements) SetShieldHitRespHeaderBytes(v int32) { +// SetShieldHitRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldHitRespHeaderBytes field. +func (o *RealtimeMeasurements) SetShieldHitRespHeaderBytes(v int64) { o.ShieldHitRespHeaderBytes = &v } // GetShieldHitRespBodyBytes returns the ShieldHitRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldHitRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetShieldHitRespBodyBytes() int64 { if o == nil || o.ShieldHitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRespBodyBytes @@ -6465,7 +6465,7 @@ func (o *RealtimeMeasurements) GetShieldHitRespBodyBytes() int32 { // GetShieldHitRespBodyBytesOk returns a tuple with the ShieldHitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldHitRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldHitRespBodyBytes == nil { return nil, false } @@ -6481,15 +6481,15 @@ func (o *RealtimeMeasurements) HasShieldHitRespBodyBytes() bool { return false } -// SetShieldHitRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldHitRespBodyBytes field. -func (o *RealtimeMeasurements) SetShieldHitRespBodyBytes(v int32) { +// SetShieldHitRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldHitRespBodyBytes field. +func (o *RealtimeMeasurements) SetShieldHitRespBodyBytes(v int64) { o.ShieldHitRespBodyBytes = &v } // GetShieldMissRespHeaderBytes returns the ShieldMissRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytes() int64 { if o == nil || o.ShieldMissRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRespHeaderBytes @@ -6497,7 +6497,7 @@ func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytes() int32 { // GetShieldMissRespHeaderBytesOk returns a tuple with the ShieldMissRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldMissRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldMissRespHeaderBytes == nil { return nil, false } @@ -6513,15 +6513,15 @@ func (o *RealtimeMeasurements) HasShieldMissRespHeaderBytes() bool { return false } -// SetShieldMissRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldMissRespHeaderBytes field. -func (o *RealtimeMeasurements) SetShieldMissRespHeaderBytes(v int32) { +// SetShieldMissRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldMissRespHeaderBytes field. +func (o *RealtimeMeasurements) SetShieldMissRespHeaderBytes(v int64) { o.ShieldMissRespHeaderBytes = &v } // GetShieldMissRespBodyBytes returns the ShieldMissRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetShieldMissRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetShieldMissRespBodyBytes() int64 { if o == nil || o.ShieldMissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRespBodyBytes @@ -6529,7 +6529,7 @@ func (o *RealtimeMeasurements) GetShieldMissRespBodyBytes() int32 { // GetShieldMissRespBodyBytesOk returns a tuple with the ShieldMissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetShieldMissRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetShieldMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldMissRespBodyBytes == nil { return nil, false } @@ -6545,15 +6545,15 @@ func (o *RealtimeMeasurements) HasShieldMissRespBodyBytes() bool { return false } -// SetShieldMissRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldMissRespBodyBytes field. -func (o *RealtimeMeasurements) SetShieldMissRespBodyBytes(v int32) { +// SetShieldMissRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldMissRespBodyBytes field. +func (o *RealtimeMeasurements) SetShieldMissRespBodyBytes(v int64) { o.ShieldMissRespBodyBytes = &v } // GetWebsocketReqHeaderBytes returns the WebsocketReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytes() int64 { if o == nil || o.WebsocketReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketReqHeaderBytes @@ -6561,7 +6561,7 @@ func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytes() int32 { // GetWebsocketReqHeaderBytesOk returns a tuple with the WebsocketReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketReqHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketReqHeaderBytes == nil { return nil, false } @@ -6577,15 +6577,15 @@ func (o *RealtimeMeasurements) HasWebsocketReqHeaderBytes() bool { return false } -// SetWebsocketReqHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketReqHeaderBytes field. -func (o *RealtimeMeasurements) SetWebsocketReqHeaderBytes(v int32) { +// SetWebsocketReqHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketReqHeaderBytes field. +func (o *RealtimeMeasurements) SetWebsocketReqHeaderBytes(v int64) { o.WebsocketReqHeaderBytes = &v } // GetWebsocketReqBodyBytes returns the WebsocketReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketReqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetWebsocketReqBodyBytes() int64 { if o == nil || o.WebsocketReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketReqBodyBytes @@ -6593,7 +6593,7 @@ func (o *RealtimeMeasurements) GetWebsocketReqBodyBytes() int32 { // GetWebsocketReqBodyBytesOk returns a tuple with the WebsocketReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketReqBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketReqBodyBytes == nil { return nil, false } @@ -6609,15 +6609,15 @@ func (o *RealtimeMeasurements) HasWebsocketReqBodyBytes() bool { return false } -// SetWebsocketReqBodyBytes gets a reference to the given int32 and assigns it to the WebsocketReqBodyBytes field. -func (o *RealtimeMeasurements) SetWebsocketReqBodyBytes(v int32) { +// SetWebsocketReqBodyBytes gets a reference to the given int64 and assigns it to the WebsocketReqBodyBytes field. +func (o *RealtimeMeasurements) SetWebsocketReqBodyBytes(v int64) { o.WebsocketReqBodyBytes = &v } // GetWebsocketRespHeaderBytes returns the WebsocketRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytes() int64 { if o == nil || o.WebsocketRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketRespHeaderBytes @@ -6625,7 +6625,7 @@ func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytes() int32 { // GetWebsocketRespHeaderBytesOk returns a tuple with the WebsocketRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketRespHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketRespHeaderBytes == nil { return nil, false } @@ -6641,15 +6641,15 @@ func (o *RealtimeMeasurements) HasWebsocketRespHeaderBytes() bool { return false } -// SetWebsocketRespHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketRespHeaderBytes field. -func (o *RealtimeMeasurements) SetWebsocketRespHeaderBytes(v int32) { +// SetWebsocketRespHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketRespHeaderBytes field. +func (o *RealtimeMeasurements) SetWebsocketRespHeaderBytes(v int64) { o.WebsocketRespHeaderBytes = &v } // GetWebsocketBereqHeaderBytes returns the WebsocketBereqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytes() int64 { if o == nil || o.WebsocketBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBereqHeaderBytes @@ -6657,7 +6657,7 @@ func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytes() int32 { // GetWebsocketBereqHeaderBytesOk returns a tuple with the WebsocketBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketBereqHeaderBytes == nil { return nil, false } @@ -6673,15 +6673,15 @@ func (o *RealtimeMeasurements) HasWebsocketBereqHeaderBytes() bool { return false } -// SetWebsocketBereqHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketBereqHeaderBytes field. -func (o *RealtimeMeasurements) SetWebsocketBereqHeaderBytes(v int32) { +// SetWebsocketBereqHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketBereqHeaderBytes field. +func (o *RealtimeMeasurements) SetWebsocketBereqHeaderBytes(v int64) { o.WebsocketBereqHeaderBytes = &v } // GetWebsocketBereqBodyBytes returns the WebsocketBereqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytes() int64 { if o == nil || o.WebsocketBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBereqBodyBytes @@ -6689,7 +6689,7 @@ func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytes() int32 { // GetWebsocketBereqBodyBytesOk returns a tuple with the WebsocketBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketBereqBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketBereqBodyBytes == nil { return nil, false } @@ -6705,15 +6705,15 @@ func (o *RealtimeMeasurements) HasWebsocketBereqBodyBytes() bool { return false } -// SetWebsocketBereqBodyBytes gets a reference to the given int32 and assigns it to the WebsocketBereqBodyBytes field. -func (o *RealtimeMeasurements) SetWebsocketBereqBodyBytes(v int32) { +// SetWebsocketBereqBodyBytes gets a reference to the given int64 and assigns it to the WebsocketBereqBodyBytes field. +func (o *RealtimeMeasurements) SetWebsocketBereqBodyBytes(v int64) { o.WebsocketBereqBodyBytes = &v } // GetWebsocketBerespHeaderBytes returns the WebsocketBerespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytes() int64 { if o == nil || o.WebsocketBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBerespHeaderBytes @@ -6721,7 +6721,7 @@ func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytes() int32 { // GetWebsocketBerespHeaderBytesOk returns a tuple with the WebsocketBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketBerespHeaderBytes == nil { return nil, false } @@ -6737,15 +6737,15 @@ func (o *RealtimeMeasurements) HasWebsocketBerespHeaderBytes() bool { return false } -// SetWebsocketBerespHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketBerespHeaderBytes field. -func (o *RealtimeMeasurements) SetWebsocketBerespHeaderBytes(v int32) { +// SetWebsocketBerespHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketBerespHeaderBytes field. +func (o *RealtimeMeasurements) SetWebsocketBerespHeaderBytes(v int64) { o.WebsocketBerespHeaderBytes = &v } // GetWebsocketBerespBodyBytes returns the WebsocketBerespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytes() int64 { if o == nil || o.WebsocketBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBerespBodyBytes @@ -6753,7 +6753,7 @@ func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytes() int32 { // GetWebsocketBerespBodyBytesOk returns a tuple with the WebsocketBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketBerespBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketBerespBodyBytes == nil { return nil, false } @@ -6769,15 +6769,15 @@ func (o *RealtimeMeasurements) HasWebsocketBerespBodyBytes() bool { return false } -// SetWebsocketBerespBodyBytes gets a reference to the given int32 and assigns it to the WebsocketBerespBodyBytes field. -func (o *RealtimeMeasurements) SetWebsocketBerespBodyBytes(v int32) { +// SetWebsocketBerespBodyBytes gets a reference to the given int64 and assigns it to the WebsocketBerespBodyBytes field. +func (o *RealtimeMeasurements) SetWebsocketBerespBodyBytes(v int64) { o.WebsocketBerespBodyBytes = &v } // GetWebsocketConnTimeMs returns the WebsocketConnTimeMs field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketConnTimeMs() int32 { +func (o *RealtimeMeasurements) GetWebsocketConnTimeMs() int64 { if o == nil || o.WebsocketConnTimeMs == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketConnTimeMs @@ -6785,7 +6785,7 @@ func (o *RealtimeMeasurements) GetWebsocketConnTimeMs() int32 { // GetWebsocketConnTimeMsOk returns a tuple with the WebsocketConnTimeMs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketConnTimeMsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketConnTimeMsOk() (*int64, bool) { if o == nil || o.WebsocketConnTimeMs == nil { return nil, false } @@ -6801,15 +6801,15 @@ func (o *RealtimeMeasurements) HasWebsocketConnTimeMs() bool { return false } -// SetWebsocketConnTimeMs gets a reference to the given int32 and assigns it to the WebsocketConnTimeMs field. -func (o *RealtimeMeasurements) SetWebsocketConnTimeMs(v int32) { +// SetWebsocketConnTimeMs gets a reference to the given int64 and assigns it to the WebsocketConnTimeMs field. +func (o *RealtimeMeasurements) SetWebsocketConnTimeMs(v int64) { o.WebsocketConnTimeMs = &v } // GetWebsocketRespBodyBytes returns the WebsocketRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetWebsocketRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetWebsocketRespBodyBytes() int64 { if o == nil || o.WebsocketRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketRespBodyBytes @@ -6817,7 +6817,7 @@ func (o *RealtimeMeasurements) GetWebsocketRespBodyBytes() int32 { // GetWebsocketRespBodyBytesOk returns a tuple with the WebsocketRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetWebsocketRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetWebsocketRespBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketRespBodyBytes == nil { return nil, false } @@ -6833,15 +6833,15 @@ func (o *RealtimeMeasurements) HasWebsocketRespBodyBytes() bool { return false } -// SetWebsocketRespBodyBytes gets a reference to the given int32 and assigns it to the WebsocketRespBodyBytes field. -func (o *RealtimeMeasurements) SetWebsocketRespBodyBytes(v int32) { +// SetWebsocketRespBodyBytes gets a reference to the given int64 and assigns it to the WebsocketRespBodyBytes field. +func (o *RealtimeMeasurements) SetWebsocketRespBodyBytes(v int64) { o.WebsocketRespBodyBytes = &v } // GetFanoutRecvPublishes returns the FanoutRecvPublishes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutRecvPublishes() int32 { +func (o *RealtimeMeasurements) GetFanoutRecvPublishes() int64 { if o == nil || o.FanoutRecvPublishes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRecvPublishes @@ -6849,7 +6849,7 @@ func (o *RealtimeMeasurements) GetFanoutRecvPublishes() int32 { // GetFanoutRecvPublishesOk returns a tuple with the FanoutRecvPublishes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutRecvPublishesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutRecvPublishesOk() (*int64, bool) { if o == nil || o.FanoutRecvPublishes == nil { return nil, false } @@ -6865,15 +6865,15 @@ func (o *RealtimeMeasurements) HasFanoutRecvPublishes() bool { return false } -// SetFanoutRecvPublishes gets a reference to the given int32 and assigns it to the FanoutRecvPublishes field. -func (o *RealtimeMeasurements) SetFanoutRecvPublishes(v int32) { +// SetFanoutRecvPublishes gets a reference to the given int64 and assigns it to the FanoutRecvPublishes field. +func (o *RealtimeMeasurements) SetFanoutRecvPublishes(v int64) { o.FanoutRecvPublishes = &v } // GetFanoutSendPublishes returns the FanoutSendPublishes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutSendPublishes() int32 { +func (o *RealtimeMeasurements) GetFanoutSendPublishes() int64 { if o == nil || o.FanoutSendPublishes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutSendPublishes @@ -6881,7 +6881,7 @@ func (o *RealtimeMeasurements) GetFanoutSendPublishes() int32 { // GetFanoutSendPublishesOk returns a tuple with the FanoutSendPublishes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutSendPublishesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutSendPublishesOk() (*int64, bool) { if o == nil || o.FanoutSendPublishes == nil { return nil, false } @@ -6897,15 +6897,15 @@ func (o *RealtimeMeasurements) HasFanoutSendPublishes() bool { return false } -// SetFanoutSendPublishes gets a reference to the given int32 and assigns it to the FanoutSendPublishes field. -func (o *RealtimeMeasurements) SetFanoutSendPublishes(v int32) { +// SetFanoutSendPublishes gets a reference to the given int64 and assigns it to the FanoutSendPublishes field. +func (o *RealtimeMeasurements) SetFanoutSendPublishes(v int64) { o.FanoutSendPublishes = &v } // GetKvStoreClassAOperations returns the KvStoreClassAOperations field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetKvStoreClassAOperations() int32 { +func (o *RealtimeMeasurements) GetKvStoreClassAOperations() int64 { if o == nil || o.KvStoreClassAOperations == nil { - var ret int32 + var ret int64 return ret } return *o.KvStoreClassAOperations @@ -6913,7 +6913,7 @@ func (o *RealtimeMeasurements) GetKvStoreClassAOperations() int32 { // GetKvStoreClassAOperationsOk returns a tuple with the KvStoreClassAOperations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetKvStoreClassAOperationsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetKvStoreClassAOperationsOk() (*int64, bool) { if o == nil || o.KvStoreClassAOperations == nil { return nil, false } @@ -6929,15 +6929,15 @@ func (o *RealtimeMeasurements) HasKvStoreClassAOperations() bool { return false } -// SetKvStoreClassAOperations gets a reference to the given int32 and assigns it to the KvStoreClassAOperations field. -func (o *RealtimeMeasurements) SetKvStoreClassAOperations(v int32) { +// SetKvStoreClassAOperations gets a reference to the given int64 and assigns it to the KvStoreClassAOperations field. +func (o *RealtimeMeasurements) SetKvStoreClassAOperations(v int64) { o.KvStoreClassAOperations = &v } // GetKvStoreClassBOperations returns the KvStoreClassBOperations field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetKvStoreClassBOperations() int32 { +func (o *RealtimeMeasurements) GetKvStoreClassBOperations() int64 { if o == nil || o.KvStoreClassBOperations == nil { - var ret int32 + var ret int64 return ret } return *o.KvStoreClassBOperations @@ -6945,7 +6945,7 @@ func (o *RealtimeMeasurements) GetKvStoreClassBOperations() int32 { // GetKvStoreClassBOperationsOk returns a tuple with the KvStoreClassBOperations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetKvStoreClassBOperationsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetKvStoreClassBOperationsOk() (*int64, bool) { if o == nil || o.KvStoreClassBOperations == nil { return nil, false } @@ -6961,16 +6961,16 @@ func (o *RealtimeMeasurements) HasKvStoreClassBOperations() bool { return false } -// SetKvStoreClassBOperations gets a reference to the given int32 and assigns it to the KvStoreClassBOperations field. -func (o *RealtimeMeasurements) SetKvStoreClassBOperations(v int32) { +// SetKvStoreClassBOperations gets a reference to the given int64 and assigns it to the KvStoreClassBOperations field. +func (o *RealtimeMeasurements) SetKvStoreClassBOperations(v int64) { o.KvStoreClassBOperations = &v } // GetObjectStoreClassAOperations returns the ObjectStoreClassAOperations field value if set, zero value otherwise. // Deprecated -func (o *RealtimeMeasurements) GetObjectStoreClassAOperations() int32 { +func (o *RealtimeMeasurements) GetObjectStoreClassAOperations() int64 { if o == nil || o.ObjectStoreClassAOperations == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectStoreClassAOperations @@ -6979,7 +6979,7 @@ func (o *RealtimeMeasurements) GetObjectStoreClassAOperations() int32 { // GetObjectStoreClassAOperationsOk returns a tuple with the ObjectStoreClassAOperations field value if set, nil otherwise // and a boolean to check if the value has been set. // Deprecated -func (o *RealtimeMeasurements) GetObjectStoreClassAOperationsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectStoreClassAOperationsOk() (*int64, bool) { if o == nil || o.ObjectStoreClassAOperations == nil { return nil, false } @@ -6995,17 +6995,17 @@ func (o *RealtimeMeasurements) HasObjectStoreClassAOperations() bool { return false } -// SetObjectStoreClassAOperations gets a reference to the given int32 and assigns it to the ObjectStoreClassAOperations field. +// SetObjectStoreClassAOperations gets a reference to the given int64 and assigns it to the ObjectStoreClassAOperations field. // Deprecated -func (o *RealtimeMeasurements) SetObjectStoreClassAOperations(v int32) { +func (o *RealtimeMeasurements) SetObjectStoreClassAOperations(v int64) { o.ObjectStoreClassAOperations = &v } // GetObjectStoreClassBOperations returns the ObjectStoreClassBOperations field value if set, zero value otherwise. // Deprecated -func (o *RealtimeMeasurements) GetObjectStoreClassBOperations() int32 { +func (o *RealtimeMeasurements) GetObjectStoreClassBOperations() int64 { if o == nil || o.ObjectStoreClassBOperations == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectStoreClassBOperations @@ -7014,7 +7014,7 @@ func (o *RealtimeMeasurements) GetObjectStoreClassBOperations() int32 { // GetObjectStoreClassBOperationsOk returns a tuple with the ObjectStoreClassBOperations field value if set, nil otherwise // and a boolean to check if the value has been set. // Deprecated -func (o *RealtimeMeasurements) GetObjectStoreClassBOperationsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetObjectStoreClassBOperationsOk() (*int64, bool) { if o == nil || o.ObjectStoreClassBOperations == nil { return nil, false } @@ -7030,16 +7030,16 @@ func (o *RealtimeMeasurements) HasObjectStoreClassBOperations() bool { return false } -// SetObjectStoreClassBOperations gets a reference to the given int32 and assigns it to the ObjectStoreClassBOperations field. +// SetObjectStoreClassBOperations gets a reference to the given int64 and assigns it to the ObjectStoreClassBOperations field. // Deprecated -func (o *RealtimeMeasurements) SetObjectStoreClassBOperations(v int32) { +func (o *RealtimeMeasurements) SetObjectStoreClassBOperations(v int64) { o.ObjectStoreClassBOperations = &v } // GetFanoutReqHeaderBytes returns the FanoutReqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutReqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetFanoutReqHeaderBytes() int64 { if o == nil || o.FanoutReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutReqHeaderBytes @@ -7047,7 +7047,7 @@ func (o *RealtimeMeasurements) GetFanoutReqHeaderBytes() int32 { // GetFanoutReqHeaderBytesOk returns a tuple with the FanoutReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutReqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutReqHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutReqHeaderBytes == nil { return nil, false } @@ -7063,15 +7063,15 @@ func (o *RealtimeMeasurements) HasFanoutReqHeaderBytes() bool { return false } -// SetFanoutReqHeaderBytes gets a reference to the given int32 and assigns it to the FanoutReqHeaderBytes field. -func (o *RealtimeMeasurements) SetFanoutReqHeaderBytes(v int32) { +// SetFanoutReqHeaderBytes gets a reference to the given int64 and assigns it to the FanoutReqHeaderBytes field. +func (o *RealtimeMeasurements) SetFanoutReqHeaderBytes(v int64) { o.FanoutReqHeaderBytes = &v } // GetFanoutReqBodyBytes returns the FanoutReqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutReqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetFanoutReqBodyBytes() int64 { if o == nil || o.FanoutReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutReqBodyBytes @@ -7079,7 +7079,7 @@ func (o *RealtimeMeasurements) GetFanoutReqBodyBytes() int32 { // GetFanoutReqBodyBytesOk returns a tuple with the FanoutReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutReqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutReqBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutReqBodyBytes == nil { return nil, false } @@ -7095,15 +7095,15 @@ func (o *RealtimeMeasurements) HasFanoutReqBodyBytes() bool { return false } -// SetFanoutReqBodyBytes gets a reference to the given int32 and assigns it to the FanoutReqBodyBytes field. -func (o *RealtimeMeasurements) SetFanoutReqBodyBytes(v int32) { +// SetFanoutReqBodyBytes gets a reference to the given int64 and assigns it to the FanoutReqBodyBytes field. +func (o *RealtimeMeasurements) SetFanoutReqBodyBytes(v int64) { o.FanoutReqBodyBytes = &v } // GetFanoutRespHeaderBytes returns the FanoutRespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutRespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetFanoutRespHeaderBytes() int64 { if o == nil || o.FanoutRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRespHeaderBytes @@ -7111,7 +7111,7 @@ func (o *RealtimeMeasurements) GetFanoutRespHeaderBytes() int32 { // GetFanoutRespHeaderBytesOk returns a tuple with the FanoutRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutRespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutRespHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutRespHeaderBytes == nil { return nil, false } @@ -7127,15 +7127,15 @@ func (o *RealtimeMeasurements) HasFanoutRespHeaderBytes() bool { return false } -// SetFanoutRespHeaderBytes gets a reference to the given int32 and assigns it to the FanoutRespHeaderBytes field. -func (o *RealtimeMeasurements) SetFanoutRespHeaderBytes(v int32) { +// SetFanoutRespHeaderBytes gets a reference to the given int64 and assigns it to the FanoutRespHeaderBytes field. +func (o *RealtimeMeasurements) SetFanoutRespHeaderBytes(v int64) { o.FanoutRespHeaderBytes = &v } // GetFanoutRespBodyBytes returns the FanoutRespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutRespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetFanoutRespBodyBytes() int64 { if o == nil || o.FanoutRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRespBodyBytes @@ -7143,7 +7143,7 @@ func (o *RealtimeMeasurements) GetFanoutRespBodyBytes() int32 { // GetFanoutRespBodyBytesOk returns a tuple with the FanoutRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutRespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutRespBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutRespBodyBytes == nil { return nil, false } @@ -7159,15 +7159,15 @@ func (o *RealtimeMeasurements) HasFanoutRespBodyBytes() bool { return false } -// SetFanoutRespBodyBytes gets a reference to the given int32 and assigns it to the FanoutRespBodyBytes field. -func (o *RealtimeMeasurements) SetFanoutRespBodyBytes(v int32) { +// SetFanoutRespBodyBytes gets a reference to the given int64 and assigns it to the FanoutRespBodyBytes field. +func (o *RealtimeMeasurements) SetFanoutRespBodyBytes(v int64) { o.FanoutRespBodyBytes = &v } // GetFanoutBereqHeaderBytes returns the FanoutBereqHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytes() int64 { if o == nil || o.FanoutBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBereqHeaderBytes @@ -7175,7 +7175,7 @@ func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytes() int32 { // GetFanoutBereqHeaderBytesOk returns a tuple with the FanoutBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutBereqHeaderBytes == nil { return nil, false } @@ -7191,15 +7191,15 @@ func (o *RealtimeMeasurements) HasFanoutBereqHeaderBytes() bool { return false } -// SetFanoutBereqHeaderBytes gets a reference to the given int32 and assigns it to the FanoutBereqHeaderBytes field. -func (o *RealtimeMeasurements) SetFanoutBereqHeaderBytes(v int32) { +// SetFanoutBereqHeaderBytes gets a reference to the given int64 and assigns it to the FanoutBereqHeaderBytes field. +func (o *RealtimeMeasurements) SetFanoutBereqHeaderBytes(v int64) { o.FanoutBereqHeaderBytes = &v } // GetFanoutBereqBodyBytes returns the FanoutBereqBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutBereqBodyBytes() int32 { +func (o *RealtimeMeasurements) GetFanoutBereqBodyBytes() int64 { if o == nil || o.FanoutBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBereqBodyBytes @@ -7207,7 +7207,7 @@ func (o *RealtimeMeasurements) GetFanoutBereqBodyBytes() int32 { // GetFanoutBereqBodyBytesOk returns a tuple with the FanoutBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutBereqBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutBereqBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutBereqBodyBytes == nil { return nil, false } @@ -7223,15 +7223,15 @@ func (o *RealtimeMeasurements) HasFanoutBereqBodyBytes() bool { return false } -// SetFanoutBereqBodyBytes gets a reference to the given int32 and assigns it to the FanoutBereqBodyBytes field. -func (o *RealtimeMeasurements) SetFanoutBereqBodyBytes(v int32) { +// SetFanoutBereqBodyBytes gets a reference to the given int64 and assigns it to the FanoutBereqBodyBytes field. +func (o *RealtimeMeasurements) SetFanoutBereqBodyBytes(v int64) { o.FanoutBereqBodyBytes = &v } // GetFanoutBerespHeaderBytes returns the FanoutBerespHeaderBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytes() int32 { +func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytes() int64 { if o == nil || o.FanoutBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBerespHeaderBytes @@ -7239,7 +7239,7 @@ func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytes() int32 { // GetFanoutBerespHeaderBytesOk returns a tuple with the FanoutBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutBerespHeaderBytes == nil { return nil, false } @@ -7255,15 +7255,15 @@ func (o *RealtimeMeasurements) HasFanoutBerespHeaderBytes() bool { return false } -// SetFanoutBerespHeaderBytes gets a reference to the given int32 and assigns it to the FanoutBerespHeaderBytes field. -func (o *RealtimeMeasurements) SetFanoutBerespHeaderBytes(v int32) { +// SetFanoutBerespHeaderBytes gets a reference to the given int64 and assigns it to the FanoutBerespHeaderBytes field. +func (o *RealtimeMeasurements) SetFanoutBerespHeaderBytes(v int64) { o.FanoutBerespHeaderBytes = &v } // GetFanoutBerespBodyBytes returns the FanoutBerespBodyBytes field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutBerespBodyBytes() int32 { +func (o *RealtimeMeasurements) GetFanoutBerespBodyBytes() int64 { if o == nil || o.FanoutBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBerespBodyBytes @@ -7271,7 +7271,7 @@ func (o *RealtimeMeasurements) GetFanoutBerespBodyBytes() int32 { // GetFanoutBerespBodyBytesOk returns a tuple with the FanoutBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutBerespBodyBytesOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutBerespBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutBerespBodyBytes == nil { return nil, false } @@ -7287,15 +7287,15 @@ func (o *RealtimeMeasurements) HasFanoutBerespBodyBytes() bool { return false } -// SetFanoutBerespBodyBytes gets a reference to the given int32 and assigns it to the FanoutBerespBodyBytes field. -func (o *RealtimeMeasurements) SetFanoutBerespBodyBytes(v int32) { +// SetFanoutBerespBodyBytes gets a reference to the given int64 and assigns it to the FanoutBerespBodyBytes field. +func (o *RealtimeMeasurements) SetFanoutBerespBodyBytes(v int64) { o.FanoutBerespBodyBytes = &v } // GetFanoutConnTimeMs returns the FanoutConnTimeMs field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetFanoutConnTimeMs() int32 { +func (o *RealtimeMeasurements) GetFanoutConnTimeMs() int64 { if o == nil || o.FanoutConnTimeMs == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutConnTimeMs @@ -7303,7 +7303,7 @@ func (o *RealtimeMeasurements) GetFanoutConnTimeMs() int32 { // GetFanoutConnTimeMsOk returns a tuple with the FanoutConnTimeMs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetFanoutConnTimeMsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetFanoutConnTimeMsOk() (*int64, bool) { if o == nil || o.FanoutConnTimeMs == nil { return nil, false } @@ -7319,15 +7319,15 @@ func (o *RealtimeMeasurements) HasFanoutConnTimeMs() bool { return false } -// SetFanoutConnTimeMs gets a reference to the given int32 and assigns it to the FanoutConnTimeMs field. -func (o *RealtimeMeasurements) SetFanoutConnTimeMs(v int32) { +// SetFanoutConnTimeMs gets a reference to the given int64 and assigns it to the FanoutConnTimeMs field. +func (o *RealtimeMeasurements) SetFanoutConnTimeMs(v int64) { o.FanoutConnTimeMs = &v } // GetDdosActionLimitStreamsConnections returns the DdosActionLimitStreamsConnections field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnections() int32 { +func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnections() int64 { if o == nil || o.DdosActionLimitStreamsConnections == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionLimitStreamsConnections @@ -7335,7 +7335,7 @@ func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnections() int32 { // GetDdosActionLimitStreamsConnectionsOk returns a tuple with the DdosActionLimitStreamsConnections field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnectionsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDdosActionLimitStreamsConnectionsOk() (*int64, bool) { if o == nil || o.DdosActionLimitStreamsConnections == nil { return nil, false } @@ -7351,15 +7351,15 @@ func (o *RealtimeMeasurements) HasDdosActionLimitStreamsConnections() bool { return false } -// SetDdosActionLimitStreamsConnections gets a reference to the given int32 and assigns it to the DdosActionLimitStreamsConnections field. -func (o *RealtimeMeasurements) SetDdosActionLimitStreamsConnections(v int32) { +// SetDdosActionLimitStreamsConnections gets a reference to the given int64 and assigns it to the DdosActionLimitStreamsConnections field. +func (o *RealtimeMeasurements) SetDdosActionLimitStreamsConnections(v int64) { o.DdosActionLimitStreamsConnections = &v } // GetDdosActionLimitStreamsRequests returns the DdosActionLimitStreamsRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequests() int32 { +func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequests() int64 { if o == nil || o.DdosActionLimitStreamsRequests == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionLimitStreamsRequests @@ -7367,7 +7367,7 @@ func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequests() int32 { // GetDdosActionLimitStreamsRequestsOk returns a tuple with the DdosActionLimitStreamsRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDdosActionLimitStreamsRequestsOk() (*int64, bool) { if o == nil || o.DdosActionLimitStreamsRequests == nil { return nil, false } @@ -7383,15 +7383,15 @@ func (o *RealtimeMeasurements) HasDdosActionLimitStreamsRequests() bool { return false } -// SetDdosActionLimitStreamsRequests gets a reference to the given int32 and assigns it to the DdosActionLimitStreamsRequests field. -func (o *RealtimeMeasurements) SetDdosActionLimitStreamsRequests(v int32) { +// SetDdosActionLimitStreamsRequests gets a reference to the given int64 and assigns it to the DdosActionLimitStreamsRequests field. +func (o *RealtimeMeasurements) SetDdosActionLimitStreamsRequests(v int64) { o.DdosActionLimitStreamsRequests = &v } // GetDdosActionTarpitAccept returns the DdosActionTarpitAccept field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDdosActionTarpitAccept() int32 { +func (o *RealtimeMeasurements) GetDdosActionTarpitAccept() int64 { if o == nil || o.DdosActionTarpitAccept == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionTarpitAccept @@ -7399,7 +7399,7 @@ func (o *RealtimeMeasurements) GetDdosActionTarpitAccept() int32 { // GetDdosActionTarpitAcceptOk returns a tuple with the DdosActionTarpitAccept field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDdosActionTarpitAcceptOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDdosActionTarpitAcceptOk() (*int64, bool) { if o == nil || o.DdosActionTarpitAccept == nil { return nil, false } @@ -7415,15 +7415,15 @@ func (o *RealtimeMeasurements) HasDdosActionTarpitAccept() bool { return false } -// SetDdosActionTarpitAccept gets a reference to the given int32 and assigns it to the DdosActionTarpitAccept field. -func (o *RealtimeMeasurements) SetDdosActionTarpitAccept(v int32) { +// SetDdosActionTarpitAccept gets a reference to the given int64 and assigns it to the DdosActionTarpitAccept field. +func (o *RealtimeMeasurements) SetDdosActionTarpitAccept(v int64) { o.DdosActionTarpitAccept = &v } // GetDdosActionTarpit returns the DdosActionTarpit field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDdosActionTarpit() int32 { +func (o *RealtimeMeasurements) GetDdosActionTarpit() int64 { if o == nil || o.DdosActionTarpit == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionTarpit @@ -7431,7 +7431,7 @@ func (o *RealtimeMeasurements) GetDdosActionTarpit() int32 { // GetDdosActionTarpitOk returns a tuple with the DdosActionTarpit field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDdosActionTarpitOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDdosActionTarpitOk() (*int64, bool) { if o == nil || o.DdosActionTarpit == nil { return nil, false } @@ -7447,15 +7447,15 @@ func (o *RealtimeMeasurements) HasDdosActionTarpit() bool { return false } -// SetDdosActionTarpit gets a reference to the given int32 and assigns it to the DdosActionTarpit field. -func (o *RealtimeMeasurements) SetDdosActionTarpit(v int32) { +// SetDdosActionTarpit gets a reference to the given int64 and assigns it to the DdosActionTarpit field. +func (o *RealtimeMeasurements) SetDdosActionTarpit(v int64) { o.DdosActionTarpit = &v } // GetDdosActionClose returns the DdosActionClose field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDdosActionClose() int32 { +func (o *RealtimeMeasurements) GetDdosActionClose() int64 { if o == nil || o.DdosActionClose == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionClose @@ -7463,7 +7463,7 @@ func (o *RealtimeMeasurements) GetDdosActionClose() int32 { // GetDdosActionCloseOk returns a tuple with the DdosActionClose field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDdosActionCloseOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDdosActionCloseOk() (*int64, bool) { if o == nil || o.DdosActionClose == nil { return nil, false } @@ -7479,15 +7479,15 @@ func (o *RealtimeMeasurements) HasDdosActionClose() bool { return false } -// SetDdosActionClose gets a reference to the given int32 and assigns it to the DdosActionClose field. -func (o *RealtimeMeasurements) SetDdosActionClose(v int32) { +// SetDdosActionClose gets a reference to the given int64 and assigns it to the DdosActionClose field. +func (o *RealtimeMeasurements) SetDdosActionClose(v int64) { o.DdosActionClose = &v } // GetDdosActionBlackhole returns the DdosActionBlackhole field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDdosActionBlackhole() int32 { +func (o *RealtimeMeasurements) GetDdosActionBlackhole() int64 { if o == nil || o.DdosActionBlackhole == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionBlackhole @@ -7495,7 +7495,7 @@ func (o *RealtimeMeasurements) GetDdosActionBlackhole() int32 { // GetDdosActionBlackholeOk returns a tuple with the DdosActionBlackhole field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDdosActionBlackholeOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDdosActionBlackholeOk() (*int64, bool) { if o == nil || o.DdosActionBlackhole == nil { return nil, false } @@ -7511,15 +7511,15 @@ func (o *RealtimeMeasurements) HasDdosActionBlackhole() bool { return false } -// SetDdosActionBlackhole gets a reference to the given int32 and assigns it to the DdosActionBlackhole field. -func (o *RealtimeMeasurements) SetDdosActionBlackhole(v int32) { +// SetDdosActionBlackhole gets a reference to the given int64 and assigns it to the DdosActionBlackhole field. +func (o *RealtimeMeasurements) SetDdosActionBlackhole(v int64) { o.DdosActionBlackhole = &v } // GetBotChallengeStarts returns the BotChallengeStarts field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengeStarts() int32 { +func (o *RealtimeMeasurements) GetBotChallengeStarts() int64 { if o == nil || o.BotChallengeStarts == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeStarts @@ -7527,7 +7527,7 @@ func (o *RealtimeMeasurements) GetBotChallengeStarts() int32 { // GetBotChallengeStartsOk returns a tuple with the BotChallengeStarts field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengeStartsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengeStartsOk() (*int64, bool) { if o == nil || o.BotChallengeStarts == nil { return nil, false } @@ -7543,15 +7543,15 @@ func (o *RealtimeMeasurements) HasBotChallengeStarts() bool { return false } -// SetBotChallengeStarts gets a reference to the given int32 and assigns it to the BotChallengeStarts field. -func (o *RealtimeMeasurements) SetBotChallengeStarts(v int32) { +// SetBotChallengeStarts gets a reference to the given int64 and assigns it to the BotChallengeStarts field. +func (o *RealtimeMeasurements) SetBotChallengeStarts(v int64) { o.BotChallengeStarts = &v } // GetBotChallengeCompleteTokensPassed returns the BotChallengeCompleteTokensPassed field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassed() int32 { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassed() int64 { if o == nil || o.BotChallengeCompleteTokensPassed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensPassed @@ -7559,7 +7559,7 @@ func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassed() int32 { // GetBotChallengeCompleteTokensPassedOk returns a tuple with the BotChallengeCompleteTokensPassed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensPassedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensPassed == nil { return nil, false } @@ -7575,15 +7575,15 @@ func (o *RealtimeMeasurements) HasBotChallengeCompleteTokensPassed() bool { return false } -// SetBotChallengeCompleteTokensPassed gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensPassed field. -func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensPassed(v int32) { +// SetBotChallengeCompleteTokensPassed gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensPassed field. +func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensPassed(v int64) { o.BotChallengeCompleteTokensPassed = &v } // GetBotChallengeCompleteTokensFailed returns the BotChallengeCompleteTokensFailed field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailed() int32 { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailed() int64 { if o == nil || o.BotChallengeCompleteTokensFailed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensFailed @@ -7591,7 +7591,7 @@ func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailed() int32 { // GetBotChallengeCompleteTokensFailedOk returns a tuple with the BotChallengeCompleteTokensFailed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensFailedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensFailed == nil { return nil, false } @@ -7607,15 +7607,15 @@ func (o *RealtimeMeasurements) HasBotChallengeCompleteTokensFailed() bool { return false } -// SetBotChallengeCompleteTokensFailed gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensFailed field. -func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensFailed(v int32) { +// SetBotChallengeCompleteTokensFailed gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensFailed field. +func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensFailed(v int64) { o.BotChallengeCompleteTokensFailed = &v } // GetBotChallengeCompleteTokensChecked returns the BotChallengeCompleteTokensChecked field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensChecked() int32 { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensChecked() int64 { if o == nil || o.BotChallengeCompleteTokensChecked == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensChecked @@ -7623,7 +7623,7 @@ func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensChecked() int32 { // GetBotChallengeCompleteTokensCheckedOk returns a tuple with the BotChallengeCompleteTokensChecked field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensCheckedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensCheckedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensChecked == nil { return nil, false } @@ -7639,15 +7639,15 @@ func (o *RealtimeMeasurements) HasBotChallengeCompleteTokensChecked() bool { return false } -// SetBotChallengeCompleteTokensChecked gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensChecked field. -func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensChecked(v int32) { +// SetBotChallengeCompleteTokensChecked gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensChecked field. +func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensChecked(v int64) { o.BotChallengeCompleteTokensChecked = &v } // GetBotChallengeCompleteTokensDisabled returns the BotChallengeCompleteTokensDisabled field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabled() int32 { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabled() int64 { if o == nil || o.BotChallengeCompleteTokensDisabled == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensDisabled @@ -7655,7 +7655,7 @@ func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabled() int32 { // GetBotChallengeCompleteTokensDisabledOk returns a tuple with the BotChallengeCompleteTokensDisabled field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabledOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensDisabledOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensDisabled == nil { return nil, false } @@ -7671,15 +7671,15 @@ func (o *RealtimeMeasurements) HasBotChallengeCompleteTokensDisabled() bool { return false } -// SetBotChallengeCompleteTokensDisabled gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensDisabled field. -func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensDisabled(v int32) { +// SetBotChallengeCompleteTokensDisabled gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensDisabled field. +func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensDisabled(v int64) { o.BotChallengeCompleteTokensDisabled = &v } // GetBotChallengesIssued returns the BotChallengesIssued field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengesIssued() int32 { +func (o *RealtimeMeasurements) GetBotChallengesIssued() int64 { if o == nil || o.BotChallengesIssued == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesIssued @@ -7687,7 +7687,7 @@ func (o *RealtimeMeasurements) GetBotChallengesIssued() int32 { // GetBotChallengesIssuedOk returns a tuple with the BotChallengesIssued field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengesIssuedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengesIssuedOk() (*int64, bool) { if o == nil || o.BotChallengesIssued == nil { return nil, false } @@ -7703,15 +7703,15 @@ func (o *RealtimeMeasurements) HasBotChallengesIssued() bool { return false } -// SetBotChallengesIssued gets a reference to the given int32 and assigns it to the BotChallengesIssued field. -func (o *RealtimeMeasurements) SetBotChallengesIssued(v int32) { +// SetBotChallengesIssued gets a reference to the given int64 and assigns it to the BotChallengesIssued field. +func (o *RealtimeMeasurements) SetBotChallengesIssued(v int64) { o.BotChallengesIssued = &v } // GetBotChallengesSucceeded returns the BotChallengesSucceeded field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengesSucceeded() int32 { +func (o *RealtimeMeasurements) GetBotChallengesSucceeded() int64 { if o == nil || o.BotChallengesSucceeded == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesSucceeded @@ -7719,7 +7719,7 @@ func (o *RealtimeMeasurements) GetBotChallengesSucceeded() int32 { // GetBotChallengesSucceededOk returns a tuple with the BotChallengesSucceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengesSucceededOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengesSucceededOk() (*int64, bool) { if o == nil || o.BotChallengesSucceeded == nil { return nil, false } @@ -7735,15 +7735,15 @@ func (o *RealtimeMeasurements) HasBotChallengesSucceeded() bool { return false } -// SetBotChallengesSucceeded gets a reference to the given int32 and assigns it to the BotChallengesSucceeded field. -func (o *RealtimeMeasurements) SetBotChallengesSucceeded(v int32) { +// SetBotChallengesSucceeded gets a reference to the given int64 and assigns it to the BotChallengesSucceeded field. +func (o *RealtimeMeasurements) SetBotChallengesSucceeded(v int64) { o.BotChallengesSucceeded = &v } // GetBotChallengesFailed returns the BotChallengesFailed field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengesFailed() int32 { +func (o *RealtimeMeasurements) GetBotChallengesFailed() int64 { if o == nil || o.BotChallengesFailed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesFailed @@ -7751,7 +7751,7 @@ func (o *RealtimeMeasurements) GetBotChallengesFailed() int32 { // GetBotChallengesFailedOk returns a tuple with the BotChallengesFailed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengesFailedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengesFailedOk() (*int64, bool) { if o == nil || o.BotChallengesFailed == nil { return nil, false } @@ -7767,15 +7767,15 @@ func (o *RealtimeMeasurements) HasBotChallengesFailed() bool { return false } -// SetBotChallengesFailed gets a reference to the given int32 and assigns it to the BotChallengesFailed field. -func (o *RealtimeMeasurements) SetBotChallengesFailed(v int32) { +// SetBotChallengesFailed gets a reference to the given int64 and assigns it to the BotChallengesFailed field. +func (o *RealtimeMeasurements) SetBotChallengesFailed(v int64) { o.BotChallengesFailed = &v } // GetBotChallengeCompleteTokensIssued returns the BotChallengeCompleteTokensIssued field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssued() int32 { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssued() int64 { if o == nil || o.BotChallengeCompleteTokensIssued == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensIssued @@ -7783,7 +7783,7 @@ func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssued() int32 { // GetBotChallengeCompleteTokensIssuedOk returns a tuple with the BotChallengeCompleteTokensIssued field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssuedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetBotChallengeCompleteTokensIssuedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensIssued == nil { return nil, false } @@ -7799,15 +7799,15 @@ func (o *RealtimeMeasurements) HasBotChallengeCompleteTokensIssued() bool { return false } -// SetBotChallengeCompleteTokensIssued gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensIssued field. -func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensIssued(v int32) { +// SetBotChallengeCompleteTokensIssued gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensIssued field. +func (o *RealtimeMeasurements) SetBotChallengeCompleteTokensIssued(v int64) { o.BotChallengeCompleteTokensIssued = &v } // GetDdosActionDowngrade returns the DdosActionDowngrade field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDdosActionDowngrade() int32 { +func (o *RealtimeMeasurements) GetDdosActionDowngrade() int64 { if o == nil || o.DdosActionDowngrade == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionDowngrade @@ -7815,7 +7815,7 @@ func (o *RealtimeMeasurements) GetDdosActionDowngrade() int32 { // GetDdosActionDowngradeOk returns a tuple with the DdosActionDowngrade field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDdosActionDowngradeOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDdosActionDowngradeOk() (*int64, bool) { if o == nil || o.DdosActionDowngrade == nil { return nil, false } @@ -7831,15 +7831,15 @@ func (o *RealtimeMeasurements) HasDdosActionDowngrade() bool { return false } -// SetDdosActionDowngrade gets a reference to the given int32 and assigns it to the DdosActionDowngrade field. -func (o *RealtimeMeasurements) SetDdosActionDowngrade(v int32) { +// SetDdosActionDowngrade gets a reference to the given int64 and assigns it to the DdosActionDowngrade field. +func (o *RealtimeMeasurements) SetDdosActionDowngrade(v int64) { o.DdosActionDowngrade = &v } // GetDdosActionDowngradedConnections returns the DdosActionDowngradedConnections field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetDdosActionDowngradedConnections() int32 { +func (o *RealtimeMeasurements) GetDdosActionDowngradedConnections() int64 { if o == nil || o.DdosActionDowngradedConnections == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionDowngradedConnections @@ -7847,7 +7847,7 @@ func (o *RealtimeMeasurements) GetDdosActionDowngradedConnections() int32 { // GetDdosActionDowngradedConnectionsOk returns a tuple with the DdosActionDowngradedConnections field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetDdosActionDowngradedConnectionsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetDdosActionDowngradedConnectionsOk() (*int64, bool) { if o == nil || o.DdosActionDowngradedConnections == nil { return nil, false } @@ -7863,15 +7863,15 @@ func (o *RealtimeMeasurements) HasDdosActionDowngradedConnections() bool { return false } -// SetDdosActionDowngradedConnections gets a reference to the given int32 and assigns it to the DdosActionDowngradedConnections field. -func (o *RealtimeMeasurements) SetDdosActionDowngradedConnections(v int32) { +// SetDdosActionDowngradedConnections gets a reference to the given int64 and assigns it to the DdosActionDowngradedConnections field. +func (o *RealtimeMeasurements) SetDdosActionDowngradedConnections(v int64) { o.DdosActionDowngradedConnections = &v } // GetAllHitRequests returns the AllHitRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllHitRequests() int32 { +func (o *RealtimeMeasurements) GetAllHitRequests() int64 { if o == nil || o.AllHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllHitRequests @@ -7879,7 +7879,7 @@ func (o *RealtimeMeasurements) GetAllHitRequests() int32 { // GetAllHitRequestsOk returns a tuple with the AllHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllHitRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllHitRequestsOk() (*int64, bool) { if o == nil || o.AllHitRequests == nil { return nil, false } @@ -7895,15 +7895,15 @@ func (o *RealtimeMeasurements) HasAllHitRequests() bool { return false } -// SetAllHitRequests gets a reference to the given int32 and assigns it to the AllHitRequests field. -func (o *RealtimeMeasurements) SetAllHitRequests(v int32) { +// SetAllHitRequests gets a reference to the given int64 and assigns it to the AllHitRequests field. +func (o *RealtimeMeasurements) SetAllHitRequests(v int64) { o.AllHitRequests = &v } // GetAllMissRequests returns the AllMissRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllMissRequests() int32 { +func (o *RealtimeMeasurements) GetAllMissRequests() int64 { if o == nil || o.AllMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllMissRequests @@ -7911,7 +7911,7 @@ func (o *RealtimeMeasurements) GetAllMissRequests() int32 { // GetAllMissRequestsOk returns a tuple with the AllMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllMissRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllMissRequestsOk() (*int64, bool) { if o == nil || o.AllMissRequests == nil { return nil, false } @@ -7927,15 +7927,15 @@ func (o *RealtimeMeasurements) HasAllMissRequests() bool { return false } -// SetAllMissRequests gets a reference to the given int32 and assigns it to the AllMissRequests field. -func (o *RealtimeMeasurements) SetAllMissRequests(v int32) { +// SetAllMissRequests gets a reference to the given int64 and assigns it to the AllMissRequests field. +func (o *RealtimeMeasurements) SetAllMissRequests(v int64) { o.AllMissRequests = &v } // GetAllPassRequests returns the AllPassRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllPassRequests() int32 { +func (o *RealtimeMeasurements) GetAllPassRequests() int64 { if o == nil || o.AllPassRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllPassRequests @@ -7943,7 +7943,7 @@ func (o *RealtimeMeasurements) GetAllPassRequests() int32 { // GetAllPassRequestsOk returns a tuple with the AllPassRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllPassRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllPassRequestsOk() (*int64, bool) { if o == nil || o.AllPassRequests == nil { return nil, false } @@ -7959,15 +7959,15 @@ func (o *RealtimeMeasurements) HasAllPassRequests() bool { return false } -// SetAllPassRequests gets a reference to the given int32 and assigns it to the AllPassRequests field. -func (o *RealtimeMeasurements) SetAllPassRequests(v int32) { +// SetAllPassRequests gets a reference to the given int64 and assigns it to the AllPassRequests field. +func (o *RealtimeMeasurements) SetAllPassRequests(v int64) { o.AllPassRequests = &v } // GetAllErrorRequests returns the AllErrorRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllErrorRequests() int32 { +func (o *RealtimeMeasurements) GetAllErrorRequests() int64 { if o == nil || o.AllErrorRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllErrorRequests @@ -7975,7 +7975,7 @@ func (o *RealtimeMeasurements) GetAllErrorRequests() int32 { // GetAllErrorRequestsOk returns a tuple with the AllErrorRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllErrorRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllErrorRequestsOk() (*int64, bool) { if o == nil || o.AllErrorRequests == nil { return nil, false } @@ -7991,15 +7991,15 @@ func (o *RealtimeMeasurements) HasAllErrorRequests() bool { return false } -// SetAllErrorRequests gets a reference to the given int32 and assigns it to the AllErrorRequests field. -func (o *RealtimeMeasurements) SetAllErrorRequests(v int32) { +// SetAllErrorRequests gets a reference to the given int64 and assigns it to the AllErrorRequests field. +func (o *RealtimeMeasurements) SetAllErrorRequests(v int64) { o.AllErrorRequests = &v } // GetAllSynthRequests returns the AllSynthRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllSynthRequests() int32 { +func (o *RealtimeMeasurements) GetAllSynthRequests() int64 { if o == nil || o.AllSynthRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllSynthRequests @@ -8007,7 +8007,7 @@ func (o *RealtimeMeasurements) GetAllSynthRequests() int32 { // GetAllSynthRequestsOk returns a tuple with the AllSynthRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllSynthRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllSynthRequestsOk() (*int64, bool) { if o == nil || o.AllSynthRequests == nil { return nil, false } @@ -8023,15 +8023,15 @@ func (o *RealtimeMeasurements) HasAllSynthRequests() bool { return false } -// SetAllSynthRequests gets a reference to the given int32 and assigns it to the AllSynthRequests field. -func (o *RealtimeMeasurements) SetAllSynthRequests(v int32) { +// SetAllSynthRequests gets a reference to the given int64 and assigns it to the AllSynthRequests field. +func (o *RealtimeMeasurements) SetAllSynthRequests(v int64) { o.AllSynthRequests = &v } // GetAllEdgeHitRequests returns the AllEdgeHitRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllEdgeHitRequests() int32 { +func (o *RealtimeMeasurements) GetAllEdgeHitRequests() int64 { if o == nil || o.AllEdgeHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllEdgeHitRequests @@ -8039,7 +8039,7 @@ func (o *RealtimeMeasurements) GetAllEdgeHitRequests() int32 { // GetAllEdgeHitRequestsOk returns a tuple with the AllEdgeHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllEdgeHitRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllEdgeHitRequestsOk() (*int64, bool) { if o == nil || o.AllEdgeHitRequests == nil { return nil, false } @@ -8055,15 +8055,15 @@ func (o *RealtimeMeasurements) HasAllEdgeHitRequests() bool { return false } -// SetAllEdgeHitRequests gets a reference to the given int32 and assigns it to the AllEdgeHitRequests field. -func (o *RealtimeMeasurements) SetAllEdgeHitRequests(v int32) { +// SetAllEdgeHitRequests gets a reference to the given int64 and assigns it to the AllEdgeHitRequests field. +func (o *RealtimeMeasurements) SetAllEdgeHitRequests(v int64) { o.AllEdgeHitRequests = &v } // GetAllEdgeMissRequests returns the AllEdgeMissRequests field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllEdgeMissRequests() int32 { +func (o *RealtimeMeasurements) GetAllEdgeMissRequests() int64 { if o == nil || o.AllEdgeMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllEdgeMissRequests @@ -8071,7 +8071,7 @@ func (o *RealtimeMeasurements) GetAllEdgeMissRequests() int32 { // GetAllEdgeMissRequestsOk returns a tuple with the AllEdgeMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllEdgeMissRequestsOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllEdgeMissRequestsOk() (*int64, bool) { if o == nil || o.AllEdgeMissRequests == nil { return nil, false } @@ -8087,15 +8087,15 @@ func (o *RealtimeMeasurements) HasAllEdgeMissRequests() bool { return false } -// SetAllEdgeMissRequests gets a reference to the given int32 and assigns it to the AllEdgeMissRequests field. -func (o *RealtimeMeasurements) SetAllEdgeMissRequests(v int32) { +// SetAllEdgeMissRequests gets a reference to the given int64 and assigns it to the AllEdgeMissRequests field. +func (o *RealtimeMeasurements) SetAllEdgeMissRequests(v int64) { o.AllEdgeMissRequests = &v } // GetAllStatus1xx returns the AllStatus1xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllStatus1xx() int32 { +func (o *RealtimeMeasurements) GetAllStatus1xx() int64 { if o == nil || o.AllStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus1xx @@ -8103,7 +8103,7 @@ func (o *RealtimeMeasurements) GetAllStatus1xx() int32 { // GetAllStatus1xxOk returns a tuple with the AllStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllStatus1xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllStatus1xxOk() (*int64, bool) { if o == nil || o.AllStatus1xx == nil { return nil, false } @@ -8119,15 +8119,15 @@ func (o *RealtimeMeasurements) HasAllStatus1xx() bool { return false } -// SetAllStatus1xx gets a reference to the given int32 and assigns it to the AllStatus1xx field. -func (o *RealtimeMeasurements) SetAllStatus1xx(v int32) { +// SetAllStatus1xx gets a reference to the given int64 and assigns it to the AllStatus1xx field. +func (o *RealtimeMeasurements) SetAllStatus1xx(v int64) { o.AllStatus1xx = &v } // GetAllStatus2xx returns the AllStatus2xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllStatus2xx() int32 { +func (o *RealtimeMeasurements) GetAllStatus2xx() int64 { if o == nil || o.AllStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus2xx @@ -8135,7 +8135,7 @@ func (o *RealtimeMeasurements) GetAllStatus2xx() int32 { // GetAllStatus2xxOk returns a tuple with the AllStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllStatus2xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllStatus2xxOk() (*int64, bool) { if o == nil || o.AllStatus2xx == nil { return nil, false } @@ -8151,15 +8151,15 @@ func (o *RealtimeMeasurements) HasAllStatus2xx() bool { return false } -// SetAllStatus2xx gets a reference to the given int32 and assigns it to the AllStatus2xx field. -func (o *RealtimeMeasurements) SetAllStatus2xx(v int32) { +// SetAllStatus2xx gets a reference to the given int64 and assigns it to the AllStatus2xx field. +func (o *RealtimeMeasurements) SetAllStatus2xx(v int64) { o.AllStatus2xx = &v } // GetAllStatus3xx returns the AllStatus3xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllStatus3xx() int32 { +func (o *RealtimeMeasurements) GetAllStatus3xx() int64 { if o == nil || o.AllStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus3xx @@ -8167,7 +8167,7 @@ func (o *RealtimeMeasurements) GetAllStatus3xx() int32 { // GetAllStatus3xxOk returns a tuple with the AllStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllStatus3xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllStatus3xxOk() (*int64, bool) { if o == nil || o.AllStatus3xx == nil { return nil, false } @@ -8183,15 +8183,15 @@ func (o *RealtimeMeasurements) HasAllStatus3xx() bool { return false } -// SetAllStatus3xx gets a reference to the given int32 and assigns it to the AllStatus3xx field. -func (o *RealtimeMeasurements) SetAllStatus3xx(v int32) { +// SetAllStatus3xx gets a reference to the given int64 and assigns it to the AllStatus3xx field. +func (o *RealtimeMeasurements) SetAllStatus3xx(v int64) { o.AllStatus3xx = &v } // GetAllStatus4xx returns the AllStatus4xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllStatus4xx() int32 { +func (o *RealtimeMeasurements) GetAllStatus4xx() int64 { if o == nil || o.AllStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus4xx @@ -8199,7 +8199,7 @@ func (o *RealtimeMeasurements) GetAllStatus4xx() int32 { // GetAllStatus4xxOk returns a tuple with the AllStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllStatus4xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllStatus4xxOk() (*int64, bool) { if o == nil || o.AllStatus4xx == nil { return nil, false } @@ -8215,15 +8215,15 @@ func (o *RealtimeMeasurements) HasAllStatus4xx() bool { return false } -// SetAllStatus4xx gets a reference to the given int32 and assigns it to the AllStatus4xx field. -func (o *RealtimeMeasurements) SetAllStatus4xx(v int32) { +// SetAllStatus4xx gets a reference to the given int64 and assigns it to the AllStatus4xx field. +func (o *RealtimeMeasurements) SetAllStatus4xx(v int64) { o.AllStatus4xx = &v } // GetAllStatus5xx returns the AllStatus5xx field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetAllStatus5xx() int32 { +func (o *RealtimeMeasurements) GetAllStatus5xx() int64 { if o == nil || o.AllStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus5xx @@ -8231,7 +8231,7 @@ func (o *RealtimeMeasurements) GetAllStatus5xx() int32 { // GetAllStatus5xxOk returns a tuple with the AllStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetAllStatus5xxOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetAllStatus5xxOk() (*int64, bool) { if o == nil || o.AllStatus5xx == nil { return nil, false } @@ -8247,8 +8247,8 @@ func (o *RealtimeMeasurements) HasAllStatus5xx() bool { return false } -// SetAllStatus5xx gets a reference to the given int32 and assigns it to the AllStatus5xx field. -func (o *RealtimeMeasurements) SetAllStatus5xx(v int32) { +// SetAllStatus5xx gets a reference to the given int64 and assigns it to the AllStatus5xx field. +func (o *RealtimeMeasurements) SetAllStatus5xx(v int64) { o.AllStatus5xx = &v } @@ -8285,9 +8285,9 @@ func (o *RealtimeMeasurements) SetOriginOffload(v float32) { } // GetRequestDeniedGetHeadBody returns the RequestDeniedGetHeadBody field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBody() int32 { +func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBody() int64 { if o == nil || o.RequestDeniedGetHeadBody == nil { - var ret int32 + var ret int64 return ret } return *o.RequestDeniedGetHeadBody @@ -8295,7 +8295,7 @@ func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBody() int32 { // GetRequestDeniedGetHeadBodyOk returns a tuple with the RequestDeniedGetHeadBody field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBodyOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetRequestDeniedGetHeadBodyOk() (*int64, bool) { if o == nil || o.RequestDeniedGetHeadBody == nil { return nil, false } @@ -8311,15 +8311,15 @@ func (o *RealtimeMeasurements) HasRequestDeniedGetHeadBody() bool { return false } -// SetRequestDeniedGetHeadBody gets a reference to the given int32 and assigns it to the RequestDeniedGetHeadBody field. -func (o *RealtimeMeasurements) SetRequestDeniedGetHeadBody(v int32) { +// SetRequestDeniedGetHeadBody gets a reference to the given int64 and assigns it to the RequestDeniedGetHeadBody field. +func (o *RealtimeMeasurements) SetRequestDeniedGetHeadBody(v int64) { o.RequestDeniedGetHeadBody = &v } // GetServiceDdosRequestsDetected returns the ServiceDdosRequestsDetected field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetServiceDdosRequestsDetected() int32 { +func (o *RealtimeMeasurements) GetServiceDdosRequestsDetected() int64 { if o == nil || o.ServiceDdosRequestsDetected == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsDetected @@ -8327,7 +8327,7 @@ func (o *RealtimeMeasurements) GetServiceDdosRequestsDetected() int32 { // GetServiceDdosRequestsDetectedOk returns a tuple with the ServiceDdosRequestsDetected field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetServiceDdosRequestsDetectedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetServiceDdosRequestsDetectedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsDetected == nil { return nil, false } @@ -8343,15 +8343,15 @@ func (o *RealtimeMeasurements) HasServiceDdosRequestsDetected() bool { return false } -// SetServiceDdosRequestsDetected gets a reference to the given int32 and assigns it to the ServiceDdosRequestsDetected field. -func (o *RealtimeMeasurements) SetServiceDdosRequestsDetected(v int32) { +// SetServiceDdosRequestsDetected gets a reference to the given int64 and assigns it to the ServiceDdosRequestsDetected field. +func (o *RealtimeMeasurements) SetServiceDdosRequestsDetected(v int64) { o.ServiceDdosRequestsDetected = &v } // GetServiceDdosRequestsMitigated returns the ServiceDdosRequestsMitigated field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigated() int32 { +func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigated() int64 { if o == nil || o.ServiceDdosRequestsMitigated == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsMitigated @@ -8359,7 +8359,7 @@ func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigated() int32 { // GetServiceDdosRequestsMitigatedOk returns a tuple with the ServiceDdosRequestsMitigated field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigatedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetServiceDdosRequestsMitigatedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsMitigated == nil { return nil, false } @@ -8375,15 +8375,15 @@ func (o *RealtimeMeasurements) HasServiceDdosRequestsMitigated() bool { return false } -// SetServiceDdosRequestsMitigated gets a reference to the given int32 and assigns it to the ServiceDdosRequestsMitigated field. -func (o *RealtimeMeasurements) SetServiceDdosRequestsMitigated(v int32) { +// SetServiceDdosRequestsMitigated gets a reference to the given int64 and assigns it to the ServiceDdosRequestsMitigated field. +func (o *RealtimeMeasurements) SetServiceDdosRequestsMitigated(v int64) { o.ServiceDdosRequestsMitigated = &v } // GetServiceDdosRequestsAllowed returns the ServiceDdosRequestsAllowed field value if set, zero value otherwise. -func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowed() int32 { +func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowed() int64 { if o == nil || o.ServiceDdosRequestsAllowed == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsAllowed @@ -8391,7 +8391,7 @@ func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowed() int32 { // GetServiceDdosRequestsAllowedOk returns a tuple with the ServiceDdosRequestsAllowed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowedOk() (*int32, bool) { +func (o *RealtimeMeasurements) GetServiceDdosRequestsAllowedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsAllowed == nil { return nil, false } @@ -8407,8 +8407,8 @@ func (o *RealtimeMeasurements) HasServiceDdosRequestsAllowed() bool { return false } -// SetServiceDdosRequestsAllowed gets a reference to the given int32 and assigns it to the ServiceDdosRequestsAllowed field. -func (o *RealtimeMeasurements) SetServiceDdosRequestsAllowed(v int32) { +// SetServiceDdosRequestsAllowed gets a reference to the given int64 and assigns it to the ServiceDdosRequestsAllowed field. +func (o *RealtimeMeasurements) SetServiceDdosRequestsAllowed(v int64) { o.ServiceDdosRequestsAllowed = &v } diff --git a/fastly/model_results.go b/fastly/model_results.go index 324164a..2fde959 100644 --- a/fastly/model_results.go +++ b/fastly/model_results.go @@ -19,502 +19,502 @@ import ( // Results The results of stats queries, may be grouped by service depending on endpoint, and aggregated over the appropriate time span. type Results struct { // Number of requests processed. - Requests *int32 `json:"requests,omitempty"` + Requests *int64 `json:"requests,omitempty"` // Number of cache hits. - Hits *int32 `json:"hits,omitempty"` + Hits *int64 `json:"hits,omitempty"` // Total amount of time spent processing cache hits (in seconds). HitsTime *float32 `json:"hits_time,omitempty"` // Number of cache misses. - Miss *int32 `json:"miss,omitempty"` + Miss *int64 `json:"miss,omitempty"` // Total amount of time spent processing cache misses (in seconds). MissTime *float32 `json:"miss_time,omitempty"` // Number of requests that passed through the CDN without being cached. - Pass *int32 `json:"pass,omitempty"` + Pass *int64 `json:"pass,omitempty"` // Total amount of time spent processing cache passes (in seconds). PassTime *float32 `json:"pass_time,omitempty"` // Number of cache errors. - Errors *int32 `json:"errors,omitempty"` + Errors *int64 `json:"errors,omitempty"` // Number of restarts performed. - Restarts *int32 `json:"restarts,omitempty"` + Restarts *int64 `json:"restarts,omitempty"` // Ratio of cache hits to cache misses (between 0 and 1). HitRatio NullableFloat32 `json:"hit_ratio,omitempty"` // Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes` + `compute_resp_header_bytes` + `compute_resp_body_bytes` + `compute_bereq_header_bytes` + `compute_bereq_body_bytes` + `websocket_resp_header_bytes` + `websocket_resp_body_bytes` + `websocket_bereq_header_bytes` + `websocket_bereq_body_bytes` + `fanout_resp_header_bytes` + `fanout_resp_body_bytes` + `fanout_bereq_header_bytes` + `fanout_bereq_body_bytes`). - Bandwidth *int32 `json:"bandwidth,omitempty"` + Bandwidth *int64 `json:"bandwidth,omitempty"` // Total body bytes delivered (alias for resp_body_bytes). - BodySize *int32 `json:"body_size,omitempty"` + BodySize *int64 `json:"body_size,omitempty"` // Total header bytes delivered (alias for resp_header_bytes). - HeaderSize *int32 `json:"header_size,omitempty"` + HeaderSize *int64 `json:"header_size,omitempty"` // Total body bytes received. - ReqBodyBytes *int32 `json:"req_body_bytes,omitempty"` + ReqBodyBytes *int64 `json:"req_body_bytes,omitempty"` // Total header bytes received. - ReqHeaderBytes *int32 `json:"req_header_bytes,omitempty"` + ReqHeaderBytes *int64 `json:"req_header_bytes,omitempty"` // Total body bytes delivered (edge_resp_body_bytes + shield_resp_body_bytes). - RespBodyBytes *int32 `json:"resp_body_bytes,omitempty"` + RespBodyBytes *int64 `json:"resp_body_bytes,omitempty"` // Total header bytes delivered (edge_resp_header_bytes + shield_resp_header_bytes). - RespHeaderBytes *int32 `json:"resp_header_bytes,omitempty"` + RespHeaderBytes *int64 `json:"resp_header_bytes,omitempty"` // Total body bytes sent to origin. - BereqBodyBytes *int32 `json:"bereq_body_bytes,omitempty"` + BereqBodyBytes *int64 `json:"bereq_body_bytes,omitempty"` // Total header bytes sent to origin. - BereqHeaderBytes *int32 `json:"bereq_header_bytes,omitempty"` + BereqHeaderBytes *int64 `json:"bereq_header_bytes,omitempty"` // Number of requests that were designated uncachable. - Uncacheable *int32 `json:"uncacheable,omitempty"` + Uncacheable *int64 `json:"uncacheable,omitempty"` // Optional. Pipe operations performed (legacy feature). - Pipe *int32 `json:"pipe,omitempty"` + Pipe *int64 `json:"pipe,omitempty"` // Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement). - Synth *int32 `json:"synth,omitempty"` + Synth *int64 `json:"synth,omitempty"` // Number of requests that were received over TLS. - TLS *int32 `json:"tls,omitempty"` + TLS *int64 `json:"tls,omitempty"` // Number of requests received over TLS 1.0. - TLSV10 *int32 `json:"tls_v10,omitempty"` + TLSV10 *int64 `json:"tls_v10,omitempty"` // Number of requests received over TLS 1.1. - TLSV11 *int32 `json:"tls_v11,omitempty"` + TLSV11 *int64 `json:"tls_v11,omitempty"` // Number of requests received over TLS 1.2. - TLSV12 *int32 `json:"tls_v12,omitempty"` + TLSV12 *int64 `json:"tls_v12,omitempty"` // Number of requests received over TLS 1.3. - TLSV13 *int32 `json:"tls_v13,omitempty"` + TLSV13 *int64 `json:"tls_v13,omitempty"` // Number of requests sent by end users to Fastly. - EdgeRequests *int32 `json:"edge_requests,omitempty"` + EdgeRequests *int64 `json:"edge_requests,omitempty"` // Total header bytes delivered from Fastly to the end user. - EdgeRespHeaderBytes *int32 `json:"edge_resp_header_bytes,omitempty"` + EdgeRespHeaderBytes *int64 `json:"edge_resp_header_bytes,omitempty"` // Total body bytes delivered from Fastly to the end user. - EdgeRespBodyBytes *int32 `json:"edge_resp_body_bytes,omitempty"` + EdgeRespBodyBytes *int64 `json:"edge_resp_body_bytes,omitempty"` // Number of requests sent by end users to Fastly that resulted in a hit at the edge. - EdgeHitRequests *int32 `json:"edge_hit_requests,omitempty"` + EdgeHitRequests *int64 `json:"edge_hit_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a miss at the edge. - EdgeMissRequests *int32 `json:"edge_miss_requests,omitempty"` + EdgeMissRequests *int64 `json:"edge_miss_requests,omitempty"` // Number of requests sent to origin. - OriginFetches *int32 `json:"origin_fetches,omitempty"` + OriginFetches *int64 `json:"origin_fetches,omitempty"` // Total request header bytes sent to origin. - OriginFetchHeaderBytes *int32 `json:"origin_fetch_header_bytes,omitempty"` + OriginFetchHeaderBytes *int64 `json:"origin_fetch_header_bytes,omitempty"` // Total request body bytes sent to origin. - OriginFetchBodyBytes *int32 `json:"origin_fetch_body_bytes,omitempty"` + OriginFetchBodyBytes *int64 `json:"origin_fetch_body_bytes,omitempty"` // Total header bytes received from origin. - OriginFetchRespHeaderBytes *int32 `json:"origin_fetch_resp_header_bytes,omitempty"` + OriginFetchRespHeaderBytes *int64 `json:"origin_fetch_resp_header_bytes,omitempty"` // Total body bytes received from origin. - OriginFetchRespBodyBytes *int32 `json:"origin_fetch_resp_body_bytes,omitempty"` + OriginFetchRespBodyBytes *int64 `json:"origin_fetch_resp_body_bytes,omitempty"` // Number of responses received from origin with a `304` status code in response to an `If-Modified-Since` or `If-None-Match` request. Under regular scenarios, a revalidation will imply a cache hit. However, if using Fastly Image Optimizer or segmented caching this may result in a cache miss. - OriginRevalidations *int32 `json:"origin_revalidations,omitempty"` + OriginRevalidations *int64 `json:"origin_revalidations,omitempty"` // The total number of completed requests made to backends (origins) that returned cacheable content. - OriginCacheFetches *int32 `json:"origin_cache_fetches,omitempty"` + OriginCacheFetches *int64 `json:"origin_cache_fetches,omitempty"` // Number of requests from edge to the shield POP. - Shield *int32 `json:"shield,omitempty"` + Shield *int64 `json:"shield,omitempty"` // Total body bytes delivered via a shield. - ShieldRespBodyBytes *int32 `json:"shield_resp_body_bytes,omitempty"` + ShieldRespBodyBytes *int64 `json:"shield_resp_body_bytes,omitempty"` // Total header bytes delivered via a shield. - ShieldRespHeaderBytes *int32 `json:"shield_resp_header_bytes,omitempty"` + ShieldRespHeaderBytes *int64 `json:"shield_resp_header_bytes,omitempty"` // Number of requests made from one Fastly POP to another, as part of shielding. - ShieldFetches *int32 `json:"shield_fetches,omitempty"` + ShieldFetches *int64 `json:"shield_fetches,omitempty"` // Total request header bytes sent to a shield. - ShieldFetchHeaderBytes *int32 `json:"shield_fetch_header_bytes,omitempty"` + ShieldFetchHeaderBytes *int64 `json:"shield_fetch_header_bytes,omitempty"` // Total request body bytes sent to a shield. - ShieldFetchBodyBytes *int32 `json:"shield_fetch_body_bytes,omitempty"` + ShieldFetchBodyBytes *int64 `json:"shield_fetch_body_bytes,omitempty"` // Total response header bytes sent from a shield to the edge. - ShieldFetchRespHeaderBytes *int32 `json:"shield_fetch_resp_header_bytes,omitempty"` + ShieldFetchRespHeaderBytes *int64 `json:"shield_fetch_resp_header_bytes,omitempty"` // Total response body bytes sent from a shield to the edge. - ShieldFetchRespBodyBytes *int32 `json:"shield_fetch_resp_body_bytes,omitempty"` + ShieldFetchRespBodyBytes *int64 `json:"shield_fetch_resp_body_bytes,omitempty"` // Number of responses received from origin with a `304` status code, in response to an `If-Modified-Since` or `If-None-Match` request to a shield. Under regular scenarios, a revalidation will imply a cache hit. However, if using segmented caching this may result in a cache miss. - ShieldRevalidations *int32 `json:"shield_revalidations,omitempty"` + ShieldRevalidations *int64 `json:"shield_revalidations,omitempty"` // The total number of completed requests made to shields that returned cacheable content. - ShieldCacheFetches *int32 `json:"shield_cache_fetches,omitempty"` + ShieldCacheFetches *int64 `json:"shield_cache_fetches,omitempty"` // Number of requests that were received over IPv6. - Ipv6 *int32 `json:"ipv6,omitempty"` + Ipv6 *int64 `json:"ipv6,omitempty"` // Number of responses that came from the Fastly On-the-Fly Packaging service for video-on-demand. - Otfp *int32 `json:"otfp,omitempty"` + Otfp *int64 `json:"otfp,omitempty"` // Total body bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpRespBodyBytes *int32 `json:"otfp_resp_body_bytes,omitempty"` + OtfpRespBodyBytes *int64 `json:"otfp_resp_body_bytes,omitempty"` // Total header bytes delivered from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpRespHeaderBytes *int32 `json:"otfp_resp_header_bytes,omitempty"` + OtfpRespHeaderBytes *int64 `json:"otfp_resp_header_bytes,omitempty"` // Total body bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpShieldRespBodyBytes *int32 `json:"otfp_shield_resp_body_bytes,omitempty"` + OtfpShieldRespBodyBytes *int64 `json:"otfp_shield_resp_body_bytes,omitempty"` // Total header bytes delivered via a shield for the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpShieldRespHeaderBytes *int32 `json:"otfp_shield_resp_header_bytes,omitempty"` + OtfpShieldRespHeaderBytes *int64 `json:"otfp_shield_resp_header_bytes,omitempty"` // Number of responses that were manifest files from the Fastly On-the-Fly Packaging service for video-on-demand. - OtfpManifests *int32 `json:"otfp_manifests,omitempty"` + OtfpManifests *int64 `json:"otfp_manifests,omitempty"` // Total amount of time spent delivering a response from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). OtfpDeliverTime *float32 `json:"otfp_deliver_time,omitempty"` // Total amount of time spent delivering a response via a shield from the Fastly On-the-Fly Packaging service for video-on-demand (in seconds). OtfpShieldTime *float32 `json:"otfp_shield_time,omitempty"` // Number of responses with the video segment or video manifest MIME type (i.e., application/x-mpegurl, application/vnd.apple.mpegurl, application/f4m, application/dash+xml, application/vnd.ms-sstr+xml, ideo/mp2t, audio/aac, video/f4f, video/x-flv, video/mp4, audio/mp4). - Video *int32 `json:"video,omitempty"` + Video *int64 `json:"video,omitempty"` // Number of responses with the PCI flag turned on. - Pci *int32 `json:"pci,omitempty"` + Pci *int64 `json:"pci,omitempty"` // Number of log lines sent. - Log *int32 `json:"log,omitempty"` + Log *int64 `json:"log,omitempty"` // Total log bytes sent. - LogBytes *int32 `json:"log_bytes,omitempty"` + LogBytes *int64 `json:"log_bytes,omitempty"` // Number of requests received over HTTP/2. - HTTP2 *int32 `json:"http2,omitempty"` + HTTP2 *int64 `json:"http2,omitempty"` // Number of requests received over HTTP/3. - HTTP3 *int32 `json:"http3,omitempty"` + HTTP3 *int64 `json:"http3,omitempty"` // Number of requests that triggered a WAF rule and were logged. - WafLogged *int32 `json:"waf_logged,omitempty"` + WafLogged *int64 `json:"waf_logged,omitempty"` // Number of requests that triggered a WAF rule and were blocked. - WafBlocked *int32 `json:"waf_blocked,omitempty"` + WafBlocked *int64 `json:"waf_blocked,omitempty"` // Number of requests that triggered a WAF rule and were passed. - WafPassed *int32 `json:"waf_passed,omitempty"` + WafPassed *int64 `json:"waf_passed,omitempty"` // Total body bytes received from requests that triggered a WAF rule. - AttackReqBodyBytes *int32 `json:"attack_req_body_bytes,omitempty"` + AttackReqBodyBytes *int64 `json:"attack_req_body_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule. - AttackReqHeaderBytes *int32 `json:"attack_req_header_bytes,omitempty"` + AttackReqHeaderBytes *int64 `json:"attack_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was logged. - AttackLoggedReqBodyBytes *int32 `json:"attack_logged_req_body_bytes,omitempty"` + AttackLoggedReqBodyBytes *int64 `json:"attack_logged_req_body_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was logged. - AttackLoggedReqHeaderBytes *int32 `json:"attack_logged_req_header_bytes,omitempty"` + AttackLoggedReqHeaderBytes *int64 `json:"attack_logged_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was blocked. - AttackBlockedReqBodyBytes *int32 `json:"attack_blocked_req_body_bytes,omitempty"` + AttackBlockedReqBodyBytes *int64 `json:"attack_blocked_req_body_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was blocked. - AttackBlockedReqHeaderBytes *int32 `json:"attack_blocked_req_header_bytes,omitempty"` + AttackBlockedReqHeaderBytes *int64 `json:"attack_blocked_req_header_bytes,omitempty"` // Total body bytes received from requests that triggered a WAF rule that was passed. - AttackPassedReqBodyBytes *int32 `json:"attack_passed_req_body_bytes,omitempty"` + AttackPassedReqBodyBytes *int64 `json:"attack_passed_req_body_bytes,omitempty"` // Total header bytes received from requests that triggered a WAF rule that was passed. - AttackPassedReqHeaderBytes *int32 `json:"attack_passed_req_header_bytes,omitempty"` + AttackPassedReqHeaderBytes *int64 `json:"attack_passed_req_header_bytes,omitempty"` // Total bytes delivered for requests that triggered a WAF rule and returned a synthetic response. - AttackRespSynthBytes *int32 `json:"attack_resp_synth_bytes,omitempty"` + AttackRespSynthBytes *int64 `json:"attack_resp_synth_bytes,omitempty"` // Number of responses that came from the Fastly Image Optimizer service. If the service receives 10 requests for an image, this stat will be 10 regardless of how many times the image was transformed. - Imgopto *int32 `json:"imgopto,omitempty"` + Imgopto *int64 `json:"imgopto,omitempty"` // Total body bytes delivered from the Fastly Image Optimizer service, including shield traffic. - ImgoptoRespBodyBytes *int32 `json:"imgopto_resp_body_bytes,omitempty"` + ImgoptoRespBodyBytes *int64 `json:"imgopto_resp_body_bytes,omitempty"` // Total header bytes delivered from the Fastly Image Optimizer service, including shield traffic. - ImgoptoRespHeaderBytes *int32 `json:"imgopto_resp_header_bytes,omitempty"` + ImgoptoRespHeaderBytes *int64 `json:"imgopto_resp_header_bytes,omitempty"` // Number of responses that came from the Fastly Image Optimizer service via a shield. - ImgoptoShield *int32 `json:"imgopto_shield,omitempty"` + ImgoptoShield *int64 `json:"imgopto_shield,omitempty"` // Total body bytes delivered via a shield from the Fastly Image Optimizer service. - ImgoptoShieldRespBodyBytes *int32 `json:"imgopto_shield_resp_body_bytes,omitempty"` + ImgoptoShieldRespBodyBytes *int64 `json:"imgopto_shield_resp_body_bytes,omitempty"` // Total header bytes delivered via a shield from the Fastly Image Optimizer service. - ImgoptoShieldRespHeaderBytes *int32 `json:"imgopto_shield_resp_header_bytes,omitempty"` + ImgoptoShieldRespHeaderBytes *int64 `json:"imgopto_shield_resp_header_bytes,omitempty"` // Number of transforms performed by the Fastly Image Optimizer service. - ImgoptoTransforms *int32 `json:"imgopto_transforms,omitempty"` + ImgoptoTransforms *int64 `json:"imgopto_transforms,omitempty"` // Number of video responses that came from the Fastly Image Optimizer service. - Imgvideo *int32 `json:"imgvideo,omitempty"` + Imgvideo *int64 `json:"imgvideo,omitempty"` // Number of video frames that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. - ImgvideoFrames *int32 `json:"imgvideo_frames,omitempty"` + ImgvideoFrames *int64 `json:"imgvideo_frames,omitempty"` // Total header bytes of video delivered from the Fastly Image Optimizer service. - ImgvideoRespHeaderBytes *int32 `json:"imgvideo_resp_header_bytes,omitempty"` + ImgvideoRespHeaderBytes *int64 `json:"imgvideo_resp_header_bytes,omitempty"` // Total body bytes of video delivered from the Fastly Image Optimizer service. - ImgvideoRespBodyBytes *int32 `json:"imgvideo_resp_body_bytes,omitempty"` + ImgvideoRespBodyBytes *int64 `json:"imgvideo_resp_body_bytes,omitempty"` // Total header bytes of video delivered via a shield from the Fastly Image Optimizer service. - ImgvideoShieldRespHeaderBytes *int32 `json:"imgvideo_shield_resp_header_bytes,omitempty"` + ImgvideoShieldRespHeaderBytes *int64 `json:"imgvideo_shield_resp_header_bytes,omitempty"` // Total body bytes of video delivered via a shield from the Fastly Image Optimizer service. - ImgvideoShieldRespBodyBytes *int32 `json:"imgvideo_shield_resp_body_bytes,omitempty"` + ImgvideoShieldRespBodyBytes *int64 `json:"imgvideo_shield_resp_body_bytes,omitempty"` // Number of video responses delivered via a shield that came from the Fastly Image Optimizer service. - ImgvideoShield *int32 `json:"imgvideo_shield,omitempty"` + ImgvideoShield *int64 `json:"imgvideo_shield,omitempty"` // Number of video frames delivered via a shield that came from the Fastly Image Optimizer service. A video frame is an individual image within a sequence of video. - ImgvideoShieldFrames *int32 `json:"imgvideo_shield_frames,omitempty"` + ImgvideoShieldFrames *int64 `json:"imgvideo_shield_frames,omitempty"` // Number of responses sent with status code 200 (Success). - Status200 *int32 `json:"status_200,omitempty"` + Status200 *int64 `json:"status_200,omitempty"` // Number of responses sent with status code 204 (No Content). - Status204 *int32 `json:"status_204,omitempty"` + Status204 *int64 `json:"status_204,omitempty"` // Number of responses sent with status code 206 (Partial Content). - Status206 *int32 `json:"status_206,omitempty"` + Status206 *int64 `json:"status_206,omitempty"` // Number of responses sent with status code 301 (Moved Permanently). - Status301 *int32 `json:"status_301,omitempty"` + Status301 *int64 `json:"status_301,omitempty"` // Number of responses sent with status code 302 (Found). - Status302 *int32 `json:"status_302,omitempty"` + Status302 *int64 `json:"status_302,omitempty"` // Number of responses sent with status code 304 (Not Modified). - Status304 *int32 `json:"status_304,omitempty"` + Status304 *int64 `json:"status_304,omitempty"` // Number of responses sent with status code 400 (Bad Request). - Status400 *int32 `json:"status_400,omitempty"` + Status400 *int64 `json:"status_400,omitempty"` // Number of responses sent with status code 401 (Unauthorized). - Status401 *int32 `json:"status_401,omitempty"` + Status401 *int64 `json:"status_401,omitempty"` // Number of responses sent with status code 403 (Forbidden). - Status403 *int32 `json:"status_403,omitempty"` + Status403 *int64 `json:"status_403,omitempty"` // Number of responses sent with status code 404 (Not Found). - Status404 *int32 `json:"status_404,omitempty"` + Status404 *int64 `json:"status_404,omitempty"` // Number of responses sent with status code 406 (Not Acceptable). - Status406 *int32 `json:"status_406,omitempty"` + Status406 *int64 `json:"status_406,omitempty"` // Number of responses sent with status code 416 (Range Not Satisfiable). - Status416 *int32 `json:"status_416,omitempty"` + Status416 *int64 `json:"status_416,omitempty"` // Number of responses sent with status code 429 (Too Many Requests). - Status429 *int32 `json:"status_429,omitempty"` + Status429 *int64 `json:"status_429,omitempty"` // Number of responses sent with status code 500 (Internal Server Error). - Status500 *int32 `json:"status_500,omitempty"` + Status500 *int64 `json:"status_500,omitempty"` // Number of responses sent with status code 501 (Not Implemented). - Status501 *int32 `json:"status_501,omitempty"` + Status501 *int64 `json:"status_501,omitempty"` // Number of responses sent with status code 502 (Bad Gateway). - Status502 *int32 `json:"status_502,omitempty"` + Status502 *int64 `json:"status_502,omitempty"` // Number of responses sent with status code 503 (Service Unavailable). - Status503 *int32 `json:"status_503,omitempty"` + Status503 *int64 `json:"status_503,omitempty"` // Number of responses sent with status code 504 (Gateway Timeout). - Status504 *int32 `json:"status_504,omitempty"` + Status504 *int64 `json:"status_504,omitempty"` // Number of responses sent with status code 505 (HTTP Version Not Supported). - Status505 *int32 `json:"status_505,omitempty"` + Status505 *int64 `json:"status_505,omitempty"` // Number of \"Informational\" category status codes delivered. - Status1xx *int32 `json:"status_1xx,omitempty"` + Status1xx *int64 `json:"status_1xx,omitempty"` // Number of \"Success\" status codes delivered. - Status2xx *int32 `json:"status_2xx,omitempty"` + Status2xx *int64 `json:"status_2xx,omitempty"` // Number of \"Redirection\" codes delivered. - Status3xx *int32 `json:"status_3xx,omitempty"` + Status3xx *int64 `json:"status_3xx,omitempty"` // Number of \"Client Error\" codes delivered. - Status4xx *int32 `json:"status_4xx,omitempty"` + Status4xx *int64 `json:"status_4xx,omitempty"` // Number of \"Server Error\" codes delivered. - Status5xx *int32 `json:"status_5xx,omitempty"` + Status5xx *int64 `json:"status_5xx,omitempty"` // Number of objects served that were under 1KB in size. - ObjectSize1k *int32 `json:"object_size_1k,omitempty"` + ObjectSize1k *int64 `json:"object_size_1k,omitempty"` // Number of objects served that were between 1KB and 10KB in size. - ObjectSize10k *int32 `json:"object_size_10k,omitempty"` + ObjectSize10k *int64 `json:"object_size_10k,omitempty"` // Number of objects served that were between 10KB and 100KB in size. - ObjectSize100k *int32 `json:"object_size_100k,omitempty"` + ObjectSize100k *int64 `json:"object_size_100k,omitempty"` // Number of objects served that were between 100KB and 1MB in size. - ObjectSize1m *int32 `json:"object_size_1m,omitempty"` + ObjectSize1m *int64 `json:"object_size_1m,omitempty"` // Number of objects served that were between 1MB and 10MB in size. - ObjectSize10m *int32 `json:"object_size_10m,omitempty"` + ObjectSize10m *int64 `json:"object_size_10m,omitempty"` // Number of objects served that were between 10MB and 100MB in size. - ObjectSize100m *int32 `json:"object_size_100m,omitempty"` + ObjectSize100m *int64 `json:"object_size_100m,omitempty"` // Number of objects served that were between 100MB and 1GB in size. - ObjectSize1g *int32 `json:"object_size_1g,omitempty"` + ObjectSize1g *int64 `json:"object_size_1g,omitempty"` // Time spent inside the `vcl_recv` Varnish subroutine (in seconds). RecvSubTime *float32 `json:"recv_sub_time,omitempty"` // Number of executions of the `vcl_recv` Varnish subroutine. - RecvSubCount *int32 `json:"recv_sub_count,omitempty"` + RecvSubCount *int64 `json:"recv_sub_count,omitempty"` // Time spent inside the `vcl_hash` Varnish subroutine (in seconds). HashSubTime *float32 `json:"hash_sub_time,omitempty"` // Number of executions of the `vcl_hash` Varnish subroutine. - HashSubCount *int32 `json:"hash_sub_count,omitempty"` + HashSubCount *int64 `json:"hash_sub_count,omitempty"` // Time spent inside the `vcl_miss` Varnish subroutine (in seconds). MissSubTime *float32 `json:"miss_sub_time,omitempty"` // Number of executions of the `vcl_miss` Varnish subroutine. - MissSubCount *int32 `json:"miss_sub_count,omitempty"` + MissSubCount *int64 `json:"miss_sub_count,omitempty"` // Time spent inside the `vcl_fetch` Varnish subroutine (in seconds). FetchSubTime *float32 `json:"fetch_sub_time,omitempty"` // Number of executions of the `vcl_fetch` Varnish subroutine. - FetchSubCount *int32 `json:"fetch_sub_count,omitempty"` + FetchSubCount *int64 `json:"fetch_sub_count,omitempty"` // Time spent inside the `vcl_pass` Varnish subroutine (in seconds). PassSubTime *float32 `json:"pass_sub_time,omitempty"` // Number of executions of the `vcl_pass` Varnish subroutine. - PassSubCount *int32 `json:"pass_sub_count,omitempty"` + PassSubCount *int64 `json:"pass_sub_count,omitempty"` // Time spent inside the `vcl_pipe` Varnish subroutine (in seconds). PipeSubTime *float32 `json:"pipe_sub_time,omitempty"` // Number of executions of the `vcl_pipe` Varnish subroutine. - PipeSubCount *int32 `json:"pipe_sub_count,omitempty"` + PipeSubCount *int64 `json:"pipe_sub_count,omitempty"` // Time spent inside the `vcl_deliver` Varnish subroutine (in seconds). DeliverSubTime *float32 `json:"deliver_sub_time,omitempty"` // Number of executions of the `vcl_deliver` Varnish subroutine. - DeliverSubCount *int32 `json:"deliver_sub_count,omitempty"` + DeliverSubCount *int64 `json:"deliver_sub_count,omitempty"` // Time spent inside the `vcl_error` Varnish subroutine (in seconds). ErrorSubTime *float32 `json:"error_sub_time,omitempty"` // Number of executions of the `vcl_error` Varnish subroutine. - ErrorSubCount *int32 `json:"error_sub_count,omitempty"` + ErrorSubCount *int64 `json:"error_sub_count,omitempty"` // Time spent inside the `vcl_hit` Varnish subroutine (in seconds). HitSubTime *float32 `json:"hit_sub_time,omitempty"` // Number of executions of the `vcl_hit` Varnish subroutine. - HitSubCount *int32 `json:"hit_sub_count,omitempty"` + HitSubCount *int64 `json:"hit_sub_count,omitempty"` // Time spent inside the `vcl_prehash` Varnish subroutine (in seconds). PrehashSubTime *float32 `json:"prehash_sub_time,omitempty"` // Number of executions of the `vcl_prehash` Varnish subroutine. - PrehashSubCount *int32 `json:"prehash_sub_count,omitempty"` + PrehashSubCount *int64 `json:"prehash_sub_count,omitempty"` // Time spent inside the `vcl_predeliver` Varnish subroutine (in seconds). PredeliverSubTime *float32 `json:"predeliver_sub_time,omitempty"` // Number of executions of the `vcl_predeliver` Varnish subroutine. - PredeliverSubCount *int32 `json:"predeliver_sub_count,omitempty"` + PredeliverSubCount *int64 `json:"predeliver_sub_count,omitempty"` // Number of bytes transferred during TLS handshake. - TLSHandshakeSentBytes *int32 `json:"tls_handshake_sent_bytes,omitempty"` + TLSHandshakeSentBytes *int64 `json:"tls_handshake_sent_bytes,omitempty"` // Total body bytes delivered for cache hits. - HitRespBodyBytes *int32 `json:"hit_resp_body_bytes,omitempty"` + HitRespBodyBytes *int64 `json:"hit_resp_body_bytes,omitempty"` // Total body bytes delivered for cache misses. - MissRespBodyBytes *int32 `json:"miss_resp_body_bytes,omitempty"` + MissRespBodyBytes *int64 `json:"miss_resp_body_bytes,omitempty"` // Total body bytes delivered for cache passes. - PassRespBodyBytes *int32 `json:"pass_resp_body_bytes,omitempty"` + PassRespBodyBytes *int64 `json:"pass_resp_body_bytes,omitempty"` // Number of `Range` requests to origin for segments of resources when using segmented caching. - SegblockOriginFetches *int32 `json:"segblock_origin_fetches,omitempty"` + SegblockOriginFetches *int64 `json:"segblock_origin_fetches,omitempty"` // Number of `Range` requests to a shield for segments of resources when using segmented caching. - SegblockShieldFetches *int32 `json:"segblock_shield_fetches,omitempty"` + SegblockShieldFetches *int64 `json:"segblock_shield_fetches,omitempty"` // The total number of requests that were received for your service by Fastly. - ComputeRequests *int32 `json:"compute_requests,omitempty"` + ComputeRequests *int64 `json:"compute_requests,omitempty"` // The total, actual amount of time used to process your requests, including active CPU time (in milliseconds). ComputeRequestTimeMs *float32 `json:"compute_request_time_ms,omitempty"` // The total amount of request processing time you will be billed for, measured in 50 millisecond increments. ComputeRequestTimeBilledMs *float32 `json:"compute_request_time_billed_ms,omitempty"` // The amount of RAM used for your service by Fastly (in bytes). - ComputeRAMUsed *int32 `json:"compute_ram_used,omitempty"` + ComputeRAMUsed *int64 `json:"compute_ram_used,omitempty"` // The amount of active CPU time used to process your requests (in milliseconds). ComputeExecutionTimeMs *float32 `json:"compute_execution_time_ms,omitempty"` // Total header bytes received by the Compute platform. - ComputeReqHeaderBytes *int32 `json:"compute_req_header_bytes,omitempty"` + ComputeReqHeaderBytes *int64 `json:"compute_req_header_bytes,omitempty"` // Total body bytes received by the Compute platform. - ComputeReqBodyBytes *int32 `json:"compute_req_body_bytes,omitempty"` + ComputeReqBodyBytes *int64 `json:"compute_req_body_bytes,omitempty"` // Total header bytes sent from Compute to end user. - ComputeRespHeaderBytes *int32 `json:"compute_resp_header_bytes,omitempty"` + ComputeRespHeaderBytes *int64 `json:"compute_resp_header_bytes,omitempty"` // Total body bytes sent from Compute to end user. - ComputeRespBodyBytes *int32 `json:"compute_resp_body_bytes,omitempty"` + ComputeRespBodyBytes *int64 `json:"compute_resp_body_bytes,omitempty"` // Number of \"Informational\" category status codes delivered by the Compute platform. - ComputeRespStatus1xx *int32 `json:"compute_resp_status_1xx,omitempty"` + ComputeRespStatus1xx *int64 `json:"compute_resp_status_1xx,omitempty"` // Number of \"Success\" category status codes delivered by the Compute platform. - ComputeRespStatus2xx *int32 `json:"compute_resp_status_2xx,omitempty"` + ComputeRespStatus2xx *int64 `json:"compute_resp_status_2xx,omitempty"` // Number of \"Redirection\" category status codes delivered by the Compute platform. - ComputeRespStatus3xx *int32 `json:"compute_resp_status_3xx,omitempty"` + ComputeRespStatus3xx *int64 `json:"compute_resp_status_3xx,omitempty"` // Number of \"Client Error\" category status codes delivered by the Compute platform. - ComputeRespStatus4xx *int32 `json:"compute_resp_status_4xx,omitempty"` + ComputeRespStatus4xx *int64 `json:"compute_resp_status_4xx,omitempty"` // Number of \"Server Error\" category status codes delivered by the Compute platform. - ComputeRespStatus5xx *int32 `json:"compute_resp_status_5xx,omitempty"` + ComputeRespStatus5xx *int64 `json:"compute_resp_status_5xx,omitempty"` // Total header bytes sent to backends (origins) by the Compute platform. - ComputeBereqHeaderBytes *int32 `json:"compute_bereq_header_bytes,omitempty"` + ComputeBereqHeaderBytes *int64 `json:"compute_bereq_header_bytes,omitempty"` // Total body bytes sent to backends (origins) by the Compute platform. - ComputeBereqBodyBytes *int32 `json:"compute_bereq_body_bytes,omitempty"` + ComputeBereqBodyBytes *int64 `json:"compute_bereq_body_bytes,omitempty"` // Total header bytes received from backends (origins) by the Compute platform. - ComputeBerespHeaderBytes *int32 `json:"compute_beresp_header_bytes,omitempty"` + ComputeBerespHeaderBytes *int64 `json:"compute_beresp_header_bytes,omitempty"` // Total body bytes received from backends (origins) by the Compute platform. - ComputeBerespBodyBytes *int32 `json:"compute_beresp_body_bytes,omitempty"` + ComputeBerespBodyBytes *int64 `json:"compute_beresp_body_bytes,omitempty"` // Number of backend requests started. - ComputeBereqs *int32 `json:"compute_bereqs,omitempty"` + ComputeBereqs *int64 `json:"compute_bereqs,omitempty"` // Number of backend request errors, including timeouts. - ComputeBereqErrors *int32 `json:"compute_bereq_errors,omitempty"` + ComputeBereqErrors *int64 `json:"compute_bereq_errors,omitempty"` // Number of times a guest exceeded its resource limit, includes heap, stack, globals, and code execution timeout. - ComputeResourceLimitExceeded *int32 `json:"compute_resource_limit_exceeded,omitempty"` + ComputeResourceLimitExceeded *int64 `json:"compute_resource_limit_exceeded,omitempty"` // Number of times a guest exceeded its heap limit. - ComputeHeapLimitExceeded *int32 `json:"compute_heap_limit_exceeded,omitempty"` + ComputeHeapLimitExceeded *int64 `json:"compute_heap_limit_exceeded,omitempty"` // Number of times a guest exceeded its stack limit. - ComputeStackLimitExceeded *int32 `json:"compute_stack_limit_exceeded,omitempty"` + ComputeStackLimitExceeded *int64 `json:"compute_stack_limit_exceeded,omitempty"` // Number of times a guest exceeded its globals limit. - ComputeGlobalsLimitExceeded *int32 `json:"compute_globals_limit_exceeded,omitempty"` + ComputeGlobalsLimitExceeded *int64 `json:"compute_globals_limit_exceeded,omitempty"` // Number of times a service experienced a guest code error. - ComputeGuestErrors *int32 `json:"compute_guest_errors,omitempty"` + ComputeGuestErrors *int64 `json:"compute_guest_errors,omitempty"` // Number of times a service experienced a guest runtime error. - ComputeRuntimeErrors *int32 `json:"compute_runtime_errors,omitempty"` + ComputeRuntimeErrors *int64 `json:"compute_runtime_errors,omitempty"` // Body bytes delivered for edge hits. - EdgeHitRespBodyBytes *int32 `json:"edge_hit_resp_body_bytes,omitempty"` + EdgeHitRespBodyBytes *int64 `json:"edge_hit_resp_body_bytes,omitempty"` // Header bytes delivered for edge hits. - EdgeHitRespHeaderBytes *int32 `json:"edge_hit_resp_header_bytes,omitempty"` + EdgeHitRespHeaderBytes *int64 `json:"edge_hit_resp_header_bytes,omitempty"` // Body bytes delivered for edge misses. - EdgeMissRespBodyBytes *int32 `json:"edge_miss_resp_body_bytes,omitempty"` + EdgeMissRespBodyBytes *int64 `json:"edge_miss_resp_body_bytes,omitempty"` // Header bytes delivered for edge misses. - EdgeMissRespHeaderBytes *int32 `json:"edge_miss_resp_header_bytes,omitempty"` + EdgeMissRespHeaderBytes *int64 `json:"edge_miss_resp_header_bytes,omitempty"` // Body bytes received from origin for cacheable content. - OriginCacheFetchRespBodyBytes *int32 `json:"origin_cache_fetch_resp_body_bytes,omitempty"` + OriginCacheFetchRespBodyBytes *int64 `json:"origin_cache_fetch_resp_body_bytes,omitempty"` // Header bytes received from an origin for cacheable content. - OriginCacheFetchRespHeaderBytes *int32 `json:"origin_cache_fetch_resp_header_bytes,omitempty"` + OriginCacheFetchRespHeaderBytes *int64 `json:"origin_cache_fetch_resp_header_bytes,omitempty"` // Number of requests that resulted in a hit at a shield. - ShieldHitRequests *int32 `json:"shield_hit_requests,omitempty"` + ShieldHitRequests *int64 `json:"shield_hit_requests,omitempty"` // Number of requests that resulted in a miss at a shield. - ShieldMissRequests *int32 `json:"shield_miss_requests,omitempty"` + ShieldMissRequests *int64 `json:"shield_miss_requests,omitempty"` // Header bytes delivered for shield hits. - ShieldHitRespHeaderBytes *int32 `json:"shield_hit_resp_header_bytes,omitempty"` + ShieldHitRespHeaderBytes *int64 `json:"shield_hit_resp_header_bytes,omitempty"` // Body bytes delivered for shield hits. - ShieldHitRespBodyBytes *int32 `json:"shield_hit_resp_body_bytes,omitempty"` + ShieldHitRespBodyBytes *int64 `json:"shield_hit_resp_body_bytes,omitempty"` // Header bytes delivered for shield misses. - ShieldMissRespHeaderBytes *int32 `json:"shield_miss_resp_header_bytes,omitempty"` + ShieldMissRespHeaderBytes *int64 `json:"shield_miss_resp_header_bytes,omitempty"` // Body bytes delivered for shield misses. - ShieldMissRespBodyBytes *int32 `json:"shield_miss_resp_body_bytes,omitempty"` + ShieldMissRespBodyBytes *int64 `json:"shield_miss_resp_body_bytes,omitempty"` // Total header bytes received from end users over passthrough WebSocket connections. - WebsocketReqHeaderBytes *int32 `json:"websocket_req_header_bytes,omitempty"` + WebsocketReqHeaderBytes *int64 `json:"websocket_req_header_bytes,omitempty"` // Total message content bytes received from end users over passthrough WebSocket connections. - WebsocketReqBodyBytes *int32 `json:"websocket_req_body_bytes,omitempty"` + WebsocketReqBodyBytes *int64 `json:"websocket_req_body_bytes,omitempty"` // Total header bytes sent to end users over passthrough WebSocket connections. - WebsocketRespHeaderBytes *int32 `json:"websocket_resp_header_bytes,omitempty"` + WebsocketRespHeaderBytes *int64 `json:"websocket_resp_header_bytes,omitempty"` // Total message content bytes sent to end users over passthrough WebSocket connections. - WebsocketRespBodyBytes *int32 `json:"websocket_resp_body_bytes,omitempty"` + WebsocketRespBodyBytes *int64 `json:"websocket_resp_body_bytes,omitempty"` // Total header bytes sent to backends over passthrough WebSocket connections. - WebsocketBereqHeaderBytes *int32 `json:"websocket_bereq_header_bytes,omitempty"` + WebsocketBereqHeaderBytes *int64 `json:"websocket_bereq_header_bytes,omitempty"` // Total message content bytes sent to backends over passthrough WebSocket connections. - WebsocketBereqBodyBytes *int32 `json:"websocket_bereq_body_bytes,omitempty"` + WebsocketBereqBodyBytes *int64 `json:"websocket_bereq_body_bytes,omitempty"` // Total header bytes received from backends over passthrough WebSocket connections. - WebsocketBerespHeaderBytes *int32 `json:"websocket_beresp_header_bytes,omitempty"` + WebsocketBerespHeaderBytes *int64 `json:"websocket_beresp_header_bytes,omitempty"` // Total message content bytes received from backends over passthrough WebSocket connections. - WebsocketBerespBodyBytes *int32 `json:"websocket_beresp_body_bytes,omitempty"` + WebsocketBerespBodyBytes *int64 `json:"websocket_beresp_body_bytes,omitempty"` // Total duration of passthrough WebSocket connections with end users. - WebsocketConnTimeMs *int32 `json:"websocket_conn_time_ms,omitempty"` + WebsocketConnTimeMs *int64 `json:"websocket_conn_time_ms,omitempty"` // Total published messages received from the publish API endpoint. - FanoutRecvPublishes *int32 `json:"fanout_recv_publishes,omitempty"` + FanoutRecvPublishes *int64 `json:"fanout_recv_publishes,omitempty"` // Total published messages sent to end users. - FanoutSendPublishes *int32 `json:"fanout_send_publishes,omitempty"` + FanoutSendPublishes *int64 `json:"fanout_send_publishes,omitempty"` // The total number of class a operations for the KV store. - KvStoreClassAOperations *int32 `json:"kv_store_class_a_operations,omitempty"` + KvStoreClassAOperations *int64 `json:"kv_store_class_a_operations,omitempty"` // The total number of class b operations for the KV store. - KvStoreClassBOperations *int32 `json:"kv_store_class_b_operations,omitempty"` + KvStoreClassBOperations *int64 `json:"kv_store_class_b_operations,omitempty"` // Use kv_store_class_a_operations. // Deprecated - ObjectStoreClassAOperations *int32 `json:"object_store_class_a_operations,omitempty"` + ObjectStoreClassAOperations *int64 `json:"object_store_class_a_operations,omitempty"` // Use kv_store_class_b_operations. // Deprecated - ObjectStoreClassBOperations *int32 `json:"object_store_class_b_operations,omitempty"` + ObjectStoreClassBOperations *int64 `json:"object_store_class_b_operations,omitempty"` // Total header bytes received from end users over Fanout connections. - FanoutReqHeaderBytes *int32 `json:"fanout_req_header_bytes,omitempty"` + FanoutReqHeaderBytes *int64 `json:"fanout_req_header_bytes,omitempty"` // Total body or message content bytes received from end users over Fanout connections. - FanoutReqBodyBytes *int32 `json:"fanout_req_body_bytes,omitempty"` + FanoutReqBodyBytes *int64 `json:"fanout_req_body_bytes,omitempty"` // Total header bytes sent to end users over Fanout connections. - FanoutRespHeaderBytes *int32 `json:"fanout_resp_header_bytes,omitempty"` + FanoutRespHeaderBytes *int64 `json:"fanout_resp_header_bytes,omitempty"` // Total body or message content bytes sent to end users over Fanout connections, excluding published message content. - FanoutRespBodyBytes *int32 `json:"fanout_resp_body_bytes,omitempty"` + FanoutRespBodyBytes *int64 `json:"fanout_resp_body_bytes,omitempty"` // Total header bytes sent to backends over Fanout connections. - FanoutBereqHeaderBytes *int32 `json:"fanout_bereq_header_bytes,omitempty"` + FanoutBereqHeaderBytes *int64 `json:"fanout_bereq_header_bytes,omitempty"` // Total body or message content bytes sent to backends over Fanout connections. - FanoutBereqBodyBytes *int32 `json:"fanout_bereq_body_bytes,omitempty"` + FanoutBereqBodyBytes *int64 `json:"fanout_bereq_body_bytes,omitempty"` // Total header bytes received from backends over Fanout connections. - FanoutBerespHeaderBytes *int32 `json:"fanout_beresp_header_bytes,omitempty"` + FanoutBerespHeaderBytes *int64 `json:"fanout_beresp_header_bytes,omitempty"` // Total body or message content bytes received from backends over Fanout connections. - FanoutBerespBodyBytes *int32 `json:"fanout_beresp_body_bytes,omitempty"` + FanoutBerespBodyBytes *int64 `json:"fanout_beresp_body_bytes,omitempty"` // Total duration of Fanout connections with end users. - FanoutConnTimeMs *int32 `json:"fanout_conn_time_ms,omitempty"` + FanoutConnTimeMs *int64 `json:"fanout_conn_time_ms,omitempty"` // For HTTP/2, the number of connections the limit-streams action was applied to. The limit-streams action caps the allowed number of concurrent streams in a connection. - DdosActionLimitStreamsConnections *int32 `json:"ddos_action_limit_streams_connections,omitempty"` + DdosActionLimitStreamsConnections *int64 `json:"ddos_action_limit_streams_connections,omitempty"` // For HTTP/2, the number of requests made on a connection for which the limit-streams action was taken. The limit-streams action caps the allowed number of concurrent streams in a connection. - DdosActionLimitStreamsRequests *int32 `json:"ddos_action_limit_streams_requests,omitempty"` + DdosActionLimitStreamsRequests *int64 `json:"ddos_action_limit_streams_requests,omitempty"` // The number of times the tarpit-accept action was taken. The tarpit-accept action adds a delay when accepting future connections. - DdosActionTarpitAccept *int32 `json:"ddos_action_tarpit_accept,omitempty"` + DdosActionTarpitAccept *int64 `json:"ddos_action_tarpit_accept,omitempty"` // The number of times the tarpit action was taken. The tarpit action delays writing the response to the client. - DdosActionTarpit *int32 `json:"ddos_action_tarpit,omitempty"` + DdosActionTarpit *int64 `json:"ddos_action_tarpit,omitempty"` // The number of times the close action was taken. The close action aborts the connection as soon as possible. The close action takes effect either right after accept, right after the client hello, or right after the response was sent. - DdosActionClose *int32 `json:"ddos_action_close,omitempty"` + DdosActionClose *int64 `json:"ddos_action_close,omitempty"` // The number of times the blackhole action was taken. The blackhole action quietly closes a TCP connection without sending a reset. The blackhole action quietly closes a TCP connection without notifying its peer (all TCP state is dropped). - DdosActionBlackhole *int32 `json:"ddos_action_blackhole,omitempty"` + DdosActionBlackhole *int64 `json:"ddos_action_blackhole,omitempty"` // The number of challenge-start tokens created. - BotChallengeStarts *int32 `json:"bot_challenge_starts,omitempty"` + BotChallengeStarts *int64 `json:"bot_challenge_starts,omitempty"` // The number of challenge-complete tokens that passed validation. - BotChallengeCompleteTokensPassed *int32 `json:"bot_challenge_complete_tokens_passed,omitempty"` + BotChallengeCompleteTokensPassed *int64 `json:"bot_challenge_complete_tokens_passed,omitempty"` // The number of challenge-complete tokens that failed validation. - BotChallengeCompleteTokensFailed *int32 `json:"bot_challenge_complete_tokens_failed,omitempty"` + BotChallengeCompleteTokensFailed *int64 `json:"bot_challenge_complete_tokens_failed,omitempty"` // The number of challenge-complete tokens checked. - BotChallengeCompleteTokensChecked *int32 `json:"bot_challenge_complete_tokens_checked,omitempty"` + BotChallengeCompleteTokensChecked *int64 `json:"bot_challenge_complete_tokens_checked,omitempty"` // The number of challenge-complete tokens not checked because the feature was disabled. - BotChallengeCompleteTokensDisabled *int32 `json:"bot_challenge_complete_tokens_disabled,omitempty"` + BotChallengeCompleteTokensDisabled *int64 `json:"bot_challenge_complete_tokens_disabled,omitempty"` // The number of challenge-complete tokens issued. For example, issuing a challenge-complete token after a series of CAPTCHA challenges ending in success. - BotChallengeCompleteTokensIssued *int32 `json:"bot_challenge_complete_tokens_issued,omitempty"` + BotChallengeCompleteTokensIssued *int64 `json:"bot_challenge_complete_tokens_issued,omitempty"` // The number of challenges issued. For example, the issuance of a CAPTCHA challenge. - BotChallengesIssued *int32 `json:"bot_challenges_issued,omitempty"` + BotChallengesIssued *int64 `json:"bot_challenges_issued,omitempty"` // The number of successful challenge solutions processed. For example, a correct CAPTCHA solution. - BotChallengesSucceeded *int32 `json:"bot_challenges_succeeded,omitempty"` + BotChallengesSucceeded *int64 `json:"bot_challenges_succeeded,omitempty"` // The number of failed challenge solutions processed. For example, an incorrect CAPTCHA solution. - BotChallengesFailed *int32 `json:"bot_challenges_failed,omitempty"` + BotChallengesFailed *int64 `json:"bot_challenges_failed,omitempty"` // The number of times the downgrade action was taken. The downgrade action restricts the client to http1. - DdosActionDowngrade *int32 `json:"ddos_action_downgrade,omitempty"` + DdosActionDowngrade *int64 `json:"ddos_action_downgrade,omitempty"` // The number of connections the downgrade action was applied to. The downgrade action restricts the connection to http1. - DdosActionDowngradedConnections *int32 `json:"ddos_action_downgraded_connections,omitempty"` + DdosActionDowngradedConnections *int64 `json:"ddos_action_downgraded_connections,omitempty"` // Number of cache hits for a VCL service. - AllHitRequests *int32 `json:"all_hit_requests,omitempty"` + AllHitRequests *int64 `json:"all_hit_requests,omitempty"` // Number of cache misses for a VCL service. - AllMissRequests *int32 `json:"all_miss_requests,omitempty"` + AllMissRequests *int64 `json:"all_miss_requests,omitempty"` // Number of requests that passed through the CDN without being cached for a VCL service. - AllPassRequests *int32 `json:"all_pass_requests,omitempty"` + AllPassRequests *int64 `json:"all_pass_requests,omitempty"` // Number of cache errors for a VCL service. - AllErrorRequests *int32 `json:"all_error_requests,omitempty"` + AllErrorRequests *int64 `json:"all_error_requests,omitempty"` // Number of requests that returned a synthetic response (i.e., response objects created with the `synthetic` VCL statement) for a VCL service. - AllSynthRequests *int32 `json:"all_synth_requests,omitempty"` + AllSynthRequests *int64 `json:"all_synth_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a hit at the edge for a VCL service. - AllEdgeHitRequests *int32 `json:"all_edge_hit_requests,omitempty"` + AllEdgeHitRequests *int64 `json:"all_edge_hit_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a miss at the edge for a VCL service. - AllEdgeMissRequests *int32 `json:"all_edge_miss_requests,omitempty"` + AllEdgeMissRequests *int64 `json:"all_edge_miss_requests,omitempty"` // Number of \"Informational\" category status codes delivered for all sources. - AllStatus1xx *int32 `json:"all_status_1xx,omitempty"` + AllStatus1xx *int64 `json:"all_status_1xx,omitempty"` // Number of \"Success\" status codes delivered for all sources. - AllStatus2xx *int32 `json:"all_status_2xx,omitempty"` + AllStatus2xx *int64 `json:"all_status_2xx,omitempty"` // Number of \"Redirection\" codes delivered for all sources. - AllStatus3xx *int32 `json:"all_status_3xx,omitempty"` + AllStatus3xx *int64 `json:"all_status_3xx,omitempty"` // Number of \"Client Error\" codes delivered for all sources. - AllStatus4xx *int32 `json:"all_status_4xx,omitempty"` + AllStatus4xx *int64 `json:"all_status_4xx,omitempty"` // Number of \"Server Error\" codes delivered for all sources. - AllStatus5xx *int32 `json:"all_status_5xx,omitempty"` + AllStatus5xx *int64 `json:"all_status_5xx,omitempty"` // Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). OriginOffload *float32 `json:"origin_offload,omitempty"` // Number of requests where Fastly responded with 400 due to the request being a GET or HEAD request containing a body. - RequestDeniedGetHeadBody *int32 `json:"request_denied_get_head_body,omitempty"` + RequestDeniedGetHeadBody *int64 `json:"request_denied_get_head_body,omitempty"` // Number of requests classified as a DDoS attack against a customer origin or service. - ServiceDdosRequestsDetected *int32 `json:"service_ddos_requests_detected,omitempty"` + ServiceDdosRequestsDetected *int64 `json:"service_ddos_requests_detected,omitempty"` // Number of requests classified as a DDoS attack against a customer origin or service that were mitigated by the Fastly platform. - ServiceDdosRequestsMitigated *int32 `json:"service_ddos_requests_mitigated,omitempty"` + ServiceDdosRequestsMitigated *int64 `json:"service_ddos_requests_mitigated,omitempty"` // Number of requests analyzed for DDoS attacks against a customer origin or service, but with no DDoS detected. - ServiceDdosRequestsAllowed *int32 `json:"service_ddos_requests_allowed,omitempty"` + ServiceDdosRequestsAllowed *int64 `json:"service_ddos_requests_allowed,omitempty"` ServiceID *string `json:"service_id,omitempty"` // Timestamp for the start of the time period being reported - StartTime *int32 `json:"start_time,omitempty"` + StartTime *int64 `json:"start_time,omitempty"` AdditionalProperties map[string]any } @@ -538,9 +538,9 @@ func NewResultsWithDefaults() *Results { } // GetRequests returns the Requests field value if set, zero value otherwise. -func (o *Results) GetRequests() int32 { +func (o *Results) GetRequests() int64 { if o == nil || o.Requests == nil { - var ret int32 + var ret int64 return ret } return *o.Requests @@ -548,7 +548,7 @@ func (o *Results) GetRequests() int32 { // GetRequestsOk returns a tuple with the Requests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetRequestsOk() (*int32, bool) { +func (o *Results) GetRequestsOk() (*int64, bool) { if o == nil || o.Requests == nil { return nil, false } @@ -564,15 +564,15 @@ func (o *Results) HasRequests() bool { return false } -// SetRequests gets a reference to the given int32 and assigns it to the Requests field. -func (o *Results) SetRequests(v int32) { +// SetRequests gets a reference to the given int64 and assigns it to the Requests field. +func (o *Results) SetRequests(v int64) { o.Requests = &v } // GetHits returns the Hits field value if set, zero value otherwise. -func (o *Results) GetHits() int32 { +func (o *Results) GetHits() int64 { if o == nil || o.Hits == nil { - var ret int32 + var ret int64 return ret } return *o.Hits @@ -580,7 +580,7 @@ func (o *Results) GetHits() int32 { // GetHitsOk returns a tuple with the Hits field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetHitsOk() (*int32, bool) { +func (o *Results) GetHitsOk() (*int64, bool) { if o == nil || o.Hits == nil { return nil, false } @@ -596,8 +596,8 @@ func (o *Results) HasHits() bool { return false } -// SetHits gets a reference to the given int32 and assigns it to the Hits field. -func (o *Results) SetHits(v int32) { +// SetHits gets a reference to the given int64 and assigns it to the Hits field. +func (o *Results) SetHits(v int64) { o.Hits = &v } @@ -634,9 +634,9 @@ func (o *Results) SetHitsTime(v float32) { } // GetMiss returns the Miss field value if set, zero value otherwise. -func (o *Results) GetMiss() int32 { +func (o *Results) GetMiss() int64 { if o == nil || o.Miss == nil { - var ret int32 + var ret int64 return ret } return *o.Miss @@ -644,7 +644,7 @@ func (o *Results) GetMiss() int32 { // GetMissOk returns a tuple with the Miss field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetMissOk() (*int32, bool) { +func (o *Results) GetMissOk() (*int64, bool) { if o == nil || o.Miss == nil { return nil, false } @@ -660,8 +660,8 @@ func (o *Results) HasMiss() bool { return false } -// SetMiss gets a reference to the given int32 and assigns it to the Miss field. -func (o *Results) SetMiss(v int32) { +// SetMiss gets a reference to the given int64 and assigns it to the Miss field. +func (o *Results) SetMiss(v int64) { o.Miss = &v } @@ -698,9 +698,9 @@ func (o *Results) SetMissTime(v float32) { } // GetPass returns the Pass field value if set, zero value otherwise. -func (o *Results) GetPass() int32 { +func (o *Results) GetPass() int64 { if o == nil || o.Pass == nil { - var ret int32 + var ret int64 return ret } return *o.Pass @@ -708,7 +708,7 @@ func (o *Results) GetPass() int32 { // GetPassOk returns a tuple with the Pass field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetPassOk() (*int32, bool) { +func (o *Results) GetPassOk() (*int64, bool) { if o == nil || o.Pass == nil { return nil, false } @@ -724,8 +724,8 @@ func (o *Results) HasPass() bool { return false } -// SetPass gets a reference to the given int32 and assigns it to the Pass field. -func (o *Results) SetPass(v int32) { +// SetPass gets a reference to the given int64 and assigns it to the Pass field. +func (o *Results) SetPass(v int64) { o.Pass = &v } @@ -762,9 +762,9 @@ func (o *Results) SetPassTime(v float32) { } // GetErrors returns the Errors field value if set, zero value otherwise. -func (o *Results) GetErrors() int32 { +func (o *Results) GetErrors() int64 { if o == nil || o.Errors == nil { - var ret int32 + var ret int64 return ret } return *o.Errors @@ -772,7 +772,7 @@ func (o *Results) GetErrors() int32 { // GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetErrorsOk() (*int32, bool) { +func (o *Results) GetErrorsOk() (*int64, bool) { if o == nil || o.Errors == nil { return nil, false } @@ -788,15 +788,15 @@ func (o *Results) HasErrors() bool { return false } -// SetErrors gets a reference to the given int32 and assigns it to the Errors field. -func (o *Results) SetErrors(v int32) { +// SetErrors gets a reference to the given int64 and assigns it to the Errors field. +func (o *Results) SetErrors(v int64) { o.Errors = &v } // GetRestarts returns the Restarts field value if set, zero value otherwise. -func (o *Results) GetRestarts() int32 { +func (o *Results) GetRestarts() int64 { if o == nil || o.Restarts == nil { - var ret int32 + var ret int64 return ret } return *o.Restarts @@ -804,7 +804,7 @@ func (o *Results) GetRestarts() int32 { // GetRestartsOk returns a tuple with the Restarts field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetRestartsOk() (*int32, bool) { +func (o *Results) GetRestartsOk() (*int64, bool) { if o == nil || o.Restarts == nil { return nil, false } @@ -820,8 +820,8 @@ func (o *Results) HasRestarts() bool { return false } -// SetRestarts gets a reference to the given int32 and assigns it to the Restarts field. -func (o *Results) SetRestarts(v int32) { +// SetRestarts gets a reference to the given int64 and assigns it to the Restarts field. +func (o *Results) SetRestarts(v int64) { o.Restarts = &v } @@ -869,9 +869,9 @@ func (o *Results) UnsetHitRatio() { } // GetBandwidth returns the Bandwidth field value if set, zero value otherwise. -func (o *Results) GetBandwidth() int32 { +func (o *Results) GetBandwidth() int64 { if o == nil || o.Bandwidth == nil { - var ret int32 + var ret int64 return ret } return *o.Bandwidth @@ -879,7 +879,7 @@ func (o *Results) GetBandwidth() int32 { // GetBandwidthOk returns a tuple with the Bandwidth field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBandwidthOk() (*int32, bool) { +func (o *Results) GetBandwidthOk() (*int64, bool) { if o == nil || o.Bandwidth == nil { return nil, false } @@ -895,15 +895,15 @@ func (o *Results) HasBandwidth() bool { return false } -// SetBandwidth gets a reference to the given int32 and assigns it to the Bandwidth field. -func (o *Results) SetBandwidth(v int32) { +// SetBandwidth gets a reference to the given int64 and assigns it to the Bandwidth field. +func (o *Results) SetBandwidth(v int64) { o.Bandwidth = &v } // GetBodySize returns the BodySize field value if set, zero value otherwise. -func (o *Results) GetBodySize() int32 { +func (o *Results) GetBodySize() int64 { if o == nil || o.BodySize == nil { - var ret int32 + var ret int64 return ret } return *o.BodySize @@ -911,7 +911,7 @@ func (o *Results) GetBodySize() int32 { // GetBodySizeOk returns a tuple with the BodySize field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBodySizeOk() (*int32, bool) { +func (o *Results) GetBodySizeOk() (*int64, bool) { if o == nil || o.BodySize == nil { return nil, false } @@ -927,15 +927,15 @@ func (o *Results) HasBodySize() bool { return false } -// SetBodySize gets a reference to the given int32 and assigns it to the BodySize field. -func (o *Results) SetBodySize(v int32) { +// SetBodySize gets a reference to the given int64 and assigns it to the BodySize field. +func (o *Results) SetBodySize(v int64) { o.BodySize = &v } // GetHeaderSize returns the HeaderSize field value if set, zero value otherwise. -func (o *Results) GetHeaderSize() int32 { +func (o *Results) GetHeaderSize() int64 { if o == nil || o.HeaderSize == nil { - var ret int32 + var ret int64 return ret } return *o.HeaderSize @@ -943,7 +943,7 @@ func (o *Results) GetHeaderSize() int32 { // GetHeaderSizeOk returns a tuple with the HeaderSize field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetHeaderSizeOk() (*int32, bool) { +func (o *Results) GetHeaderSizeOk() (*int64, bool) { if o == nil || o.HeaderSize == nil { return nil, false } @@ -959,15 +959,15 @@ func (o *Results) HasHeaderSize() bool { return false } -// SetHeaderSize gets a reference to the given int32 and assigns it to the HeaderSize field. -func (o *Results) SetHeaderSize(v int32) { +// SetHeaderSize gets a reference to the given int64 and assigns it to the HeaderSize field. +func (o *Results) SetHeaderSize(v int64) { o.HeaderSize = &v } // GetReqBodyBytes returns the ReqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetReqBodyBytes() int32 { +func (o *Results) GetReqBodyBytes() int64 { if o == nil || o.ReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ReqBodyBytes @@ -975,7 +975,7 @@ func (o *Results) GetReqBodyBytes() int32 { // GetReqBodyBytesOk returns a tuple with the ReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetReqBodyBytesOk() (*int32, bool) { +func (o *Results) GetReqBodyBytesOk() (*int64, bool) { if o == nil || o.ReqBodyBytes == nil { return nil, false } @@ -991,15 +991,15 @@ func (o *Results) HasReqBodyBytes() bool { return false } -// SetReqBodyBytes gets a reference to the given int32 and assigns it to the ReqBodyBytes field. -func (o *Results) SetReqBodyBytes(v int32) { +// SetReqBodyBytes gets a reference to the given int64 and assigns it to the ReqBodyBytes field. +func (o *Results) SetReqBodyBytes(v int64) { o.ReqBodyBytes = &v } // GetReqHeaderBytes returns the ReqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetReqHeaderBytes() int32 { +func (o *Results) GetReqHeaderBytes() int64 { if o == nil || o.ReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ReqHeaderBytes @@ -1007,7 +1007,7 @@ func (o *Results) GetReqHeaderBytes() int32 { // GetReqHeaderBytesOk returns a tuple with the ReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetReqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetReqHeaderBytesOk() (*int64, bool) { if o == nil || o.ReqHeaderBytes == nil { return nil, false } @@ -1023,15 +1023,15 @@ func (o *Results) HasReqHeaderBytes() bool { return false } -// SetReqHeaderBytes gets a reference to the given int32 and assigns it to the ReqHeaderBytes field. -func (o *Results) SetReqHeaderBytes(v int32) { +// SetReqHeaderBytes gets a reference to the given int64 and assigns it to the ReqHeaderBytes field. +func (o *Results) SetReqHeaderBytes(v int64) { o.ReqHeaderBytes = &v } // GetRespBodyBytes returns the RespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetRespBodyBytes() int32 { +func (o *Results) GetRespBodyBytes() int64 { if o == nil || o.RespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespBodyBytes @@ -1039,7 +1039,7 @@ func (o *Results) GetRespBodyBytes() int32 { // GetRespBodyBytesOk returns a tuple with the RespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetRespBodyBytesOk() (*int64, bool) { if o == nil || o.RespBodyBytes == nil { return nil, false } @@ -1055,15 +1055,15 @@ func (o *Results) HasRespBodyBytes() bool { return false } -// SetRespBodyBytes gets a reference to the given int32 and assigns it to the RespBodyBytes field. -func (o *Results) SetRespBodyBytes(v int32) { +// SetRespBodyBytes gets a reference to the given int64 and assigns it to the RespBodyBytes field. +func (o *Results) SetRespBodyBytes(v int64) { o.RespBodyBytes = &v } // GetRespHeaderBytes returns the RespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetRespHeaderBytes() int32 { +func (o *Results) GetRespHeaderBytes() int64 { if o == nil || o.RespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespHeaderBytes @@ -1071,7 +1071,7 @@ func (o *Results) GetRespHeaderBytes() int32 { // GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetRespHeaderBytesOk() (*int64, bool) { if o == nil || o.RespHeaderBytes == nil { return nil, false } @@ -1087,15 +1087,15 @@ func (o *Results) HasRespHeaderBytes() bool { return false } -// SetRespHeaderBytes gets a reference to the given int32 and assigns it to the RespHeaderBytes field. -func (o *Results) SetRespHeaderBytes(v int32) { +// SetRespHeaderBytes gets a reference to the given int64 and assigns it to the RespHeaderBytes field. +func (o *Results) SetRespHeaderBytes(v int64) { o.RespHeaderBytes = &v } // GetBereqBodyBytes returns the BereqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetBereqBodyBytes() int32 { +func (o *Results) GetBereqBodyBytes() int64 { if o == nil || o.BereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqBodyBytes @@ -1103,7 +1103,7 @@ func (o *Results) GetBereqBodyBytes() int32 { // GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBereqBodyBytesOk() (*int32, bool) { +func (o *Results) GetBereqBodyBytesOk() (*int64, bool) { if o == nil || o.BereqBodyBytes == nil { return nil, false } @@ -1119,15 +1119,15 @@ func (o *Results) HasBereqBodyBytes() bool { return false } -// SetBereqBodyBytes gets a reference to the given int32 and assigns it to the BereqBodyBytes field. -func (o *Results) SetBereqBodyBytes(v int32) { +// SetBereqBodyBytes gets a reference to the given int64 and assigns it to the BereqBodyBytes field. +func (o *Results) SetBereqBodyBytes(v int64) { o.BereqBodyBytes = &v } // GetBereqHeaderBytes returns the BereqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetBereqHeaderBytes() int32 { +func (o *Results) GetBereqHeaderBytes() int64 { if o == nil || o.BereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqHeaderBytes @@ -1135,7 +1135,7 @@ func (o *Results) GetBereqHeaderBytes() int32 { // GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBereqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.BereqHeaderBytes == nil { return nil, false } @@ -1151,15 +1151,15 @@ func (o *Results) HasBereqHeaderBytes() bool { return false } -// SetBereqHeaderBytes gets a reference to the given int32 and assigns it to the BereqHeaderBytes field. -func (o *Results) SetBereqHeaderBytes(v int32) { +// SetBereqHeaderBytes gets a reference to the given int64 and assigns it to the BereqHeaderBytes field. +func (o *Results) SetBereqHeaderBytes(v int64) { o.BereqHeaderBytes = &v } // GetUncacheable returns the Uncacheable field value if set, zero value otherwise. -func (o *Results) GetUncacheable() int32 { +func (o *Results) GetUncacheable() int64 { if o == nil || o.Uncacheable == nil { - var ret int32 + var ret int64 return ret } return *o.Uncacheable @@ -1167,7 +1167,7 @@ func (o *Results) GetUncacheable() int32 { // GetUncacheableOk returns a tuple with the Uncacheable field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetUncacheableOk() (*int32, bool) { +func (o *Results) GetUncacheableOk() (*int64, bool) { if o == nil || o.Uncacheable == nil { return nil, false } @@ -1183,15 +1183,15 @@ func (o *Results) HasUncacheable() bool { return false } -// SetUncacheable gets a reference to the given int32 and assigns it to the Uncacheable field. -func (o *Results) SetUncacheable(v int32) { +// SetUncacheable gets a reference to the given int64 and assigns it to the Uncacheable field. +func (o *Results) SetUncacheable(v int64) { o.Uncacheable = &v } // GetPipe returns the Pipe field value if set, zero value otherwise. -func (o *Results) GetPipe() int32 { +func (o *Results) GetPipe() int64 { if o == nil || o.Pipe == nil { - var ret int32 + var ret int64 return ret } return *o.Pipe @@ -1199,7 +1199,7 @@ func (o *Results) GetPipe() int32 { // GetPipeOk returns a tuple with the Pipe field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetPipeOk() (*int32, bool) { +func (o *Results) GetPipeOk() (*int64, bool) { if o == nil || o.Pipe == nil { return nil, false } @@ -1215,15 +1215,15 @@ func (o *Results) HasPipe() bool { return false } -// SetPipe gets a reference to the given int32 and assigns it to the Pipe field. -func (o *Results) SetPipe(v int32) { +// SetPipe gets a reference to the given int64 and assigns it to the Pipe field. +func (o *Results) SetPipe(v int64) { o.Pipe = &v } // GetSynth returns the Synth field value if set, zero value otherwise. -func (o *Results) GetSynth() int32 { +func (o *Results) GetSynth() int64 { if o == nil || o.Synth == nil { - var ret int32 + var ret int64 return ret } return *o.Synth @@ -1231,7 +1231,7 @@ func (o *Results) GetSynth() int32 { // GetSynthOk returns a tuple with the Synth field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetSynthOk() (*int32, bool) { +func (o *Results) GetSynthOk() (*int64, bool) { if o == nil || o.Synth == nil { return nil, false } @@ -1247,15 +1247,15 @@ func (o *Results) HasSynth() bool { return false } -// SetSynth gets a reference to the given int32 and assigns it to the Synth field. -func (o *Results) SetSynth(v int32) { +// SetSynth gets a reference to the given int64 and assigns it to the Synth field. +func (o *Results) SetSynth(v int64) { o.Synth = &v } // GetTLS returns the TLS field value if set, zero value otherwise. -func (o *Results) GetTLS() int32 { +func (o *Results) GetTLS() int64 { if o == nil || o.TLS == nil { - var ret int32 + var ret int64 return ret } return *o.TLS @@ -1263,7 +1263,7 @@ func (o *Results) GetTLS() int32 { // GetTLSOk returns a tuple with the TLS field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetTLSOk() (*int32, bool) { +func (o *Results) GetTLSOk() (*int64, bool) { if o == nil || o.TLS == nil { return nil, false } @@ -1279,15 +1279,15 @@ func (o *Results) HasTLS() bool { return false } -// SetTLS gets a reference to the given int32 and assigns it to the TLS field. -func (o *Results) SetTLS(v int32) { +// SetTLS gets a reference to the given int64 and assigns it to the TLS field. +func (o *Results) SetTLS(v int64) { o.TLS = &v } // GetTLSV10 returns the TLSV10 field value if set, zero value otherwise. -func (o *Results) GetTLSV10() int32 { +func (o *Results) GetTLSV10() int64 { if o == nil || o.TLSV10 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV10 @@ -1295,7 +1295,7 @@ func (o *Results) GetTLSV10() int32 { // GetTLSV10Ok returns a tuple with the TLSV10 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetTLSV10Ok() (*int32, bool) { +func (o *Results) GetTLSV10Ok() (*int64, bool) { if o == nil || o.TLSV10 == nil { return nil, false } @@ -1311,15 +1311,15 @@ func (o *Results) HasTLSV10() bool { return false } -// SetTLSV10 gets a reference to the given int32 and assigns it to the TLSV10 field. -func (o *Results) SetTLSV10(v int32) { +// SetTLSV10 gets a reference to the given int64 and assigns it to the TLSV10 field. +func (o *Results) SetTLSV10(v int64) { o.TLSV10 = &v } // GetTLSV11 returns the TLSV11 field value if set, zero value otherwise. -func (o *Results) GetTLSV11() int32 { +func (o *Results) GetTLSV11() int64 { if o == nil || o.TLSV11 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV11 @@ -1327,7 +1327,7 @@ func (o *Results) GetTLSV11() int32 { // GetTLSV11Ok returns a tuple with the TLSV11 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetTLSV11Ok() (*int32, bool) { +func (o *Results) GetTLSV11Ok() (*int64, bool) { if o == nil || o.TLSV11 == nil { return nil, false } @@ -1343,15 +1343,15 @@ func (o *Results) HasTLSV11() bool { return false } -// SetTLSV11 gets a reference to the given int32 and assigns it to the TLSV11 field. -func (o *Results) SetTLSV11(v int32) { +// SetTLSV11 gets a reference to the given int64 and assigns it to the TLSV11 field. +func (o *Results) SetTLSV11(v int64) { o.TLSV11 = &v } // GetTLSV12 returns the TLSV12 field value if set, zero value otherwise. -func (o *Results) GetTLSV12() int32 { +func (o *Results) GetTLSV12() int64 { if o == nil || o.TLSV12 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV12 @@ -1359,7 +1359,7 @@ func (o *Results) GetTLSV12() int32 { // GetTLSV12Ok returns a tuple with the TLSV12 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetTLSV12Ok() (*int32, bool) { +func (o *Results) GetTLSV12Ok() (*int64, bool) { if o == nil || o.TLSV12 == nil { return nil, false } @@ -1375,15 +1375,15 @@ func (o *Results) HasTLSV12() bool { return false } -// SetTLSV12 gets a reference to the given int32 and assigns it to the TLSV12 field. -func (o *Results) SetTLSV12(v int32) { +// SetTLSV12 gets a reference to the given int64 and assigns it to the TLSV12 field. +func (o *Results) SetTLSV12(v int64) { o.TLSV12 = &v } // GetTLSV13 returns the TLSV13 field value if set, zero value otherwise. -func (o *Results) GetTLSV13() int32 { +func (o *Results) GetTLSV13() int64 { if o == nil || o.TLSV13 == nil { - var ret int32 + var ret int64 return ret } return *o.TLSV13 @@ -1391,7 +1391,7 @@ func (o *Results) GetTLSV13() int32 { // GetTLSV13Ok returns a tuple with the TLSV13 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetTLSV13Ok() (*int32, bool) { +func (o *Results) GetTLSV13Ok() (*int64, bool) { if o == nil || o.TLSV13 == nil { return nil, false } @@ -1407,15 +1407,15 @@ func (o *Results) HasTLSV13() bool { return false } -// SetTLSV13 gets a reference to the given int32 and assigns it to the TLSV13 field. -func (o *Results) SetTLSV13(v int32) { +// SetTLSV13 gets a reference to the given int64 and assigns it to the TLSV13 field. +func (o *Results) SetTLSV13(v int64) { o.TLSV13 = &v } // GetEdgeRequests returns the EdgeRequests field value if set, zero value otherwise. -func (o *Results) GetEdgeRequests() int32 { +func (o *Results) GetEdgeRequests() int64 { if o == nil || o.EdgeRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRequests @@ -1423,7 +1423,7 @@ func (o *Results) GetEdgeRequests() int32 { // GetEdgeRequestsOk returns a tuple with the EdgeRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeRequestsOk() (*int32, bool) { +func (o *Results) GetEdgeRequestsOk() (*int64, bool) { if o == nil || o.EdgeRequests == nil { return nil, false } @@ -1439,15 +1439,15 @@ func (o *Results) HasEdgeRequests() bool { return false } -// SetEdgeRequests gets a reference to the given int32 and assigns it to the EdgeRequests field. -func (o *Results) SetEdgeRequests(v int32) { +// SetEdgeRequests gets a reference to the given int64 and assigns it to the EdgeRequests field. +func (o *Results) SetEdgeRequests(v int64) { o.EdgeRequests = &v } // GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetEdgeRespHeaderBytes() int32 { +func (o *Results) GetEdgeRespHeaderBytes() int64 { if o == nil || o.EdgeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespHeaderBytes @@ -1455,7 +1455,7 @@ func (o *Results) GetEdgeRespHeaderBytes() int32 { // GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetEdgeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeRespHeaderBytes == nil { return nil, false } @@ -1471,15 +1471,15 @@ func (o *Results) HasEdgeRespHeaderBytes() bool { return false } -// SetEdgeRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeRespHeaderBytes field. -func (o *Results) SetEdgeRespHeaderBytes(v int32) { +// SetEdgeRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeRespHeaderBytes field. +func (o *Results) SetEdgeRespHeaderBytes(v int64) { o.EdgeRespHeaderBytes = &v } // GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetEdgeRespBodyBytes() int32 { +func (o *Results) GetEdgeRespBodyBytes() int64 { if o == nil || o.EdgeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespBodyBytes @@ -1487,7 +1487,7 @@ func (o *Results) GetEdgeRespBodyBytes() int32 { // GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetEdgeRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeRespBodyBytes == nil { return nil, false } @@ -1503,15 +1503,15 @@ func (o *Results) HasEdgeRespBodyBytes() bool { return false } -// SetEdgeRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeRespBodyBytes field. -func (o *Results) SetEdgeRespBodyBytes(v int32) { +// SetEdgeRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeRespBodyBytes field. +func (o *Results) SetEdgeRespBodyBytes(v int64) { o.EdgeRespBodyBytes = &v } // GetEdgeHitRequests returns the EdgeHitRequests field value if set, zero value otherwise. -func (o *Results) GetEdgeHitRequests() int32 { +func (o *Results) GetEdgeHitRequests() int64 { if o == nil || o.EdgeHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRequests @@ -1519,7 +1519,7 @@ func (o *Results) GetEdgeHitRequests() int32 { // GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeHitRequestsOk() (*int32, bool) { +func (o *Results) GetEdgeHitRequestsOk() (*int64, bool) { if o == nil || o.EdgeHitRequests == nil { return nil, false } @@ -1535,15 +1535,15 @@ func (o *Results) HasEdgeHitRequests() bool { return false } -// SetEdgeHitRequests gets a reference to the given int32 and assigns it to the EdgeHitRequests field. -func (o *Results) SetEdgeHitRequests(v int32) { +// SetEdgeHitRequests gets a reference to the given int64 and assigns it to the EdgeHitRequests field. +func (o *Results) SetEdgeHitRequests(v int64) { o.EdgeHitRequests = &v } // GetEdgeMissRequests returns the EdgeMissRequests field value if set, zero value otherwise. -func (o *Results) GetEdgeMissRequests() int32 { +func (o *Results) GetEdgeMissRequests() int64 { if o == nil || o.EdgeMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRequests @@ -1551,7 +1551,7 @@ func (o *Results) GetEdgeMissRequests() int32 { // GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeMissRequestsOk() (*int32, bool) { +func (o *Results) GetEdgeMissRequestsOk() (*int64, bool) { if o == nil || o.EdgeMissRequests == nil { return nil, false } @@ -1567,15 +1567,15 @@ func (o *Results) HasEdgeMissRequests() bool { return false } -// SetEdgeMissRequests gets a reference to the given int32 and assigns it to the EdgeMissRequests field. -func (o *Results) SetEdgeMissRequests(v int32) { +// SetEdgeMissRequests gets a reference to the given int64 and assigns it to the EdgeMissRequests field. +func (o *Results) SetEdgeMissRequests(v int64) { o.EdgeMissRequests = &v } // GetOriginFetches returns the OriginFetches field value if set, zero value otherwise. -func (o *Results) GetOriginFetches() int32 { +func (o *Results) GetOriginFetches() int64 { if o == nil || o.OriginFetches == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetches @@ -1583,7 +1583,7 @@ func (o *Results) GetOriginFetches() int32 { // GetOriginFetchesOk returns a tuple with the OriginFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginFetchesOk() (*int32, bool) { +func (o *Results) GetOriginFetchesOk() (*int64, bool) { if o == nil || o.OriginFetches == nil { return nil, false } @@ -1599,15 +1599,15 @@ func (o *Results) HasOriginFetches() bool { return false } -// SetOriginFetches gets a reference to the given int32 and assigns it to the OriginFetches field. -func (o *Results) SetOriginFetches(v int32) { +// SetOriginFetches gets a reference to the given int64 and assigns it to the OriginFetches field. +func (o *Results) SetOriginFetches(v int64) { o.OriginFetches = &v } // GetOriginFetchHeaderBytes returns the OriginFetchHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetOriginFetchHeaderBytes() int32 { +func (o *Results) GetOriginFetchHeaderBytes() int64 { if o == nil || o.OriginFetchHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchHeaderBytes @@ -1615,7 +1615,7 @@ func (o *Results) GetOriginFetchHeaderBytes() int32 { // GetOriginFetchHeaderBytesOk returns a tuple with the OriginFetchHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginFetchHeaderBytesOk() (*int32, bool) { +func (o *Results) GetOriginFetchHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginFetchHeaderBytes == nil { return nil, false } @@ -1631,15 +1631,15 @@ func (o *Results) HasOriginFetchHeaderBytes() bool { return false } -// SetOriginFetchHeaderBytes gets a reference to the given int32 and assigns it to the OriginFetchHeaderBytes field. -func (o *Results) SetOriginFetchHeaderBytes(v int32) { +// SetOriginFetchHeaderBytes gets a reference to the given int64 and assigns it to the OriginFetchHeaderBytes field. +func (o *Results) SetOriginFetchHeaderBytes(v int64) { o.OriginFetchHeaderBytes = &v } // GetOriginFetchBodyBytes returns the OriginFetchBodyBytes field value if set, zero value otherwise. -func (o *Results) GetOriginFetchBodyBytes() int32 { +func (o *Results) GetOriginFetchBodyBytes() int64 { if o == nil || o.OriginFetchBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchBodyBytes @@ -1647,7 +1647,7 @@ func (o *Results) GetOriginFetchBodyBytes() int32 { // GetOriginFetchBodyBytesOk returns a tuple with the OriginFetchBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginFetchBodyBytesOk() (*int32, bool) { +func (o *Results) GetOriginFetchBodyBytesOk() (*int64, bool) { if o == nil || o.OriginFetchBodyBytes == nil { return nil, false } @@ -1663,15 +1663,15 @@ func (o *Results) HasOriginFetchBodyBytes() bool { return false } -// SetOriginFetchBodyBytes gets a reference to the given int32 and assigns it to the OriginFetchBodyBytes field. -func (o *Results) SetOriginFetchBodyBytes(v int32) { +// SetOriginFetchBodyBytes gets a reference to the given int64 and assigns it to the OriginFetchBodyBytes field. +func (o *Results) SetOriginFetchBodyBytes(v int64) { o.OriginFetchBodyBytes = &v } // GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetOriginFetchRespHeaderBytes() int32 { +func (o *Results) GetOriginFetchRespHeaderBytes() int64 { if o == nil || o.OriginFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespHeaderBytes @@ -1679,7 +1679,7 @@ func (o *Results) GetOriginFetchRespHeaderBytes() int32 { // GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginFetchRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetOriginFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespHeaderBytes == nil { return nil, false } @@ -1695,15 +1695,15 @@ func (o *Results) HasOriginFetchRespHeaderBytes() bool { return false } -// SetOriginFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the OriginFetchRespHeaderBytes field. -func (o *Results) SetOriginFetchRespHeaderBytes(v int32) { +// SetOriginFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the OriginFetchRespHeaderBytes field. +func (o *Results) SetOriginFetchRespHeaderBytes(v int64) { o.OriginFetchRespHeaderBytes = &v } // GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetOriginFetchRespBodyBytes() int32 { +func (o *Results) GetOriginFetchRespBodyBytes() int64 { if o == nil || o.OriginFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespBodyBytes @@ -1711,7 +1711,7 @@ func (o *Results) GetOriginFetchRespBodyBytes() int32 { // GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginFetchRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetOriginFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespBodyBytes == nil { return nil, false } @@ -1727,15 +1727,15 @@ func (o *Results) HasOriginFetchRespBodyBytes() bool { return false } -// SetOriginFetchRespBodyBytes gets a reference to the given int32 and assigns it to the OriginFetchRespBodyBytes field. -func (o *Results) SetOriginFetchRespBodyBytes(v int32) { +// SetOriginFetchRespBodyBytes gets a reference to the given int64 and assigns it to the OriginFetchRespBodyBytes field. +func (o *Results) SetOriginFetchRespBodyBytes(v int64) { o.OriginFetchRespBodyBytes = &v } // GetOriginRevalidations returns the OriginRevalidations field value if set, zero value otherwise. -func (o *Results) GetOriginRevalidations() int32 { +func (o *Results) GetOriginRevalidations() int64 { if o == nil || o.OriginRevalidations == nil { - var ret int32 + var ret int64 return ret } return *o.OriginRevalidations @@ -1743,7 +1743,7 @@ func (o *Results) GetOriginRevalidations() int32 { // GetOriginRevalidationsOk returns a tuple with the OriginRevalidations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginRevalidationsOk() (*int32, bool) { +func (o *Results) GetOriginRevalidationsOk() (*int64, bool) { if o == nil || o.OriginRevalidations == nil { return nil, false } @@ -1759,15 +1759,15 @@ func (o *Results) HasOriginRevalidations() bool { return false } -// SetOriginRevalidations gets a reference to the given int32 and assigns it to the OriginRevalidations field. -func (o *Results) SetOriginRevalidations(v int32) { +// SetOriginRevalidations gets a reference to the given int64 and assigns it to the OriginRevalidations field. +func (o *Results) SetOriginRevalidations(v int64) { o.OriginRevalidations = &v } // GetOriginCacheFetches returns the OriginCacheFetches field value if set, zero value otherwise. -func (o *Results) GetOriginCacheFetches() int32 { +func (o *Results) GetOriginCacheFetches() int64 { if o == nil || o.OriginCacheFetches == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetches @@ -1775,7 +1775,7 @@ func (o *Results) GetOriginCacheFetches() int32 { // GetOriginCacheFetchesOk returns a tuple with the OriginCacheFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginCacheFetchesOk() (*int32, bool) { +func (o *Results) GetOriginCacheFetchesOk() (*int64, bool) { if o == nil || o.OriginCacheFetches == nil { return nil, false } @@ -1791,15 +1791,15 @@ func (o *Results) HasOriginCacheFetches() bool { return false } -// SetOriginCacheFetches gets a reference to the given int32 and assigns it to the OriginCacheFetches field. -func (o *Results) SetOriginCacheFetches(v int32) { +// SetOriginCacheFetches gets a reference to the given int64 and assigns it to the OriginCacheFetches field. +func (o *Results) SetOriginCacheFetches(v int64) { o.OriginCacheFetches = &v } // GetShield returns the Shield field value if set, zero value otherwise. -func (o *Results) GetShield() int32 { +func (o *Results) GetShield() int64 { if o == nil || o.Shield == nil { - var ret int32 + var ret int64 return ret } return *o.Shield @@ -1807,7 +1807,7 @@ func (o *Results) GetShield() int32 { // GetShieldOk returns a tuple with the Shield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldOk() (*int32, bool) { +func (o *Results) GetShieldOk() (*int64, bool) { if o == nil || o.Shield == nil { return nil, false } @@ -1823,15 +1823,15 @@ func (o *Results) HasShield() bool { return false } -// SetShield gets a reference to the given int32 and assigns it to the Shield field. -func (o *Results) SetShield(v int32) { +// SetShield gets a reference to the given int64 and assigns it to the Shield field. +func (o *Results) SetShield(v int64) { o.Shield = &v } // GetShieldRespBodyBytes returns the ShieldRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetShieldRespBodyBytes() int32 { +func (o *Results) GetShieldRespBodyBytes() int64 { if o == nil || o.ShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRespBodyBytes @@ -1839,7 +1839,7 @@ func (o *Results) GetShieldRespBodyBytes() int32 { // GetShieldRespBodyBytesOk returns a tuple with the ShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldRespBodyBytes == nil { return nil, false } @@ -1855,15 +1855,15 @@ func (o *Results) HasShieldRespBodyBytes() bool { return false } -// SetShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldRespBodyBytes field. -func (o *Results) SetShieldRespBodyBytes(v int32) { +// SetShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldRespBodyBytes field. +func (o *Results) SetShieldRespBodyBytes(v int64) { o.ShieldRespBodyBytes = &v } // GetShieldRespHeaderBytes returns the ShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetShieldRespHeaderBytes() int32 { +func (o *Results) GetShieldRespHeaderBytes() int64 { if o == nil || o.ShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRespHeaderBytes @@ -1871,7 +1871,7 @@ func (o *Results) GetShieldRespHeaderBytes() int32 { // GetShieldRespHeaderBytesOk returns a tuple with the ShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldRespHeaderBytes == nil { return nil, false } @@ -1887,15 +1887,15 @@ func (o *Results) HasShieldRespHeaderBytes() bool { return false } -// SetShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldRespHeaderBytes field. -func (o *Results) SetShieldRespHeaderBytes(v int32) { +// SetShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldRespHeaderBytes field. +func (o *Results) SetShieldRespHeaderBytes(v int64) { o.ShieldRespHeaderBytes = &v } // GetShieldFetches returns the ShieldFetches field value if set, zero value otherwise. -func (o *Results) GetShieldFetches() int32 { +func (o *Results) GetShieldFetches() int64 { if o == nil || o.ShieldFetches == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetches @@ -1903,7 +1903,7 @@ func (o *Results) GetShieldFetches() int32 { // GetShieldFetchesOk returns a tuple with the ShieldFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldFetchesOk() (*int32, bool) { +func (o *Results) GetShieldFetchesOk() (*int64, bool) { if o == nil || o.ShieldFetches == nil { return nil, false } @@ -1919,15 +1919,15 @@ func (o *Results) HasShieldFetches() bool { return false } -// SetShieldFetches gets a reference to the given int32 and assigns it to the ShieldFetches field. -func (o *Results) SetShieldFetches(v int32) { +// SetShieldFetches gets a reference to the given int64 and assigns it to the ShieldFetches field. +func (o *Results) SetShieldFetches(v int64) { o.ShieldFetches = &v } // GetShieldFetchHeaderBytes returns the ShieldFetchHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetShieldFetchHeaderBytes() int32 { +func (o *Results) GetShieldFetchHeaderBytes() int64 { if o == nil || o.ShieldFetchHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchHeaderBytes @@ -1935,7 +1935,7 @@ func (o *Results) GetShieldFetchHeaderBytes() int32 { // GetShieldFetchHeaderBytesOk returns a tuple with the ShieldFetchHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldFetchHeaderBytesOk() (*int32, bool) { +func (o *Results) GetShieldFetchHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchHeaderBytes == nil { return nil, false } @@ -1951,15 +1951,15 @@ func (o *Results) HasShieldFetchHeaderBytes() bool { return false } -// SetShieldFetchHeaderBytes gets a reference to the given int32 and assigns it to the ShieldFetchHeaderBytes field. -func (o *Results) SetShieldFetchHeaderBytes(v int32) { +// SetShieldFetchHeaderBytes gets a reference to the given int64 and assigns it to the ShieldFetchHeaderBytes field. +func (o *Results) SetShieldFetchHeaderBytes(v int64) { o.ShieldFetchHeaderBytes = &v } // GetShieldFetchBodyBytes returns the ShieldFetchBodyBytes field value if set, zero value otherwise. -func (o *Results) GetShieldFetchBodyBytes() int32 { +func (o *Results) GetShieldFetchBodyBytes() int64 { if o == nil || o.ShieldFetchBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchBodyBytes @@ -1967,7 +1967,7 @@ func (o *Results) GetShieldFetchBodyBytes() int32 { // GetShieldFetchBodyBytesOk returns a tuple with the ShieldFetchBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldFetchBodyBytesOk() (*int32, bool) { +func (o *Results) GetShieldFetchBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchBodyBytes == nil { return nil, false } @@ -1983,15 +1983,15 @@ func (o *Results) HasShieldFetchBodyBytes() bool { return false } -// SetShieldFetchBodyBytes gets a reference to the given int32 and assigns it to the ShieldFetchBodyBytes field. -func (o *Results) SetShieldFetchBodyBytes(v int32) { +// SetShieldFetchBodyBytes gets a reference to the given int64 and assigns it to the ShieldFetchBodyBytes field. +func (o *Results) SetShieldFetchBodyBytes(v int64) { o.ShieldFetchBodyBytes = &v } // GetShieldFetchRespHeaderBytes returns the ShieldFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetShieldFetchRespHeaderBytes() int32 { +func (o *Results) GetShieldFetchRespHeaderBytes() int64 { if o == nil || o.ShieldFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchRespHeaderBytes @@ -1999,7 +1999,7 @@ func (o *Results) GetShieldFetchRespHeaderBytes() int32 { // GetShieldFetchRespHeaderBytesOk returns a tuple with the ShieldFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldFetchRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetShieldFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchRespHeaderBytes == nil { return nil, false } @@ -2015,15 +2015,15 @@ func (o *Results) HasShieldFetchRespHeaderBytes() bool { return false } -// SetShieldFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldFetchRespHeaderBytes field. -func (o *Results) SetShieldFetchRespHeaderBytes(v int32) { +// SetShieldFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldFetchRespHeaderBytes field. +func (o *Results) SetShieldFetchRespHeaderBytes(v int64) { o.ShieldFetchRespHeaderBytes = &v } // GetShieldFetchRespBodyBytes returns the ShieldFetchRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetShieldFetchRespBodyBytes() int32 { +func (o *Results) GetShieldFetchRespBodyBytes() int64 { if o == nil || o.ShieldFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldFetchRespBodyBytes @@ -2031,7 +2031,7 @@ func (o *Results) GetShieldFetchRespBodyBytes() int32 { // GetShieldFetchRespBodyBytesOk returns a tuple with the ShieldFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldFetchRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetShieldFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldFetchRespBodyBytes == nil { return nil, false } @@ -2047,15 +2047,15 @@ func (o *Results) HasShieldFetchRespBodyBytes() bool { return false } -// SetShieldFetchRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldFetchRespBodyBytes field. -func (o *Results) SetShieldFetchRespBodyBytes(v int32) { +// SetShieldFetchRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldFetchRespBodyBytes field. +func (o *Results) SetShieldFetchRespBodyBytes(v int64) { o.ShieldFetchRespBodyBytes = &v } // GetShieldRevalidations returns the ShieldRevalidations field value if set, zero value otherwise. -func (o *Results) GetShieldRevalidations() int32 { +func (o *Results) GetShieldRevalidations() int64 { if o == nil || o.ShieldRevalidations == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldRevalidations @@ -2063,7 +2063,7 @@ func (o *Results) GetShieldRevalidations() int32 { // GetShieldRevalidationsOk returns a tuple with the ShieldRevalidations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldRevalidationsOk() (*int32, bool) { +func (o *Results) GetShieldRevalidationsOk() (*int64, bool) { if o == nil || o.ShieldRevalidations == nil { return nil, false } @@ -2079,15 +2079,15 @@ func (o *Results) HasShieldRevalidations() bool { return false } -// SetShieldRevalidations gets a reference to the given int32 and assigns it to the ShieldRevalidations field. -func (o *Results) SetShieldRevalidations(v int32) { +// SetShieldRevalidations gets a reference to the given int64 and assigns it to the ShieldRevalidations field. +func (o *Results) SetShieldRevalidations(v int64) { o.ShieldRevalidations = &v } // GetShieldCacheFetches returns the ShieldCacheFetches field value if set, zero value otherwise. -func (o *Results) GetShieldCacheFetches() int32 { +func (o *Results) GetShieldCacheFetches() int64 { if o == nil || o.ShieldCacheFetches == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldCacheFetches @@ -2095,7 +2095,7 @@ func (o *Results) GetShieldCacheFetches() int32 { // GetShieldCacheFetchesOk returns a tuple with the ShieldCacheFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldCacheFetchesOk() (*int32, bool) { +func (o *Results) GetShieldCacheFetchesOk() (*int64, bool) { if o == nil || o.ShieldCacheFetches == nil { return nil, false } @@ -2111,15 +2111,15 @@ func (o *Results) HasShieldCacheFetches() bool { return false } -// SetShieldCacheFetches gets a reference to the given int32 and assigns it to the ShieldCacheFetches field. -func (o *Results) SetShieldCacheFetches(v int32) { +// SetShieldCacheFetches gets a reference to the given int64 and assigns it to the ShieldCacheFetches field. +func (o *Results) SetShieldCacheFetches(v int64) { o.ShieldCacheFetches = &v } // GetIpv6 returns the Ipv6 field value if set, zero value otherwise. -func (o *Results) GetIpv6() int32 { +func (o *Results) GetIpv6() int64 { if o == nil || o.Ipv6 == nil { - var ret int32 + var ret int64 return ret } return *o.Ipv6 @@ -2127,7 +2127,7 @@ func (o *Results) GetIpv6() int32 { // GetIpv6Ok returns a tuple with the Ipv6 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetIpv6Ok() (*int32, bool) { +func (o *Results) GetIpv6Ok() (*int64, bool) { if o == nil || o.Ipv6 == nil { return nil, false } @@ -2143,15 +2143,15 @@ func (o *Results) HasIpv6() bool { return false } -// SetIpv6 gets a reference to the given int32 and assigns it to the Ipv6 field. -func (o *Results) SetIpv6(v int32) { +// SetIpv6 gets a reference to the given int64 and assigns it to the Ipv6 field. +func (o *Results) SetIpv6(v int64) { o.Ipv6 = &v } // GetOtfp returns the Otfp field value if set, zero value otherwise. -func (o *Results) GetOtfp() int32 { +func (o *Results) GetOtfp() int64 { if o == nil || o.Otfp == nil { - var ret int32 + var ret int64 return ret } return *o.Otfp @@ -2159,7 +2159,7 @@ func (o *Results) GetOtfp() int32 { // GetOtfpOk returns a tuple with the Otfp field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOtfpOk() (*int32, bool) { +func (o *Results) GetOtfpOk() (*int64, bool) { if o == nil || o.Otfp == nil { return nil, false } @@ -2175,15 +2175,15 @@ func (o *Results) HasOtfp() bool { return false } -// SetOtfp gets a reference to the given int32 and assigns it to the Otfp field. -func (o *Results) SetOtfp(v int32) { +// SetOtfp gets a reference to the given int64 and assigns it to the Otfp field. +func (o *Results) SetOtfp(v int64) { o.Otfp = &v } // GetOtfpRespBodyBytes returns the OtfpRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetOtfpRespBodyBytes() int32 { +func (o *Results) GetOtfpRespBodyBytes() int64 { if o == nil || o.OtfpRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpRespBodyBytes @@ -2191,7 +2191,7 @@ func (o *Results) GetOtfpRespBodyBytes() int32 { // GetOtfpRespBodyBytesOk returns a tuple with the OtfpRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOtfpRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetOtfpRespBodyBytesOk() (*int64, bool) { if o == nil || o.OtfpRespBodyBytes == nil { return nil, false } @@ -2207,15 +2207,15 @@ func (o *Results) HasOtfpRespBodyBytes() bool { return false } -// SetOtfpRespBodyBytes gets a reference to the given int32 and assigns it to the OtfpRespBodyBytes field. -func (o *Results) SetOtfpRespBodyBytes(v int32) { +// SetOtfpRespBodyBytes gets a reference to the given int64 and assigns it to the OtfpRespBodyBytes field. +func (o *Results) SetOtfpRespBodyBytes(v int64) { o.OtfpRespBodyBytes = &v } // GetOtfpRespHeaderBytes returns the OtfpRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetOtfpRespHeaderBytes() int32 { +func (o *Results) GetOtfpRespHeaderBytes() int64 { if o == nil || o.OtfpRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpRespHeaderBytes @@ -2223,7 +2223,7 @@ func (o *Results) GetOtfpRespHeaderBytes() int32 { // GetOtfpRespHeaderBytesOk returns a tuple with the OtfpRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOtfpRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetOtfpRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OtfpRespHeaderBytes == nil { return nil, false } @@ -2239,15 +2239,15 @@ func (o *Results) HasOtfpRespHeaderBytes() bool { return false } -// SetOtfpRespHeaderBytes gets a reference to the given int32 and assigns it to the OtfpRespHeaderBytes field. -func (o *Results) SetOtfpRespHeaderBytes(v int32) { +// SetOtfpRespHeaderBytes gets a reference to the given int64 and assigns it to the OtfpRespHeaderBytes field. +func (o *Results) SetOtfpRespHeaderBytes(v int64) { o.OtfpRespHeaderBytes = &v } // GetOtfpShieldRespBodyBytes returns the OtfpShieldRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetOtfpShieldRespBodyBytes() int32 { +func (o *Results) GetOtfpShieldRespBodyBytes() int64 { if o == nil || o.OtfpShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpShieldRespBodyBytes @@ -2255,7 +2255,7 @@ func (o *Results) GetOtfpShieldRespBodyBytes() int32 { // GetOtfpShieldRespBodyBytesOk returns a tuple with the OtfpShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOtfpShieldRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetOtfpShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.OtfpShieldRespBodyBytes == nil { return nil, false } @@ -2271,15 +2271,15 @@ func (o *Results) HasOtfpShieldRespBodyBytes() bool { return false } -// SetOtfpShieldRespBodyBytes gets a reference to the given int32 and assigns it to the OtfpShieldRespBodyBytes field. -func (o *Results) SetOtfpShieldRespBodyBytes(v int32) { +// SetOtfpShieldRespBodyBytes gets a reference to the given int64 and assigns it to the OtfpShieldRespBodyBytes field. +func (o *Results) SetOtfpShieldRespBodyBytes(v int64) { o.OtfpShieldRespBodyBytes = &v } // GetOtfpShieldRespHeaderBytes returns the OtfpShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetOtfpShieldRespHeaderBytes() int32 { +func (o *Results) GetOtfpShieldRespHeaderBytes() int64 { if o == nil || o.OtfpShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpShieldRespHeaderBytes @@ -2287,7 +2287,7 @@ func (o *Results) GetOtfpShieldRespHeaderBytes() int32 { // GetOtfpShieldRespHeaderBytesOk returns a tuple with the OtfpShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOtfpShieldRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetOtfpShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OtfpShieldRespHeaderBytes == nil { return nil, false } @@ -2303,15 +2303,15 @@ func (o *Results) HasOtfpShieldRespHeaderBytes() bool { return false } -// SetOtfpShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the OtfpShieldRespHeaderBytes field. -func (o *Results) SetOtfpShieldRespHeaderBytes(v int32) { +// SetOtfpShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the OtfpShieldRespHeaderBytes field. +func (o *Results) SetOtfpShieldRespHeaderBytes(v int64) { o.OtfpShieldRespHeaderBytes = &v } // GetOtfpManifests returns the OtfpManifests field value if set, zero value otherwise. -func (o *Results) GetOtfpManifests() int32 { +func (o *Results) GetOtfpManifests() int64 { if o == nil || o.OtfpManifests == nil { - var ret int32 + var ret int64 return ret } return *o.OtfpManifests @@ -2319,7 +2319,7 @@ func (o *Results) GetOtfpManifests() int32 { // GetOtfpManifestsOk returns a tuple with the OtfpManifests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOtfpManifestsOk() (*int32, bool) { +func (o *Results) GetOtfpManifestsOk() (*int64, bool) { if o == nil || o.OtfpManifests == nil { return nil, false } @@ -2335,8 +2335,8 @@ func (o *Results) HasOtfpManifests() bool { return false } -// SetOtfpManifests gets a reference to the given int32 and assigns it to the OtfpManifests field. -func (o *Results) SetOtfpManifests(v int32) { +// SetOtfpManifests gets a reference to the given int64 and assigns it to the OtfpManifests field. +func (o *Results) SetOtfpManifests(v int64) { o.OtfpManifests = &v } @@ -2405,9 +2405,9 @@ func (o *Results) SetOtfpShieldTime(v float32) { } // GetVideo returns the Video field value if set, zero value otherwise. -func (o *Results) GetVideo() int32 { +func (o *Results) GetVideo() int64 { if o == nil || o.Video == nil { - var ret int32 + var ret int64 return ret } return *o.Video @@ -2415,7 +2415,7 @@ func (o *Results) GetVideo() int32 { // GetVideoOk returns a tuple with the Video field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetVideoOk() (*int32, bool) { +func (o *Results) GetVideoOk() (*int64, bool) { if o == nil || o.Video == nil { return nil, false } @@ -2431,15 +2431,15 @@ func (o *Results) HasVideo() bool { return false } -// SetVideo gets a reference to the given int32 and assigns it to the Video field. -func (o *Results) SetVideo(v int32) { +// SetVideo gets a reference to the given int64 and assigns it to the Video field. +func (o *Results) SetVideo(v int64) { o.Video = &v } // GetPci returns the Pci field value if set, zero value otherwise. -func (o *Results) GetPci() int32 { +func (o *Results) GetPci() int64 { if o == nil || o.Pci == nil { - var ret int32 + var ret int64 return ret } return *o.Pci @@ -2447,7 +2447,7 @@ func (o *Results) GetPci() int32 { // GetPciOk returns a tuple with the Pci field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetPciOk() (*int32, bool) { +func (o *Results) GetPciOk() (*int64, bool) { if o == nil || o.Pci == nil { return nil, false } @@ -2463,15 +2463,15 @@ func (o *Results) HasPci() bool { return false } -// SetPci gets a reference to the given int32 and assigns it to the Pci field. -func (o *Results) SetPci(v int32) { +// SetPci gets a reference to the given int64 and assigns it to the Pci field. +func (o *Results) SetPci(v int64) { o.Pci = &v } // GetLog returns the Log field value if set, zero value otherwise. -func (o *Results) GetLog() int32 { +func (o *Results) GetLog() int64 { if o == nil || o.Log == nil { - var ret int32 + var ret int64 return ret } return *o.Log @@ -2479,7 +2479,7 @@ func (o *Results) GetLog() int32 { // GetLogOk returns a tuple with the Log field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetLogOk() (*int32, bool) { +func (o *Results) GetLogOk() (*int64, bool) { if o == nil || o.Log == nil { return nil, false } @@ -2495,15 +2495,15 @@ func (o *Results) HasLog() bool { return false } -// SetLog gets a reference to the given int32 and assigns it to the Log field. -func (o *Results) SetLog(v int32) { +// SetLog gets a reference to the given int64 and assigns it to the Log field. +func (o *Results) SetLog(v int64) { o.Log = &v } // GetLogBytes returns the LogBytes field value if set, zero value otherwise. -func (o *Results) GetLogBytes() int32 { +func (o *Results) GetLogBytes() int64 { if o == nil || o.LogBytes == nil { - var ret int32 + var ret int64 return ret } return *o.LogBytes @@ -2511,7 +2511,7 @@ func (o *Results) GetLogBytes() int32 { // GetLogBytesOk returns a tuple with the LogBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetLogBytesOk() (*int32, bool) { +func (o *Results) GetLogBytesOk() (*int64, bool) { if o == nil || o.LogBytes == nil { return nil, false } @@ -2527,15 +2527,15 @@ func (o *Results) HasLogBytes() bool { return false } -// SetLogBytes gets a reference to the given int32 and assigns it to the LogBytes field. -func (o *Results) SetLogBytes(v int32) { +// SetLogBytes gets a reference to the given int64 and assigns it to the LogBytes field. +func (o *Results) SetLogBytes(v int64) { o.LogBytes = &v } // GetHTTP2 returns the HTTP2 field value if set, zero value otherwise. -func (o *Results) GetHTTP2() int32 { +func (o *Results) GetHTTP2() int64 { if o == nil || o.HTTP2 == nil { - var ret int32 + var ret int64 return ret } return *o.HTTP2 @@ -2543,7 +2543,7 @@ func (o *Results) GetHTTP2() int32 { // GetHTTP2Ok returns a tuple with the HTTP2 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetHTTP2Ok() (*int32, bool) { +func (o *Results) GetHTTP2Ok() (*int64, bool) { if o == nil || o.HTTP2 == nil { return nil, false } @@ -2559,15 +2559,15 @@ func (o *Results) HasHTTP2() bool { return false } -// SetHTTP2 gets a reference to the given int32 and assigns it to the HTTP2 field. -func (o *Results) SetHTTP2(v int32) { +// SetHTTP2 gets a reference to the given int64 and assigns it to the HTTP2 field. +func (o *Results) SetHTTP2(v int64) { o.HTTP2 = &v } // GetHTTP3 returns the HTTP3 field value if set, zero value otherwise. -func (o *Results) GetHTTP3() int32 { +func (o *Results) GetHTTP3() int64 { if o == nil || o.HTTP3 == nil { - var ret int32 + var ret int64 return ret } return *o.HTTP3 @@ -2575,7 +2575,7 @@ func (o *Results) GetHTTP3() int32 { // GetHTTP3Ok returns a tuple with the HTTP3 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetHTTP3Ok() (*int32, bool) { +func (o *Results) GetHTTP3Ok() (*int64, bool) { if o == nil || o.HTTP3 == nil { return nil, false } @@ -2591,15 +2591,15 @@ func (o *Results) HasHTTP3() bool { return false } -// SetHTTP3 gets a reference to the given int32 and assigns it to the HTTP3 field. -func (o *Results) SetHTTP3(v int32) { +// SetHTTP3 gets a reference to the given int64 and assigns it to the HTTP3 field. +func (o *Results) SetHTTP3(v int64) { o.HTTP3 = &v } // GetWafLogged returns the WafLogged field value if set, zero value otherwise. -func (o *Results) GetWafLogged() int32 { +func (o *Results) GetWafLogged() int64 { if o == nil || o.WafLogged == nil { - var ret int32 + var ret int64 return ret } return *o.WafLogged @@ -2607,7 +2607,7 @@ func (o *Results) GetWafLogged() int32 { // GetWafLoggedOk returns a tuple with the WafLogged field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWafLoggedOk() (*int32, bool) { +func (o *Results) GetWafLoggedOk() (*int64, bool) { if o == nil || o.WafLogged == nil { return nil, false } @@ -2623,15 +2623,15 @@ func (o *Results) HasWafLogged() bool { return false } -// SetWafLogged gets a reference to the given int32 and assigns it to the WafLogged field. -func (o *Results) SetWafLogged(v int32) { +// SetWafLogged gets a reference to the given int64 and assigns it to the WafLogged field. +func (o *Results) SetWafLogged(v int64) { o.WafLogged = &v } // GetWafBlocked returns the WafBlocked field value if set, zero value otherwise. -func (o *Results) GetWafBlocked() int32 { +func (o *Results) GetWafBlocked() int64 { if o == nil || o.WafBlocked == nil { - var ret int32 + var ret int64 return ret } return *o.WafBlocked @@ -2639,7 +2639,7 @@ func (o *Results) GetWafBlocked() int32 { // GetWafBlockedOk returns a tuple with the WafBlocked field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWafBlockedOk() (*int32, bool) { +func (o *Results) GetWafBlockedOk() (*int64, bool) { if o == nil || o.WafBlocked == nil { return nil, false } @@ -2655,15 +2655,15 @@ func (o *Results) HasWafBlocked() bool { return false } -// SetWafBlocked gets a reference to the given int32 and assigns it to the WafBlocked field. -func (o *Results) SetWafBlocked(v int32) { +// SetWafBlocked gets a reference to the given int64 and assigns it to the WafBlocked field. +func (o *Results) SetWafBlocked(v int64) { o.WafBlocked = &v } // GetWafPassed returns the WafPassed field value if set, zero value otherwise. -func (o *Results) GetWafPassed() int32 { +func (o *Results) GetWafPassed() int64 { if o == nil || o.WafPassed == nil { - var ret int32 + var ret int64 return ret } return *o.WafPassed @@ -2671,7 +2671,7 @@ func (o *Results) GetWafPassed() int32 { // GetWafPassedOk returns a tuple with the WafPassed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWafPassedOk() (*int32, bool) { +func (o *Results) GetWafPassedOk() (*int64, bool) { if o == nil || o.WafPassed == nil { return nil, false } @@ -2687,15 +2687,15 @@ func (o *Results) HasWafPassed() bool { return false } -// SetWafPassed gets a reference to the given int32 and assigns it to the WafPassed field. -func (o *Results) SetWafPassed(v int32) { +// SetWafPassed gets a reference to the given int64 and assigns it to the WafPassed field. +func (o *Results) SetWafPassed(v int64) { o.WafPassed = &v } // GetAttackReqBodyBytes returns the AttackReqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetAttackReqBodyBytes() int32 { +func (o *Results) GetAttackReqBodyBytes() int64 { if o == nil || o.AttackReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackReqBodyBytes @@ -2703,7 +2703,7 @@ func (o *Results) GetAttackReqBodyBytes() int32 { // GetAttackReqBodyBytesOk returns a tuple with the AttackReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackReqBodyBytesOk() (*int32, bool) { +func (o *Results) GetAttackReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackReqBodyBytes == nil { return nil, false } @@ -2719,15 +2719,15 @@ func (o *Results) HasAttackReqBodyBytes() bool { return false } -// SetAttackReqBodyBytes gets a reference to the given int32 and assigns it to the AttackReqBodyBytes field. -func (o *Results) SetAttackReqBodyBytes(v int32) { +// SetAttackReqBodyBytes gets a reference to the given int64 and assigns it to the AttackReqBodyBytes field. +func (o *Results) SetAttackReqBodyBytes(v int64) { o.AttackReqBodyBytes = &v } // GetAttackReqHeaderBytes returns the AttackReqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetAttackReqHeaderBytes() int32 { +func (o *Results) GetAttackReqHeaderBytes() int64 { if o == nil || o.AttackReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackReqHeaderBytes @@ -2735,7 +2735,7 @@ func (o *Results) GetAttackReqHeaderBytes() int32 { // GetAttackReqHeaderBytesOk returns a tuple with the AttackReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackReqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetAttackReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackReqHeaderBytes == nil { return nil, false } @@ -2751,15 +2751,15 @@ func (o *Results) HasAttackReqHeaderBytes() bool { return false } -// SetAttackReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackReqHeaderBytes field. -func (o *Results) SetAttackReqHeaderBytes(v int32) { +// SetAttackReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackReqHeaderBytes field. +func (o *Results) SetAttackReqHeaderBytes(v int64) { o.AttackReqHeaderBytes = &v } // GetAttackLoggedReqBodyBytes returns the AttackLoggedReqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetAttackLoggedReqBodyBytes() int32 { +func (o *Results) GetAttackLoggedReqBodyBytes() int64 { if o == nil || o.AttackLoggedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackLoggedReqBodyBytes @@ -2767,7 +2767,7 @@ func (o *Results) GetAttackLoggedReqBodyBytes() int32 { // GetAttackLoggedReqBodyBytesOk returns a tuple with the AttackLoggedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackLoggedReqBodyBytesOk() (*int32, bool) { +func (o *Results) GetAttackLoggedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackLoggedReqBodyBytes == nil { return nil, false } @@ -2783,15 +2783,15 @@ func (o *Results) HasAttackLoggedReqBodyBytes() bool { return false } -// SetAttackLoggedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackLoggedReqBodyBytes field. -func (o *Results) SetAttackLoggedReqBodyBytes(v int32) { +// SetAttackLoggedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackLoggedReqBodyBytes field. +func (o *Results) SetAttackLoggedReqBodyBytes(v int64) { o.AttackLoggedReqBodyBytes = &v } // GetAttackLoggedReqHeaderBytes returns the AttackLoggedReqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetAttackLoggedReqHeaderBytes() int32 { +func (o *Results) GetAttackLoggedReqHeaderBytes() int64 { if o == nil || o.AttackLoggedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackLoggedReqHeaderBytes @@ -2799,7 +2799,7 @@ func (o *Results) GetAttackLoggedReqHeaderBytes() int32 { // GetAttackLoggedReqHeaderBytesOk returns a tuple with the AttackLoggedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackLoggedReqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetAttackLoggedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackLoggedReqHeaderBytes == nil { return nil, false } @@ -2815,15 +2815,15 @@ func (o *Results) HasAttackLoggedReqHeaderBytes() bool { return false } -// SetAttackLoggedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackLoggedReqHeaderBytes field. -func (o *Results) SetAttackLoggedReqHeaderBytes(v int32) { +// SetAttackLoggedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackLoggedReqHeaderBytes field. +func (o *Results) SetAttackLoggedReqHeaderBytes(v int64) { o.AttackLoggedReqHeaderBytes = &v } // GetAttackBlockedReqBodyBytes returns the AttackBlockedReqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetAttackBlockedReqBodyBytes() int32 { +func (o *Results) GetAttackBlockedReqBodyBytes() int64 { if o == nil || o.AttackBlockedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackBlockedReqBodyBytes @@ -2831,7 +2831,7 @@ func (o *Results) GetAttackBlockedReqBodyBytes() int32 { // GetAttackBlockedReqBodyBytesOk returns a tuple with the AttackBlockedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackBlockedReqBodyBytesOk() (*int32, bool) { +func (o *Results) GetAttackBlockedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackBlockedReqBodyBytes == nil { return nil, false } @@ -2847,15 +2847,15 @@ func (o *Results) HasAttackBlockedReqBodyBytes() bool { return false } -// SetAttackBlockedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackBlockedReqBodyBytes field. -func (o *Results) SetAttackBlockedReqBodyBytes(v int32) { +// SetAttackBlockedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackBlockedReqBodyBytes field. +func (o *Results) SetAttackBlockedReqBodyBytes(v int64) { o.AttackBlockedReqBodyBytes = &v } // GetAttackBlockedReqHeaderBytes returns the AttackBlockedReqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetAttackBlockedReqHeaderBytes() int32 { +func (o *Results) GetAttackBlockedReqHeaderBytes() int64 { if o == nil || o.AttackBlockedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackBlockedReqHeaderBytes @@ -2863,7 +2863,7 @@ func (o *Results) GetAttackBlockedReqHeaderBytes() int32 { // GetAttackBlockedReqHeaderBytesOk returns a tuple with the AttackBlockedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackBlockedReqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetAttackBlockedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackBlockedReqHeaderBytes == nil { return nil, false } @@ -2879,15 +2879,15 @@ func (o *Results) HasAttackBlockedReqHeaderBytes() bool { return false } -// SetAttackBlockedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackBlockedReqHeaderBytes field. -func (o *Results) SetAttackBlockedReqHeaderBytes(v int32) { +// SetAttackBlockedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackBlockedReqHeaderBytes field. +func (o *Results) SetAttackBlockedReqHeaderBytes(v int64) { o.AttackBlockedReqHeaderBytes = &v } // GetAttackPassedReqBodyBytes returns the AttackPassedReqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetAttackPassedReqBodyBytes() int32 { +func (o *Results) GetAttackPassedReqBodyBytes() int64 { if o == nil || o.AttackPassedReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackPassedReqBodyBytes @@ -2895,7 +2895,7 @@ func (o *Results) GetAttackPassedReqBodyBytes() int32 { // GetAttackPassedReqBodyBytesOk returns a tuple with the AttackPassedReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackPassedReqBodyBytesOk() (*int32, bool) { +func (o *Results) GetAttackPassedReqBodyBytesOk() (*int64, bool) { if o == nil || o.AttackPassedReqBodyBytes == nil { return nil, false } @@ -2911,15 +2911,15 @@ func (o *Results) HasAttackPassedReqBodyBytes() bool { return false } -// SetAttackPassedReqBodyBytes gets a reference to the given int32 and assigns it to the AttackPassedReqBodyBytes field. -func (o *Results) SetAttackPassedReqBodyBytes(v int32) { +// SetAttackPassedReqBodyBytes gets a reference to the given int64 and assigns it to the AttackPassedReqBodyBytes field. +func (o *Results) SetAttackPassedReqBodyBytes(v int64) { o.AttackPassedReqBodyBytes = &v } // GetAttackPassedReqHeaderBytes returns the AttackPassedReqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetAttackPassedReqHeaderBytes() int32 { +func (o *Results) GetAttackPassedReqHeaderBytes() int64 { if o == nil || o.AttackPassedReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackPassedReqHeaderBytes @@ -2927,7 +2927,7 @@ func (o *Results) GetAttackPassedReqHeaderBytes() int32 { // GetAttackPassedReqHeaderBytesOk returns a tuple with the AttackPassedReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackPassedReqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetAttackPassedReqHeaderBytesOk() (*int64, bool) { if o == nil || o.AttackPassedReqHeaderBytes == nil { return nil, false } @@ -2943,15 +2943,15 @@ func (o *Results) HasAttackPassedReqHeaderBytes() bool { return false } -// SetAttackPassedReqHeaderBytes gets a reference to the given int32 and assigns it to the AttackPassedReqHeaderBytes field. -func (o *Results) SetAttackPassedReqHeaderBytes(v int32) { +// SetAttackPassedReqHeaderBytes gets a reference to the given int64 and assigns it to the AttackPassedReqHeaderBytes field. +func (o *Results) SetAttackPassedReqHeaderBytes(v int64) { o.AttackPassedReqHeaderBytes = &v } // GetAttackRespSynthBytes returns the AttackRespSynthBytes field value if set, zero value otherwise. -func (o *Results) GetAttackRespSynthBytes() int32 { +func (o *Results) GetAttackRespSynthBytes() int64 { if o == nil || o.AttackRespSynthBytes == nil { - var ret int32 + var ret int64 return ret } return *o.AttackRespSynthBytes @@ -2959,7 +2959,7 @@ func (o *Results) GetAttackRespSynthBytes() int32 { // GetAttackRespSynthBytesOk returns a tuple with the AttackRespSynthBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAttackRespSynthBytesOk() (*int32, bool) { +func (o *Results) GetAttackRespSynthBytesOk() (*int64, bool) { if o == nil || o.AttackRespSynthBytes == nil { return nil, false } @@ -2975,15 +2975,15 @@ func (o *Results) HasAttackRespSynthBytes() bool { return false } -// SetAttackRespSynthBytes gets a reference to the given int32 and assigns it to the AttackRespSynthBytes field. -func (o *Results) SetAttackRespSynthBytes(v int32) { +// SetAttackRespSynthBytes gets a reference to the given int64 and assigns it to the AttackRespSynthBytes field. +func (o *Results) SetAttackRespSynthBytes(v int64) { o.AttackRespSynthBytes = &v } // GetImgopto returns the Imgopto field value if set, zero value otherwise. -func (o *Results) GetImgopto() int32 { +func (o *Results) GetImgopto() int64 { if o == nil || o.Imgopto == nil { - var ret int32 + var ret int64 return ret } return *o.Imgopto @@ -2991,7 +2991,7 @@ func (o *Results) GetImgopto() int32 { // GetImgoptoOk returns a tuple with the Imgopto field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgoptoOk() (*int32, bool) { +func (o *Results) GetImgoptoOk() (*int64, bool) { if o == nil || o.Imgopto == nil { return nil, false } @@ -3007,15 +3007,15 @@ func (o *Results) HasImgopto() bool { return false } -// SetImgopto gets a reference to the given int32 and assigns it to the Imgopto field. -func (o *Results) SetImgopto(v int32) { +// SetImgopto gets a reference to the given int64 and assigns it to the Imgopto field. +func (o *Results) SetImgopto(v int64) { o.Imgopto = &v } // GetImgoptoRespBodyBytes returns the ImgoptoRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetImgoptoRespBodyBytes() int32 { +func (o *Results) GetImgoptoRespBodyBytes() int64 { if o == nil || o.ImgoptoRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoRespBodyBytes @@ -3023,7 +3023,7 @@ func (o *Results) GetImgoptoRespBodyBytes() int32 { // GetImgoptoRespBodyBytesOk returns a tuple with the ImgoptoRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgoptoRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetImgoptoRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgoptoRespBodyBytes == nil { return nil, false } @@ -3039,15 +3039,15 @@ func (o *Results) HasImgoptoRespBodyBytes() bool { return false } -// SetImgoptoRespBodyBytes gets a reference to the given int32 and assigns it to the ImgoptoRespBodyBytes field. -func (o *Results) SetImgoptoRespBodyBytes(v int32) { +// SetImgoptoRespBodyBytes gets a reference to the given int64 and assigns it to the ImgoptoRespBodyBytes field. +func (o *Results) SetImgoptoRespBodyBytes(v int64) { o.ImgoptoRespBodyBytes = &v } // GetImgoptoRespHeaderBytes returns the ImgoptoRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetImgoptoRespHeaderBytes() int32 { +func (o *Results) GetImgoptoRespHeaderBytes() int64 { if o == nil || o.ImgoptoRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoRespHeaderBytes @@ -3055,7 +3055,7 @@ func (o *Results) GetImgoptoRespHeaderBytes() int32 { // GetImgoptoRespHeaderBytesOk returns a tuple with the ImgoptoRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgoptoRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetImgoptoRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgoptoRespHeaderBytes == nil { return nil, false } @@ -3071,15 +3071,15 @@ func (o *Results) HasImgoptoRespHeaderBytes() bool { return false } -// SetImgoptoRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgoptoRespHeaderBytes field. -func (o *Results) SetImgoptoRespHeaderBytes(v int32) { +// SetImgoptoRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgoptoRespHeaderBytes field. +func (o *Results) SetImgoptoRespHeaderBytes(v int64) { o.ImgoptoRespHeaderBytes = &v } // GetImgoptoShield returns the ImgoptoShield field value if set, zero value otherwise. -func (o *Results) GetImgoptoShield() int32 { +func (o *Results) GetImgoptoShield() int64 { if o == nil || o.ImgoptoShield == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShield @@ -3087,7 +3087,7 @@ func (o *Results) GetImgoptoShield() int32 { // GetImgoptoShieldOk returns a tuple with the ImgoptoShield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgoptoShieldOk() (*int32, bool) { +func (o *Results) GetImgoptoShieldOk() (*int64, bool) { if o == nil || o.ImgoptoShield == nil { return nil, false } @@ -3103,15 +3103,15 @@ func (o *Results) HasImgoptoShield() bool { return false } -// SetImgoptoShield gets a reference to the given int32 and assigns it to the ImgoptoShield field. -func (o *Results) SetImgoptoShield(v int32) { +// SetImgoptoShield gets a reference to the given int64 and assigns it to the ImgoptoShield field. +func (o *Results) SetImgoptoShield(v int64) { o.ImgoptoShield = &v } // GetImgoptoShieldRespBodyBytes returns the ImgoptoShieldRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetImgoptoShieldRespBodyBytes() int32 { +func (o *Results) GetImgoptoShieldRespBodyBytes() int64 { if o == nil || o.ImgoptoShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShieldRespBodyBytes @@ -3119,7 +3119,7 @@ func (o *Results) GetImgoptoShieldRespBodyBytes() int32 { // GetImgoptoShieldRespBodyBytesOk returns a tuple with the ImgoptoShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgoptoShieldRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetImgoptoShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgoptoShieldRespBodyBytes == nil { return nil, false } @@ -3135,15 +3135,15 @@ func (o *Results) HasImgoptoShieldRespBodyBytes() bool { return false } -// SetImgoptoShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ImgoptoShieldRespBodyBytes field. -func (o *Results) SetImgoptoShieldRespBodyBytes(v int32) { +// SetImgoptoShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ImgoptoShieldRespBodyBytes field. +func (o *Results) SetImgoptoShieldRespBodyBytes(v int64) { o.ImgoptoShieldRespBodyBytes = &v } // GetImgoptoShieldRespHeaderBytes returns the ImgoptoShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetImgoptoShieldRespHeaderBytes() int32 { +func (o *Results) GetImgoptoShieldRespHeaderBytes() int64 { if o == nil || o.ImgoptoShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoShieldRespHeaderBytes @@ -3151,7 +3151,7 @@ func (o *Results) GetImgoptoShieldRespHeaderBytes() int32 { // GetImgoptoShieldRespHeaderBytesOk returns a tuple with the ImgoptoShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgoptoShieldRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetImgoptoShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgoptoShieldRespHeaderBytes == nil { return nil, false } @@ -3167,15 +3167,15 @@ func (o *Results) HasImgoptoShieldRespHeaderBytes() bool { return false } -// SetImgoptoShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgoptoShieldRespHeaderBytes field. -func (o *Results) SetImgoptoShieldRespHeaderBytes(v int32) { +// SetImgoptoShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgoptoShieldRespHeaderBytes field. +func (o *Results) SetImgoptoShieldRespHeaderBytes(v int64) { o.ImgoptoShieldRespHeaderBytes = &v } // GetImgoptoTransforms returns the ImgoptoTransforms field value if set, zero value otherwise. -func (o *Results) GetImgoptoTransforms() int32 { +func (o *Results) GetImgoptoTransforms() int64 { if o == nil || o.ImgoptoTransforms == nil { - var ret int32 + var ret int64 return ret } return *o.ImgoptoTransforms @@ -3183,7 +3183,7 @@ func (o *Results) GetImgoptoTransforms() int32 { // GetImgoptoTransformsOk returns a tuple with the ImgoptoTransforms field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgoptoTransformsOk() (*int32, bool) { +func (o *Results) GetImgoptoTransformsOk() (*int64, bool) { if o == nil || o.ImgoptoTransforms == nil { return nil, false } @@ -3199,15 +3199,15 @@ func (o *Results) HasImgoptoTransforms() bool { return false } -// SetImgoptoTransforms gets a reference to the given int32 and assigns it to the ImgoptoTransforms field. -func (o *Results) SetImgoptoTransforms(v int32) { +// SetImgoptoTransforms gets a reference to the given int64 and assigns it to the ImgoptoTransforms field. +func (o *Results) SetImgoptoTransforms(v int64) { o.ImgoptoTransforms = &v } // GetImgvideo returns the Imgvideo field value if set, zero value otherwise. -func (o *Results) GetImgvideo() int32 { +func (o *Results) GetImgvideo() int64 { if o == nil || o.Imgvideo == nil { - var ret int32 + var ret int64 return ret } return *o.Imgvideo @@ -3215,7 +3215,7 @@ func (o *Results) GetImgvideo() int32 { // GetImgvideoOk returns a tuple with the Imgvideo field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgvideoOk() (*int32, bool) { +func (o *Results) GetImgvideoOk() (*int64, bool) { if o == nil || o.Imgvideo == nil { return nil, false } @@ -3231,15 +3231,15 @@ func (o *Results) HasImgvideo() bool { return false } -// SetImgvideo gets a reference to the given int32 and assigns it to the Imgvideo field. -func (o *Results) SetImgvideo(v int32) { +// SetImgvideo gets a reference to the given int64 and assigns it to the Imgvideo field. +func (o *Results) SetImgvideo(v int64) { o.Imgvideo = &v } // GetImgvideoFrames returns the ImgvideoFrames field value if set, zero value otherwise. -func (o *Results) GetImgvideoFrames() int32 { +func (o *Results) GetImgvideoFrames() int64 { if o == nil || o.ImgvideoFrames == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoFrames @@ -3247,7 +3247,7 @@ func (o *Results) GetImgvideoFrames() int32 { // GetImgvideoFramesOk returns a tuple with the ImgvideoFrames field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgvideoFramesOk() (*int32, bool) { +func (o *Results) GetImgvideoFramesOk() (*int64, bool) { if o == nil || o.ImgvideoFrames == nil { return nil, false } @@ -3263,15 +3263,15 @@ func (o *Results) HasImgvideoFrames() bool { return false } -// SetImgvideoFrames gets a reference to the given int32 and assigns it to the ImgvideoFrames field. -func (o *Results) SetImgvideoFrames(v int32) { +// SetImgvideoFrames gets a reference to the given int64 and assigns it to the ImgvideoFrames field. +func (o *Results) SetImgvideoFrames(v int64) { o.ImgvideoFrames = &v } // GetImgvideoRespHeaderBytes returns the ImgvideoRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetImgvideoRespHeaderBytes() int32 { +func (o *Results) GetImgvideoRespHeaderBytes() int64 { if o == nil || o.ImgvideoRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoRespHeaderBytes @@ -3279,7 +3279,7 @@ func (o *Results) GetImgvideoRespHeaderBytes() int32 { // GetImgvideoRespHeaderBytesOk returns a tuple with the ImgvideoRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgvideoRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetImgvideoRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgvideoRespHeaderBytes == nil { return nil, false } @@ -3295,15 +3295,15 @@ func (o *Results) HasImgvideoRespHeaderBytes() bool { return false } -// SetImgvideoRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgvideoRespHeaderBytes field. -func (o *Results) SetImgvideoRespHeaderBytes(v int32) { +// SetImgvideoRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgvideoRespHeaderBytes field. +func (o *Results) SetImgvideoRespHeaderBytes(v int64) { o.ImgvideoRespHeaderBytes = &v } // GetImgvideoRespBodyBytes returns the ImgvideoRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetImgvideoRespBodyBytes() int32 { +func (o *Results) GetImgvideoRespBodyBytes() int64 { if o == nil || o.ImgvideoRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoRespBodyBytes @@ -3311,7 +3311,7 @@ func (o *Results) GetImgvideoRespBodyBytes() int32 { // GetImgvideoRespBodyBytesOk returns a tuple with the ImgvideoRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgvideoRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetImgvideoRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgvideoRespBodyBytes == nil { return nil, false } @@ -3327,15 +3327,15 @@ func (o *Results) HasImgvideoRespBodyBytes() bool { return false } -// SetImgvideoRespBodyBytes gets a reference to the given int32 and assigns it to the ImgvideoRespBodyBytes field. -func (o *Results) SetImgvideoRespBodyBytes(v int32) { +// SetImgvideoRespBodyBytes gets a reference to the given int64 and assigns it to the ImgvideoRespBodyBytes field. +func (o *Results) SetImgvideoRespBodyBytes(v int64) { o.ImgvideoRespBodyBytes = &v } // GetImgvideoShieldRespHeaderBytes returns the ImgvideoShieldRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetImgvideoShieldRespHeaderBytes() int32 { +func (o *Results) GetImgvideoShieldRespHeaderBytes() int64 { if o == nil || o.ImgvideoShieldRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldRespHeaderBytes @@ -3343,7 +3343,7 @@ func (o *Results) GetImgvideoShieldRespHeaderBytes() int32 { // GetImgvideoShieldRespHeaderBytesOk returns a tuple with the ImgvideoShieldRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgvideoShieldRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetImgvideoShieldRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldRespHeaderBytes == nil { return nil, false } @@ -3359,15 +3359,15 @@ func (o *Results) HasImgvideoShieldRespHeaderBytes() bool { return false } -// SetImgvideoShieldRespHeaderBytes gets a reference to the given int32 and assigns it to the ImgvideoShieldRespHeaderBytes field. -func (o *Results) SetImgvideoShieldRespHeaderBytes(v int32) { +// SetImgvideoShieldRespHeaderBytes gets a reference to the given int64 and assigns it to the ImgvideoShieldRespHeaderBytes field. +func (o *Results) SetImgvideoShieldRespHeaderBytes(v int64) { o.ImgvideoShieldRespHeaderBytes = &v } // GetImgvideoShieldRespBodyBytes returns the ImgvideoShieldRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetImgvideoShieldRespBodyBytes() int32 { +func (o *Results) GetImgvideoShieldRespBodyBytes() int64 { if o == nil || o.ImgvideoShieldRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldRespBodyBytes @@ -3375,7 +3375,7 @@ func (o *Results) GetImgvideoShieldRespBodyBytes() int32 { // GetImgvideoShieldRespBodyBytesOk returns a tuple with the ImgvideoShieldRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgvideoShieldRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetImgvideoShieldRespBodyBytesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldRespBodyBytes == nil { return nil, false } @@ -3391,15 +3391,15 @@ func (o *Results) HasImgvideoShieldRespBodyBytes() bool { return false } -// SetImgvideoShieldRespBodyBytes gets a reference to the given int32 and assigns it to the ImgvideoShieldRespBodyBytes field. -func (o *Results) SetImgvideoShieldRespBodyBytes(v int32) { +// SetImgvideoShieldRespBodyBytes gets a reference to the given int64 and assigns it to the ImgvideoShieldRespBodyBytes field. +func (o *Results) SetImgvideoShieldRespBodyBytes(v int64) { o.ImgvideoShieldRespBodyBytes = &v } // GetImgvideoShield returns the ImgvideoShield field value if set, zero value otherwise. -func (o *Results) GetImgvideoShield() int32 { +func (o *Results) GetImgvideoShield() int64 { if o == nil || o.ImgvideoShield == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShield @@ -3407,7 +3407,7 @@ func (o *Results) GetImgvideoShield() int32 { // GetImgvideoShieldOk returns a tuple with the ImgvideoShield field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgvideoShieldOk() (*int32, bool) { +func (o *Results) GetImgvideoShieldOk() (*int64, bool) { if o == nil || o.ImgvideoShield == nil { return nil, false } @@ -3423,15 +3423,15 @@ func (o *Results) HasImgvideoShield() bool { return false } -// SetImgvideoShield gets a reference to the given int32 and assigns it to the ImgvideoShield field. -func (o *Results) SetImgvideoShield(v int32) { +// SetImgvideoShield gets a reference to the given int64 and assigns it to the ImgvideoShield field. +func (o *Results) SetImgvideoShield(v int64) { o.ImgvideoShield = &v } // GetImgvideoShieldFrames returns the ImgvideoShieldFrames field value if set, zero value otherwise. -func (o *Results) GetImgvideoShieldFrames() int32 { +func (o *Results) GetImgvideoShieldFrames() int64 { if o == nil || o.ImgvideoShieldFrames == nil { - var ret int32 + var ret int64 return ret } return *o.ImgvideoShieldFrames @@ -3439,7 +3439,7 @@ func (o *Results) GetImgvideoShieldFrames() int32 { // GetImgvideoShieldFramesOk returns a tuple with the ImgvideoShieldFrames field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetImgvideoShieldFramesOk() (*int32, bool) { +func (o *Results) GetImgvideoShieldFramesOk() (*int64, bool) { if o == nil || o.ImgvideoShieldFrames == nil { return nil, false } @@ -3455,15 +3455,15 @@ func (o *Results) HasImgvideoShieldFrames() bool { return false } -// SetImgvideoShieldFrames gets a reference to the given int32 and assigns it to the ImgvideoShieldFrames field. -func (o *Results) SetImgvideoShieldFrames(v int32) { +// SetImgvideoShieldFrames gets a reference to the given int64 and assigns it to the ImgvideoShieldFrames field. +func (o *Results) SetImgvideoShieldFrames(v int64) { o.ImgvideoShieldFrames = &v } // GetStatus200 returns the Status200 field value if set, zero value otherwise. -func (o *Results) GetStatus200() int32 { +func (o *Results) GetStatus200() int64 { if o == nil || o.Status200 == nil { - var ret int32 + var ret int64 return ret } return *o.Status200 @@ -3471,7 +3471,7 @@ func (o *Results) GetStatus200() int32 { // GetStatus200Ok returns a tuple with the Status200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus200Ok() (*int32, bool) { +func (o *Results) GetStatus200Ok() (*int64, bool) { if o == nil || o.Status200 == nil { return nil, false } @@ -3487,15 +3487,15 @@ func (o *Results) HasStatus200() bool { return false } -// SetStatus200 gets a reference to the given int32 and assigns it to the Status200 field. -func (o *Results) SetStatus200(v int32) { +// SetStatus200 gets a reference to the given int64 and assigns it to the Status200 field. +func (o *Results) SetStatus200(v int64) { o.Status200 = &v } // GetStatus204 returns the Status204 field value if set, zero value otherwise. -func (o *Results) GetStatus204() int32 { +func (o *Results) GetStatus204() int64 { if o == nil || o.Status204 == nil { - var ret int32 + var ret int64 return ret } return *o.Status204 @@ -3503,7 +3503,7 @@ func (o *Results) GetStatus204() int32 { // GetStatus204Ok returns a tuple with the Status204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus204Ok() (*int32, bool) { +func (o *Results) GetStatus204Ok() (*int64, bool) { if o == nil || o.Status204 == nil { return nil, false } @@ -3519,15 +3519,15 @@ func (o *Results) HasStatus204() bool { return false } -// SetStatus204 gets a reference to the given int32 and assigns it to the Status204 field. -func (o *Results) SetStatus204(v int32) { +// SetStatus204 gets a reference to the given int64 and assigns it to the Status204 field. +func (o *Results) SetStatus204(v int64) { o.Status204 = &v } // GetStatus206 returns the Status206 field value if set, zero value otherwise. -func (o *Results) GetStatus206() int32 { +func (o *Results) GetStatus206() int64 { if o == nil || o.Status206 == nil { - var ret int32 + var ret int64 return ret } return *o.Status206 @@ -3535,7 +3535,7 @@ func (o *Results) GetStatus206() int32 { // GetStatus206Ok returns a tuple with the Status206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus206Ok() (*int32, bool) { +func (o *Results) GetStatus206Ok() (*int64, bool) { if o == nil || o.Status206 == nil { return nil, false } @@ -3551,15 +3551,15 @@ func (o *Results) HasStatus206() bool { return false } -// SetStatus206 gets a reference to the given int32 and assigns it to the Status206 field. -func (o *Results) SetStatus206(v int32) { +// SetStatus206 gets a reference to the given int64 and assigns it to the Status206 field. +func (o *Results) SetStatus206(v int64) { o.Status206 = &v } // GetStatus301 returns the Status301 field value if set, zero value otherwise. -func (o *Results) GetStatus301() int32 { +func (o *Results) GetStatus301() int64 { if o == nil || o.Status301 == nil { - var ret int32 + var ret int64 return ret } return *o.Status301 @@ -3567,7 +3567,7 @@ func (o *Results) GetStatus301() int32 { // GetStatus301Ok returns a tuple with the Status301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus301Ok() (*int32, bool) { +func (o *Results) GetStatus301Ok() (*int64, bool) { if o == nil || o.Status301 == nil { return nil, false } @@ -3583,15 +3583,15 @@ func (o *Results) HasStatus301() bool { return false } -// SetStatus301 gets a reference to the given int32 and assigns it to the Status301 field. -func (o *Results) SetStatus301(v int32) { +// SetStatus301 gets a reference to the given int64 and assigns it to the Status301 field. +func (o *Results) SetStatus301(v int64) { o.Status301 = &v } // GetStatus302 returns the Status302 field value if set, zero value otherwise. -func (o *Results) GetStatus302() int32 { +func (o *Results) GetStatus302() int64 { if o == nil || o.Status302 == nil { - var ret int32 + var ret int64 return ret } return *o.Status302 @@ -3599,7 +3599,7 @@ func (o *Results) GetStatus302() int32 { // GetStatus302Ok returns a tuple with the Status302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus302Ok() (*int32, bool) { +func (o *Results) GetStatus302Ok() (*int64, bool) { if o == nil || o.Status302 == nil { return nil, false } @@ -3615,15 +3615,15 @@ func (o *Results) HasStatus302() bool { return false } -// SetStatus302 gets a reference to the given int32 and assigns it to the Status302 field. -func (o *Results) SetStatus302(v int32) { +// SetStatus302 gets a reference to the given int64 and assigns it to the Status302 field. +func (o *Results) SetStatus302(v int64) { o.Status302 = &v } // GetStatus304 returns the Status304 field value if set, zero value otherwise. -func (o *Results) GetStatus304() int32 { +func (o *Results) GetStatus304() int64 { if o == nil || o.Status304 == nil { - var ret int32 + var ret int64 return ret } return *o.Status304 @@ -3631,7 +3631,7 @@ func (o *Results) GetStatus304() int32 { // GetStatus304Ok returns a tuple with the Status304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus304Ok() (*int32, bool) { +func (o *Results) GetStatus304Ok() (*int64, bool) { if o == nil || o.Status304 == nil { return nil, false } @@ -3647,15 +3647,15 @@ func (o *Results) HasStatus304() bool { return false } -// SetStatus304 gets a reference to the given int32 and assigns it to the Status304 field. -func (o *Results) SetStatus304(v int32) { +// SetStatus304 gets a reference to the given int64 and assigns it to the Status304 field. +func (o *Results) SetStatus304(v int64) { o.Status304 = &v } // GetStatus400 returns the Status400 field value if set, zero value otherwise. -func (o *Results) GetStatus400() int32 { +func (o *Results) GetStatus400() int64 { if o == nil || o.Status400 == nil { - var ret int32 + var ret int64 return ret } return *o.Status400 @@ -3663,7 +3663,7 @@ func (o *Results) GetStatus400() int32 { // GetStatus400Ok returns a tuple with the Status400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus400Ok() (*int32, bool) { +func (o *Results) GetStatus400Ok() (*int64, bool) { if o == nil || o.Status400 == nil { return nil, false } @@ -3679,15 +3679,15 @@ func (o *Results) HasStatus400() bool { return false } -// SetStatus400 gets a reference to the given int32 and assigns it to the Status400 field. -func (o *Results) SetStatus400(v int32) { +// SetStatus400 gets a reference to the given int64 and assigns it to the Status400 field. +func (o *Results) SetStatus400(v int64) { o.Status400 = &v } // GetStatus401 returns the Status401 field value if set, zero value otherwise. -func (o *Results) GetStatus401() int32 { +func (o *Results) GetStatus401() int64 { if o == nil || o.Status401 == nil { - var ret int32 + var ret int64 return ret } return *o.Status401 @@ -3695,7 +3695,7 @@ func (o *Results) GetStatus401() int32 { // GetStatus401Ok returns a tuple with the Status401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus401Ok() (*int32, bool) { +func (o *Results) GetStatus401Ok() (*int64, bool) { if o == nil || o.Status401 == nil { return nil, false } @@ -3711,15 +3711,15 @@ func (o *Results) HasStatus401() bool { return false } -// SetStatus401 gets a reference to the given int32 and assigns it to the Status401 field. -func (o *Results) SetStatus401(v int32) { +// SetStatus401 gets a reference to the given int64 and assigns it to the Status401 field. +func (o *Results) SetStatus401(v int64) { o.Status401 = &v } // GetStatus403 returns the Status403 field value if set, zero value otherwise. -func (o *Results) GetStatus403() int32 { +func (o *Results) GetStatus403() int64 { if o == nil || o.Status403 == nil { - var ret int32 + var ret int64 return ret } return *o.Status403 @@ -3727,7 +3727,7 @@ func (o *Results) GetStatus403() int32 { // GetStatus403Ok returns a tuple with the Status403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus403Ok() (*int32, bool) { +func (o *Results) GetStatus403Ok() (*int64, bool) { if o == nil || o.Status403 == nil { return nil, false } @@ -3743,15 +3743,15 @@ func (o *Results) HasStatus403() bool { return false } -// SetStatus403 gets a reference to the given int32 and assigns it to the Status403 field. -func (o *Results) SetStatus403(v int32) { +// SetStatus403 gets a reference to the given int64 and assigns it to the Status403 field. +func (o *Results) SetStatus403(v int64) { o.Status403 = &v } // GetStatus404 returns the Status404 field value if set, zero value otherwise. -func (o *Results) GetStatus404() int32 { +func (o *Results) GetStatus404() int64 { if o == nil || o.Status404 == nil { - var ret int32 + var ret int64 return ret } return *o.Status404 @@ -3759,7 +3759,7 @@ func (o *Results) GetStatus404() int32 { // GetStatus404Ok returns a tuple with the Status404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus404Ok() (*int32, bool) { +func (o *Results) GetStatus404Ok() (*int64, bool) { if o == nil || o.Status404 == nil { return nil, false } @@ -3775,15 +3775,15 @@ func (o *Results) HasStatus404() bool { return false } -// SetStatus404 gets a reference to the given int32 and assigns it to the Status404 field. -func (o *Results) SetStatus404(v int32) { +// SetStatus404 gets a reference to the given int64 and assigns it to the Status404 field. +func (o *Results) SetStatus404(v int64) { o.Status404 = &v } // GetStatus406 returns the Status406 field value if set, zero value otherwise. -func (o *Results) GetStatus406() int32 { +func (o *Results) GetStatus406() int64 { if o == nil || o.Status406 == nil { - var ret int32 + var ret int64 return ret } return *o.Status406 @@ -3791,7 +3791,7 @@ func (o *Results) GetStatus406() int32 { // GetStatus406Ok returns a tuple with the Status406 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus406Ok() (*int32, bool) { +func (o *Results) GetStatus406Ok() (*int64, bool) { if o == nil || o.Status406 == nil { return nil, false } @@ -3807,15 +3807,15 @@ func (o *Results) HasStatus406() bool { return false } -// SetStatus406 gets a reference to the given int32 and assigns it to the Status406 field. -func (o *Results) SetStatus406(v int32) { +// SetStatus406 gets a reference to the given int64 and assigns it to the Status406 field. +func (o *Results) SetStatus406(v int64) { o.Status406 = &v } // GetStatus416 returns the Status416 field value if set, zero value otherwise. -func (o *Results) GetStatus416() int32 { +func (o *Results) GetStatus416() int64 { if o == nil || o.Status416 == nil { - var ret int32 + var ret int64 return ret } return *o.Status416 @@ -3823,7 +3823,7 @@ func (o *Results) GetStatus416() int32 { // GetStatus416Ok returns a tuple with the Status416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus416Ok() (*int32, bool) { +func (o *Results) GetStatus416Ok() (*int64, bool) { if o == nil || o.Status416 == nil { return nil, false } @@ -3839,15 +3839,15 @@ func (o *Results) HasStatus416() bool { return false } -// SetStatus416 gets a reference to the given int32 and assigns it to the Status416 field. -func (o *Results) SetStatus416(v int32) { +// SetStatus416 gets a reference to the given int64 and assigns it to the Status416 field. +func (o *Results) SetStatus416(v int64) { o.Status416 = &v } // GetStatus429 returns the Status429 field value if set, zero value otherwise. -func (o *Results) GetStatus429() int32 { +func (o *Results) GetStatus429() int64 { if o == nil || o.Status429 == nil { - var ret int32 + var ret int64 return ret } return *o.Status429 @@ -3855,7 +3855,7 @@ func (o *Results) GetStatus429() int32 { // GetStatus429Ok returns a tuple with the Status429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus429Ok() (*int32, bool) { +func (o *Results) GetStatus429Ok() (*int64, bool) { if o == nil || o.Status429 == nil { return nil, false } @@ -3871,15 +3871,15 @@ func (o *Results) HasStatus429() bool { return false } -// SetStatus429 gets a reference to the given int32 and assigns it to the Status429 field. -func (o *Results) SetStatus429(v int32) { +// SetStatus429 gets a reference to the given int64 and assigns it to the Status429 field. +func (o *Results) SetStatus429(v int64) { o.Status429 = &v } // GetStatus500 returns the Status500 field value if set, zero value otherwise. -func (o *Results) GetStatus500() int32 { +func (o *Results) GetStatus500() int64 { if o == nil || o.Status500 == nil { - var ret int32 + var ret int64 return ret } return *o.Status500 @@ -3887,7 +3887,7 @@ func (o *Results) GetStatus500() int32 { // GetStatus500Ok returns a tuple with the Status500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus500Ok() (*int32, bool) { +func (o *Results) GetStatus500Ok() (*int64, bool) { if o == nil || o.Status500 == nil { return nil, false } @@ -3903,15 +3903,15 @@ func (o *Results) HasStatus500() bool { return false } -// SetStatus500 gets a reference to the given int32 and assigns it to the Status500 field. -func (o *Results) SetStatus500(v int32) { +// SetStatus500 gets a reference to the given int64 and assigns it to the Status500 field. +func (o *Results) SetStatus500(v int64) { o.Status500 = &v } // GetStatus501 returns the Status501 field value if set, zero value otherwise. -func (o *Results) GetStatus501() int32 { +func (o *Results) GetStatus501() int64 { if o == nil || o.Status501 == nil { - var ret int32 + var ret int64 return ret } return *o.Status501 @@ -3919,7 +3919,7 @@ func (o *Results) GetStatus501() int32 { // GetStatus501Ok returns a tuple with the Status501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus501Ok() (*int32, bool) { +func (o *Results) GetStatus501Ok() (*int64, bool) { if o == nil || o.Status501 == nil { return nil, false } @@ -3935,15 +3935,15 @@ func (o *Results) HasStatus501() bool { return false } -// SetStatus501 gets a reference to the given int32 and assigns it to the Status501 field. -func (o *Results) SetStatus501(v int32) { +// SetStatus501 gets a reference to the given int64 and assigns it to the Status501 field. +func (o *Results) SetStatus501(v int64) { o.Status501 = &v } // GetStatus502 returns the Status502 field value if set, zero value otherwise. -func (o *Results) GetStatus502() int32 { +func (o *Results) GetStatus502() int64 { if o == nil || o.Status502 == nil { - var ret int32 + var ret int64 return ret } return *o.Status502 @@ -3951,7 +3951,7 @@ func (o *Results) GetStatus502() int32 { // GetStatus502Ok returns a tuple with the Status502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus502Ok() (*int32, bool) { +func (o *Results) GetStatus502Ok() (*int64, bool) { if o == nil || o.Status502 == nil { return nil, false } @@ -3967,15 +3967,15 @@ func (o *Results) HasStatus502() bool { return false } -// SetStatus502 gets a reference to the given int32 and assigns it to the Status502 field. -func (o *Results) SetStatus502(v int32) { +// SetStatus502 gets a reference to the given int64 and assigns it to the Status502 field. +func (o *Results) SetStatus502(v int64) { o.Status502 = &v } // GetStatus503 returns the Status503 field value if set, zero value otherwise. -func (o *Results) GetStatus503() int32 { +func (o *Results) GetStatus503() int64 { if o == nil || o.Status503 == nil { - var ret int32 + var ret int64 return ret } return *o.Status503 @@ -3983,7 +3983,7 @@ func (o *Results) GetStatus503() int32 { // GetStatus503Ok returns a tuple with the Status503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus503Ok() (*int32, bool) { +func (o *Results) GetStatus503Ok() (*int64, bool) { if o == nil || o.Status503 == nil { return nil, false } @@ -3999,15 +3999,15 @@ func (o *Results) HasStatus503() bool { return false } -// SetStatus503 gets a reference to the given int32 and assigns it to the Status503 field. -func (o *Results) SetStatus503(v int32) { +// SetStatus503 gets a reference to the given int64 and assigns it to the Status503 field. +func (o *Results) SetStatus503(v int64) { o.Status503 = &v } // GetStatus504 returns the Status504 field value if set, zero value otherwise. -func (o *Results) GetStatus504() int32 { +func (o *Results) GetStatus504() int64 { if o == nil || o.Status504 == nil { - var ret int32 + var ret int64 return ret } return *o.Status504 @@ -4015,7 +4015,7 @@ func (o *Results) GetStatus504() int32 { // GetStatus504Ok returns a tuple with the Status504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus504Ok() (*int32, bool) { +func (o *Results) GetStatus504Ok() (*int64, bool) { if o == nil || o.Status504 == nil { return nil, false } @@ -4031,15 +4031,15 @@ func (o *Results) HasStatus504() bool { return false } -// SetStatus504 gets a reference to the given int32 and assigns it to the Status504 field. -func (o *Results) SetStatus504(v int32) { +// SetStatus504 gets a reference to the given int64 and assigns it to the Status504 field. +func (o *Results) SetStatus504(v int64) { o.Status504 = &v } // GetStatus505 returns the Status505 field value if set, zero value otherwise. -func (o *Results) GetStatus505() int32 { +func (o *Results) GetStatus505() int64 { if o == nil || o.Status505 == nil { - var ret int32 + var ret int64 return ret } return *o.Status505 @@ -4047,7 +4047,7 @@ func (o *Results) GetStatus505() int32 { // GetStatus505Ok returns a tuple with the Status505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus505Ok() (*int32, bool) { +func (o *Results) GetStatus505Ok() (*int64, bool) { if o == nil || o.Status505 == nil { return nil, false } @@ -4063,15 +4063,15 @@ func (o *Results) HasStatus505() bool { return false } -// SetStatus505 gets a reference to the given int32 and assigns it to the Status505 field. -func (o *Results) SetStatus505(v int32) { +// SetStatus505 gets a reference to the given int64 and assigns it to the Status505 field. +func (o *Results) SetStatus505(v int64) { o.Status505 = &v } // GetStatus1xx returns the Status1xx field value if set, zero value otherwise. -func (o *Results) GetStatus1xx() int32 { +func (o *Results) GetStatus1xx() int64 { if o == nil || o.Status1xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status1xx @@ -4079,7 +4079,7 @@ func (o *Results) GetStatus1xx() int32 { // GetStatus1xxOk returns a tuple with the Status1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus1xxOk() (*int32, bool) { +func (o *Results) GetStatus1xxOk() (*int64, bool) { if o == nil || o.Status1xx == nil { return nil, false } @@ -4095,15 +4095,15 @@ func (o *Results) HasStatus1xx() bool { return false } -// SetStatus1xx gets a reference to the given int32 and assigns it to the Status1xx field. -func (o *Results) SetStatus1xx(v int32) { +// SetStatus1xx gets a reference to the given int64 and assigns it to the Status1xx field. +func (o *Results) SetStatus1xx(v int64) { o.Status1xx = &v } // GetStatus2xx returns the Status2xx field value if set, zero value otherwise. -func (o *Results) GetStatus2xx() int32 { +func (o *Results) GetStatus2xx() int64 { if o == nil || o.Status2xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status2xx @@ -4111,7 +4111,7 @@ func (o *Results) GetStatus2xx() int32 { // GetStatus2xxOk returns a tuple with the Status2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus2xxOk() (*int32, bool) { +func (o *Results) GetStatus2xxOk() (*int64, bool) { if o == nil || o.Status2xx == nil { return nil, false } @@ -4127,15 +4127,15 @@ func (o *Results) HasStatus2xx() bool { return false } -// SetStatus2xx gets a reference to the given int32 and assigns it to the Status2xx field. -func (o *Results) SetStatus2xx(v int32) { +// SetStatus2xx gets a reference to the given int64 and assigns it to the Status2xx field. +func (o *Results) SetStatus2xx(v int64) { o.Status2xx = &v } // GetStatus3xx returns the Status3xx field value if set, zero value otherwise. -func (o *Results) GetStatus3xx() int32 { +func (o *Results) GetStatus3xx() int64 { if o == nil || o.Status3xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status3xx @@ -4143,7 +4143,7 @@ func (o *Results) GetStatus3xx() int32 { // GetStatus3xxOk returns a tuple with the Status3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus3xxOk() (*int32, bool) { +func (o *Results) GetStatus3xxOk() (*int64, bool) { if o == nil || o.Status3xx == nil { return nil, false } @@ -4159,15 +4159,15 @@ func (o *Results) HasStatus3xx() bool { return false } -// SetStatus3xx gets a reference to the given int32 and assigns it to the Status3xx field. -func (o *Results) SetStatus3xx(v int32) { +// SetStatus3xx gets a reference to the given int64 and assigns it to the Status3xx field. +func (o *Results) SetStatus3xx(v int64) { o.Status3xx = &v } // GetStatus4xx returns the Status4xx field value if set, zero value otherwise. -func (o *Results) GetStatus4xx() int32 { +func (o *Results) GetStatus4xx() int64 { if o == nil || o.Status4xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status4xx @@ -4175,7 +4175,7 @@ func (o *Results) GetStatus4xx() int32 { // GetStatus4xxOk returns a tuple with the Status4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus4xxOk() (*int32, bool) { +func (o *Results) GetStatus4xxOk() (*int64, bool) { if o == nil || o.Status4xx == nil { return nil, false } @@ -4191,15 +4191,15 @@ func (o *Results) HasStatus4xx() bool { return false } -// SetStatus4xx gets a reference to the given int32 and assigns it to the Status4xx field. -func (o *Results) SetStatus4xx(v int32) { +// SetStatus4xx gets a reference to the given int64 and assigns it to the Status4xx field. +func (o *Results) SetStatus4xx(v int64) { o.Status4xx = &v } // GetStatus5xx returns the Status5xx field value if set, zero value otherwise. -func (o *Results) GetStatus5xx() int32 { +func (o *Results) GetStatus5xx() int64 { if o == nil || o.Status5xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status5xx @@ -4207,7 +4207,7 @@ func (o *Results) GetStatus5xx() int32 { // GetStatus5xxOk returns a tuple with the Status5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStatus5xxOk() (*int32, bool) { +func (o *Results) GetStatus5xxOk() (*int64, bool) { if o == nil || o.Status5xx == nil { return nil, false } @@ -4223,15 +4223,15 @@ func (o *Results) HasStatus5xx() bool { return false } -// SetStatus5xx gets a reference to the given int32 and assigns it to the Status5xx field. -func (o *Results) SetStatus5xx(v int32) { +// SetStatus5xx gets a reference to the given int64 and assigns it to the Status5xx field. +func (o *Results) SetStatus5xx(v int64) { o.Status5xx = &v } // GetObjectSize1k returns the ObjectSize1k field value if set, zero value otherwise. -func (o *Results) GetObjectSize1k() int32 { +func (o *Results) GetObjectSize1k() int64 { if o == nil || o.ObjectSize1k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1k @@ -4239,7 +4239,7 @@ func (o *Results) GetObjectSize1k() int32 { // GetObjectSize1kOk returns a tuple with the ObjectSize1k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetObjectSize1kOk() (*int32, bool) { +func (o *Results) GetObjectSize1kOk() (*int64, bool) { if o == nil || o.ObjectSize1k == nil { return nil, false } @@ -4255,15 +4255,15 @@ func (o *Results) HasObjectSize1k() bool { return false } -// SetObjectSize1k gets a reference to the given int32 and assigns it to the ObjectSize1k field. -func (o *Results) SetObjectSize1k(v int32) { +// SetObjectSize1k gets a reference to the given int64 and assigns it to the ObjectSize1k field. +func (o *Results) SetObjectSize1k(v int64) { o.ObjectSize1k = &v } // GetObjectSize10k returns the ObjectSize10k field value if set, zero value otherwise. -func (o *Results) GetObjectSize10k() int32 { +func (o *Results) GetObjectSize10k() int64 { if o == nil || o.ObjectSize10k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize10k @@ -4271,7 +4271,7 @@ func (o *Results) GetObjectSize10k() int32 { // GetObjectSize10kOk returns a tuple with the ObjectSize10k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetObjectSize10kOk() (*int32, bool) { +func (o *Results) GetObjectSize10kOk() (*int64, bool) { if o == nil || o.ObjectSize10k == nil { return nil, false } @@ -4287,15 +4287,15 @@ func (o *Results) HasObjectSize10k() bool { return false } -// SetObjectSize10k gets a reference to the given int32 and assigns it to the ObjectSize10k field. -func (o *Results) SetObjectSize10k(v int32) { +// SetObjectSize10k gets a reference to the given int64 and assigns it to the ObjectSize10k field. +func (o *Results) SetObjectSize10k(v int64) { o.ObjectSize10k = &v } // GetObjectSize100k returns the ObjectSize100k field value if set, zero value otherwise. -func (o *Results) GetObjectSize100k() int32 { +func (o *Results) GetObjectSize100k() int64 { if o == nil || o.ObjectSize100k == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize100k @@ -4303,7 +4303,7 @@ func (o *Results) GetObjectSize100k() int32 { // GetObjectSize100kOk returns a tuple with the ObjectSize100k field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetObjectSize100kOk() (*int32, bool) { +func (o *Results) GetObjectSize100kOk() (*int64, bool) { if o == nil || o.ObjectSize100k == nil { return nil, false } @@ -4319,15 +4319,15 @@ func (o *Results) HasObjectSize100k() bool { return false } -// SetObjectSize100k gets a reference to the given int32 and assigns it to the ObjectSize100k field. -func (o *Results) SetObjectSize100k(v int32) { +// SetObjectSize100k gets a reference to the given int64 and assigns it to the ObjectSize100k field. +func (o *Results) SetObjectSize100k(v int64) { o.ObjectSize100k = &v } // GetObjectSize1m returns the ObjectSize1m field value if set, zero value otherwise. -func (o *Results) GetObjectSize1m() int32 { +func (o *Results) GetObjectSize1m() int64 { if o == nil || o.ObjectSize1m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1m @@ -4335,7 +4335,7 @@ func (o *Results) GetObjectSize1m() int32 { // GetObjectSize1mOk returns a tuple with the ObjectSize1m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetObjectSize1mOk() (*int32, bool) { +func (o *Results) GetObjectSize1mOk() (*int64, bool) { if o == nil || o.ObjectSize1m == nil { return nil, false } @@ -4351,15 +4351,15 @@ func (o *Results) HasObjectSize1m() bool { return false } -// SetObjectSize1m gets a reference to the given int32 and assigns it to the ObjectSize1m field. -func (o *Results) SetObjectSize1m(v int32) { +// SetObjectSize1m gets a reference to the given int64 and assigns it to the ObjectSize1m field. +func (o *Results) SetObjectSize1m(v int64) { o.ObjectSize1m = &v } // GetObjectSize10m returns the ObjectSize10m field value if set, zero value otherwise. -func (o *Results) GetObjectSize10m() int32 { +func (o *Results) GetObjectSize10m() int64 { if o == nil || o.ObjectSize10m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize10m @@ -4367,7 +4367,7 @@ func (o *Results) GetObjectSize10m() int32 { // GetObjectSize10mOk returns a tuple with the ObjectSize10m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetObjectSize10mOk() (*int32, bool) { +func (o *Results) GetObjectSize10mOk() (*int64, bool) { if o == nil || o.ObjectSize10m == nil { return nil, false } @@ -4383,15 +4383,15 @@ func (o *Results) HasObjectSize10m() bool { return false } -// SetObjectSize10m gets a reference to the given int32 and assigns it to the ObjectSize10m field. -func (o *Results) SetObjectSize10m(v int32) { +// SetObjectSize10m gets a reference to the given int64 and assigns it to the ObjectSize10m field. +func (o *Results) SetObjectSize10m(v int64) { o.ObjectSize10m = &v } // GetObjectSize100m returns the ObjectSize100m field value if set, zero value otherwise. -func (o *Results) GetObjectSize100m() int32 { +func (o *Results) GetObjectSize100m() int64 { if o == nil || o.ObjectSize100m == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize100m @@ -4399,7 +4399,7 @@ func (o *Results) GetObjectSize100m() int32 { // GetObjectSize100mOk returns a tuple with the ObjectSize100m field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetObjectSize100mOk() (*int32, bool) { +func (o *Results) GetObjectSize100mOk() (*int64, bool) { if o == nil || o.ObjectSize100m == nil { return nil, false } @@ -4415,15 +4415,15 @@ func (o *Results) HasObjectSize100m() bool { return false } -// SetObjectSize100m gets a reference to the given int32 and assigns it to the ObjectSize100m field. -func (o *Results) SetObjectSize100m(v int32) { +// SetObjectSize100m gets a reference to the given int64 and assigns it to the ObjectSize100m field. +func (o *Results) SetObjectSize100m(v int64) { o.ObjectSize100m = &v } // GetObjectSize1g returns the ObjectSize1g field value if set, zero value otherwise. -func (o *Results) GetObjectSize1g() int32 { +func (o *Results) GetObjectSize1g() int64 { if o == nil || o.ObjectSize1g == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectSize1g @@ -4431,7 +4431,7 @@ func (o *Results) GetObjectSize1g() int32 { // GetObjectSize1gOk returns a tuple with the ObjectSize1g field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetObjectSize1gOk() (*int32, bool) { +func (o *Results) GetObjectSize1gOk() (*int64, bool) { if o == nil || o.ObjectSize1g == nil { return nil, false } @@ -4447,8 +4447,8 @@ func (o *Results) HasObjectSize1g() bool { return false } -// SetObjectSize1g gets a reference to the given int32 and assigns it to the ObjectSize1g field. -func (o *Results) SetObjectSize1g(v int32) { +// SetObjectSize1g gets a reference to the given int64 and assigns it to the ObjectSize1g field. +func (o *Results) SetObjectSize1g(v int64) { o.ObjectSize1g = &v } @@ -4485,9 +4485,9 @@ func (o *Results) SetRecvSubTime(v float32) { } // GetRecvSubCount returns the RecvSubCount field value if set, zero value otherwise. -func (o *Results) GetRecvSubCount() int32 { +func (o *Results) GetRecvSubCount() int64 { if o == nil || o.RecvSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.RecvSubCount @@ -4495,7 +4495,7 @@ func (o *Results) GetRecvSubCount() int32 { // GetRecvSubCountOk returns a tuple with the RecvSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetRecvSubCountOk() (*int32, bool) { +func (o *Results) GetRecvSubCountOk() (*int64, bool) { if o == nil || o.RecvSubCount == nil { return nil, false } @@ -4511,8 +4511,8 @@ func (o *Results) HasRecvSubCount() bool { return false } -// SetRecvSubCount gets a reference to the given int32 and assigns it to the RecvSubCount field. -func (o *Results) SetRecvSubCount(v int32) { +// SetRecvSubCount gets a reference to the given int64 and assigns it to the RecvSubCount field. +func (o *Results) SetRecvSubCount(v int64) { o.RecvSubCount = &v } @@ -4549,9 +4549,9 @@ func (o *Results) SetHashSubTime(v float32) { } // GetHashSubCount returns the HashSubCount field value if set, zero value otherwise. -func (o *Results) GetHashSubCount() int32 { +func (o *Results) GetHashSubCount() int64 { if o == nil || o.HashSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.HashSubCount @@ -4559,7 +4559,7 @@ func (o *Results) GetHashSubCount() int32 { // GetHashSubCountOk returns a tuple with the HashSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetHashSubCountOk() (*int32, bool) { +func (o *Results) GetHashSubCountOk() (*int64, bool) { if o == nil || o.HashSubCount == nil { return nil, false } @@ -4575,8 +4575,8 @@ func (o *Results) HasHashSubCount() bool { return false } -// SetHashSubCount gets a reference to the given int32 and assigns it to the HashSubCount field. -func (o *Results) SetHashSubCount(v int32) { +// SetHashSubCount gets a reference to the given int64 and assigns it to the HashSubCount field. +func (o *Results) SetHashSubCount(v int64) { o.HashSubCount = &v } @@ -4613,9 +4613,9 @@ func (o *Results) SetMissSubTime(v float32) { } // GetMissSubCount returns the MissSubCount field value if set, zero value otherwise. -func (o *Results) GetMissSubCount() int32 { +func (o *Results) GetMissSubCount() int64 { if o == nil || o.MissSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.MissSubCount @@ -4623,7 +4623,7 @@ func (o *Results) GetMissSubCount() int32 { // GetMissSubCountOk returns a tuple with the MissSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetMissSubCountOk() (*int32, bool) { +func (o *Results) GetMissSubCountOk() (*int64, bool) { if o == nil || o.MissSubCount == nil { return nil, false } @@ -4639,8 +4639,8 @@ func (o *Results) HasMissSubCount() bool { return false } -// SetMissSubCount gets a reference to the given int32 and assigns it to the MissSubCount field. -func (o *Results) SetMissSubCount(v int32) { +// SetMissSubCount gets a reference to the given int64 and assigns it to the MissSubCount field. +func (o *Results) SetMissSubCount(v int64) { o.MissSubCount = &v } @@ -4677,9 +4677,9 @@ func (o *Results) SetFetchSubTime(v float32) { } // GetFetchSubCount returns the FetchSubCount field value if set, zero value otherwise. -func (o *Results) GetFetchSubCount() int32 { +func (o *Results) GetFetchSubCount() int64 { if o == nil || o.FetchSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.FetchSubCount @@ -4687,7 +4687,7 @@ func (o *Results) GetFetchSubCount() int32 { // GetFetchSubCountOk returns a tuple with the FetchSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFetchSubCountOk() (*int32, bool) { +func (o *Results) GetFetchSubCountOk() (*int64, bool) { if o == nil || o.FetchSubCount == nil { return nil, false } @@ -4703,8 +4703,8 @@ func (o *Results) HasFetchSubCount() bool { return false } -// SetFetchSubCount gets a reference to the given int32 and assigns it to the FetchSubCount field. -func (o *Results) SetFetchSubCount(v int32) { +// SetFetchSubCount gets a reference to the given int64 and assigns it to the FetchSubCount field. +func (o *Results) SetFetchSubCount(v int64) { o.FetchSubCount = &v } @@ -4741,9 +4741,9 @@ func (o *Results) SetPassSubTime(v float32) { } // GetPassSubCount returns the PassSubCount field value if set, zero value otherwise. -func (o *Results) GetPassSubCount() int32 { +func (o *Results) GetPassSubCount() int64 { if o == nil || o.PassSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PassSubCount @@ -4751,7 +4751,7 @@ func (o *Results) GetPassSubCount() int32 { // GetPassSubCountOk returns a tuple with the PassSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetPassSubCountOk() (*int32, bool) { +func (o *Results) GetPassSubCountOk() (*int64, bool) { if o == nil || o.PassSubCount == nil { return nil, false } @@ -4767,8 +4767,8 @@ func (o *Results) HasPassSubCount() bool { return false } -// SetPassSubCount gets a reference to the given int32 and assigns it to the PassSubCount field. -func (o *Results) SetPassSubCount(v int32) { +// SetPassSubCount gets a reference to the given int64 and assigns it to the PassSubCount field. +func (o *Results) SetPassSubCount(v int64) { o.PassSubCount = &v } @@ -4805,9 +4805,9 @@ func (o *Results) SetPipeSubTime(v float32) { } // GetPipeSubCount returns the PipeSubCount field value if set, zero value otherwise. -func (o *Results) GetPipeSubCount() int32 { +func (o *Results) GetPipeSubCount() int64 { if o == nil || o.PipeSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PipeSubCount @@ -4815,7 +4815,7 @@ func (o *Results) GetPipeSubCount() int32 { // GetPipeSubCountOk returns a tuple with the PipeSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetPipeSubCountOk() (*int32, bool) { +func (o *Results) GetPipeSubCountOk() (*int64, bool) { if o == nil || o.PipeSubCount == nil { return nil, false } @@ -4831,8 +4831,8 @@ func (o *Results) HasPipeSubCount() bool { return false } -// SetPipeSubCount gets a reference to the given int32 and assigns it to the PipeSubCount field. -func (o *Results) SetPipeSubCount(v int32) { +// SetPipeSubCount gets a reference to the given int64 and assigns it to the PipeSubCount field. +func (o *Results) SetPipeSubCount(v int64) { o.PipeSubCount = &v } @@ -4869,9 +4869,9 @@ func (o *Results) SetDeliverSubTime(v float32) { } // GetDeliverSubCount returns the DeliverSubCount field value if set, zero value otherwise. -func (o *Results) GetDeliverSubCount() int32 { +func (o *Results) GetDeliverSubCount() int64 { if o == nil || o.DeliverSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.DeliverSubCount @@ -4879,7 +4879,7 @@ func (o *Results) GetDeliverSubCount() int32 { // GetDeliverSubCountOk returns a tuple with the DeliverSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDeliverSubCountOk() (*int32, bool) { +func (o *Results) GetDeliverSubCountOk() (*int64, bool) { if o == nil || o.DeliverSubCount == nil { return nil, false } @@ -4895,8 +4895,8 @@ func (o *Results) HasDeliverSubCount() bool { return false } -// SetDeliverSubCount gets a reference to the given int32 and assigns it to the DeliverSubCount field. -func (o *Results) SetDeliverSubCount(v int32) { +// SetDeliverSubCount gets a reference to the given int64 and assigns it to the DeliverSubCount field. +func (o *Results) SetDeliverSubCount(v int64) { o.DeliverSubCount = &v } @@ -4933,9 +4933,9 @@ func (o *Results) SetErrorSubTime(v float32) { } // GetErrorSubCount returns the ErrorSubCount field value if set, zero value otherwise. -func (o *Results) GetErrorSubCount() int32 { +func (o *Results) GetErrorSubCount() int64 { if o == nil || o.ErrorSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.ErrorSubCount @@ -4943,7 +4943,7 @@ func (o *Results) GetErrorSubCount() int32 { // GetErrorSubCountOk returns a tuple with the ErrorSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetErrorSubCountOk() (*int32, bool) { +func (o *Results) GetErrorSubCountOk() (*int64, bool) { if o == nil || o.ErrorSubCount == nil { return nil, false } @@ -4959,8 +4959,8 @@ func (o *Results) HasErrorSubCount() bool { return false } -// SetErrorSubCount gets a reference to the given int32 and assigns it to the ErrorSubCount field. -func (o *Results) SetErrorSubCount(v int32) { +// SetErrorSubCount gets a reference to the given int64 and assigns it to the ErrorSubCount field. +func (o *Results) SetErrorSubCount(v int64) { o.ErrorSubCount = &v } @@ -4997,9 +4997,9 @@ func (o *Results) SetHitSubTime(v float32) { } // GetHitSubCount returns the HitSubCount field value if set, zero value otherwise. -func (o *Results) GetHitSubCount() int32 { +func (o *Results) GetHitSubCount() int64 { if o == nil || o.HitSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.HitSubCount @@ -5007,7 +5007,7 @@ func (o *Results) GetHitSubCount() int32 { // GetHitSubCountOk returns a tuple with the HitSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetHitSubCountOk() (*int32, bool) { +func (o *Results) GetHitSubCountOk() (*int64, bool) { if o == nil || o.HitSubCount == nil { return nil, false } @@ -5023,8 +5023,8 @@ func (o *Results) HasHitSubCount() bool { return false } -// SetHitSubCount gets a reference to the given int32 and assigns it to the HitSubCount field. -func (o *Results) SetHitSubCount(v int32) { +// SetHitSubCount gets a reference to the given int64 and assigns it to the HitSubCount field. +func (o *Results) SetHitSubCount(v int64) { o.HitSubCount = &v } @@ -5061,9 +5061,9 @@ func (o *Results) SetPrehashSubTime(v float32) { } // GetPrehashSubCount returns the PrehashSubCount field value if set, zero value otherwise. -func (o *Results) GetPrehashSubCount() int32 { +func (o *Results) GetPrehashSubCount() int64 { if o == nil || o.PrehashSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PrehashSubCount @@ -5071,7 +5071,7 @@ func (o *Results) GetPrehashSubCount() int32 { // GetPrehashSubCountOk returns a tuple with the PrehashSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetPrehashSubCountOk() (*int32, bool) { +func (o *Results) GetPrehashSubCountOk() (*int64, bool) { if o == nil || o.PrehashSubCount == nil { return nil, false } @@ -5087,8 +5087,8 @@ func (o *Results) HasPrehashSubCount() bool { return false } -// SetPrehashSubCount gets a reference to the given int32 and assigns it to the PrehashSubCount field. -func (o *Results) SetPrehashSubCount(v int32) { +// SetPrehashSubCount gets a reference to the given int64 and assigns it to the PrehashSubCount field. +func (o *Results) SetPrehashSubCount(v int64) { o.PrehashSubCount = &v } @@ -5125,9 +5125,9 @@ func (o *Results) SetPredeliverSubTime(v float32) { } // GetPredeliverSubCount returns the PredeliverSubCount field value if set, zero value otherwise. -func (o *Results) GetPredeliverSubCount() int32 { +func (o *Results) GetPredeliverSubCount() int64 { if o == nil || o.PredeliverSubCount == nil { - var ret int32 + var ret int64 return ret } return *o.PredeliverSubCount @@ -5135,7 +5135,7 @@ func (o *Results) GetPredeliverSubCount() int32 { // GetPredeliverSubCountOk returns a tuple with the PredeliverSubCount field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetPredeliverSubCountOk() (*int32, bool) { +func (o *Results) GetPredeliverSubCountOk() (*int64, bool) { if o == nil || o.PredeliverSubCount == nil { return nil, false } @@ -5151,15 +5151,15 @@ func (o *Results) HasPredeliverSubCount() bool { return false } -// SetPredeliverSubCount gets a reference to the given int32 and assigns it to the PredeliverSubCount field. -func (o *Results) SetPredeliverSubCount(v int32) { +// SetPredeliverSubCount gets a reference to the given int64 and assigns it to the PredeliverSubCount field. +func (o *Results) SetPredeliverSubCount(v int64) { o.PredeliverSubCount = &v } // GetTLSHandshakeSentBytes returns the TLSHandshakeSentBytes field value if set, zero value otherwise. -func (o *Results) GetTLSHandshakeSentBytes() int32 { +func (o *Results) GetTLSHandshakeSentBytes() int64 { if o == nil || o.TLSHandshakeSentBytes == nil { - var ret int32 + var ret int64 return ret } return *o.TLSHandshakeSentBytes @@ -5167,7 +5167,7 @@ func (o *Results) GetTLSHandshakeSentBytes() int32 { // GetTLSHandshakeSentBytesOk returns a tuple with the TLSHandshakeSentBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetTLSHandshakeSentBytesOk() (*int32, bool) { +func (o *Results) GetTLSHandshakeSentBytesOk() (*int64, bool) { if o == nil || o.TLSHandshakeSentBytes == nil { return nil, false } @@ -5183,15 +5183,15 @@ func (o *Results) HasTLSHandshakeSentBytes() bool { return false } -// SetTLSHandshakeSentBytes gets a reference to the given int32 and assigns it to the TLSHandshakeSentBytes field. -func (o *Results) SetTLSHandshakeSentBytes(v int32) { +// SetTLSHandshakeSentBytes gets a reference to the given int64 and assigns it to the TLSHandshakeSentBytes field. +func (o *Results) SetTLSHandshakeSentBytes(v int64) { o.TLSHandshakeSentBytes = &v } // GetHitRespBodyBytes returns the HitRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetHitRespBodyBytes() int32 { +func (o *Results) GetHitRespBodyBytes() int64 { if o == nil || o.HitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.HitRespBodyBytes @@ -5199,7 +5199,7 @@ func (o *Results) GetHitRespBodyBytes() int32 { // GetHitRespBodyBytesOk returns a tuple with the HitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetHitRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.HitRespBodyBytes == nil { return nil, false } @@ -5215,15 +5215,15 @@ func (o *Results) HasHitRespBodyBytes() bool { return false } -// SetHitRespBodyBytes gets a reference to the given int32 and assigns it to the HitRespBodyBytes field. -func (o *Results) SetHitRespBodyBytes(v int32) { +// SetHitRespBodyBytes gets a reference to the given int64 and assigns it to the HitRespBodyBytes field. +func (o *Results) SetHitRespBodyBytes(v int64) { o.HitRespBodyBytes = &v } // GetMissRespBodyBytes returns the MissRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetMissRespBodyBytes() int32 { +func (o *Results) GetMissRespBodyBytes() int64 { if o == nil || o.MissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.MissRespBodyBytes @@ -5231,7 +5231,7 @@ func (o *Results) GetMissRespBodyBytes() int32 { // GetMissRespBodyBytesOk returns a tuple with the MissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetMissRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.MissRespBodyBytes == nil { return nil, false } @@ -5247,15 +5247,15 @@ func (o *Results) HasMissRespBodyBytes() bool { return false } -// SetMissRespBodyBytes gets a reference to the given int32 and assigns it to the MissRespBodyBytes field. -func (o *Results) SetMissRespBodyBytes(v int32) { +// SetMissRespBodyBytes gets a reference to the given int64 and assigns it to the MissRespBodyBytes field. +func (o *Results) SetMissRespBodyBytes(v int64) { o.MissRespBodyBytes = &v } // GetPassRespBodyBytes returns the PassRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetPassRespBodyBytes() int32 { +func (o *Results) GetPassRespBodyBytes() int64 { if o == nil || o.PassRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.PassRespBodyBytes @@ -5263,7 +5263,7 @@ func (o *Results) GetPassRespBodyBytes() int32 { // GetPassRespBodyBytesOk returns a tuple with the PassRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetPassRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetPassRespBodyBytesOk() (*int64, bool) { if o == nil || o.PassRespBodyBytes == nil { return nil, false } @@ -5279,15 +5279,15 @@ func (o *Results) HasPassRespBodyBytes() bool { return false } -// SetPassRespBodyBytes gets a reference to the given int32 and assigns it to the PassRespBodyBytes field. -func (o *Results) SetPassRespBodyBytes(v int32) { +// SetPassRespBodyBytes gets a reference to the given int64 and assigns it to the PassRespBodyBytes field. +func (o *Results) SetPassRespBodyBytes(v int64) { o.PassRespBodyBytes = &v } // GetSegblockOriginFetches returns the SegblockOriginFetches field value if set, zero value otherwise. -func (o *Results) GetSegblockOriginFetches() int32 { +func (o *Results) GetSegblockOriginFetches() int64 { if o == nil || o.SegblockOriginFetches == nil { - var ret int32 + var ret int64 return ret } return *o.SegblockOriginFetches @@ -5295,7 +5295,7 @@ func (o *Results) GetSegblockOriginFetches() int32 { // GetSegblockOriginFetchesOk returns a tuple with the SegblockOriginFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetSegblockOriginFetchesOk() (*int32, bool) { +func (o *Results) GetSegblockOriginFetchesOk() (*int64, bool) { if o == nil || o.SegblockOriginFetches == nil { return nil, false } @@ -5311,15 +5311,15 @@ func (o *Results) HasSegblockOriginFetches() bool { return false } -// SetSegblockOriginFetches gets a reference to the given int32 and assigns it to the SegblockOriginFetches field. -func (o *Results) SetSegblockOriginFetches(v int32) { +// SetSegblockOriginFetches gets a reference to the given int64 and assigns it to the SegblockOriginFetches field. +func (o *Results) SetSegblockOriginFetches(v int64) { o.SegblockOriginFetches = &v } // GetSegblockShieldFetches returns the SegblockShieldFetches field value if set, zero value otherwise. -func (o *Results) GetSegblockShieldFetches() int32 { +func (o *Results) GetSegblockShieldFetches() int64 { if o == nil || o.SegblockShieldFetches == nil { - var ret int32 + var ret int64 return ret } return *o.SegblockShieldFetches @@ -5327,7 +5327,7 @@ func (o *Results) GetSegblockShieldFetches() int32 { // GetSegblockShieldFetchesOk returns a tuple with the SegblockShieldFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetSegblockShieldFetchesOk() (*int32, bool) { +func (o *Results) GetSegblockShieldFetchesOk() (*int64, bool) { if o == nil || o.SegblockShieldFetches == nil { return nil, false } @@ -5343,15 +5343,15 @@ func (o *Results) HasSegblockShieldFetches() bool { return false } -// SetSegblockShieldFetches gets a reference to the given int32 and assigns it to the SegblockShieldFetches field. -func (o *Results) SetSegblockShieldFetches(v int32) { +// SetSegblockShieldFetches gets a reference to the given int64 and assigns it to the SegblockShieldFetches field. +func (o *Results) SetSegblockShieldFetches(v int64) { o.SegblockShieldFetches = &v } // GetComputeRequests returns the ComputeRequests field value if set, zero value otherwise. -func (o *Results) GetComputeRequests() int32 { +func (o *Results) GetComputeRequests() int64 { if o == nil || o.ComputeRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRequests @@ -5359,7 +5359,7 @@ func (o *Results) GetComputeRequests() int32 { // GetComputeRequestsOk returns a tuple with the ComputeRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRequestsOk() (*int32, bool) { +func (o *Results) GetComputeRequestsOk() (*int64, bool) { if o == nil || o.ComputeRequests == nil { return nil, false } @@ -5375,8 +5375,8 @@ func (o *Results) HasComputeRequests() bool { return false } -// SetComputeRequests gets a reference to the given int32 and assigns it to the ComputeRequests field. -func (o *Results) SetComputeRequests(v int32) { +// SetComputeRequests gets a reference to the given int64 and assigns it to the ComputeRequests field. +func (o *Results) SetComputeRequests(v int64) { o.ComputeRequests = &v } @@ -5445,9 +5445,9 @@ func (o *Results) SetComputeRequestTimeBilledMs(v float32) { } // GetComputeRAMUsed returns the ComputeRAMUsed field value if set, zero value otherwise. -func (o *Results) GetComputeRAMUsed() int32 { +func (o *Results) GetComputeRAMUsed() int64 { if o == nil || o.ComputeRAMUsed == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRAMUsed @@ -5455,7 +5455,7 @@ func (o *Results) GetComputeRAMUsed() int32 { // GetComputeRAMUsedOk returns a tuple with the ComputeRAMUsed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRAMUsedOk() (*int32, bool) { +func (o *Results) GetComputeRAMUsedOk() (*int64, bool) { if o == nil || o.ComputeRAMUsed == nil { return nil, false } @@ -5471,8 +5471,8 @@ func (o *Results) HasComputeRAMUsed() bool { return false } -// SetComputeRAMUsed gets a reference to the given int32 and assigns it to the ComputeRAMUsed field. -func (o *Results) SetComputeRAMUsed(v int32) { +// SetComputeRAMUsed gets a reference to the given int64 and assigns it to the ComputeRAMUsed field. +func (o *Results) SetComputeRAMUsed(v int64) { o.ComputeRAMUsed = &v } @@ -5509,9 +5509,9 @@ func (o *Results) SetComputeExecutionTimeMs(v float32) { } // GetComputeReqHeaderBytes returns the ComputeReqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetComputeReqHeaderBytes() int32 { +func (o *Results) GetComputeReqHeaderBytes() int64 { if o == nil || o.ComputeReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeReqHeaderBytes @@ -5519,7 +5519,7 @@ func (o *Results) GetComputeReqHeaderBytes() int32 { // GetComputeReqHeaderBytesOk returns a tuple with the ComputeReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeReqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetComputeReqHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeReqHeaderBytes == nil { return nil, false } @@ -5535,15 +5535,15 @@ func (o *Results) HasComputeReqHeaderBytes() bool { return false } -// SetComputeReqHeaderBytes gets a reference to the given int32 and assigns it to the ComputeReqHeaderBytes field. -func (o *Results) SetComputeReqHeaderBytes(v int32) { +// SetComputeReqHeaderBytes gets a reference to the given int64 and assigns it to the ComputeReqHeaderBytes field. +func (o *Results) SetComputeReqHeaderBytes(v int64) { o.ComputeReqHeaderBytes = &v } // GetComputeReqBodyBytes returns the ComputeReqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetComputeReqBodyBytes() int32 { +func (o *Results) GetComputeReqBodyBytes() int64 { if o == nil || o.ComputeReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeReqBodyBytes @@ -5551,7 +5551,7 @@ func (o *Results) GetComputeReqBodyBytes() int32 { // GetComputeReqBodyBytesOk returns a tuple with the ComputeReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeReqBodyBytesOk() (*int32, bool) { +func (o *Results) GetComputeReqBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeReqBodyBytes == nil { return nil, false } @@ -5567,15 +5567,15 @@ func (o *Results) HasComputeReqBodyBytes() bool { return false } -// SetComputeReqBodyBytes gets a reference to the given int32 and assigns it to the ComputeReqBodyBytes field. -func (o *Results) SetComputeReqBodyBytes(v int32) { +// SetComputeReqBodyBytes gets a reference to the given int64 and assigns it to the ComputeReqBodyBytes field. +func (o *Results) SetComputeReqBodyBytes(v int64) { o.ComputeReqBodyBytes = &v } // GetComputeRespHeaderBytes returns the ComputeRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetComputeRespHeaderBytes() int32 { +func (o *Results) GetComputeRespHeaderBytes() int64 { if o == nil || o.ComputeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespHeaderBytes @@ -5583,7 +5583,7 @@ func (o *Results) GetComputeRespHeaderBytes() int32 { // GetComputeRespHeaderBytesOk returns a tuple with the ComputeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetComputeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeRespHeaderBytes == nil { return nil, false } @@ -5599,15 +5599,15 @@ func (o *Results) HasComputeRespHeaderBytes() bool { return false } -// SetComputeRespHeaderBytes gets a reference to the given int32 and assigns it to the ComputeRespHeaderBytes field. -func (o *Results) SetComputeRespHeaderBytes(v int32) { +// SetComputeRespHeaderBytes gets a reference to the given int64 and assigns it to the ComputeRespHeaderBytes field. +func (o *Results) SetComputeRespHeaderBytes(v int64) { o.ComputeRespHeaderBytes = &v } // GetComputeRespBodyBytes returns the ComputeRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetComputeRespBodyBytes() int32 { +func (o *Results) GetComputeRespBodyBytes() int64 { if o == nil || o.ComputeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespBodyBytes @@ -5615,7 +5615,7 @@ func (o *Results) GetComputeRespBodyBytes() int32 { // GetComputeRespBodyBytesOk returns a tuple with the ComputeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetComputeRespBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeRespBodyBytes == nil { return nil, false } @@ -5631,15 +5631,15 @@ func (o *Results) HasComputeRespBodyBytes() bool { return false } -// SetComputeRespBodyBytes gets a reference to the given int32 and assigns it to the ComputeRespBodyBytes field. -func (o *Results) SetComputeRespBodyBytes(v int32) { +// SetComputeRespBodyBytes gets a reference to the given int64 and assigns it to the ComputeRespBodyBytes field. +func (o *Results) SetComputeRespBodyBytes(v int64) { o.ComputeRespBodyBytes = &v } // GetComputeRespStatus1xx returns the ComputeRespStatus1xx field value if set, zero value otherwise. -func (o *Results) GetComputeRespStatus1xx() int32 { +func (o *Results) GetComputeRespStatus1xx() int64 { if o == nil || o.ComputeRespStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus1xx @@ -5647,7 +5647,7 @@ func (o *Results) GetComputeRespStatus1xx() int32 { // GetComputeRespStatus1xxOk returns a tuple with the ComputeRespStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRespStatus1xxOk() (*int32, bool) { +func (o *Results) GetComputeRespStatus1xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus1xx == nil { return nil, false } @@ -5663,15 +5663,15 @@ func (o *Results) HasComputeRespStatus1xx() bool { return false } -// SetComputeRespStatus1xx gets a reference to the given int32 and assigns it to the ComputeRespStatus1xx field. -func (o *Results) SetComputeRespStatus1xx(v int32) { +// SetComputeRespStatus1xx gets a reference to the given int64 and assigns it to the ComputeRespStatus1xx field. +func (o *Results) SetComputeRespStatus1xx(v int64) { o.ComputeRespStatus1xx = &v } // GetComputeRespStatus2xx returns the ComputeRespStatus2xx field value if set, zero value otherwise. -func (o *Results) GetComputeRespStatus2xx() int32 { +func (o *Results) GetComputeRespStatus2xx() int64 { if o == nil || o.ComputeRespStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus2xx @@ -5679,7 +5679,7 @@ func (o *Results) GetComputeRespStatus2xx() int32 { // GetComputeRespStatus2xxOk returns a tuple with the ComputeRespStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRespStatus2xxOk() (*int32, bool) { +func (o *Results) GetComputeRespStatus2xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus2xx == nil { return nil, false } @@ -5695,15 +5695,15 @@ func (o *Results) HasComputeRespStatus2xx() bool { return false } -// SetComputeRespStatus2xx gets a reference to the given int32 and assigns it to the ComputeRespStatus2xx field. -func (o *Results) SetComputeRespStatus2xx(v int32) { +// SetComputeRespStatus2xx gets a reference to the given int64 and assigns it to the ComputeRespStatus2xx field. +func (o *Results) SetComputeRespStatus2xx(v int64) { o.ComputeRespStatus2xx = &v } // GetComputeRespStatus3xx returns the ComputeRespStatus3xx field value if set, zero value otherwise. -func (o *Results) GetComputeRespStatus3xx() int32 { +func (o *Results) GetComputeRespStatus3xx() int64 { if o == nil || o.ComputeRespStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus3xx @@ -5711,7 +5711,7 @@ func (o *Results) GetComputeRespStatus3xx() int32 { // GetComputeRespStatus3xxOk returns a tuple with the ComputeRespStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRespStatus3xxOk() (*int32, bool) { +func (o *Results) GetComputeRespStatus3xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus3xx == nil { return nil, false } @@ -5727,15 +5727,15 @@ func (o *Results) HasComputeRespStatus3xx() bool { return false } -// SetComputeRespStatus3xx gets a reference to the given int32 and assigns it to the ComputeRespStatus3xx field. -func (o *Results) SetComputeRespStatus3xx(v int32) { +// SetComputeRespStatus3xx gets a reference to the given int64 and assigns it to the ComputeRespStatus3xx field. +func (o *Results) SetComputeRespStatus3xx(v int64) { o.ComputeRespStatus3xx = &v } // GetComputeRespStatus4xx returns the ComputeRespStatus4xx field value if set, zero value otherwise. -func (o *Results) GetComputeRespStatus4xx() int32 { +func (o *Results) GetComputeRespStatus4xx() int64 { if o == nil || o.ComputeRespStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus4xx @@ -5743,7 +5743,7 @@ func (o *Results) GetComputeRespStatus4xx() int32 { // GetComputeRespStatus4xxOk returns a tuple with the ComputeRespStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRespStatus4xxOk() (*int32, bool) { +func (o *Results) GetComputeRespStatus4xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus4xx == nil { return nil, false } @@ -5759,15 +5759,15 @@ func (o *Results) HasComputeRespStatus4xx() bool { return false } -// SetComputeRespStatus4xx gets a reference to the given int32 and assigns it to the ComputeRespStatus4xx field. -func (o *Results) SetComputeRespStatus4xx(v int32) { +// SetComputeRespStatus4xx gets a reference to the given int64 and assigns it to the ComputeRespStatus4xx field. +func (o *Results) SetComputeRespStatus4xx(v int64) { o.ComputeRespStatus4xx = &v } // GetComputeRespStatus5xx returns the ComputeRespStatus5xx field value if set, zero value otherwise. -func (o *Results) GetComputeRespStatus5xx() int32 { +func (o *Results) GetComputeRespStatus5xx() int64 { if o == nil || o.ComputeRespStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRespStatus5xx @@ -5775,7 +5775,7 @@ func (o *Results) GetComputeRespStatus5xx() int32 { // GetComputeRespStatus5xxOk returns a tuple with the ComputeRespStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRespStatus5xxOk() (*int32, bool) { +func (o *Results) GetComputeRespStatus5xxOk() (*int64, bool) { if o == nil || o.ComputeRespStatus5xx == nil { return nil, false } @@ -5791,15 +5791,15 @@ func (o *Results) HasComputeRespStatus5xx() bool { return false } -// SetComputeRespStatus5xx gets a reference to the given int32 and assigns it to the ComputeRespStatus5xx field. -func (o *Results) SetComputeRespStatus5xx(v int32) { +// SetComputeRespStatus5xx gets a reference to the given int64 and assigns it to the ComputeRespStatus5xx field. +func (o *Results) SetComputeRespStatus5xx(v int64) { o.ComputeRespStatus5xx = &v } // GetComputeBereqHeaderBytes returns the ComputeBereqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetComputeBereqHeaderBytes() int32 { +func (o *Results) GetComputeBereqHeaderBytes() int64 { if o == nil || o.ComputeBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqHeaderBytes @@ -5807,7 +5807,7 @@ func (o *Results) GetComputeBereqHeaderBytes() int32 { // GetComputeBereqHeaderBytesOk returns a tuple with the ComputeBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeBereqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetComputeBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeBereqHeaderBytes == nil { return nil, false } @@ -5823,15 +5823,15 @@ func (o *Results) HasComputeBereqHeaderBytes() bool { return false } -// SetComputeBereqHeaderBytes gets a reference to the given int32 and assigns it to the ComputeBereqHeaderBytes field. -func (o *Results) SetComputeBereqHeaderBytes(v int32) { +// SetComputeBereqHeaderBytes gets a reference to the given int64 and assigns it to the ComputeBereqHeaderBytes field. +func (o *Results) SetComputeBereqHeaderBytes(v int64) { o.ComputeBereqHeaderBytes = &v } // GetComputeBereqBodyBytes returns the ComputeBereqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetComputeBereqBodyBytes() int32 { +func (o *Results) GetComputeBereqBodyBytes() int64 { if o == nil || o.ComputeBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqBodyBytes @@ -5839,7 +5839,7 @@ func (o *Results) GetComputeBereqBodyBytes() int32 { // GetComputeBereqBodyBytesOk returns a tuple with the ComputeBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeBereqBodyBytesOk() (*int32, bool) { +func (o *Results) GetComputeBereqBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeBereqBodyBytes == nil { return nil, false } @@ -5855,15 +5855,15 @@ func (o *Results) HasComputeBereqBodyBytes() bool { return false } -// SetComputeBereqBodyBytes gets a reference to the given int32 and assigns it to the ComputeBereqBodyBytes field. -func (o *Results) SetComputeBereqBodyBytes(v int32) { +// SetComputeBereqBodyBytes gets a reference to the given int64 and assigns it to the ComputeBereqBodyBytes field. +func (o *Results) SetComputeBereqBodyBytes(v int64) { o.ComputeBereqBodyBytes = &v } // GetComputeBerespHeaderBytes returns the ComputeBerespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetComputeBerespHeaderBytes() int32 { +func (o *Results) GetComputeBerespHeaderBytes() int64 { if o == nil || o.ComputeBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBerespHeaderBytes @@ -5871,7 +5871,7 @@ func (o *Results) GetComputeBerespHeaderBytes() int32 { // GetComputeBerespHeaderBytesOk returns a tuple with the ComputeBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeBerespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetComputeBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.ComputeBerespHeaderBytes == nil { return nil, false } @@ -5887,15 +5887,15 @@ func (o *Results) HasComputeBerespHeaderBytes() bool { return false } -// SetComputeBerespHeaderBytes gets a reference to the given int32 and assigns it to the ComputeBerespHeaderBytes field. -func (o *Results) SetComputeBerespHeaderBytes(v int32) { +// SetComputeBerespHeaderBytes gets a reference to the given int64 and assigns it to the ComputeBerespHeaderBytes field. +func (o *Results) SetComputeBerespHeaderBytes(v int64) { o.ComputeBerespHeaderBytes = &v } // GetComputeBerespBodyBytes returns the ComputeBerespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetComputeBerespBodyBytes() int32 { +func (o *Results) GetComputeBerespBodyBytes() int64 { if o == nil || o.ComputeBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBerespBodyBytes @@ -5903,7 +5903,7 @@ func (o *Results) GetComputeBerespBodyBytes() int32 { // GetComputeBerespBodyBytesOk returns a tuple with the ComputeBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeBerespBodyBytesOk() (*int32, bool) { +func (o *Results) GetComputeBerespBodyBytesOk() (*int64, bool) { if o == nil || o.ComputeBerespBodyBytes == nil { return nil, false } @@ -5919,15 +5919,15 @@ func (o *Results) HasComputeBerespBodyBytes() bool { return false } -// SetComputeBerespBodyBytes gets a reference to the given int32 and assigns it to the ComputeBerespBodyBytes field. -func (o *Results) SetComputeBerespBodyBytes(v int32) { +// SetComputeBerespBodyBytes gets a reference to the given int64 and assigns it to the ComputeBerespBodyBytes field. +func (o *Results) SetComputeBerespBodyBytes(v int64) { o.ComputeBerespBodyBytes = &v } // GetComputeBereqs returns the ComputeBereqs field value if set, zero value otherwise. -func (o *Results) GetComputeBereqs() int32 { +func (o *Results) GetComputeBereqs() int64 { if o == nil || o.ComputeBereqs == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqs @@ -5935,7 +5935,7 @@ func (o *Results) GetComputeBereqs() int32 { // GetComputeBereqsOk returns a tuple with the ComputeBereqs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeBereqsOk() (*int32, bool) { +func (o *Results) GetComputeBereqsOk() (*int64, bool) { if o == nil || o.ComputeBereqs == nil { return nil, false } @@ -5951,15 +5951,15 @@ func (o *Results) HasComputeBereqs() bool { return false } -// SetComputeBereqs gets a reference to the given int32 and assigns it to the ComputeBereqs field. -func (o *Results) SetComputeBereqs(v int32) { +// SetComputeBereqs gets a reference to the given int64 and assigns it to the ComputeBereqs field. +func (o *Results) SetComputeBereqs(v int64) { o.ComputeBereqs = &v } // GetComputeBereqErrors returns the ComputeBereqErrors field value if set, zero value otherwise. -func (o *Results) GetComputeBereqErrors() int32 { +func (o *Results) GetComputeBereqErrors() int64 { if o == nil || o.ComputeBereqErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeBereqErrors @@ -5967,7 +5967,7 @@ func (o *Results) GetComputeBereqErrors() int32 { // GetComputeBereqErrorsOk returns a tuple with the ComputeBereqErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeBereqErrorsOk() (*int32, bool) { +func (o *Results) GetComputeBereqErrorsOk() (*int64, bool) { if o == nil || o.ComputeBereqErrors == nil { return nil, false } @@ -5983,15 +5983,15 @@ func (o *Results) HasComputeBereqErrors() bool { return false } -// SetComputeBereqErrors gets a reference to the given int32 and assigns it to the ComputeBereqErrors field. -func (o *Results) SetComputeBereqErrors(v int32) { +// SetComputeBereqErrors gets a reference to the given int64 and assigns it to the ComputeBereqErrors field. +func (o *Results) SetComputeBereqErrors(v int64) { o.ComputeBereqErrors = &v } // GetComputeResourceLimitExceeded returns the ComputeResourceLimitExceeded field value if set, zero value otherwise. -func (o *Results) GetComputeResourceLimitExceeded() int32 { +func (o *Results) GetComputeResourceLimitExceeded() int64 { if o == nil || o.ComputeResourceLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeResourceLimitExceeded @@ -5999,7 +5999,7 @@ func (o *Results) GetComputeResourceLimitExceeded() int32 { // GetComputeResourceLimitExceededOk returns a tuple with the ComputeResourceLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeResourceLimitExceededOk() (*int32, bool) { +func (o *Results) GetComputeResourceLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeResourceLimitExceeded == nil { return nil, false } @@ -6015,15 +6015,15 @@ func (o *Results) HasComputeResourceLimitExceeded() bool { return false } -// SetComputeResourceLimitExceeded gets a reference to the given int32 and assigns it to the ComputeResourceLimitExceeded field. -func (o *Results) SetComputeResourceLimitExceeded(v int32) { +// SetComputeResourceLimitExceeded gets a reference to the given int64 and assigns it to the ComputeResourceLimitExceeded field. +func (o *Results) SetComputeResourceLimitExceeded(v int64) { o.ComputeResourceLimitExceeded = &v } // GetComputeHeapLimitExceeded returns the ComputeHeapLimitExceeded field value if set, zero value otherwise. -func (o *Results) GetComputeHeapLimitExceeded() int32 { +func (o *Results) GetComputeHeapLimitExceeded() int64 { if o == nil || o.ComputeHeapLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeHeapLimitExceeded @@ -6031,7 +6031,7 @@ func (o *Results) GetComputeHeapLimitExceeded() int32 { // GetComputeHeapLimitExceededOk returns a tuple with the ComputeHeapLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeHeapLimitExceededOk() (*int32, bool) { +func (o *Results) GetComputeHeapLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeHeapLimitExceeded == nil { return nil, false } @@ -6047,15 +6047,15 @@ func (o *Results) HasComputeHeapLimitExceeded() bool { return false } -// SetComputeHeapLimitExceeded gets a reference to the given int32 and assigns it to the ComputeHeapLimitExceeded field. -func (o *Results) SetComputeHeapLimitExceeded(v int32) { +// SetComputeHeapLimitExceeded gets a reference to the given int64 and assigns it to the ComputeHeapLimitExceeded field. +func (o *Results) SetComputeHeapLimitExceeded(v int64) { o.ComputeHeapLimitExceeded = &v } // GetComputeStackLimitExceeded returns the ComputeStackLimitExceeded field value if set, zero value otherwise. -func (o *Results) GetComputeStackLimitExceeded() int32 { +func (o *Results) GetComputeStackLimitExceeded() int64 { if o == nil || o.ComputeStackLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeStackLimitExceeded @@ -6063,7 +6063,7 @@ func (o *Results) GetComputeStackLimitExceeded() int32 { // GetComputeStackLimitExceededOk returns a tuple with the ComputeStackLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeStackLimitExceededOk() (*int32, bool) { +func (o *Results) GetComputeStackLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeStackLimitExceeded == nil { return nil, false } @@ -6079,15 +6079,15 @@ func (o *Results) HasComputeStackLimitExceeded() bool { return false } -// SetComputeStackLimitExceeded gets a reference to the given int32 and assigns it to the ComputeStackLimitExceeded field. -func (o *Results) SetComputeStackLimitExceeded(v int32) { +// SetComputeStackLimitExceeded gets a reference to the given int64 and assigns it to the ComputeStackLimitExceeded field. +func (o *Results) SetComputeStackLimitExceeded(v int64) { o.ComputeStackLimitExceeded = &v } // GetComputeGlobalsLimitExceeded returns the ComputeGlobalsLimitExceeded field value if set, zero value otherwise. -func (o *Results) GetComputeGlobalsLimitExceeded() int32 { +func (o *Results) GetComputeGlobalsLimitExceeded() int64 { if o == nil || o.ComputeGlobalsLimitExceeded == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeGlobalsLimitExceeded @@ -6095,7 +6095,7 @@ func (o *Results) GetComputeGlobalsLimitExceeded() int32 { // GetComputeGlobalsLimitExceededOk returns a tuple with the ComputeGlobalsLimitExceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeGlobalsLimitExceededOk() (*int32, bool) { +func (o *Results) GetComputeGlobalsLimitExceededOk() (*int64, bool) { if o == nil || o.ComputeGlobalsLimitExceeded == nil { return nil, false } @@ -6111,15 +6111,15 @@ func (o *Results) HasComputeGlobalsLimitExceeded() bool { return false } -// SetComputeGlobalsLimitExceeded gets a reference to the given int32 and assigns it to the ComputeGlobalsLimitExceeded field. -func (o *Results) SetComputeGlobalsLimitExceeded(v int32) { +// SetComputeGlobalsLimitExceeded gets a reference to the given int64 and assigns it to the ComputeGlobalsLimitExceeded field. +func (o *Results) SetComputeGlobalsLimitExceeded(v int64) { o.ComputeGlobalsLimitExceeded = &v } // GetComputeGuestErrors returns the ComputeGuestErrors field value if set, zero value otherwise. -func (o *Results) GetComputeGuestErrors() int32 { +func (o *Results) GetComputeGuestErrors() int64 { if o == nil || o.ComputeGuestErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeGuestErrors @@ -6127,7 +6127,7 @@ func (o *Results) GetComputeGuestErrors() int32 { // GetComputeGuestErrorsOk returns a tuple with the ComputeGuestErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeGuestErrorsOk() (*int32, bool) { +func (o *Results) GetComputeGuestErrorsOk() (*int64, bool) { if o == nil || o.ComputeGuestErrors == nil { return nil, false } @@ -6143,15 +6143,15 @@ func (o *Results) HasComputeGuestErrors() bool { return false } -// SetComputeGuestErrors gets a reference to the given int32 and assigns it to the ComputeGuestErrors field. -func (o *Results) SetComputeGuestErrors(v int32) { +// SetComputeGuestErrors gets a reference to the given int64 and assigns it to the ComputeGuestErrors field. +func (o *Results) SetComputeGuestErrors(v int64) { o.ComputeGuestErrors = &v } // GetComputeRuntimeErrors returns the ComputeRuntimeErrors field value if set, zero value otherwise. -func (o *Results) GetComputeRuntimeErrors() int32 { +func (o *Results) GetComputeRuntimeErrors() int64 { if o == nil || o.ComputeRuntimeErrors == nil { - var ret int32 + var ret int64 return ret } return *o.ComputeRuntimeErrors @@ -6159,7 +6159,7 @@ func (o *Results) GetComputeRuntimeErrors() int32 { // GetComputeRuntimeErrorsOk returns a tuple with the ComputeRuntimeErrors field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetComputeRuntimeErrorsOk() (*int32, bool) { +func (o *Results) GetComputeRuntimeErrorsOk() (*int64, bool) { if o == nil || o.ComputeRuntimeErrors == nil { return nil, false } @@ -6175,15 +6175,15 @@ func (o *Results) HasComputeRuntimeErrors() bool { return false } -// SetComputeRuntimeErrors gets a reference to the given int32 and assigns it to the ComputeRuntimeErrors field. -func (o *Results) SetComputeRuntimeErrors(v int32) { +// SetComputeRuntimeErrors gets a reference to the given int64 and assigns it to the ComputeRuntimeErrors field. +func (o *Results) SetComputeRuntimeErrors(v int64) { o.ComputeRuntimeErrors = &v } // GetEdgeHitRespBodyBytes returns the EdgeHitRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetEdgeHitRespBodyBytes() int32 { +func (o *Results) GetEdgeHitRespBodyBytes() int64 { if o == nil || o.EdgeHitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRespBodyBytes @@ -6191,7 +6191,7 @@ func (o *Results) GetEdgeHitRespBodyBytes() int32 { // GetEdgeHitRespBodyBytesOk returns a tuple with the EdgeHitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeHitRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetEdgeHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeHitRespBodyBytes == nil { return nil, false } @@ -6207,15 +6207,15 @@ func (o *Results) HasEdgeHitRespBodyBytes() bool { return false } -// SetEdgeHitRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeHitRespBodyBytes field. -func (o *Results) SetEdgeHitRespBodyBytes(v int32) { +// SetEdgeHitRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeHitRespBodyBytes field. +func (o *Results) SetEdgeHitRespBodyBytes(v int64) { o.EdgeHitRespBodyBytes = &v } // GetEdgeHitRespHeaderBytes returns the EdgeHitRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetEdgeHitRespHeaderBytes() int32 { +func (o *Results) GetEdgeHitRespHeaderBytes() int64 { if o == nil || o.EdgeHitRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRespHeaderBytes @@ -6223,7 +6223,7 @@ func (o *Results) GetEdgeHitRespHeaderBytes() int32 { // GetEdgeHitRespHeaderBytesOk returns a tuple with the EdgeHitRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeHitRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetEdgeHitRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeHitRespHeaderBytes == nil { return nil, false } @@ -6239,15 +6239,15 @@ func (o *Results) HasEdgeHitRespHeaderBytes() bool { return false } -// SetEdgeHitRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeHitRespHeaderBytes field. -func (o *Results) SetEdgeHitRespHeaderBytes(v int32) { +// SetEdgeHitRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeHitRespHeaderBytes field. +func (o *Results) SetEdgeHitRespHeaderBytes(v int64) { o.EdgeHitRespHeaderBytes = &v } // GetEdgeMissRespBodyBytes returns the EdgeMissRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetEdgeMissRespBodyBytes() int32 { +func (o *Results) GetEdgeMissRespBodyBytes() int64 { if o == nil || o.EdgeMissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRespBodyBytes @@ -6255,7 +6255,7 @@ func (o *Results) GetEdgeMissRespBodyBytes() int32 { // GetEdgeMissRespBodyBytesOk returns a tuple with the EdgeMissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeMissRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetEdgeMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeMissRespBodyBytes == nil { return nil, false } @@ -6271,15 +6271,15 @@ func (o *Results) HasEdgeMissRespBodyBytes() bool { return false } -// SetEdgeMissRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeMissRespBodyBytes field. -func (o *Results) SetEdgeMissRespBodyBytes(v int32) { +// SetEdgeMissRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeMissRespBodyBytes field. +func (o *Results) SetEdgeMissRespBodyBytes(v int64) { o.EdgeMissRespBodyBytes = &v } // GetEdgeMissRespHeaderBytes returns the EdgeMissRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetEdgeMissRespHeaderBytes() int32 { +func (o *Results) GetEdgeMissRespHeaderBytes() int64 { if o == nil || o.EdgeMissRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRespHeaderBytes @@ -6287,7 +6287,7 @@ func (o *Results) GetEdgeMissRespHeaderBytes() int32 { // GetEdgeMissRespHeaderBytesOk returns a tuple with the EdgeMissRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetEdgeMissRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetEdgeMissRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeMissRespHeaderBytes == nil { return nil, false } @@ -6303,15 +6303,15 @@ func (o *Results) HasEdgeMissRespHeaderBytes() bool { return false } -// SetEdgeMissRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeMissRespHeaderBytes field. -func (o *Results) SetEdgeMissRespHeaderBytes(v int32) { +// SetEdgeMissRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeMissRespHeaderBytes field. +func (o *Results) SetEdgeMissRespHeaderBytes(v int64) { o.EdgeMissRespHeaderBytes = &v } // GetOriginCacheFetchRespBodyBytes returns the OriginCacheFetchRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetOriginCacheFetchRespBodyBytes() int32 { +func (o *Results) GetOriginCacheFetchRespBodyBytes() int64 { if o == nil || o.OriginCacheFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetchRespBodyBytes @@ -6319,7 +6319,7 @@ func (o *Results) GetOriginCacheFetchRespBodyBytes() int32 { // GetOriginCacheFetchRespBodyBytesOk returns a tuple with the OriginCacheFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginCacheFetchRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetOriginCacheFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.OriginCacheFetchRespBodyBytes == nil { return nil, false } @@ -6335,15 +6335,15 @@ func (o *Results) HasOriginCacheFetchRespBodyBytes() bool { return false } -// SetOriginCacheFetchRespBodyBytes gets a reference to the given int32 and assigns it to the OriginCacheFetchRespBodyBytes field. -func (o *Results) SetOriginCacheFetchRespBodyBytes(v int32) { +// SetOriginCacheFetchRespBodyBytes gets a reference to the given int64 and assigns it to the OriginCacheFetchRespBodyBytes field. +func (o *Results) SetOriginCacheFetchRespBodyBytes(v int64) { o.OriginCacheFetchRespBodyBytes = &v } // GetOriginCacheFetchRespHeaderBytes returns the OriginCacheFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetOriginCacheFetchRespHeaderBytes() int32 { +func (o *Results) GetOriginCacheFetchRespHeaderBytes() int64 { if o == nil || o.OriginCacheFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginCacheFetchRespHeaderBytes @@ -6351,7 +6351,7 @@ func (o *Results) GetOriginCacheFetchRespHeaderBytes() int32 { // GetOriginCacheFetchRespHeaderBytesOk returns a tuple with the OriginCacheFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetOriginCacheFetchRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetOriginCacheFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginCacheFetchRespHeaderBytes == nil { return nil, false } @@ -6367,15 +6367,15 @@ func (o *Results) HasOriginCacheFetchRespHeaderBytes() bool { return false } -// SetOriginCacheFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the OriginCacheFetchRespHeaderBytes field. -func (o *Results) SetOriginCacheFetchRespHeaderBytes(v int32) { +// SetOriginCacheFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the OriginCacheFetchRespHeaderBytes field. +func (o *Results) SetOriginCacheFetchRespHeaderBytes(v int64) { o.OriginCacheFetchRespHeaderBytes = &v } // GetShieldHitRequests returns the ShieldHitRequests field value if set, zero value otherwise. -func (o *Results) GetShieldHitRequests() int32 { +func (o *Results) GetShieldHitRequests() int64 { if o == nil || o.ShieldHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRequests @@ -6383,7 +6383,7 @@ func (o *Results) GetShieldHitRequests() int32 { // GetShieldHitRequestsOk returns a tuple with the ShieldHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldHitRequestsOk() (*int32, bool) { +func (o *Results) GetShieldHitRequestsOk() (*int64, bool) { if o == nil || o.ShieldHitRequests == nil { return nil, false } @@ -6399,15 +6399,15 @@ func (o *Results) HasShieldHitRequests() bool { return false } -// SetShieldHitRequests gets a reference to the given int32 and assigns it to the ShieldHitRequests field. -func (o *Results) SetShieldHitRequests(v int32) { +// SetShieldHitRequests gets a reference to the given int64 and assigns it to the ShieldHitRequests field. +func (o *Results) SetShieldHitRequests(v int64) { o.ShieldHitRequests = &v } // GetShieldMissRequests returns the ShieldMissRequests field value if set, zero value otherwise. -func (o *Results) GetShieldMissRequests() int32 { +func (o *Results) GetShieldMissRequests() int64 { if o == nil || o.ShieldMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRequests @@ -6415,7 +6415,7 @@ func (o *Results) GetShieldMissRequests() int32 { // GetShieldMissRequestsOk returns a tuple with the ShieldMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldMissRequestsOk() (*int32, bool) { +func (o *Results) GetShieldMissRequestsOk() (*int64, bool) { if o == nil || o.ShieldMissRequests == nil { return nil, false } @@ -6431,15 +6431,15 @@ func (o *Results) HasShieldMissRequests() bool { return false } -// SetShieldMissRequests gets a reference to the given int32 and assigns it to the ShieldMissRequests field. -func (o *Results) SetShieldMissRequests(v int32) { +// SetShieldMissRequests gets a reference to the given int64 and assigns it to the ShieldMissRequests field. +func (o *Results) SetShieldMissRequests(v int64) { o.ShieldMissRequests = &v } // GetShieldHitRespHeaderBytes returns the ShieldHitRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetShieldHitRespHeaderBytes() int32 { +func (o *Results) GetShieldHitRespHeaderBytes() int64 { if o == nil || o.ShieldHitRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRespHeaderBytes @@ -6447,7 +6447,7 @@ func (o *Results) GetShieldHitRespHeaderBytes() int32 { // GetShieldHitRespHeaderBytesOk returns a tuple with the ShieldHitRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldHitRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetShieldHitRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldHitRespHeaderBytes == nil { return nil, false } @@ -6463,15 +6463,15 @@ func (o *Results) HasShieldHitRespHeaderBytes() bool { return false } -// SetShieldHitRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldHitRespHeaderBytes field. -func (o *Results) SetShieldHitRespHeaderBytes(v int32) { +// SetShieldHitRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldHitRespHeaderBytes field. +func (o *Results) SetShieldHitRespHeaderBytes(v int64) { o.ShieldHitRespHeaderBytes = &v } // GetShieldHitRespBodyBytes returns the ShieldHitRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetShieldHitRespBodyBytes() int32 { +func (o *Results) GetShieldHitRespBodyBytes() int64 { if o == nil || o.ShieldHitRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldHitRespBodyBytes @@ -6479,7 +6479,7 @@ func (o *Results) GetShieldHitRespBodyBytes() int32 { // GetShieldHitRespBodyBytesOk returns a tuple with the ShieldHitRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldHitRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetShieldHitRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldHitRespBodyBytes == nil { return nil, false } @@ -6495,15 +6495,15 @@ func (o *Results) HasShieldHitRespBodyBytes() bool { return false } -// SetShieldHitRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldHitRespBodyBytes field. -func (o *Results) SetShieldHitRespBodyBytes(v int32) { +// SetShieldHitRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldHitRespBodyBytes field. +func (o *Results) SetShieldHitRespBodyBytes(v int64) { o.ShieldHitRespBodyBytes = &v } // GetShieldMissRespHeaderBytes returns the ShieldMissRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetShieldMissRespHeaderBytes() int32 { +func (o *Results) GetShieldMissRespHeaderBytes() int64 { if o == nil || o.ShieldMissRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRespHeaderBytes @@ -6511,7 +6511,7 @@ func (o *Results) GetShieldMissRespHeaderBytes() int32 { // GetShieldMissRespHeaderBytesOk returns a tuple with the ShieldMissRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldMissRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetShieldMissRespHeaderBytesOk() (*int64, bool) { if o == nil || o.ShieldMissRespHeaderBytes == nil { return nil, false } @@ -6527,15 +6527,15 @@ func (o *Results) HasShieldMissRespHeaderBytes() bool { return false } -// SetShieldMissRespHeaderBytes gets a reference to the given int32 and assigns it to the ShieldMissRespHeaderBytes field. -func (o *Results) SetShieldMissRespHeaderBytes(v int32) { +// SetShieldMissRespHeaderBytes gets a reference to the given int64 and assigns it to the ShieldMissRespHeaderBytes field. +func (o *Results) SetShieldMissRespHeaderBytes(v int64) { o.ShieldMissRespHeaderBytes = &v } // GetShieldMissRespBodyBytes returns the ShieldMissRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetShieldMissRespBodyBytes() int32 { +func (o *Results) GetShieldMissRespBodyBytes() int64 { if o == nil || o.ShieldMissRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.ShieldMissRespBodyBytes @@ -6543,7 +6543,7 @@ func (o *Results) GetShieldMissRespBodyBytes() int32 { // GetShieldMissRespBodyBytesOk returns a tuple with the ShieldMissRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetShieldMissRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetShieldMissRespBodyBytesOk() (*int64, bool) { if o == nil || o.ShieldMissRespBodyBytes == nil { return nil, false } @@ -6559,15 +6559,15 @@ func (o *Results) HasShieldMissRespBodyBytes() bool { return false } -// SetShieldMissRespBodyBytes gets a reference to the given int32 and assigns it to the ShieldMissRespBodyBytes field. -func (o *Results) SetShieldMissRespBodyBytes(v int32) { +// SetShieldMissRespBodyBytes gets a reference to the given int64 and assigns it to the ShieldMissRespBodyBytes field. +func (o *Results) SetShieldMissRespBodyBytes(v int64) { o.ShieldMissRespBodyBytes = &v } // GetWebsocketReqHeaderBytes returns the WebsocketReqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetWebsocketReqHeaderBytes() int32 { +func (o *Results) GetWebsocketReqHeaderBytes() int64 { if o == nil || o.WebsocketReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketReqHeaderBytes @@ -6575,7 +6575,7 @@ func (o *Results) GetWebsocketReqHeaderBytes() int32 { // GetWebsocketReqHeaderBytesOk returns a tuple with the WebsocketReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketReqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetWebsocketReqHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketReqHeaderBytes == nil { return nil, false } @@ -6591,15 +6591,15 @@ func (o *Results) HasWebsocketReqHeaderBytes() bool { return false } -// SetWebsocketReqHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketReqHeaderBytes field. -func (o *Results) SetWebsocketReqHeaderBytes(v int32) { +// SetWebsocketReqHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketReqHeaderBytes field. +func (o *Results) SetWebsocketReqHeaderBytes(v int64) { o.WebsocketReqHeaderBytes = &v } // GetWebsocketReqBodyBytes returns the WebsocketReqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetWebsocketReqBodyBytes() int32 { +func (o *Results) GetWebsocketReqBodyBytes() int64 { if o == nil || o.WebsocketReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketReqBodyBytes @@ -6607,7 +6607,7 @@ func (o *Results) GetWebsocketReqBodyBytes() int32 { // GetWebsocketReqBodyBytesOk returns a tuple with the WebsocketReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketReqBodyBytesOk() (*int32, bool) { +func (o *Results) GetWebsocketReqBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketReqBodyBytes == nil { return nil, false } @@ -6623,15 +6623,15 @@ func (o *Results) HasWebsocketReqBodyBytes() bool { return false } -// SetWebsocketReqBodyBytes gets a reference to the given int32 and assigns it to the WebsocketReqBodyBytes field. -func (o *Results) SetWebsocketReqBodyBytes(v int32) { +// SetWebsocketReqBodyBytes gets a reference to the given int64 and assigns it to the WebsocketReqBodyBytes field. +func (o *Results) SetWebsocketReqBodyBytes(v int64) { o.WebsocketReqBodyBytes = &v } // GetWebsocketRespHeaderBytes returns the WebsocketRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetWebsocketRespHeaderBytes() int32 { +func (o *Results) GetWebsocketRespHeaderBytes() int64 { if o == nil || o.WebsocketRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketRespHeaderBytes @@ -6639,7 +6639,7 @@ func (o *Results) GetWebsocketRespHeaderBytes() int32 { // GetWebsocketRespHeaderBytesOk returns a tuple with the WebsocketRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetWebsocketRespHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketRespHeaderBytes == nil { return nil, false } @@ -6655,15 +6655,15 @@ func (o *Results) HasWebsocketRespHeaderBytes() bool { return false } -// SetWebsocketRespHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketRespHeaderBytes field. -func (o *Results) SetWebsocketRespHeaderBytes(v int32) { +// SetWebsocketRespHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketRespHeaderBytes field. +func (o *Results) SetWebsocketRespHeaderBytes(v int64) { o.WebsocketRespHeaderBytes = &v } // GetWebsocketRespBodyBytes returns the WebsocketRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetWebsocketRespBodyBytes() int32 { +func (o *Results) GetWebsocketRespBodyBytes() int64 { if o == nil || o.WebsocketRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketRespBodyBytes @@ -6671,7 +6671,7 @@ func (o *Results) GetWebsocketRespBodyBytes() int32 { // GetWebsocketRespBodyBytesOk returns a tuple with the WebsocketRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetWebsocketRespBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketRespBodyBytes == nil { return nil, false } @@ -6687,15 +6687,15 @@ func (o *Results) HasWebsocketRespBodyBytes() bool { return false } -// SetWebsocketRespBodyBytes gets a reference to the given int32 and assigns it to the WebsocketRespBodyBytes field. -func (o *Results) SetWebsocketRespBodyBytes(v int32) { +// SetWebsocketRespBodyBytes gets a reference to the given int64 and assigns it to the WebsocketRespBodyBytes field. +func (o *Results) SetWebsocketRespBodyBytes(v int64) { o.WebsocketRespBodyBytes = &v } // GetWebsocketBereqHeaderBytes returns the WebsocketBereqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetWebsocketBereqHeaderBytes() int32 { +func (o *Results) GetWebsocketBereqHeaderBytes() int64 { if o == nil || o.WebsocketBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBereqHeaderBytes @@ -6703,7 +6703,7 @@ func (o *Results) GetWebsocketBereqHeaderBytes() int32 { // GetWebsocketBereqHeaderBytesOk returns a tuple with the WebsocketBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketBereqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetWebsocketBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketBereqHeaderBytes == nil { return nil, false } @@ -6719,15 +6719,15 @@ func (o *Results) HasWebsocketBereqHeaderBytes() bool { return false } -// SetWebsocketBereqHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketBereqHeaderBytes field. -func (o *Results) SetWebsocketBereqHeaderBytes(v int32) { +// SetWebsocketBereqHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketBereqHeaderBytes field. +func (o *Results) SetWebsocketBereqHeaderBytes(v int64) { o.WebsocketBereqHeaderBytes = &v } // GetWebsocketBereqBodyBytes returns the WebsocketBereqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetWebsocketBereqBodyBytes() int32 { +func (o *Results) GetWebsocketBereqBodyBytes() int64 { if o == nil || o.WebsocketBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBereqBodyBytes @@ -6735,7 +6735,7 @@ func (o *Results) GetWebsocketBereqBodyBytes() int32 { // GetWebsocketBereqBodyBytesOk returns a tuple with the WebsocketBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketBereqBodyBytesOk() (*int32, bool) { +func (o *Results) GetWebsocketBereqBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketBereqBodyBytes == nil { return nil, false } @@ -6751,15 +6751,15 @@ func (o *Results) HasWebsocketBereqBodyBytes() bool { return false } -// SetWebsocketBereqBodyBytes gets a reference to the given int32 and assigns it to the WebsocketBereqBodyBytes field. -func (o *Results) SetWebsocketBereqBodyBytes(v int32) { +// SetWebsocketBereqBodyBytes gets a reference to the given int64 and assigns it to the WebsocketBereqBodyBytes field. +func (o *Results) SetWebsocketBereqBodyBytes(v int64) { o.WebsocketBereqBodyBytes = &v } // GetWebsocketBerespHeaderBytes returns the WebsocketBerespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetWebsocketBerespHeaderBytes() int32 { +func (o *Results) GetWebsocketBerespHeaderBytes() int64 { if o == nil || o.WebsocketBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBerespHeaderBytes @@ -6767,7 +6767,7 @@ func (o *Results) GetWebsocketBerespHeaderBytes() int32 { // GetWebsocketBerespHeaderBytesOk returns a tuple with the WebsocketBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketBerespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetWebsocketBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.WebsocketBerespHeaderBytes == nil { return nil, false } @@ -6783,15 +6783,15 @@ func (o *Results) HasWebsocketBerespHeaderBytes() bool { return false } -// SetWebsocketBerespHeaderBytes gets a reference to the given int32 and assigns it to the WebsocketBerespHeaderBytes field. -func (o *Results) SetWebsocketBerespHeaderBytes(v int32) { +// SetWebsocketBerespHeaderBytes gets a reference to the given int64 and assigns it to the WebsocketBerespHeaderBytes field. +func (o *Results) SetWebsocketBerespHeaderBytes(v int64) { o.WebsocketBerespHeaderBytes = &v } // GetWebsocketBerespBodyBytes returns the WebsocketBerespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetWebsocketBerespBodyBytes() int32 { +func (o *Results) GetWebsocketBerespBodyBytes() int64 { if o == nil || o.WebsocketBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketBerespBodyBytes @@ -6799,7 +6799,7 @@ func (o *Results) GetWebsocketBerespBodyBytes() int32 { // GetWebsocketBerespBodyBytesOk returns a tuple with the WebsocketBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketBerespBodyBytesOk() (*int32, bool) { +func (o *Results) GetWebsocketBerespBodyBytesOk() (*int64, bool) { if o == nil || o.WebsocketBerespBodyBytes == nil { return nil, false } @@ -6815,15 +6815,15 @@ func (o *Results) HasWebsocketBerespBodyBytes() bool { return false } -// SetWebsocketBerespBodyBytes gets a reference to the given int32 and assigns it to the WebsocketBerespBodyBytes field. -func (o *Results) SetWebsocketBerespBodyBytes(v int32) { +// SetWebsocketBerespBodyBytes gets a reference to the given int64 and assigns it to the WebsocketBerespBodyBytes field. +func (o *Results) SetWebsocketBerespBodyBytes(v int64) { o.WebsocketBerespBodyBytes = &v } // GetWebsocketConnTimeMs returns the WebsocketConnTimeMs field value if set, zero value otherwise. -func (o *Results) GetWebsocketConnTimeMs() int32 { +func (o *Results) GetWebsocketConnTimeMs() int64 { if o == nil || o.WebsocketConnTimeMs == nil { - var ret int32 + var ret int64 return ret } return *o.WebsocketConnTimeMs @@ -6831,7 +6831,7 @@ func (o *Results) GetWebsocketConnTimeMs() int32 { // GetWebsocketConnTimeMsOk returns a tuple with the WebsocketConnTimeMs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetWebsocketConnTimeMsOk() (*int32, bool) { +func (o *Results) GetWebsocketConnTimeMsOk() (*int64, bool) { if o == nil || o.WebsocketConnTimeMs == nil { return nil, false } @@ -6847,15 +6847,15 @@ func (o *Results) HasWebsocketConnTimeMs() bool { return false } -// SetWebsocketConnTimeMs gets a reference to the given int32 and assigns it to the WebsocketConnTimeMs field. -func (o *Results) SetWebsocketConnTimeMs(v int32) { +// SetWebsocketConnTimeMs gets a reference to the given int64 and assigns it to the WebsocketConnTimeMs field. +func (o *Results) SetWebsocketConnTimeMs(v int64) { o.WebsocketConnTimeMs = &v } // GetFanoutRecvPublishes returns the FanoutRecvPublishes field value if set, zero value otherwise. -func (o *Results) GetFanoutRecvPublishes() int32 { +func (o *Results) GetFanoutRecvPublishes() int64 { if o == nil || o.FanoutRecvPublishes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRecvPublishes @@ -6863,7 +6863,7 @@ func (o *Results) GetFanoutRecvPublishes() int32 { // GetFanoutRecvPublishesOk returns a tuple with the FanoutRecvPublishes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutRecvPublishesOk() (*int32, bool) { +func (o *Results) GetFanoutRecvPublishesOk() (*int64, bool) { if o == nil || o.FanoutRecvPublishes == nil { return nil, false } @@ -6879,15 +6879,15 @@ func (o *Results) HasFanoutRecvPublishes() bool { return false } -// SetFanoutRecvPublishes gets a reference to the given int32 and assigns it to the FanoutRecvPublishes field. -func (o *Results) SetFanoutRecvPublishes(v int32) { +// SetFanoutRecvPublishes gets a reference to the given int64 and assigns it to the FanoutRecvPublishes field. +func (o *Results) SetFanoutRecvPublishes(v int64) { o.FanoutRecvPublishes = &v } // GetFanoutSendPublishes returns the FanoutSendPublishes field value if set, zero value otherwise. -func (o *Results) GetFanoutSendPublishes() int32 { +func (o *Results) GetFanoutSendPublishes() int64 { if o == nil || o.FanoutSendPublishes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutSendPublishes @@ -6895,7 +6895,7 @@ func (o *Results) GetFanoutSendPublishes() int32 { // GetFanoutSendPublishesOk returns a tuple with the FanoutSendPublishes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutSendPublishesOk() (*int32, bool) { +func (o *Results) GetFanoutSendPublishesOk() (*int64, bool) { if o == nil || o.FanoutSendPublishes == nil { return nil, false } @@ -6911,15 +6911,15 @@ func (o *Results) HasFanoutSendPublishes() bool { return false } -// SetFanoutSendPublishes gets a reference to the given int32 and assigns it to the FanoutSendPublishes field. -func (o *Results) SetFanoutSendPublishes(v int32) { +// SetFanoutSendPublishes gets a reference to the given int64 and assigns it to the FanoutSendPublishes field. +func (o *Results) SetFanoutSendPublishes(v int64) { o.FanoutSendPublishes = &v } // GetKvStoreClassAOperations returns the KvStoreClassAOperations field value if set, zero value otherwise. -func (o *Results) GetKvStoreClassAOperations() int32 { +func (o *Results) GetKvStoreClassAOperations() int64 { if o == nil || o.KvStoreClassAOperations == nil { - var ret int32 + var ret int64 return ret } return *o.KvStoreClassAOperations @@ -6927,7 +6927,7 @@ func (o *Results) GetKvStoreClassAOperations() int32 { // GetKvStoreClassAOperationsOk returns a tuple with the KvStoreClassAOperations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetKvStoreClassAOperationsOk() (*int32, bool) { +func (o *Results) GetKvStoreClassAOperationsOk() (*int64, bool) { if o == nil || o.KvStoreClassAOperations == nil { return nil, false } @@ -6943,15 +6943,15 @@ func (o *Results) HasKvStoreClassAOperations() bool { return false } -// SetKvStoreClassAOperations gets a reference to the given int32 and assigns it to the KvStoreClassAOperations field. -func (o *Results) SetKvStoreClassAOperations(v int32) { +// SetKvStoreClassAOperations gets a reference to the given int64 and assigns it to the KvStoreClassAOperations field. +func (o *Results) SetKvStoreClassAOperations(v int64) { o.KvStoreClassAOperations = &v } // GetKvStoreClassBOperations returns the KvStoreClassBOperations field value if set, zero value otherwise. -func (o *Results) GetKvStoreClassBOperations() int32 { +func (o *Results) GetKvStoreClassBOperations() int64 { if o == nil || o.KvStoreClassBOperations == nil { - var ret int32 + var ret int64 return ret } return *o.KvStoreClassBOperations @@ -6959,7 +6959,7 @@ func (o *Results) GetKvStoreClassBOperations() int32 { // GetKvStoreClassBOperationsOk returns a tuple with the KvStoreClassBOperations field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetKvStoreClassBOperationsOk() (*int32, bool) { +func (o *Results) GetKvStoreClassBOperationsOk() (*int64, bool) { if o == nil || o.KvStoreClassBOperations == nil { return nil, false } @@ -6975,16 +6975,16 @@ func (o *Results) HasKvStoreClassBOperations() bool { return false } -// SetKvStoreClassBOperations gets a reference to the given int32 and assigns it to the KvStoreClassBOperations field. -func (o *Results) SetKvStoreClassBOperations(v int32) { +// SetKvStoreClassBOperations gets a reference to the given int64 and assigns it to the KvStoreClassBOperations field. +func (o *Results) SetKvStoreClassBOperations(v int64) { o.KvStoreClassBOperations = &v } // GetObjectStoreClassAOperations returns the ObjectStoreClassAOperations field value if set, zero value otherwise. // Deprecated -func (o *Results) GetObjectStoreClassAOperations() int32 { +func (o *Results) GetObjectStoreClassAOperations() int64 { if o == nil || o.ObjectStoreClassAOperations == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectStoreClassAOperations @@ -6993,7 +6993,7 @@ func (o *Results) GetObjectStoreClassAOperations() int32 { // GetObjectStoreClassAOperationsOk returns a tuple with the ObjectStoreClassAOperations field value if set, nil otherwise // and a boolean to check if the value has been set. // Deprecated -func (o *Results) GetObjectStoreClassAOperationsOk() (*int32, bool) { +func (o *Results) GetObjectStoreClassAOperationsOk() (*int64, bool) { if o == nil || o.ObjectStoreClassAOperations == nil { return nil, false } @@ -7009,17 +7009,17 @@ func (o *Results) HasObjectStoreClassAOperations() bool { return false } -// SetObjectStoreClassAOperations gets a reference to the given int32 and assigns it to the ObjectStoreClassAOperations field. +// SetObjectStoreClassAOperations gets a reference to the given int64 and assigns it to the ObjectStoreClassAOperations field. // Deprecated -func (o *Results) SetObjectStoreClassAOperations(v int32) { +func (o *Results) SetObjectStoreClassAOperations(v int64) { o.ObjectStoreClassAOperations = &v } // GetObjectStoreClassBOperations returns the ObjectStoreClassBOperations field value if set, zero value otherwise. // Deprecated -func (o *Results) GetObjectStoreClassBOperations() int32 { +func (o *Results) GetObjectStoreClassBOperations() int64 { if o == nil || o.ObjectStoreClassBOperations == nil { - var ret int32 + var ret int64 return ret } return *o.ObjectStoreClassBOperations @@ -7028,7 +7028,7 @@ func (o *Results) GetObjectStoreClassBOperations() int32 { // GetObjectStoreClassBOperationsOk returns a tuple with the ObjectStoreClassBOperations field value if set, nil otherwise // and a boolean to check if the value has been set. // Deprecated -func (o *Results) GetObjectStoreClassBOperationsOk() (*int32, bool) { +func (o *Results) GetObjectStoreClassBOperationsOk() (*int64, bool) { if o == nil || o.ObjectStoreClassBOperations == nil { return nil, false } @@ -7044,16 +7044,16 @@ func (o *Results) HasObjectStoreClassBOperations() bool { return false } -// SetObjectStoreClassBOperations gets a reference to the given int32 and assigns it to the ObjectStoreClassBOperations field. +// SetObjectStoreClassBOperations gets a reference to the given int64 and assigns it to the ObjectStoreClassBOperations field. // Deprecated -func (o *Results) SetObjectStoreClassBOperations(v int32) { +func (o *Results) SetObjectStoreClassBOperations(v int64) { o.ObjectStoreClassBOperations = &v } // GetFanoutReqHeaderBytes returns the FanoutReqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetFanoutReqHeaderBytes() int32 { +func (o *Results) GetFanoutReqHeaderBytes() int64 { if o == nil || o.FanoutReqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutReqHeaderBytes @@ -7061,7 +7061,7 @@ func (o *Results) GetFanoutReqHeaderBytes() int32 { // GetFanoutReqHeaderBytesOk returns a tuple with the FanoutReqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutReqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetFanoutReqHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutReqHeaderBytes == nil { return nil, false } @@ -7077,15 +7077,15 @@ func (o *Results) HasFanoutReqHeaderBytes() bool { return false } -// SetFanoutReqHeaderBytes gets a reference to the given int32 and assigns it to the FanoutReqHeaderBytes field. -func (o *Results) SetFanoutReqHeaderBytes(v int32) { +// SetFanoutReqHeaderBytes gets a reference to the given int64 and assigns it to the FanoutReqHeaderBytes field. +func (o *Results) SetFanoutReqHeaderBytes(v int64) { o.FanoutReqHeaderBytes = &v } // GetFanoutReqBodyBytes returns the FanoutReqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetFanoutReqBodyBytes() int32 { +func (o *Results) GetFanoutReqBodyBytes() int64 { if o == nil || o.FanoutReqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutReqBodyBytes @@ -7093,7 +7093,7 @@ func (o *Results) GetFanoutReqBodyBytes() int32 { // GetFanoutReqBodyBytesOk returns a tuple with the FanoutReqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutReqBodyBytesOk() (*int32, bool) { +func (o *Results) GetFanoutReqBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutReqBodyBytes == nil { return nil, false } @@ -7109,15 +7109,15 @@ func (o *Results) HasFanoutReqBodyBytes() bool { return false } -// SetFanoutReqBodyBytes gets a reference to the given int32 and assigns it to the FanoutReqBodyBytes field. -func (o *Results) SetFanoutReqBodyBytes(v int32) { +// SetFanoutReqBodyBytes gets a reference to the given int64 and assigns it to the FanoutReqBodyBytes field. +func (o *Results) SetFanoutReqBodyBytes(v int64) { o.FanoutReqBodyBytes = &v } // GetFanoutRespHeaderBytes returns the FanoutRespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetFanoutRespHeaderBytes() int32 { +func (o *Results) GetFanoutRespHeaderBytes() int64 { if o == nil || o.FanoutRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRespHeaderBytes @@ -7125,7 +7125,7 @@ func (o *Results) GetFanoutRespHeaderBytes() int32 { // GetFanoutRespHeaderBytesOk returns a tuple with the FanoutRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutRespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetFanoutRespHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutRespHeaderBytes == nil { return nil, false } @@ -7141,15 +7141,15 @@ func (o *Results) HasFanoutRespHeaderBytes() bool { return false } -// SetFanoutRespHeaderBytes gets a reference to the given int32 and assigns it to the FanoutRespHeaderBytes field. -func (o *Results) SetFanoutRespHeaderBytes(v int32) { +// SetFanoutRespHeaderBytes gets a reference to the given int64 and assigns it to the FanoutRespHeaderBytes field. +func (o *Results) SetFanoutRespHeaderBytes(v int64) { o.FanoutRespHeaderBytes = &v } // GetFanoutRespBodyBytes returns the FanoutRespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetFanoutRespBodyBytes() int32 { +func (o *Results) GetFanoutRespBodyBytes() int64 { if o == nil || o.FanoutRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutRespBodyBytes @@ -7157,7 +7157,7 @@ func (o *Results) GetFanoutRespBodyBytes() int32 { // GetFanoutRespBodyBytesOk returns a tuple with the FanoutRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutRespBodyBytesOk() (*int32, bool) { +func (o *Results) GetFanoutRespBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutRespBodyBytes == nil { return nil, false } @@ -7173,15 +7173,15 @@ func (o *Results) HasFanoutRespBodyBytes() bool { return false } -// SetFanoutRespBodyBytes gets a reference to the given int32 and assigns it to the FanoutRespBodyBytes field. -func (o *Results) SetFanoutRespBodyBytes(v int32) { +// SetFanoutRespBodyBytes gets a reference to the given int64 and assigns it to the FanoutRespBodyBytes field. +func (o *Results) SetFanoutRespBodyBytes(v int64) { o.FanoutRespBodyBytes = &v } // GetFanoutBereqHeaderBytes returns the FanoutBereqHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetFanoutBereqHeaderBytes() int32 { +func (o *Results) GetFanoutBereqHeaderBytes() int64 { if o == nil || o.FanoutBereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBereqHeaderBytes @@ -7189,7 +7189,7 @@ func (o *Results) GetFanoutBereqHeaderBytes() int32 { // GetFanoutBereqHeaderBytesOk returns a tuple with the FanoutBereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutBereqHeaderBytesOk() (*int32, bool) { +func (o *Results) GetFanoutBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutBereqHeaderBytes == nil { return nil, false } @@ -7205,15 +7205,15 @@ func (o *Results) HasFanoutBereqHeaderBytes() bool { return false } -// SetFanoutBereqHeaderBytes gets a reference to the given int32 and assigns it to the FanoutBereqHeaderBytes field. -func (o *Results) SetFanoutBereqHeaderBytes(v int32) { +// SetFanoutBereqHeaderBytes gets a reference to the given int64 and assigns it to the FanoutBereqHeaderBytes field. +func (o *Results) SetFanoutBereqHeaderBytes(v int64) { o.FanoutBereqHeaderBytes = &v } // GetFanoutBereqBodyBytes returns the FanoutBereqBodyBytes field value if set, zero value otherwise. -func (o *Results) GetFanoutBereqBodyBytes() int32 { +func (o *Results) GetFanoutBereqBodyBytes() int64 { if o == nil || o.FanoutBereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBereqBodyBytes @@ -7221,7 +7221,7 @@ func (o *Results) GetFanoutBereqBodyBytes() int32 { // GetFanoutBereqBodyBytesOk returns a tuple with the FanoutBereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutBereqBodyBytesOk() (*int32, bool) { +func (o *Results) GetFanoutBereqBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutBereqBodyBytes == nil { return nil, false } @@ -7237,15 +7237,15 @@ func (o *Results) HasFanoutBereqBodyBytes() bool { return false } -// SetFanoutBereqBodyBytes gets a reference to the given int32 and assigns it to the FanoutBereqBodyBytes field. -func (o *Results) SetFanoutBereqBodyBytes(v int32) { +// SetFanoutBereqBodyBytes gets a reference to the given int64 and assigns it to the FanoutBereqBodyBytes field. +func (o *Results) SetFanoutBereqBodyBytes(v int64) { o.FanoutBereqBodyBytes = &v } // GetFanoutBerespHeaderBytes returns the FanoutBerespHeaderBytes field value if set, zero value otherwise. -func (o *Results) GetFanoutBerespHeaderBytes() int32 { +func (o *Results) GetFanoutBerespHeaderBytes() int64 { if o == nil || o.FanoutBerespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBerespHeaderBytes @@ -7253,7 +7253,7 @@ func (o *Results) GetFanoutBerespHeaderBytes() int32 { // GetFanoutBerespHeaderBytesOk returns a tuple with the FanoutBerespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutBerespHeaderBytesOk() (*int32, bool) { +func (o *Results) GetFanoutBerespHeaderBytesOk() (*int64, bool) { if o == nil || o.FanoutBerespHeaderBytes == nil { return nil, false } @@ -7269,15 +7269,15 @@ func (o *Results) HasFanoutBerespHeaderBytes() bool { return false } -// SetFanoutBerespHeaderBytes gets a reference to the given int32 and assigns it to the FanoutBerespHeaderBytes field. -func (o *Results) SetFanoutBerespHeaderBytes(v int32) { +// SetFanoutBerespHeaderBytes gets a reference to the given int64 and assigns it to the FanoutBerespHeaderBytes field. +func (o *Results) SetFanoutBerespHeaderBytes(v int64) { o.FanoutBerespHeaderBytes = &v } // GetFanoutBerespBodyBytes returns the FanoutBerespBodyBytes field value if set, zero value otherwise. -func (o *Results) GetFanoutBerespBodyBytes() int32 { +func (o *Results) GetFanoutBerespBodyBytes() int64 { if o == nil || o.FanoutBerespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutBerespBodyBytes @@ -7285,7 +7285,7 @@ func (o *Results) GetFanoutBerespBodyBytes() int32 { // GetFanoutBerespBodyBytesOk returns a tuple with the FanoutBerespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutBerespBodyBytesOk() (*int32, bool) { +func (o *Results) GetFanoutBerespBodyBytesOk() (*int64, bool) { if o == nil || o.FanoutBerespBodyBytes == nil { return nil, false } @@ -7301,15 +7301,15 @@ func (o *Results) HasFanoutBerespBodyBytes() bool { return false } -// SetFanoutBerespBodyBytes gets a reference to the given int32 and assigns it to the FanoutBerespBodyBytes field. -func (o *Results) SetFanoutBerespBodyBytes(v int32) { +// SetFanoutBerespBodyBytes gets a reference to the given int64 and assigns it to the FanoutBerespBodyBytes field. +func (o *Results) SetFanoutBerespBodyBytes(v int64) { o.FanoutBerespBodyBytes = &v } // GetFanoutConnTimeMs returns the FanoutConnTimeMs field value if set, zero value otherwise. -func (o *Results) GetFanoutConnTimeMs() int32 { +func (o *Results) GetFanoutConnTimeMs() int64 { if o == nil || o.FanoutConnTimeMs == nil { - var ret int32 + var ret int64 return ret } return *o.FanoutConnTimeMs @@ -7317,7 +7317,7 @@ func (o *Results) GetFanoutConnTimeMs() int32 { // GetFanoutConnTimeMsOk returns a tuple with the FanoutConnTimeMs field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetFanoutConnTimeMsOk() (*int32, bool) { +func (o *Results) GetFanoutConnTimeMsOk() (*int64, bool) { if o == nil || o.FanoutConnTimeMs == nil { return nil, false } @@ -7333,15 +7333,15 @@ func (o *Results) HasFanoutConnTimeMs() bool { return false } -// SetFanoutConnTimeMs gets a reference to the given int32 and assigns it to the FanoutConnTimeMs field. -func (o *Results) SetFanoutConnTimeMs(v int32) { +// SetFanoutConnTimeMs gets a reference to the given int64 and assigns it to the FanoutConnTimeMs field. +func (o *Results) SetFanoutConnTimeMs(v int64) { o.FanoutConnTimeMs = &v } // GetDdosActionLimitStreamsConnections returns the DdosActionLimitStreamsConnections field value if set, zero value otherwise. -func (o *Results) GetDdosActionLimitStreamsConnections() int32 { +func (o *Results) GetDdosActionLimitStreamsConnections() int64 { if o == nil || o.DdosActionLimitStreamsConnections == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionLimitStreamsConnections @@ -7349,7 +7349,7 @@ func (o *Results) GetDdosActionLimitStreamsConnections() int32 { // GetDdosActionLimitStreamsConnectionsOk returns a tuple with the DdosActionLimitStreamsConnections field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDdosActionLimitStreamsConnectionsOk() (*int32, bool) { +func (o *Results) GetDdosActionLimitStreamsConnectionsOk() (*int64, bool) { if o == nil || o.DdosActionLimitStreamsConnections == nil { return nil, false } @@ -7365,15 +7365,15 @@ func (o *Results) HasDdosActionLimitStreamsConnections() bool { return false } -// SetDdosActionLimitStreamsConnections gets a reference to the given int32 and assigns it to the DdosActionLimitStreamsConnections field. -func (o *Results) SetDdosActionLimitStreamsConnections(v int32) { +// SetDdosActionLimitStreamsConnections gets a reference to the given int64 and assigns it to the DdosActionLimitStreamsConnections field. +func (o *Results) SetDdosActionLimitStreamsConnections(v int64) { o.DdosActionLimitStreamsConnections = &v } // GetDdosActionLimitStreamsRequests returns the DdosActionLimitStreamsRequests field value if set, zero value otherwise. -func (o *Results) GetDdosActionLimitStreamsRequests() int32 { +func (o *Results) GetDdosActionLimitStreamsRequests() int64 { if o == nil || o.DdosActionLimitStreamsRequests == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionLimitStreamsRequests @@ -7381,7 +7381,7 @@ func (o *Results) GetDdosActionLimitStreamsRequests() int32 { // GetDdosActionLimitStreamsRequestsOk returns a tuple with the DdosActionLimitStreamsRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDdosActionLimitStreamsRequestsOk() (*int32, bool) { +func (o *Results) GetDdosActionLimitStreamsRequestsOk() (*int64, bool) { if o == nil || o.DdosActionLimitStreamsRequests == nil { return nil, false } @@ -7397,15 +7397,15 @@ func (o *Results) HasDdosActionLimitStreamsRequests() bool { return false } -// SetDdosActionLimitStreamsRequests gets a reference to the given int32 and assigns it to the DdosActionLimitStreamsRequests field. -func (o *Results) SetDdosActionLimitStreamsRequests(v int32) { +// SetDdosActionLimitStreamsRequests gets a reference to the given int64 and assigns it to the DdosActionLimitStreamsRequests field. +func (o *Results) SetDdosActionLimitStreamsRequests(v int64) { o.DdosActionLimitStreamsRequests = &v } // GetDdosActionTarpitAccept returns the DdosActionTarpitAccept field value if set, zero value otherwise. -func (o *Results) GetDdosActionTarpitAccept() int32 { +func (o *Results) GetDdosActionTarpitAccept() int64 { if o == nil || o.DdosActionTarpitAccept == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionTarpitAccept @@ -7413,7 +7413,7 @@ func (o *Results) GetDdosActionTarpitAccept() int32 { // GetDdosActionTarpitAcceptOk returns a tuple with the DdosActionTarpitAccept field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDdosActionTarpitAcceptOk() (*int32, bool) { +func (o *Results) GetDdosActionTarpitAcceptOk() (*int64, bool) { if o == nil || o.DdosActionTarpitAccept == nil { return nil, false } @@ -7429,15 +7429,15 @@ func (o *Results) HasDdosActionTarpitAccept() bool { return false } -// SetDdosActionTarpitAccept gets a reference to the given int32 and assigns it to the DdosActionTarpitAccept field. -func (o *Results) SetDdosActionTarpitAccept(v int32) { +// SetDdosActionTarpitAccept gets a reference to the given int64 and assigns it to the DdosActionTarpitAccept field. +func (o *Results) SetDdosActionTarpitAccept(v int64) { o.DdosActionTarpitAccept = &v } // GetDdosActionTarpit returns the DdosActionTarpit field value if set, zero value otherwise. -func (o *Results) GetDdosActionTarpit() int32 { +func (o *Results) GetDdosActionTarpit() int64 { if o == nil || o.DdosActionTarpit == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionTarpit @@ -7445,7 +7445,7 @@ func (o *Results) GetDdosActionTarpit() int32 { // GetDdosActionTarpitOk returns a tuple with the DdosActionTarpit field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDdosActionTarpitOk() (*int32, bool) { +func (o *Results) GetDdosActionTarpitOk() (*int64, bool) { if o == nil || o.DdosActionTarpit == nil { return nil, false } @@ -7461,15 +7461,15 @@ func (o *Results) HasDdosActionTarpit() bool { return false } -// SetDdosActionTarpit gets a reference to the given int32 and assigns it to the DdosActionTarpit field. -func (o *Results) SetDdosActionTarpit(v int32) { +// SetDdosActionTarpit gets a reference to the given int64 and assigns it to the DdosActionTarpit field. +func (o *Results) SetDdosActionTarpit(v int64) { o.DdosActionTarpit = &v } // GetDdosActionClose returns the DdosActionClose field value if set, zero value otherwise. -func (o *Results) GetDdosActionClose() int32 { +func (o *Results) GetDdosActionClose() int64 { if o == nil || o.DdosActionClose == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionClose @@ -7477,7 +7477,7 @@ func (o *Results) GetDdosActionClose() int32 { // GetDdosActionCloseOk returns a tuple with the DdosActionClose field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDdosActionCloseOk() (*int32, bool) { +func (o *Results) GetDdosActionCloseOk() (*int64, bool) { if o == nil || o.DdosActionClose == nil { return nil, false } @@ -7493,15 +7493,15 @@ func (o *Results) HasDdosActionClose() bool { return false } -// SetDdosActionClose gets a reference to the given int32 and assigns it to the DdosActionClose field. -func (o *Results) SetDdosActionClose(v int32) { +// SetDdosActionClose gets a reference to the given int64 and assigns it to the DdosActionClose field. +func (o *Results) SetDdosActionClose(v int64) { o.DdosActionClose = &v } // GetDdosActionBlackhole returns the DdosActionBlackhole field value if set, zero value otherwise. -func (o *Results) GetDdosActionBlackhole() int32 { +func (o *Results) GetDdosActionBlackhole() int64 { if o == nil || o.DdosActionBlackhole == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionBlackhole @@ -7509,7 +7509,7 @@ func (o *Results) GetDdosActionBlackhole() int32 { // GetDdosActionBlackholeOk returns a tuple with the DdosActionBlackhole field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDdosActionBlackholeOk() (*int32, bool) { +func (o *Results) GetDdosActionBlackholeOk() (*int64, bool) { if o == nil || o.DdosActionBlackhole == nil { return nil, false } @@ -7525,15 +7525,15 @@ func (o *Results) HasDdosActionBlackhole() bool { return false } -// SetDdosActionBlackhole gets a reference to the given int32 and assigns it to the DdosActionBlackhole field. -func (o *Results) SetDdosActionBlackhole(v int32) { +// SetDdosActionBlackhole gets a reference to the given int64 and assigns it to the DdosActionBlackhole field. +func (o *Results) SetDdosActionBlackhole(v int64) { o.DdosActionBlackhole = &v } // GetBotChallengeStarts returns the BotChallengeStarts field value if set, zero value otherwise. -func (o *Results) GetBotChallengeStarts() int32 { +func (o *Results) GetBotChallengeStarts() int64 { if o == nil || o.BotChallengeStarts == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeStarts @@ -7541,7 +7541,7 @@ func (o *Results) GetBotChallengeStarts() int32 { // GetBotChallengeStartsOk returns a tuple with the BotChallengeStarts field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengeStartsOk() (*int32, bool) { +func (o *Results) GetBotChallengeStartsOk() (*int64, bool) { if o == nil || o.BotChallengeStarts == nil { return nil, false } @@ -7557,15 +7557,15 @@ func (o *Results) HasBotChallengeStarts() bool { return false } -// SetBotChallengeStarts gets a reference to the given int32 and assigns it to the BotChallengeStarts field. -func (o *Results) SetBotChallengeStarts(v int32) { +// SetBotChallengeStarts gets a reference to the given int64 and assigns it to the BotChallengeStarts field. +func (o *Results) SetBotChallengeStarts(v int64) { o.BotChallengeStarts = &v } // GetBotChallengeCompleteTokensPassed returns the BotChallengeCompleteTokensPassed field value if set, zero value otherwise. -func (o *Results) GetBotChallengeCompleteTokensPassed() int32 { +func (o *Results) GetBotChallengeCompleteTokensPassed() int64 { if o == nil || o.BotChallengeCompleteTokensPassed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensPassed @@ -7573,7 +7573,7 @@ func (o *Results) GetBotChallengeCompleteTokensPassed() int32 { // GetBotChallengeCompleteTokensPassedOk returns a tuple with the BotChallengeCompleteTokensPassed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengeCompleteTokensPassedOk() (*int32, bool) { +func (o *Results) GetBotChallengeCompleteTokensPassedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensPassed == nil { return nil, false } @@ -7589,15 +7589,15 @@ func (o *Results) HasBotChallengeCompleteTokensPassed() bool { return false } -// SetBotChallengeCompleteTokensPassed gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensPassed field. -func (o *Results) SetBotChallengeCompleteTokensPassed(v int32) { +// SetBotChallengeCompleteTokensPassed gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensPassed field. +func (o *Results) SetBotChallengeCompleteTokensPassed(v int64) { o.BotChallengeCompleteTokensPassed = &v } // GetBotChallengeCompleteTokensFailed returns the BotChallengeCompleteTokensFailed field value if set, zero value otherwise. -func (o *Results) GetBotChallengeCompleteTokensFailed() int32 { +func (o *Results) GetBotChallengeCompleteTokensFailed() int64 { if o == nil || o.BotChallengeCompleteTokensFailed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensFailed @@ -7605,7 +7605,7 @@ func (o *Results) GetBotChallengeCompleteTokensFailed() int32 { // GetBotChallengeCompleteTokensFailedOk returns a tuple with the BotChallengeCompleteTokensFailed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengeCompleteTokensFailedOk() (*int32, bool) { +func (o *Results) GetBotChallengeCompleteTokensFailedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensFailed == nil { return nil, false } @@ -7621,15 +7621,15 @@ func (o *Results) HasBotChallengeCompleteTokensFailed() bool { return false } -// SetBotChallengeCompleteTokensFailed gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensFailed field. -func (o *Results) SetBotChallengeCompleteTokensFailed(v int32) { +// SetBotChallengeCompleteTokensFailed gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensFailed field. +func (o *Results) SetBotChallengeCompleteTokensFailed(v int64) { o.BotChallengeCompleteTokensFailed = &v } // GetBotChallengeCompleteTokensChecked returns the BotChallengeCompleteTokensChecked field value if set, zero value otherwise. -func (o *Results) GetBotChallengeCompleteTokensChecked() int32 { +func (o *Results) GetBotChallengeCompleteTokensChecked() int64 { if o == nil || o.BotChallengeCompleteTokensChecked == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensChecked @@ -7637,7 +7637,7 @@ func (o *Results) GetBotChallengeCompleteTokensChecked() int32 { // GetBotChallengeCompleteTokensCheckedOk returns a tuple with the BotChallengeCompleteTokensChecked field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengeCompleteTokensCheckedOk() (*int32, bool) { +func (o *Results) GetBotChallengeCompleteTokensCheckedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensChecked == nil { return nil, false } @@ -7653,15 +7653,15 @@ func (o *Results) HasBotChallengeCompleteTokensChecked() bool { return false } -// SetBotChallengeCompleteTokensChecked gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensChecked field. -func (o *Results) SetBotChallengeCompleteTokensChecked(v int32) { +// SetBotChallengeCompleteTokensChecked gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensChecked field. +func (o *Results) SetBotChallengeCompleteTokensChecked(v int64) { o.BotChallengeCompleteTokensChecked = &v } // GetBotChallengeCompleteTokensDisabled returns the BotChallengeCompleteTokensDisabled field value if set, zero value otherwise. -func (o *Results) GetBotChallengeCompleteTokensDisabled() int32 { +func (o *Results) GetBotChallengeCompleteTokensDisabled() int64 { if o == nil || o.BotChallengeCompleteTokensDisabled == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensDisabled @@ -7669,7 +7669,7 @@ func (o *Results) GetBotChallengeCompleteTokensDisabled() int32 { // GetBotChallengeCompleteTokensDisabledOk returns a tuple with the BotChallengeCompleteTokensDisabled field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengeCompleteTokensDisabledOk() (*int32, bool) { +func (o *Results) GetBotChallengeCompleteTokensDisabledOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensDisabled == nil { return nil, false } @@ -7685,15 +7685,15 @@ func (o *Results) HasBotChallengeCompleteTokensDisabled() bool { return false } -// SetBotChallengeCompleteTokensDisabled gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensDisabled field. -func (o *Results) SetBotChallengeCompleteTokensDisabled(v int32) { +// SetBotChallengeCompleteTokensDisabled gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensDisabled field. +func (o *Results) SetBotChallengeCompleteTokensDisabled(v int64) { o.BotChallengeCompleteTokensDisabled = &v } // GetBotChallengeCompleteTokensIssued returns the BotChallengeCompleteTokensIssued field value if set, zero value otherwise. -func (o *Results) GetBotChallengeCompleteTokensIssued() int32 { +func (o *Results) GetBotChallengeCompleteTokensIssued() int64 { if o == nil || o.BotChallengeCompleteTokensIssued == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengeCompleteTokensIssued @@ -7701,7 +7701,7 @@ func (o *Results) GetBotChallengeCompleteTokensIssued() int32 { // GetBotChallengeCompleteTokensIssuedOk returns a tuple with the BotChallengeCompleteTokensIssued field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengeCompleteTokensIssuedOk() (*int32, bool) { +func (o *Results) GetBotChallengeCompleteTokensIssuedOk() (*int64, bool) { if o == nil || o.BotChallengeCompleteTokensIssued == nil { return nil, false } @@ -7717,15 +7717,15 @@ func (o *Results) HasBotChallengeCompleteTokensIssued() bool { return false } -// SetBotChallengeCompleteTokensIssued gets a reference to the given int32 and assigns it to the BotChallengeCompleteTokensIssued field. -func (o *Results) SetBotChallengeCompleteTokensIssued(v int32) { +// SetBotChallengeCompleteTokensIssued gets a reference to the given int64 and assigns it to the BotChallengeCompleteTokensIssued field. +func (o *Results) SetBotChallengeCompleteTokensIssued(v int64) { o.BotChallengeCompleteTokensIssued = &v } // GetBotChallengesIssued returns the BotChallengesIssued field value if set, zero value otherwise. -func (o *Results) GetBotChallengesIssued() int32 { +func (o *Results) GetBotChallengesIssued() int64 { if o == nil || o.BotChallengesIssued == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesIssued @@ -7733,7 +7733,7 @@ func (o *Results) GetBotChallengesIssued() int32 { // GetBotChallengesIssuedOk returns a tuple with the BotChallengesIssued field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengesIssuedOk() (*int32, bool) { +func (o *Results) GetBotChallengesIssuedOk() (*int64, bool) { if o == nil || o.BotChallengesIssued == nil { return nil, false } @@ -7749,15 +7749,15 @@ func (o *Results) HasBotChallengesIssued() bool { return false } -// SetBotChallengesIssued gets a reference to the given int32 and assigns it to the BotChallengesIssued field. -func (o *Results) SetBotChallengesIssued(v int32) { +// SetBotChallengesIssued gets a reference to the given int64 and assigns it to the BotChallengesIssued field. +func (o *Results) SetBotChallengesIssued(v int64) { o.BotChallengesIssued = &v } // GetBotChallengesSucceeded returns the BotChallengesSucceeded field value if set, zero value otherwise. -func (o *Results) GetBotChallengesSucceeded() int32 { +func (o *Results) GetBotChallengesSucceeded() int64 { if o == nil || o.BotChallengesSucceeded == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesSucceeded @@ -7765,7 +7765,7 @@ func (o *Results) GetBotChallengesSucceeded() int32 { // GetBotChallengesSucceededOk returns a tuple with the BotChallengesSucceeded field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengesSucceededOk() (*int32, bool) { +func (o *Results) GetBotChallengesSucceededOk() (*int64, bool) { if o == nil || o.BotChallengesSucceeded == nil { return nil, false } @@ -7781,15 +7781,15 @@ func (o *Results) HasBotChallengesSucceeded() bool { return false } -// SetBotChallengesSucceeded gets a reference to the given int32 and assigns it to the BotChallengesSucceeded field. -func (o *Results) SetBotChallengesSucceeded(v int32) { +// SetBotChallengesSucceeded gets a reference to the given int64 and assigns it to the BotChallengesSucceeded field. +func (o *Results) SetBotChallengesSucceeded(v int64) { o.BotChallengesSucceeded = &v } // GetBotChallengesFailed returns the BotChallengesFailed field value if set, zero value otherwise. -func (o *Results) GetBotChallengesFailed() int32 { +func (o *Results) GetBotChallengesFailed() int64 { if o == nil || o.BotChallengesFailed == nil { - var ret int32 + var ret int64 return ret } return *o.BotChallengesFailed @@ -7797,7 +7797,7 @@ func (o *Results) GetBotChallengesFailed() int32 { // GetBotChallengesFailedOk returns a tuple with the BotChallengesFailed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetBotChallengesFailedOk() (*int32, bool) { +func (o *Results) GetBotChallengesFailedOk() (*int64, bool) { if o == nil || o.BotChallengesFailed == nil { return nil, false } @@ -7813,15 +7813,15 @@ func (o *Results) HasBotChallengesFailed() bool { return false } -// SetBotChallengesFailed gets a reference to the given int32 and assigns it to the BotChallengesFailed field. -func (o *Results) SetBotChallengesFailed(v int32) { +// SetBotChallengesFailed gets a reference to the given int64 and assigns it to the BotChallengesFailed field. +func (o *Results) SetBotChallengesFailed(v int64) { o.BotChallengesFailed = &v } // GetDdosActionDowngrade returns the DdosActionDowngrade field value if set, zero value otherwise. -func (o *Results) GetDdosActionDowngrade() int32 { +func (o *Results) GetDdosActionDowngrade() int64 { if o == nil || o.DdosActionDowngrade == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionDowngrade @@ -7829,7 +7829,7 @@ func (o *Results) GetDdosActionDowngrade() int32 { // GetDdosActionDowngradeOk returns a tuple with the DdosActionDowngrade field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDdosActionDowngradeOk() (*int32, bool) { +func (o *Results) GetDdosActionDowngradeOk() (*int64, bool) { if o == nil || o.DdosActionDowngrade == nil { return nil, false } @@ -7845,15 +7845,15 @@ func (o *Results) HasDdosActionDowngrade() bool { return false } -// SetDdosActionDowngrade gets a reference to the given int32 and assigns it to the DdosActionDowngrade field. -func (o *Results) SetDdosActionDowngrade(v int32) { +// SetDdosActionDowngrade gets a reference to the given int64 and assigns it to the DdosActionDowngrade field. +func (o *Results) SetDdosActionDowngrade(v int64) { o.DdosActionDowngrade = &v } // GetDdosActionDowngradedConnections returns the DdosActionDowngradedConnections field value if set, zero value otherwise. -func (o *Results) GetDdosActionDowngradedConnections() int32 { +func (o *Results) GetDdosActionDowngradedConnections() int64 { if o == nil || o.DdosActionDowngradedConnections == nil { - var ret int32 + var ret int64 return ret } return *o.DdosActionDowngradedConnections @@ -7861,7 +7861,7 @@ func (o *Results) GetDdosActionDowngradedConnections() int32 { // GetDdosActionDowngradedConnectionsOk returns a tuple with the DdosActionDowngradedConnections field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetDdosActionDowngradedConnectionsOk() (*int32, bool) { +func (o *Results) GetDdosActionDowngradedConnectionsOk() (*int64, bool) { if o == nil || o.DdosActionDowngradedConnections == nil { return nil, false } @@ -7877,15 +7877,15 @@ func (o *Results) HasDdosActionDowngradedConnections() bool { return false } -// SetDdosActionDowngradedConnections gets a reference to the given int32 and assigns it to the DdosActionDowngradedConnections field. -func (o *Results) SetDdosActionDowngradedConnections(v int32) { +// SetDdosActionDowngradedConnections gets a reference to the given int64 and assigns it to the DdosActionDowngradedConnections field. +func (o *Results) SetDdosActionDowngradedConnections(v int64) { o.DdosActionDowngradedConnections = &v } // GetAllHitRequests returns the AllHitRequests field value if set, zero value otherwise. -func (o *Results) GetAllHitRequests() int32 { +func (o *Results) GetAllHitRequests() int64 { if o == nil || o.AllHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllHitRequests @@ -7893,7 +7893,7 @@ func (o *Results) GetAllHitRequests() int32 { // GetAllHitRequestsOk returns a tuple with the AllHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllHitRequestsOk() (*int32, bool) { +func (o *Results) GetAllHitRequestsOk() (*int64, bool) { if o == nil || o.AllHitRequests == nil { return nil, false } @@ -7909,15 +7909,15 @@ func (o *Results) HasAllHitRequests() bool { return false } -// SetAllHitRequests gets a reference to the given int32 and assigns it to the AllHitRequests field. -func (o *Results) SetAllHitRequests(v int32) { +// SetAllHitRequests gets a reference to the given int64 and assigns it to the AllHitRequests field. +func (o *Results) SetAllHitRequests(v int64) { o.AllHitRequests = &v } // GetAllMissRequests returns the AllMissRequests field value if set, zero value otherwise. -func (o *Results) GetAllMissRequests() int32 { +func (o *Results) GetAllMissRequests() int64 { if o == nil || o.AllMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllMissRequests @@ -7925,7 +7925,7 @@ func (o *Results) GetAllMissRequests() int32 { // GetAllMissRequestsOk returns a tuple with the AllMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllMissRequestsOk() (*int32, bool) { +func (o *Results) GetAllMissRequestsOk() (*int64, bool) { if o == nil || o.AllMissRequests == nil { return nil, false } @@ -7941,15 +7941,15 @@ func (o *Results) HasAllMissRequests() bool { return false } -// SetAllMissRequests gets a reference to the given int32 and assigns it to the AllMissRequests field. -func (o *Results) SetAllMissRequests(v int32) { +// SetAllMissRequests gets a reference to the given int64 and assigns it to the AllMissRequests field. +func (o *Results) SetAllMissRequests(v int64) { o.AllMissRequests = &v } // GetAllPassRequests returns the AllPassRequests field value if set, zero value otherwise. -func (o *Results) GetAllPassRequests() int32 { +func (o *Results) GetAllPassRequests() int64 { if o == nil || o.AllPassRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllPassRequests @@ -7957,7 +7957,7 @@ func (o *Results) GetAllPassRequests() int32 { // GetAllPassRequestsOk returns a tuple with the AllPassRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllPassRequestsOk() (*int32, bool) { +func (o *Results) GetAllPassRequestsOk() (*int64, bool) { if o == nil || o.AllPassRequests == nil { return nil, false } @@ -7973,15 +7973,15 @@ func (o *Results) HasAllPassRequests() bool { return false } -// SetAllPassRequests gets a reference to the given int32 and assigns it to the AllPassRequests field. -func (o *Results) SetAllPassRequests(v int32) { +// SetAllPassRequests gets a reference to the given int64 and assigns it to the AllPassRequests field. +func (o *Results) SetAllPassRequests(v int64) { o.AllPassRequests = &v } // GetAllErrorRequests returns the AllErrorRequests field value if set, zero value otherwise. -func (o *Results) GetAllErrorRequests() int32 { +func (o *Results) GetAllErrorRequests() int64 { if o == nil || o.AllErrorRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllErrorRequests @@ -7989,7 +7989,7 @@ func (o *Results) GetAllErrorRequests() int32 { // GetAllErrorRequestsOk returns a tuple with the AllErrorRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllErrorRequestsOk() (*int32, bool) { +func (o *Results) GetAllErrorRequestsOk() (*int64, bool) { if o == nil || o.AllErrorRequests == nil { return nil, false } @@ -8005,15 +8005,15 @@ func (o *Results) HasAllErrorRequests() bool { return false } -// SetAllErrorRequests gets a reference to the given int32 and assigns it to the AllErrorRequests field. -func (o *Results) SetAllErrorRequests(v int32) { +// SetAllErrorRequests gets a reference to the given int64 and assigns it to the AllErrorRequests field. +func (o *Results) SetAllErrorRequests(v int64) { o.AllErrorRequests = &v } // GetAllSynthRequests returns the AllSynthRequests field value if set, zero value otherwise. -func (o *Results) GetAllSynthRequests() int32 { +func (o *Results) GetAllSynthRequests() int64 { if o == nil || o.AllSynthRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllSynthRequests @@ -8021,7 +8021,7 @@ func (o *Results) GetAllSynthRequests() int32 { // GetAllSynthRequestsOk returns a tuple with the AllSynthRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllSynthRequestsOk() (*int32, bool) { +func (o *Results) GetAllSynthRequestsOk() (*int64, bool) { if o == nil || o.AllSynthRequests == nil { return nil, false } @@ -8037,15 +8037,15 @@ func (o *Results) HasAllSynthRequests() bool { return false } -// SetAllSynthRequests gets a reference to the given int32 and assigns it to the AllSynthRequests field. -func (o *Results) SetAllSynthRequests(v int32) { +// SetAllSynthRequests gets a reference to the given int64 and assigns it to the AllSynthRequests field. +func (o *Results) SetAllSynthRequests(v int64) { o.AllSynthRequests = &v } // GetAllEdgeHitRequests returns the AllEdgeHitRequests field value if set, zero value otherwise. -func (o *Results) GetAllEdgeHitRequests() int32 { +func (o *Results) GetAllEdgeHitRequests() int64 { if o == nil || o.AllEdgeHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllEdgeHitRequests @@ -8053,7 +8053,7 @@ func (o *Results) GetAllEdgeHitRequests() int32 { // GetAllEdgeHitRequestsOk returns a tuple with the AllEdgeHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllEdgeHitRequestsOk() (*int32, bool) { +func (o *Results) GetAllEdgeHitRequestsOk() (*int64, bool) { if o == nil || o.AllEdgeHitRequests == nil { return nil, false } @@ -8069,15 +8069,15 @@ func (o *Results) HasAllEdgeHitRequests() bool { return false } -// SetAllEdgeHitRequests gets a reference to the given int32 and assigns it to the AllEdgeHitRequests field. -func (o *Results) SetAllEdgeHitRequests(v int32) { +// SetAllEdgeHitRequests gets a reference to the given int64 and assigns it to the AllEdgeHitRequests field. +func (o *Results) SetAllEdgeHitRequests(v int64) { o.AllEdgeHitRequests = &v } // GetAllEdgeMissRequests returns the AllEdgeMissRequests field value if set, zero value otherwise. -func (o *Results) GetAllEdgeMissRequests() int32 { +func (o *Results) GetAllEdgeMissRequests() int64 { if o == nil || o.AllEdgeMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.AllEdgeMissRequests @@ -8085,7 +8085,7 @@ func (o *Results) GetAllEdgeMissRequests() int32 { // GetAllEdgeMissRequestsOk returns a tuple with the AllEdgeMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllEdgeMissRequestsOk() (*int32, bool) { +func (o *Results) GetAllEdgeMissRequestsOk() (*int64, bool) { if o == nil || o.AllEdgeMissRequests == nil { return nil, false } @@ -8101,15 +8101,15 @@ func (o *Results) HasAllEdgeMissRequests() bool { return false } -// SetAllEdgeMissRequests gets a reference to the given int32 and assigns it to the AllEdgeMissRequests field. -func (o *Results) SetAllEdgeMissRequests(v int32) { +// SetAllEdgeMissRequests gets a reference to the given int64 and assigns it to the AllEdgeMissRequests field. +func (o *Results) SetAllEdgeMissRequests(v int64) { o.AllEdgeMissRequests = &v } // GetAllStatus1xx returns the AllStatus1xx field value if set, zero value otherwise. -func (o *Results) GetAllStatus1xx() int32 { +func (o *Results) GetAllStatus1xx() int64 { if o == nil || o.AllStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus1xx @@ -8117,7 +8117,7 @@ func (o *Results) GetAllStatus1xx() int32 { // GetAllStatus1xxOk returns a tuple with the AllStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllStatus1xxOk() (*int32, bool) { +func (o *Results) GetAllStatus1xxOk() (*int64, bool) { if o == nil || o.AllStatus1xx == nil { return nil, false } @@ -8133,15 +8133,15 @@ func (o *Results) HasAllStatus1xx() bool { return false } -// SetAllStatus1xx gets a reference to the given int32 and assigns it to the AllStatus1xx field. -func (o *Results) SetAllStatus1xx(v int32) { +// SetAllStatus1xx gets a reference to the given int64 and assigns it to the AllStatus1xx field. +func (o *Results) SetAllStatus1xx(v int64) { o.AllStatus1xx = &v } // GetAllStatus2xx returns the AllStatus2xx field value if set, zero value otherwise. -func (o *Results) GetAllStatus2xx() int32 { +func (o *Results) GetAllStatus2xx() int64 { if o == nil || o.AllStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus2xx @@ -8149,7 +8149,7 @@ func (o *Results) GetAllStatus2xx() int32 { // GetAllStatus2xxOk returns a tuple with the AllStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllStatus2xxOk() (*int32, bool) { +func (o *Results) GetAllStatus2xxOk() (*int64, bool) { if o == nil || o.AllStatus2xx == nil { return nil, false } @@ -8165,15 +8165,15 @@ func (o *Results) HasAllStatus2xx() bool { return false } -// SetAllStatus2xx gets a reference to the given int32 and assigns it to the AllStatus2xx field. -func (o *Results) SetAllStatus2xx(v int32) { +// SetAllStatus2xx gets a reference to the given int64 and assigns it to the AllStatus2xx field. +func (o *Results) SetAllStatus2xx(v int64) { o.AllStatus2xx = &v } // GetAllStatus3xx returns the AllStatus3xx field value if set, zero value otherwise. -func (o *Results) GetAllStatus3xx() int32 { +func (o *Results) GetAllStatus3xx() int64 { if o == nil || o.AllStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus3xx @@ -8181,7 +8181,7 @@ func (o *Results) GetAllStatus3xx() int32 { // GetAllStatus3xxOk returns a tuple with the AllStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllStatus3xxOk() (*int32, bool) { +func (o *Results) GetAllStatus3xxOk() (*int64, bool) { if o == nil || o.AllStatus3xx == nil { return nil, false } @@ -8197,15 +8197,15 @@ func (o *Results) HasAllStatus3xx() bool { return false } -// SetAllStatus3xx gets a reference to the given int32 and assigns it to the AllStatus3xx field. -func (o *Results) SetAllStatus3xx(v int32) { +// SetAllStatus3xx gets a reference to the given int64 and assigns it to the AllStatus3xx field. +func (o *Results) SetAllStatus3xx(v int64) { o.AllStatus3xx = &v } // GetAllStatus4xx returns the AllStatus4xx field value if set, zero value otherwise. -func (o *Results) GetAllStatus4xx() int32 { +func (o *Results) GetAllStatus4xx() int64 { if o == nil || o.AllStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus4xx @@ -8213,7 +8213,7 @@ func (o *Results) GetAllStatus4xx() int32 { // GetAllStatus4xxOk returns a tuple with the AllStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllStatus4xxOk() (*int32, bool) { +func (o *Results) GetAllStatus4xxOk() (*int64, bool) { if o == nil || o.AllStatus4xx == nil { return nil, false } @@ -8229,15 +8229,15 @@ func (o *Results) HasAllStatus4xx() bool { return false } -// SetAllStatus4xx gets a reference to the given int32 and assigns it to the AllStatus4xx field. -func (o *Results) SetAllStatus4xx(v int32) { +// SetAllStatus4xx gets a reference to the given int64 and assigns it to the AllStatus4xx field. +func (o *Results) SetAllStatus4xx(v int64) { o.AllStatus4xx = &v } // GetAllStatus5xx returns the AllStatus5xx field value if set, zero value otherwise. -func (o *Results) GetAllStatus5xx() int32 { +func (o *Results) GetAllStatus5xx() int64 { if o == nil || o.AllStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.AllStatus5xx @@ -8245,7 +8245,7 @@ func (o *Results) GetAllStatus5xx() int32 { // GetAllStatus5xxOk returns a tuple with the AllStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetAllStatus5xxOk() (*int32, bool) { +func (o *Results) GetAllStatus5xxOk() (*int64, bool) { if o == nil || o.AllStatus5xx == nil { return nil, false } @@ -8261,8 +8261,8 @@ func (o *Results) HasAllStatus5xx() bool { return false } -// SetAllStatus5xx gets a reference to the given int32 and assigns it to the AllStatus5xx field. -func (o *Results) SetAllStatus5xx(v int32) { +// SetAllStatus5xx gets a reference to the given int64 and assigns it to the AllStatus5xx field. +func (o *Results) SetAllStatus5xx(v int64) { o.AllStatus5xx = &v } @@ -8299,9 +8299,9 @@ func (o *Results) SetOriginOffload(v float32) { } // GetRequestDeniedGetHeadBody returns the RequestDeniedGetHeadBody field value if set, zero value otherwise. -func (o *Results) GetRequestDeniedGetHeadBody() int32 { +func (o *Results) GetRequestDeniedGetHeadBody() int64 { if o == nil || o.RequestDeniedGetHeadBody == nil { - var ret int32 + var ret int64 return ret } return *o.RequestDeniedGetHeadBody @@ -8309,7 +8309,7 @@ func (o *Results) GetRequestDeniedGetHeadBody() int32 { // GetRequestDeniedGetHeadBodyOk returns a tuple with the RequestDeniedGetHeadBody field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetRequestDeniedGetHeadBodyOk() (*int32, bool) { +func (o *Results) GetRequestDeniedGetHeadBodyOk() (*int64, bool) { if o == nil || o.RequestDeniedGetHeadBody == nil { return nil, false } @@ -8325,15 +8325,15 @@ func (o *Results) HasRequestDeniedGetHeadBody() bool { return false } -// SetRequestDeniedGetHeadBody gets a reference to the given int32 and assigns it to the RequestDeniedGetHeadBody field. -func (o *Results) SetRequestDeniedGetHeadBody(v int32) { +// SetRequestDeniedGetHeadBody gets a reference to the given int64 and assigns it to the RequestDeniedGetHeadBody field. +func (o *Results) SetRequestDeniedGetHeadBody(v int64) { o.RequestDeniedGetHeadBody = &v } // GetServiceDdosRequestsDetected returns the ServiceDdosRequestsDetected field value if set, zero value otherwise. -func (o *Results) GetServiceDdosRequestsDetected() int32 { +func (o *Results) GetServiceDdosRequestsDetected() int64 { if o == nil || o.ServiceDdosRequestsDetected == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsDetected @@ -8341,7 +8341,7 @@ func (o *Results) GetServiceDdosRequestsDetected() int32 { // GetServiceDdosRequestsDetectedOk returns a tuple with the ServiceDdosRequestsDetected field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetServiceDdosRequestsDetectedOk() (*int32, bool) { +func (o *Results) GetServiceDdosRequestsDetectedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsDetected == nil { return nil, false } @@ -8357,15 +8357,15 @@ func (o *Results) HasServiceDdosRequestsDetected() bool { return false } -// SetServiceDdosRequestsDetected gets a reference to the given int32 and assigns it to the ServiceDdosRequestsDetected field. -func (o *Results) SetServiceDdosRequestsDetected(v int32) { +// SetServiceDdosRequestsDetected gets a reference to the given int64 and assigns it to the ServiceDdosRequestsDetected field. +func (o *Results) SetServiceDdosRequestsDetected(v int64) { o.ServiceDdosRequestsDetected = &v } // GetServiceDdosRequestsMitigated returns the ServiceDdosRequestsMitigated field value if set, zero value otherwise. -func (o *Results) GetServiceDdosRequestsMitigated() int32 { +func (o *Results) GetServiceDdosRequestsMitigated() int64 { if o == nil || o.ServiceDdosRequestsMitigated == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsMitigated @@ -8373,7 +8373,7 @@ func (o *Results) GetServiceDdosRequestsMitigated() int32 { // GetServiceDdosRequestsMitigatedOk returns a tuple with the ServiceDdosRequestsMitigated field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetServiceDdosRequestsMitigatedOk() (*int32, bool) { +func (o *Results) GetServiceDdosRequestsMitigatedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsMitigated == nil { return nil, false } @@ -8389,15 +8389,15 @@ func (o *Results) HasServiceDdosRequestsMitigated() bool { return false } -// SetServiceDdosRequestsMitigated gets a reference to the given int32 and assigns it to the ServiceDdosRequestsMitigated field. -func (o *Results) SetServiceDdosRequestsMitigated(v int32) { +// SetServiceDdosRequestsMitigated gets a reference to the given int64 and assigns it to the ServiceDdosRequestsMitigated field. +func (o *Results) SetServiceDdosRequestsMitigated(v int64) { o.ServiceDdosRequestsMitigated = &v } // GetServiceDdosRequestsAllowed returns the ServiceDdosRequestsAllowed field value if set, zero value otherwise. -func (o *Results) GetServiceDdosRequestsAllowed() int32 { +func (o *Results) GetServiceDdosRequestsAllowed() int64 { if o == nil || o.ServiceDdosRequestsAllowed == nil { - var ret int32 + var ret int64 return ret } return *o.ServiceDdosRequestsAllowed @@ -8405,7 +8405,7 @@ func (o *Results) GetServiceDdosRequestsAllowed() int32 { // GetServiceDdosRequestsAllowedOk returns a tuple with the ServiceDdosRequestsAllowed field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetServiceDdosRequestsAllowedOk() (*int32, bool) { +func (o *Results) GetServiceDdosRequestsAllowedOk() (*int64, bool) { if o == nil || o.ServiceDdosRequestsAllowed == nil { return nil, false } @@ -8421,8 +8421,8 @@ func (o *Results) HasServiceDdosRequestsAllowed() bool { return false } -// SetServiceDdosRequestsAllowed gets a reference to the given int32 and assigns it to the ServiceDdosRequestsAllowed field. -func (o *Results) SetServiceDdosRequestsAllowed(v int32) { +// SetServiceDdosRequestsAllowed gets a reference to the given int64 and assigns it to the ServiceDdosRequestsAllowed field. +func (o *Results) SetServiceDdosRequestsAllowed(v int64) { o.ServiceDdosRequestsAllowed = &v } @@ -8459,9 +8459,9 @@ func (o *Results) SetServiceID(v string) { } // GetStartTime returns the StartTime field value if set, zero value otherwise. -func (o *Results) GetStartTime() int32 { +func (o *Results) GetStartTime() int64 { if o == nil || o.StartTime == nil { - var ret int32 + var ret int64 return ret } return *o.StartTime @@ -8469,7 +8469,7 @@ func (o *Results) GetStartTime() int32 { // GetStartTimeOk returns a tuple with the StartTime field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Results) GetStartTimeOk() (*int32, bool) { +func (o *Results) GetStartTimeOk() (*int64, bool) { if o == nil || o.StartTime == nil { return nil, false } @@ -8485,8 +8485,8 @@ func (o *Results) HasStartTime() bool { return false } -// SetStartTime gets a reference to the given int32 and assigns it to the StartTime field. -func (o *Results) SetStartTime(v int32) { +// SetStartTime gets a reference to the given int64 and assigns it to the StartTime field. +func (o *Results) SetStartTime(v int64) { o.StartTime = &v } diff --git a/fastly/model_values.go b/fastly/model_values.go index 630031d..cd34fc5 100644 --- a/fastly/model_values.go +++ b/fastly/model_values.go @@ -19,129 +19,129 @@ import ( // Values The results of the query, optionally filtered and grouped over the requested timespan. type Values struct { // Number of requests sent by end users to Fastly. - EdgeRequests *int32 `json:"edge_requests,omitempty"` + EdgeRequests *int64 `json:"edge_requests,omitempty"` // Total header bytes delivered from Fastly to the end user. - EdgeRespHeaderBytes *int32 `json:"edge_resp_header_bytes,omitempty"` + EdgeRespHeaderBytes *int64 `json:"edge_resp_header_bytes,omitempty"` // Total body bytes delivered from Fastly to the end user. - EdgeRespBodyBytes *int32 `json:"edge_resp_body_bytes,omitempty"` + EdgeRespBodyBytes *int64 `json:"edge_resp_body_bytes,omitempty"` // Number of 1xx \"Informational\" category status codes delivered. - Status1xx *int32 `json:"status_1xx,omitempty"` + Status1xx *int64 `json:"status_1xx,omitempty"` // Number of 2xx \"Success\" status codes delivered. - Status2xx *int32 `json:"status_2xx,omitempty"` + Status2xx *int64 `json:"status_2xx,omitempty"` // Number of 3xx \"Redirection\" codes delivered. - Status3xx *int32 `json:"status_3xx,omitempty"` + Status3xx *int64 `json:"status_3xx,omitempty"` // Number of 4xx \"Client Error\" codes delivered. - Status4xx *int32 `json:"status_4xx,omitempty"` + Status4xx *int64 `json:"status_4xx,omitempty"` // Number of 5xx \"Server Error\" codes delivered. - Status5xx *int32 `json:"status_5xx,omitempty"` + Status5xx *int64 `json:"status_5xx,omitempty"` // Number of responses delivered with status code 200 (Success). - Status200 *int32 `json:"status_200,omitempty"` + Status200 *int64 `json:"status_200,omitempty"` // Number of responses delivered with status code 204 (No Content). - Status204 *int32 `json:"status_204,omitempty"` + Status204 *int64 `json:"status_204,omitempty"` // Number of responses delivered with status code 206 (Partial Content). - Status206 *int32 `json:"status_206,omitempty"` + Status206 *int64 `json:"status_206,omitempty"` // Number of responses delivered with status code 301 (Moved Permanently). - Status301 *int32 `json:"status_301,omitempty"` + Status301 *int64 `json:"status_301,omitempty"` // Number of responses delivered with status code 302 (Found). - Status302 *int32 `json:"status_302,omitempty"` + Status302 *int64 `json:"status_302,omitempty"` // Number of responses delivered with status code 304 (Not Modified). - Status304 *int32 `json:"status_304,omitempty"` + Status304 *int64 `json:"status_304,omitempty"` // Number of responses delivered with status code 400 (Bad Request). - Status400 *int32 `json:"status_400,omitempty"` + Status400 *int64 `json:"status_400,omitempty"` // Number of responses delivered with status code 401 (Unauthorized). - Status401 *int32 `json:"status_401,omitempty"` + Status401 *int64 `json:"status_401,omitempty"` // Number of responses delivered with status code 403 (Forbidden). - Status403 *int32 `json:"status_403,omitempty"` + Status403 *int64 `json:"status_403,omitempty"` // Number of responses delivered with status code 404 (Not Found). - Status404 *int32 `json:"status_404,omitempty"` + Status404 *int64 `json:"status_404,omitempty"` // Number of responses delivered with status code 416 (Range Not Satisfiable). - Status416 *int32 `json:"status_416,omitempty"` + Status416 *int64 `json:"status_416,omitempty"` // Number of responses delivered with status code 429 (Too Many Requests). - Status429 *int32 `json:"status_429,omitempty"` + Status429 *int64 `json:"status_429,omitempty"` // Number of responses delivered with status code 500 (Internal Server Error). - Status500 *int32 `json:"status_500,omitempty"` + Status500 *int64 `json:"status_500,omitempty"` // Number of responses delivered with status code 501 (Not Implemented). - Status501 *int32 `json:"status_501,omitempty"` + Status501 *int64 `json:"status_501,omitempty"` // Number of responses delivered with status code 502 (Bad Gateway). - Status502 *int32 `json:"status_502,omitempty"` + Status502 *int64 `json:"status_502,omitempty"` // Number of responses delivered with status code 503 (Service Unavailable). - Status503 *int32 `json:"status_503,omitempty"` + Status503 *int64 `json:"status_503,omitempty"` // Number of responses delivered with status code 504 (Gateway Timeout). - Status504 *int32 `json:"status_504,omitempty"` + Status504 *int64 `json:"status_504,omitempty"` // Number of responses delivered with status code 505 (HTTP Version Not Supported). - Status505 *int32 `json:"status_505,omitempty"` + Status505 *int64 `json:"status_505,omitempty"` // Number of requests processed. - Requests *int32 `json:"requests,omitempty"` + Requests *int64 `json:"requests,omitempty"` // Total header bytes delivered. - RespHeaderBytes *int32 `json:"resp_header_bytes,omitempty"` + RespHeaderBytes *int64 `json:"resp_header_bytes,omitempty"` // Total body bytes delivered. - RespBodyBytes *int32 `json:"resp_body_bytes,omitempty"` + RespBodyBytes *int64 `json:"resp_body_bytes,omitempty"` // Total header bytes sent to origin. - BereqHeaderBytes *int32 `json:"bereq_header_bytes,omitempty"` + BereqHeaderBytes *int64 `json:"bereq_header_bytes,omitempty"` // Total body bytes sent to origin. - BereqBodyBytes *int32 `json:"bereq_body_bytes,omitempty"` + BereqBodyBytes *int64 `json:"bereq_body_bytes,omitempty"` // Number of requests sent by end users to Fastly that resulted in a hit at the edge. - EdgeHitRequests *int32 `json:"edge_hit_requests,omitempty"` + EdgeHitRequests *int64 `json:"edge_hit_requests,omitempty"` // Number of requests sent by end users to Fastly that resulted in a miss at the edge. - EdgeMissRequests *int32 `json:"edge_miss_requests,omitempty"` + EdgeMissRequests *int64 `json:"edge_miss_requests,omitempty"` // Number of requests sent to origin. - OriginFetches *int32 `json:"origin_fetches,omitempty"` + OriginFetches *int64 `json:"origin_fetches,omitempty"` // Total header bytes received from origin. - OriginFetchRespHeaderBytes *int32 `json:"origin_fetch_resp_header_bytes,omitempty"` + OriginFetchRespHeaderBytes *int64 `json:"origin_fetch_resp_header_bytes,omitempty"` // Total body bytes received from origin. - OriginFetchRespBodyBytes *int32 `json:"origin_fetch_resp_body_bytes,omitempty"` + OriginFetchRespBodyBytes *int64 `json:"origin_fetch_resp_body_bytes,omitempty"` // Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes`). - Bandwidth *int32 `json:"bandwidth,omitempty"` + Bandwidth *int64 `json:"bandwidth,omitempty"` // Ratio of cache hits to cache misses at the edge, between 0 and 1 (`edge_hit_requests` / (`edge_hit_requests` + `edge_miss_requests`)). EdgeHitRatio *float32 `json:"edge_hit_ratio,omitempty"` // Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). Previously, Origin Offload used a different formula. [Learn more](https://www.fastly.com/documentation/reference/changes/2024/06/add-origin_offload-metric). OriginOffload *float32 `json:"origin_offload,omitempty"` // Number of responses received from origin with status code 200 (Success). - OriginStatus200 *int32 `json:"origin_status_200,omitempty"` + OriginStatus200 *int64 `json:"origin_status_200,omitempty"` // Number of responses received from origin with status code 204 (No Content). - OriginStatus204 *int32 `json:"origin_status_204,omitempty"` + OriginStatus204 *int64 `json:"origin_status_204,omitempty"` // Number of responses received from origin with status code 206 (Partial Content). - OriginStatus206 *int32 `json:"origin_status_206,omitempty"` + OriginStatus206 *int64 `json:"origin_status_206,omitempty"` // Number of responses received from origin with status code 301 (Moved Permanently). - OriginStatus301 *int32 `json:"origin_status_301,omitempty"` + OriginStatus301 *int64 `json:"origin_status_301,omitempty"` // Number of responses received from origin with status code 302 (Found). - OriginStatus302 *int32 `json:"origin_status_302,omitempty"` + OriginStatus302 *int64 `json:"origin_status_302,omitempty"` // Number of responses received from origin with status code 304 (Not Modified). - OriginStatus304 *int32 `json:"origin_status_304,omitempty"` + OriginStatus304 *int64 `json:"origin_status_304,omitempty"` // Number of responses received from origin with status code 400 (Bad Request). - OriginStatus400 *int32 `json:"origin_status_400,omitempty"` + OriginStatus400 *int64 `json:"origin_status_400,omitempty"` // Number of responses received from origin with status code 401 (Unauthorized). - OriginStatus401 *int32 `json:"origin_status_401,omitempty"` + OriginStatus401 *int64 `json:"origin_status_401,omitempty"` // Number of responses received from origin with status code 403 (Forbidden). - OriginStatus403 *int32 `json:"origin_status_403,omitempty"` + OriginStatus403 *int64 `json:"origin_status_403,omitempty"` // Number of responses received from origin with status code 404 (Not Found). - OriginStatus404 *int32 `json:"origin_status_404,omitempty"` + OriginStatus404 *int64 `json:"origin_status_404,omitempty"` // Number of responses received from origin with status code 416 (Range Not Satisfiable). - OriginStatus416 *int32 `json:"origin_status_416,omitempty"` + OriginStatus416 *int64 `json:"origin_status_416,omitempty"` // Number of responses received from origin with status code 429 (Too Many Requests). - OriginStatus429 *int32 `json:"origin_status_429,omitempty"` + OriginStatus429 *int64 `json:"origin_status_429,omitempty"` // Number of responses received from origin with status code 500 (Internal Server Error). - OriginStatus500 *int32 `json:"origin_status_500,omitempty"` + OriginStatus500 *int64 `json:"origin_status_500,omitempty"` // Number of responses received from origin with status code 501 (Not Implemented). - OriginStatus501 *int32 `json:"origin_status_501,omitempty"` + OriginStatus501 *int64 `json:"origin_status_501,omitempty"` // Number of responses received from origin with status code 502 (Bad Gateway). - OriginStatus502 *int32 `json:"origin_status_502,omitempty"` + OriginStatus502 *int64 `json:"origin_status_502,omitempty"` // Number of responses received from origin with status code 503 (Service Unavailable). - OriginStatus503 *int32 `json:"origin_status_503,omitempty"` + OriginStatus503 *int64 `json:"origin_status_503,omitempty"` // Number of responses received from origin with status code 504 (Gateway Timeout). - OriginStatus504 *int32 `json:"origin_status_504,omitempty"` + OriginStatus504 *int64 `json:"origin_status_504,omitempty"` // Number of responses received from origin with status code 505 (HTTP Version Not Supported). - OriginStatus505 *int32 `json:"origin_status_505,omitempty"` + OriginStatus505 *int64 `json:"origin_status_505,omitempty"` // Number of \"Informational\" category status codes received from origin. - OriginStatus1xx *int32 `json:"origin_status_1xx,omitempty"` + OriginStatus1xx *int64 `json:"origin_status_1xx,omitempty"` // Number of \"Success\" status codes received from origin. - OriginStatus2xx *int32 `json:"origin_status_2xx,omitempty"` + OriginStatus2xx *int64 `json:"origin_status_2xx,omitempty"` // Number of \"Redirection\" codes received from origin. - OriginStatus3xx *int32 `json:"origin_status_3xx,omitempty"` + OriginStatus3xx *int64 `json:"origin_status_3xx,omitempty"` // Number of \"Client Error\" codes received from origin. - OriginStatus4xx *int32 `json:"origin_status_4xx,omitempty"` + OriginStatus4xx *int64 `json:"origin_status_4xx,omitempty"` // Number of \"Server Error\" codes received from origin. - OriginStatus5xx *int32 `json:"origin_status_5xx,omitempty"` + OriginStatus5xx *int64 `json:"origin_status_5xx,omitempty"` AdditionalProperties map[string]any } @@ -165,9 +165,9 @@ func NewValuesWithDefaults() *Values { } // GetEdgeRequests returns the EdgeRequests field value if set, zero value otherwise. -func (o *Values) GetEdgeRequests() int32 { +func (o *Values) GetEdgeRequests() int64 { if o == nil || o.EdgeRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRequests @@ -175,7 +175,7 @@ func (o *Values) GetEdgeRequests() int32 { // GetEdgeRequestsOk returns a tuple with the EdgeRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetEdgeRequestsOk() (*int32, bool) { +func (o *Values) GetEdgeRequestsOk() (*int64, bool) { if o == nil || o.EdgeRequests == nil { return nil, false } @@ -191,15 +191,15 @@ func (o *Values) HasEdgeRequests() bool { return false } -// SetEdgeRequests gets a reference to the given int32 and assigns it to the EdgeRequests field. -func (o *Values) SetEdgeRequests(v int32) { +// SetEdgeRequests gets a reference to the given int64 and assigns it to the EdgeRequests field. +func (o *Values) SetEdgeRequests(v int64) { o.EdgeRequests = &v } // GetEdgeRespHeaderBytes returns the EdgeRespHeaderBytes field value if set, zero value otherwise. -func (o *Values) GetEdgeRespHeaderBytes() int32 { +func (o *Values) GetEdgeRespHeaderBytes() int64 { if o == nil || o.EdgeRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespHeaderBytes @@ -207,7 +207,7 @@ func (o *Values) GetEdgeRespHeaderBytes() int32 { // GetEdgeRespHeaderBytesOk returns a tuple with the EdgeRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetEdgeRespHeaderBytesOk() (*int32, bool) { +func (o *Values) GetEdgeRespHeaderBytesOk() (*int64, bool) { if o == nil || o.EdgeRespHeaderBytes == nil { return nil, false } @@ -223,15 +223,15 @@ func (o *Values) HasEdgeRespHeaderBytes() bool { return false } -// SetEdgeRespHeaderBytes gets a reference to the given int32 and assigns it to the EdgeRespHeaderBytes field. -func (o *Values) SetEdgeRespHeaderBytes(v int32) { +// SetEdgeRespHeaderBytes gets a reference to the given int64 and assigns it to the EdgeRespHeaderBytes field. +func (o *Values) SetEdgeRespHeaderBytes(v int64) { o.EdgeRespHeaderBytes = &v } // GetEdgeRespBodyBytes returns the EdgeRespBodyBytes field value if set, zero value otherwise. -func (o *Values) GetEdgeRespBodyBytes() int32 { +func (o *Values) GetEdgeRespBodyBytes() int64 { if o == nil || o.EdgeRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeRespBodyBytes @@ -239,7 +239,7 @@ func (o *Values) GetEdgeRespBodyBytes() int32 { // GetEdgeRespBodyBytesOk returns a tuple with the EdgeRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetEdgeRespBodyBytesOk() (*int32, bool) { +func (o *Values) GetEdgeRespBodyBytesOk() (*int64, bool) { if o == nil || o.EdgeRespBodyBytes == nil { return nil, false } @@ -255,15 +255,15 @@ func (o *Values) HasEdgeRespBodyBytes() bool { return false } -// SetEdgeRespBodyBytes gets a reference to the given int32 and assigns it to the EdgeRespBodyBytes field. -func (o *Values) SetEdgeRespBodyBytes(v int32) { +// SetEdgeRespBodyBytes gets a reference to the given int64 and assigns it to the EdgeRespBodyBytes field. +func (o *Values) SetEdgeRespBodyBytes(v int64) { o.EdgeRespBodyBytes = &v } // GetStatus1xx returns the Status1xx field value if set, zero value otherwise. -func (o *Values) GetStatus1xx() int32 { +func (o *Values) GetStatus1xx() int64 { if o == nil || o.Status1xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status1xx @@ -271,7 +271,7 @@ func (o *Values) GetStatus1xx() int32 { // GetStatus1xxOk returns a tuple with the Status1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus1xxOk() (*int32, bool) { +func (o *Values) GetStatus1xxOk() (*int64, bool) { if o == nil || o.Status1xx == nil { return nil, false } @@ -287,15 +287,15 @@ func (o *Values) HasStatus1xx() bool { return false } -// SetStatus1xx gets a reference to the given int32 and assigns it to the Status1xx field. -func (o *Values) SetStatus1xx(v int32) { +// SetStatus1xx gets a reference to the given int64 and assigns it to the Status1xx field. +func (o *Values) SetStatus1xx(v int64) { o.Status1xx = &v } // GetStatus2xx returns the Status2xx field value if set, zero value otherwise. -func (o *Values) GetStatus2xx() int32 { +func (o *Values) GetStatus2xx() int64 { if o == nil || o.Status2xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status2xx @@ -303,7 +303,7 @@ func (o *Values) GetStatus2xx() int32 { // GetStatus2xxOk returns a tuple with the Status2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus2xxOk() (*int32, bool) { +func (o *Values) GetStatus2xxOk() (*int64, bool) { if o == nil || o.Status2xx == nil { return nil, false } @@ -319,15 +319,15 @@ func (o *Values) HasStatus2xx() bool { return false } -// SetStatus2xx gets a reference to the given int32 and assigns it to the Status2xx field. -func (o *Values) SetStatus2xx(v int32) { +// SetStatus2xx gets a reference to the given int64 and assigns it to the Status2xx field. +func (o *Values) SetStatus2xx(v int64) { o.Status2xx = &v } // GetStatus3xx returns the Status3xx field value if set, zero value otherwise. -func (o *Values) GetStatus3xx() int32 { +func (o *Values) GetStatus3xx() int64 { if o == nil || o.Status3xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status3xx @@ -335,7 +335,7 @@ func (o *Values) GetStatus3xx() int32 { // GetStatus3xxOk returns a tuple with the Status3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus3xxOk() (*int32, bool) { +func (o *Values) GetStatus3xxOk() (*int64, bool) { if o == nil || o.Status3xx == nil { return nil, false } @@ -351,15 +351,15 @@ func (o *Values) HasStatus3xx() bool { return false } -// SetStatus3xx gets a reference to the given int32 and assigns it to the Status3xx field. -func (o *Values) SetStatus3xx(v int32) { +// SetStatus3xx gets a reference to the given int64 and assigns it to the Status3xx field. +func (o *Values) SetStatus3xx(v int64) { o.Status3xx = &v } // GetStatus4xx returns the Status4xx field value if set, zero value otherwise. -func (o *Values) GetStatus4xx() int32 { +func (o *Values) GetStatus4xx() int64 { if o == nil || o.Status4xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status4xx @@ -367,7 +367,7 @@ func (o *Values) GetStatus4xx() int32 { // GetStatus4xxOk returns a tuple with the Status4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus4xxOk() (*int32, bool) { +func (o *Values) GetStatus4xxOk() (*int64, bool) { if o == nil || o.Status4xx == nil { return nil, false } @@ -383,15 +383,15 @@ func (o *Values) HasStatus4xx() bool { return false } -// SetStatus4xx gets a reference to the given int32 and assigns it to the Status4xx field. -func (o *Values) SetStatus4xx(v int32) { +// SetStatus4xx gets a reference to the given int64 and assigns it to the Status4xx field. +func (o *Values) SetStatus4xx(v int64) { o.Status4xx = &v } // GetStatus5xx returns the Status5xx field value if set, zero value otherwise. -func (o *Values) GetStatus5xx() int32 { +func (o *Values) GetStatus5xx() int64 { if o == nil || o.Status5xx == nil { - var ret int32 + var ret int64 return ret } return *o.Status5xx @@ -399,7 +399,7 @@ func (o *Values) GetStatus5xx() int32 { // GetStatus5xxOk returns a tuple with the Status5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus5xxOk() (*int32, bool) { +func (o *Values) GetStatus5xxOk() (*int64, bool) { if o == nil || o.Status5xx == nil { return nil, false } @@ -415,15 +415,15 @@ func (o *Values) HasStatus5xx() bool { return false } -// SetStatus5xx gets a reference to the given int32 and assigns it to the Status5xx field. -func (o *Values) SetStatus5xx(v int32) { +// SetStatus5xx gets a reference to the given int64 and assigns it to the Status5xx field. +func (o *Values) SetStatus5xx(v int64) { o.Status5xx = &v } // GetStatus200 returns the Status200 field value if set, zero value otherwise. -func (o *Values) GetStatus200() int32 { +func (o *Values) GetStatus200() int64 { if o == nil || o.Status200 == nil { - var ret int32 + var ret int64 return ret } return *o.Status200 @@ -431,7 +431,7 @@ func (o *Values) GetStatus200() int32 { // GetStatus200Ok returns a tuple with the Status200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus200Ok() (*int32, bool) { +func (o *Values) GetStatus200Ok() (*int64, bool) { if o == nil || o.Status200 == nil { return nil, false } @@ -447,15 +447,15 @@ func (o *Values) HasStatus200() bool { return false } -// SetStatus200 gets a reference to the given int32 and assigns it to the Status200 field. -func (o *Values) SetStatus200(v int32) { +// SetStatus200 gets a reference to the given int64 and assigns it to the Status200 field. +func (o *Values) SetStatus200(v int64) { o.Status200 = &v } // GetStatus204 returns the Status204 field value if set, zero value otherwise. -func (o *Values) GetStatus204() int32 { +func (o *Values) GetStatus204() int64 { if o == nil || o.Status204 == nil { - var ret int32 + var ret int64 return ret } return *o.Status204 @@ -463,7 +463,7 @@ func (o *Values) GetStatus204() int32 { // GetStatus204Ok returns a tuple with the Status204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus204Ok() (*int32, bool) { +func (o *Values) GetStatus204Ok() (*int64, bool) { if o == nil || o.Status204 == nil { return nil, false } @@ -479,15 +479,15 @@ func (o *Values) HasStatus204() bool { return false } -// SetStatus204 gets a reference to the given int32 and assigns it to the Status204 field. -func (o *Values) SetStatus204(v int32) { +// SetStatus204 gets a reference to the given int64 and assigns it to the Status204 field. +func (o *Values) SetStatus204(v int64) { o.Status204 = &v } // GetStatus206 returns the Status206 field value if set, zero value otherwise. -func (o *Values) GetStatus206() int32 { +func (o *Values) GetStatus206() int64 { if o == nil || o.Status206 == nil { - var ret int32 + var ret int64 return ret } return *o.Status206 @@ -495,7 +495,7 @@ func (o *Values) GetStatus206() int32 { // GetStatus206Ok returns a tuple with the Status206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus206Ok() (*int32, bool) { +func (o *Values) GetStatus206Ok() (*int64, bool) { if o == nil || o.Status206 == nil { return nil, false } @@ -511,15 +511,15 @@ func (o *Values) HasStatus206() bool { return false } -// SetStatus206 gets a reference to the given int32 and assigns it to the Status206 field. -func (o *Values) SetStatus206(v int32) { +// SetStatus206 gets a reference to the given int64 and assigns it to the Status206 field. +func (o *Values) SetStatus206(v int64) { o.Status206 = &v } // GetStatus301 returns the Status301 field value if set, zero value otherwise. -func (o *Values) GetStatus301() int32 { +func (o *Values) GetStatus301() int64 { if o == nil || o.Status301 == nil { - var ret int32 + var ret int64 return ret } return *o.Status301 @@ -527,7 +527,7 @@ func (o *Values) GetStatus301() int32 { // GetStatus301Ok returns a tuple with the Status301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus301Ok() (*int32, bool) { +func (o *Values) GetStatus301Ok() (*int64, bool) { if o == nil || o.Status301 == nil { return nil, false } @@ -543,15 +543,15 @@ func (o *Values) HasStatus301() bool { return false } -// SetStatus301 gets a reference to the given int32 and assigns it to the Status301 field. -func (o *Values) SetStatus301(v int32) { +// SetStatus301 gets a reference to the given int64 and assigns it to the Status301 field. +func (o *Values) SetStatus301(v int64) { o.Status301 = &v } // GetStatus302 returns the Status302 field value if set, zero value otherwise. -func (o *Values) GetStatus302() int32 { +func (o *Values) GetStatus302() int64 { if o == nil || o.Status302 == nil { - var ret int32 + var ret int64 return ret } return *o.Status302 @@ -559,7 +559,7 @@ func (o *Values) GetStatus302() int32 { // GetStatus302Ok returns a tuple with the Status302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus302Ok() (*int32, bool) { +func (o *Values) GetStatus302Ok() (*int64, bool) { if o == nil || o.Status302 == nil { return nil, false } @@ -575,15 +575,15 @@ func (o *Values) HasStatus302() bool { return false } -// SetStatus302 gets a reference to the given int32 and assigns it to the Status302 field. -func (o *Values) SetStatus302(v int32) { +// SetStatus302 gets a reference to the given int64 and assigns it to the Status302 field. +func (o *Values) SetStatus302(v int64) { o.Status302 = &v } // GetStatus304 returns the Status304 field value if set, zero value otherwise. -func (o *Values) GetStatus304() int32 { +func (o *Values) GetStatus304() int64 { if o == nil || o.Status304 == nil { - var ret int32 + var ret int64 return ret } return *o.Status304 @@ -591,7 +591,7 @@ func (o *Values) GetStatus304() int32 { // GetStatus304Ok returns a tuple with the Status304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus304Ok() (*int32, bool) { +func (o *Values) GetStatus304Ok() (*int64, bool) { if o == nil || o.Status304 == nil { return nil, false } @@ -607,15 +607,15 @@ func (o *Values) HasStatus304() bool { return false } -// SetStatus304 gets a reference to the given int32 and assigns it to the Status304 field. -func (o *Values) SetStatus304(v int32) { +// SetStatus304 gets a reference to the given int64 and assigns it to the Status304 field. +func (o *Values) SetStatus304(v int64) { o.Status304 = &v } // GetStatus400 returns the Status400 field value if set, zero value otherwise. -func (o *Values) GetStatus400() int32 { +func (o *Values) GetStatus400() int64 { if o == nil || o.Status400 == nil { - var ret int32 + var ret int64 return ret } return *o.Status400 @@ -623,7 +623,7 @@ func (o *Values) GetStatus400() int32 { // GetStatus400Ok returns a tuple with the Status400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus400Ok() (*int32, bool) { +func (o *Values) GetStatus400Ok() (*int64, bool) { if o == nil || o.Status400 == nil { return nil, false } @@ -639,15 +639,15 @@ func (o *Values) HasStatus400() bool { return false } -// SetStatus400 gets a reference to the given int32 and assigns it to the Status400 field. -func (o *Values) SetStatus400(v int32) { +// SetStatus400 gets a reference to the given int64 and assigns it to the Status400 field. +func (o *Values) SetStatus400(v int64) { o.Status400 = &v } // GetStatus401 returns the Status401 field value if set, zero value otherwise. -func (o *Values) GetStatus401() int32 { +func (o *Values) GetStatus401() int64 { if o == nil || o.Status401 == nil { - var ret int32 + var ret int64 return ret } return *o.Status401 @@ -655,7 +655,7 @@ func (o *Values) GetStatus401() int32 { // GetStatus401Ok returns a tuple with the Status401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus401Ok() (*int32, bool) { +func (o *Values) GetStatus401Ok() (*int64, bool) { if o == nil || o.Status401 == nil { return nil, false } @@ -671,15 +671,15 @@ func (o *Values) HasStatus401() bool { return false } -// SetStatus401 gets a reference to the given int32 and assigns it to the Status401 field. -func (o *Values) SetStatus401(v int32) { +// SetStatus401 gets a reference to the given int64 and assigns it to the Status401 field. +func (o *Values) SetStatus401(v int64) { o.Status401 = &v } // GetStatus403 returns the Status403 field value if set, zero value otherwise. -func (o *Values) GetStatus403() int32 { +func (o *Values) GetStatus403() int64 { if o == nil || o.Status403 == nil { - var ret int32 + var ret int64 return ret } return *o.Status403 @@ -687,7 +687,7 @@ func (o *Values) GetStatus403() int32 { // GetStatus403Ok returns a tuple with the Status403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus403Ok() (*int32, bool) { +func (o *Values) GetStatus403Ok() (*int64, bool) { if o == nil || o.Status403 == nil { return nil, false } @@ -703,15 +703,15 @@ func (o *Values) HasStatus403() bool { return false } -// SetStatus403 gets a reference to the given int32 and assigns it to the Status403 field. -func (o *Values) SetStatus403(v int32) { +// SetStatus403 gets a reference to the given int64 and assigns it to the Status403 field. +func (o *Values) SetStatus403(v int64) { o.Status403 = &v } // GetStatus404 returns the Status404 field value if set, zero value otherwise. -func (o *Values) GetStatus404() int32 { +func (o *Values) GetStatus404() int64 { if o == nil || o.Status404 == nil { - var ret int32 + var ret int64 return ret } return *o.Status404 @@ -719,7 +719,7 @@ func (o *Values) GetStatus404() int32 { // GetStatus404Ok returns a tuple with the Status404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus404Ok() (*int32, bool) { +func (o *Values) GetStatus404Ok() (*int64, bool) { if o == nil || o.Status404 == nil { return nil, false } @@ -735,15 +735,15 @@ func (o *Values) HasStatus404() bool { return false } -// SetStatus404 gets a reference to the given int32 and assigns it to the Status404 field. -func (o *Values) SetStatus404(v int32) { +// SetStatus404 gets a reference to the given int64 and assigns it to the Status404 field. +func (o *Values) SetStatus404(v int64) { o.Status404 = &v } // GetStatus416 returns the Status416 field value if set, zero value otherwise. -func (o *Values) GetStatus416() int32 { +func (o *Values) GetStatus416() int64 { if o == nil || o.Status416 == nil { - var ret int32 + var ret int64 return ret } return *o.Status416 @@ -751,7 +751,7 @@ func (o *Values) GetStatus416() int32 { // GetStatus416Ok returns a tuple with the Status416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus416Ok() (*int32, bool) { +func (o *Values) GetStatus416Ok() (*int64, bool) { if o == nil || o.Status416 == nil { return nil, false } @@ -767,15 +767,15 @@ func (o *Values) HasStatus416() bool { return false } -// SetStatus416 gets a reference to the given int32 and assigns it to the Status416 field. -func (o *Values) SetStatus416(v int32) { +// SetStatus416 gets a reference to the given int64 and assigns it to the Status416 field. +func (o *Values) SetStatus416(v int64) { o.Status416 = &v } // GetStatus429 returns the Status429 field value if set, zero value otherwise. -func (o *Values) GetStatus429() int32 { +func (o *Values) GetStatus429() int64 { if o == nil || o.Status429 == nil { - var ret int32 + var ret int64 return ret } return *o.Status429 @@ -783,7 +783,7 @@ func (o *Values) GetStatus429() int32 { // GetStatus429Ok returns a tuple with the Status429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus429Ok() (*int32, bool) { +func (o *Values) GetStatus429Ok() (*int64, bool) { if o == nil || o.Status429 == nil { return nil, false } @@ -799,15 +799,15 @@ func (o *Values) HasStatus429() bool { return false } -// SetStatus429 gets a reference to the given int32 and assigns it to the Status429 field. -func (o *Values) SetStatus429(v int32) { +// SetStatus429 gets a reference to the given int64 and assigns it to the Status429 field. +func (o *Values) SetStatus429(v int64) { o.Status429 = &v } // GetStatus500 returns the Status500 field value if set, zero value otherwise. -func (o *Values) GetStatus500() int32 { +func (o *Values) GetStatus500() int64 { if o == nil || o.Status500 == nil { - var ret int32 + var ret int64 return ret } return *o.Status500 @@ -815,7 +815,7 @@ func (o *Values) GetStatus500() int32 { // GetStatus500Ok returns a tuple with the Status500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus500Ok() (*int32, bool) { +func (o *Values) GetStatus500Ok() (*int64, bool) { if o == nil || o.Status500 == nil { return nil, false } @@ -831,15 +831,15 @@ func (o *Values) HasStatus500() bool { return false } -// SetStatus500 gets a reference to the given int32 and assigns it to the Status500 field. -func (o *Values) SetStatus500(v int32) { +// SetStatus500 gets a reference to the given int64 and assigns it to the Status500 field. +func (o *Values) SetStatus500(v int64) { o.Status500 = &v } // GetStatus501 returns the Status501 field value if set, zero value otherwise. -func (o *Values) GetStatus501() int32 { +func (o *Values) GetStatus501() int64 { if o == nil || o.Status501 == nil { - var ret int32 + var ret int64 return ret } return *o.Status501 @@ -847,7 +847,7 @@ func (o *Values) GetStatus501() int32 { // GetStatus501Ok returns a tuple with the Status501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus501Ok() (*int32, bool) { +func (o *Values) GetStatus501Ok() (*int64, bool) { if o == nil || o.Status501 == nil { return nil, false } @@ -863,15 +863,15 @@ func (o *Values) HasStatus501() bool { return false } -// SetStatus501 gets a reference to the given int32 and assigns it to the Status501 field. -func (o *Values) SetStatus501(v int32) { +// SetStatus501 gets a reference to the given int64 and assigns it to the Status501 field. +func (o *Values) SetStatus501(v int64) { o.Status501 = &v } // GetStatus502 returns the Status502 field value if set, zero value otherwise. -func (o *Values) GetStatus502() int32 { +func (o *Values) GetStatus502() int64 { if o == nil || o.Status502 == nil { - var ret int32 + var ret int64 return ret } return *o.Status502 @@ -879,7 +879,7 @@ func (o *Values) GetStatus502() int32 { // GetStatus502Ok returns a tuple with the Status502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus502Ok() (*int32, bool) { +func (o *Values) GetStatus502Ok() (*int64, bool) { if o == nil || o.Status502 == nil { return nil, false } @@ -895,15 +895,15 @@ func (o *Values) HasStatus502() bool { return false } -// SetStatus502 gets a reference to the given int32 and assigns it to the Status502 field. -func (o *Values) SetStatus502(v int32) { +// SetStatus502 gets a reference to the given int64 and assigns it to the Status502 field. +func (o *Values) SetStatus502(v int64) { o.Status502 = &v } // GetStatus503 returns the Status503 field value if set, zero value otherwise. -func (o *Values) GetStatus503() int32 { +func (o *Values) GetStatus503() int64 { if o == nil || o.Status503 == nil { - var ret int32 + var ret int64 return ret } return *o.Status503 @@ -911,7 +911,7 @@ func (o *Values) GetStatus503() int32 { // GetStatus503Ok returns a tuple with the Status503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus503Ok() (*int32, bool) { +func (o *Values) GetStatus503Ok() (*int64, bool) { if o == nil || o.Status503 == nil { return nil, false } @@ -927,15 +927,15 @@ func (o *Values) HasStatus503() bool { return false } -// SetStatus503 gets a reference to the given int32 and assigns it to the Status503 field. -func (o *Values) SetStatus503(v int32) { +// SetStatus503 gets a reference to the given int64 and assigns it to the Status503 field. +func (o *Values) SetStatus503(v int64) { o.Status503 = &v } // GetStatus504 returns the Status504 field value if set, zero value otherwise. -func (o *Values) GetStatus504() int32 { +func (o *Values) GetStatus504() int64 { if o == nil || o.Status504 == nil { - var ret int32 + var ret int64 return ret } return *o.Status504 @@ -943,7 +943,7 @@ func (o *Values) GetStatus504() int32 { // GetStatus504Ok returns a tuple with the Status504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus504Ok() (*int32, bool) { +func (o *Values) GetStatus504Ok() (*int64, bool) { if o == nil || o.Status504 == nil { return nil, false } @@ -959,15 +959,15 @@ func (o *Values) HasStatus504() bool { return false } -// SetStatus504 gets a reference to the given int32 and assigns it to the Status504 field. -func (o *Values) SetStatus504(v int32) { +// SetStatus504 gets a reference to the given int64 and assigns it to the Status504 field. +func (o *Values) SetStatus504(v int64) { o.Status504 = &v } // GetStatus505 returns the Status505 field value if set, zero value otherwise. -func (o *Values) GetStatus505() int32 { +func (o *Values) GetStatus505() int64 { if o == nil || o.Status505 == nil { - var ret int32 + var ret int64 return ret } return *o.Status505 @@ -975,7 +975,7 @@ func (o *Values) GetStatus505() int32 { // GetStatus505Ok returns a tuple with the Status505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetStatus505Ok() (*int32, bool) { +func (o *Values) GetStatus505Ok() (*int64, bool) { if o == nil || o.Status505 == nil { return nil, false } @@ -991,15 +991,15 @@ func (o *Values) HasStatus505() bool { return false } -// SetStatus505 gets a reference to the given int32 and assigns it to the Status505 field. -func (o *Values) SetStatus505(v int32) { +// SetStatus505 gets a reference to the given int64 and assigns it to the Status505 field. +func (o *Values) SetStatus505(v int64) { o.Status505 = &v } // GetRequests returns the Requests field value if set, zero value otherwise. -func (o *Values) GetRequests() int32 { +func (o *Values) GetRequests() int64 { if o == nil || o.Requests == nil { - var ret int32 + var ret int64 return ret } return *o.Requests @@ -1007,7 +1007,7 @@ func (o *Values) GetRequests() int32 { // GetRequestsOk returns a tuple with the Requests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetRequestsOk() (*int32, bool) { +func (o *Values) GetRequestsOk() (*int64, bool) { if o == nil || o.Requests == nil { return nil, false } @@ -1023,15 +1023,15 @@ func (o *Values) HasRequests() bool { return false } -// SetRequests gets a reference to the given int32 and assigns it to the Requests field. -func (o *Values) SetRequests(v int32) { +// SetRequests gets a reference to the given int64 and assigns it to the Requests field. +func (o *Values) SetRequests(v int64) { o.Requests = &v } // GetRespHeaderBytes returns the RespHeaderBytes field value if set, zero value otherwise. -func (o *Values) GetRespHeaderBytes() int32 { +func (o *Values) GetRespHeaderBytes() int64 { if o == nil || o.RespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespHeaderBytes @@ -1039,7 +1039,7 @@ func (o *Values) GetRespHeaderBytes() int32 { // GetRespHeaderBytesOk returns a tuple with the RespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetRespHeaderBytesOk() (*int32, bool) { +func (o *Values) GetRespHeaderBytesOk() (*int64, bool) { if o == nil || o.RespHeaderBytes == nil { return nil, false } @@ -1055,15 +1055,15 @@ func (o *Values) HasRespHeaderBytes() bool { return false } -// SetRespHeaderBytes gets a reference to the given int32 and assigns it to the RespHeaderBytes field. -func (o *Values) SetRespHeaderBytes(v int32) { +// SetRespHeaderBytes gets a reference to the given int64 and assigns it to the RespHeaderBytes field. +func (o *Values) SetRespHeaderBytes(v int64) { o.RespHeaderBytes = &v } // GetRespBodyBytes returns the RespBodyBytes field value if set, zero value otherwise. -func (o *Values) GetRespBodyBytes() int32 { +func (o *Values) GetRespBodyBytes() int64 { if o == nil || o.RespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.RespBodyBytes @@ -1071,7 +1071,7 @@ func (o *Values) GetRespBodyBytes() int32 { // GetRespBodyBytesOk returns a tuple with the RespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetRespBodyBytesOk() (*int32, bool) { +func (o *Values) GetRespBodyBytesOk() (*int64, bool) { if o == nil || o.RespBodyBytes == nil { return nil, false } @@ -1087,15 +1087,15 @@ func (o *Values) HasRespBodyBytes() bool { return false } -// SetRespBodyBytes gets a reference to the given int32 and assigns it to the RespBodyBytes field. -func (o *Values) SetRespBodyBytes(v int32) { +// SetRespBodyBytes gets a reference to the given int64 and assigns it to the RespBodyBytes field. +func (o *Values) SetRespBodyBytes(v int64) { o.RespBodyBytes = &v } // GetBereqHeaderBytes returns the BereqHeaderBytes field value if set, zero value otherwise. -func (o *Values) GetBereqHeaderBytes() int32 { +func (o *Values) GetBereqHeaderBytes() int64 { if o == nil || o.BereqHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqHeaderBytes @@ -1103,7 +1103,7 @@ func (o *Values) GetBereqHeaderBytes() int32 { // GetBereqHeaderBytesOk returns a tuple with the BereqHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetBereqHeaderBytesOk() (*int32, bool) { +func (o *Values) GetBereqHeaderBytesOk() (*int64, bool) { if o == nil || o.BereqHeaderBytes == nil { return nil, false } @@ -1119,15 +1119,15 @@ func (o *Values) HasBereqHeaderBytes() bool { return false } -// SetBereqHeaderBytes gets a reference to the given int32 and assigns it to the BereqHeaderBytes field. -func (o *Values) SetBereqHeaderBytes(v int32) { +// SetBereqHeaderBytes gets a reference to the given int64 and assigns it to the BereqHeaderBytes field. +func (o *Values) SetBereqHeaderBytes(v int64) { o.BereqHeaderBytes = &v } // GetBereqBodyBytes returns the BereqBodyBytes field value if set, zero value otherwise. -func (o *Values) GetBereqBodyBytes() int32 { +func (o *Values) GetBereqBodyBytes() int64 { if o == nil || o.BereqBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.BereqBodyBytes @@ -1135,7 +1135,7 @@ func (o *Values) GetBereqBodyBytes() int32 { // GetBereqBodyBytesOk returns a tuple with the BereqBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetBereqBodyBytesOk() (*int32, bool) { +func (o *Values) GetBereqBodyBytesOk() (*int64, bool) { if o == nil || o.BereqBodyBytes == nil { return nil, false } @@ -1151,15 +1151,15 @@ func (o *Values) HasBereqBodyBytes() bool { return false } -// SetBereqBodyBytes gets a reference to the given int32 and assigns it to the BereqBodyBytes field. -func (o *Values) SetBereqBodyBytes(v int32) { +// SetBereqBodyBytes gets a reference to the given int64 and assigns it to the BereqBodyBytes field. +func (o *Values) SetBereqBodyBytes(v int64) { o.BereqBodyBytes = &v } // GetEdgeHitRequests returns the EdgeHitRequests field value if set, zero value otherwise. -func (o *Values) GetEdgeHitRequests() int32 { +func (o *Values) GetEdgeHitRequests() int64 { if o == nil || o.EdgeHitRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeHitRequests @@ -1167,7 +1167,7 @@ func (o *Values) GetEdgeHitRequests() int32 { // GetEdgeHitRequestsOk returns a tuple with the EdgeHitRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetEdgeHitRequestsOk() (*int32, bool) { +func (o *Values) GetEdgeHitRequestsOk() (*int64, bool) { if o == nil || o.EdgeHitRequests == nil { return nil, false } @@ -1183,15 +1183,15 @@ func (o *Values) HasEdgeHitRequests() bool { return false } -// SetEdgeHitRequests gets a reference to the given int32 and assigns it to the EdgeHitRequests field. -func (o *Values) SetEdgeHitRequests(v int32) { +// SetEdgeHitRequests gets a reference to the given int64 and assigns it to the EdgeHitRequests field. +func (o *Values) SetEdgeHitRequests(v int64) { o.EdgeHitRequests = &v } // GetEdgeMissRequests returns the EdgeMissRequests field value if set, zero value otherwise. -func (o *Values) GetEdgeMissRequests() int32 { +func (o *Values) GetEdgeMissRequests() int64 { if o == nil || o.EdgeMissRequests == nil { - var ret int32 + var ret int64 return ret } return *o.EdgeMissRequests @@ -1199,7 +1199,7 @@ func (o *Values) GetEdgeMissRequests() int32 { // GetEdgeMissRequestsOk returns a tuple with the EdgeMissRequests field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetEdgeMissRequestsOk() (*int32, bool) { +func (o *Values) GetEdgeMissRequestsOk() (*int64, bool) { if o == nil || o.EdgeMissRequests == nil { return nil, false } @@ -1215,15 +1215,15 @@ func (o *Values) HasEdgeMissRequests() bool { return false } -// SetEdgeMissRequests gets a reference to the given int32 and assigns it to the EdgeMissRequests field. -func (o *Values) SetEdgeMissRequests(v int32) { +// SetEdgeMissRequests gets a reference to the given int64 and assigns it to the EdgeMissRequests field. +func (o *Values) SetEdgeMissRequests(v int64) { o.EdgeMissRequests = &v } // GetOriginFetches returns the OriginFetches field value if set, zero value otherwise. -func (o *Values) GetOriginFetches() int32 { +func (o *Values) GetOriginFetches() int64 { if o == nil || o.OriginFetches == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetches @@ -1231,7 +1231,7 @@ func (o *Values) GetOriginFetches() int32 { // GetOriginFetchesOk returns a tuple with the OriginFetches field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginFetchesOk() (*int32, bool) { +func (o *Values) GetOriginFetchesOk() (*int64, bool) { if o == nil || o.OriginFetches == nil { return nil, false } @@ -1247,15 +1247,15 @@ func (o *Values) HasOriginFetches() bool { return false } -// SetOriginFetches gets a reference to the given int32 and assigns it to the OriginFetches field. -func (o *Values) SetOriginFetches(v int32) { +// SetOriginFetches gets a reference to the given int64 and assigns it to the OriginFetches field. +func (o *Values) SetOriginFetches(v int64) { o.OriginFetches = &v } // GetOriginFetchRespHeaderBytes returns the OriginFetchRespHeaderBytes field value if set, zero value otherwise. -func (o *Values) GetOriginFetchRespHeaderBytes() int32 { +func (o *Values) GetOriginFetchRespHeaderBytes() int64 { if o == nil || o.OriginFetchRespHeaderBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespHeaderBytes @@ -1263,7 +1263,7 @@ func (o *Values) GetOriginFetchRespHeaderBytes() int32 { // GetOriginFetchRespHeaderBytesOk returns a tuple with the OriginFetchRespHeaderBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginFetchRespHeaderBytesOk() (*int32, bool) { +func (o *Values) GetOriginFetchRespHeaderBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespHeaderBytes == nil { return nil, false } @@ -1279,15 +1279,15 @@ func (o *Values) HasOriginFetchRespHeaderBytes() bool { return false } -// SetOriginFetchRespHeaderBytes gets a reference to the given int32 and assigns it to the OriginFetchRespHeaderBytes field. -func (o *Values) SetOriginFetchRespHeaderBytes(v int32) { +// SetOriginFetchRespHeaderBytes gets a reference to the given int64 and assigns it to the OriginFetchRespHeaderBytes field. +func (o *Values) SetOriginFetchRespHeaderBytes(v int64) { o.OriginFetchRespHeaderBytes = &v } // GetOriginFetchRespBodyBytes returns the OriginFetchRespBodyBytes field value if set, zero value otherwise. -func (o *Values) GetOriginFetchRespBodyBytes() int32 { +func (o *Values) GetOriginFetchRespBodyBytes() int64 { if o == nil || o.OriginFetchRespBodyBytes == nil { - var ret int32 + var ret int64 return ret } return *o.OriginFetchRespBodyBytes @@ -1295,7 +1295,7 @@ func (o *Values) GetOriginFetchRespBodyBytes() int32 { // GetOriginFetchRespBodyBytesOk returns a tuple with the OriginFetchRespBodyBytes field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginFetchRespBodyBytesOk() (*int32, bool) { +func (o *Values) GetOriginFetchRespBodyBytesOk() (*int64, bool) { if o == nil || o.OriginFetchRespBodyBytes == nil { return nil, false } @@ -1311,15 +1311,15 @@ func (o *Values) HasOriginFetchRespBodyBytes() bool { return false } -// SetOriginFetchRespBodyBytes gets a reference to the given int32 and assigns it to the OriginFetchRespBodyBytes field. -func (o *Values) SetOriginFetchRespBodyBytes(v int32) { +// SetOriginFetchRespBodyBytes gets a reference to the given int64 and assigns it to the OriginFetchRespBodyBytes field. +func (o *Values) SetOriginFetchRespBodyBytes(v int64) { o.OriginFetchRespBodyBytes = &v } // GetBandwidth returns the Bandwidth field value if set, zero value otherwise. -func (o *Values) GetBandwidth() int32 { +func (o *Values) GetBandwidth() int64 { if o == nil || o.Bandwidth == nil { - var ret int32 + var ret int64 return ret } return *o.Bandwidth @@ -1327,7 +1327,7 @@ func (o *Values) GetBandwidth() int32 { // GetBandwidthOk returns a tuple with the Bandwidth field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetBandwidthOk() (*int32, bool) { +func (o *Values) GetBandwidthOk() (*int64, bool) { if o == nil || o.Bandwidth == nil { return nil, false } @@ -1343,8 +1343,8 @@ func (o *Values) HasBandwidth() bool { return false } -// SetBandwidth gets a reference to the given int32 and assigns it to the Bandwidth field. -func (o *Values) SetBandwidth(v int32) { +// SetBandwidth gets a reference to the given int64 and assigns it to the Bandwidth field. +func (o *Values) SetBandwidth(v int64) { o.Bandwidth = &v } @@ -1413,9 +1413,9 @@ func (o *Values) SetOriginOffload(v float32) { } // GetOriginStatus200 returns the OriginStatus200 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus200() int32 { +func (o *Values) GetOriginStatus200() int64 { if o == nil || o.OriginStatus200 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus200 @@ -1423,7 +1423,7 @@ func (o *Values) GetOriginStatus200() int32 { // GetOriginStatus200Ok returns a tuple with the OriginStatus200 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus200Ok() (*int32, bool) { +func (o *Values) GetOriginStatus200Ok() (*int64, bool) { if o == nil || o.OriginStatus200 == nil { return nil, false } @@ -1439,15 +1439,15 @@ func (o *Values) HasOriginStatus200() bool { return false } -// SetOriginStatus200 gets a reference to the given int32 and assigns it to the OriginStatus200 field. -func (o *Values) SetOriginStatus200(v int32) { +// SetOriginStatus200 gets a reference to the given int64 and assigns it to the OriginStatus200 field. +func (o *Values) SetOriginStatus200(v int64) { o.OriginStatus200 = &v } // GetOriginStatus204 returns the OriginStatus204 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus204() int32 { +func (o *Values) GetOriginStatus204() int64 { if o == nil || o.OriginStatus204 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus204 @@ -1455,7 +1455,7 @@ func (o *Values) GetOriginStatus204() int32 { // GetOriginStatus204Ok returns a tuple with the OriginStatus204 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus204Ok() (*int32, bool) { +func (o *Values) GetOriginStatus204Ok() (*int64, bool) { if o == nil || o.OriginStatus204 == nil { return nil, false } @@ -1471,15 +1471,15 @@ func (o *Values) HasOriginStatus204() bool { return false } -// SetOriginStatus204 gets a reference to the given int32 and assigns it to the OriginStatus204 field. -func (o *Values) SetOriginStatus204(v int32) { +// SetOriginStatus204 gets a reference to the given int64 and assigns it to the OriginStatus204 field. +func (o *Values) SetOriginStatus204(v int64) { o.OriginStatus204 = &v } // GetOriginStatus206 returns the OriginStatus206 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus206() int32 { +func (o *Values) GetOriginStatus206() int64 { if o == nil || o.OriginStatus206 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus206 @@ -1487,7 +1487,7 @@ func (o *Values) GetOriginStatus206() int32 { // GetOriginStatus206Ok returns a tuple with the OriginStatus206 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus206Ok() (*int32, bool) { +func (o *Values) GetOriginStatus206Ok() (*int64, bool) { if o == nil || o.OriginStatus206 == nil { return nil, false } @@ -1503,15 +1503,15 @@ func (o *Values) HasOriginStatus206() bool { return false } -// SetOriginStatus206 gets a reference to the given int32 and assigns it to the OriginStatus206 field. -func (o *Values) SetOriginStatus206(v int32) { +// SetOriginStatus206 gets a reference to the given int64 and assigns it to the OriginStatus206 field. +func (o *Values) SetOriginStatus206(v int64) { o.OriginStatus206 = &v } // GetOriginStatus301 returns the OriginStatus301 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus301() int32 { +func (o *Values) GetOriginStatus301() int64 { if o == nil || o.OriginStatus301 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus301 @@ -1519,7 +1519,7 @@ func (o *Values) GetOriginStatus301() int32 { // GetOriginStatus301Ok returns a tuple with the OriginStatus301 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus301Ok() (*int32, bool) { +func (o *Values) GetOriginStatus301Ok() (*int64, bool) { if o == nil || o.OriginStatus301 == nil { return nil, false } @@ -1535,15 +1535,15 @@ func (o *Values) HasOriginStatus301() bool { return false } -// SetOriginStatus301 gets a reference to the given int32 and assigns it to the OriginStatus301 field. -func (o *Values) SetOriginStatus301(v int32) { +// SetOriginStatus301 gets a reference to the given int64 and assigns it to the OriginStatus301 field. +func (o *Values) SetOriginStatus301(v int64) { o.OriginStatus301 = &v } // GetOriginStatus302 returns the OriginStatus302 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus302() int32 { +func (o *Values) GetOriginStatus302() int64 { if o == nil || o.OriginStatus302 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus302 @@ -1551,7 +1551,7 @@ func (o *Values) GetOriginStatus302() int32 { // GetOriginStatus302Ok returns a tuple with the OriginStatus302 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus302Ok() (*int32, bool) { +func (o *Values) GetOriginStatus302Ok() (*int64, bool) { if o == nil || o.OriginStatus302 == nil { return nil, false } @@ -1567,15 +1567,15 @@ func (o *Values) HasOriginStatus302() bool { return false } -// SetOriginStatus302 gets a reference to the given int32 and assigns it to the OriginStatus302 field. -func (o *Values) SetOriginStatus302(v int32) { +// SetOriginStatus302 gets a reference to the given int64 and assigns it to the OriginStatus302 field. +func (o *Values) SetOriginStatus302(v int64) { o.OriginStatus302 = &v } // GetOriginStatus304 returns the OriginStatus304 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus304() int32 { +func (o *Values) GetOriginStatus304() int64 { if o == nil || o.OriginStatus304 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus304 @@ -1583,7 +1583,7 @@ func (o *Values) GetOriginStatus304() int32 { // GetOriginStatus304Ok returns a tuple with the OriginStatus304 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus304Ok() (*int32, bool) { +func (o *Values) GetOriginStatus304Ok() (*int64, bool) { if o == nil || o.OriginStatus304 == nil { return nil, false } @@ -1599,15 +1599,15 @@ func (o *Values) HasOriginStatus304() bool { return false } -// SetOriginStatus304 gets a reference to the given int32 and assigns it to the OriginStatus304 field. -func (o *Values) SetOriginStatus304(v int32) { +// SetOriginStatus304 gets a reference to the given int64 and assigns it to the OriginStatus304 field. +func (o *Values) SetOriginStatus304(v int64) { o.OriginStatus304 = &v } // GetOriginStatus400 returns the OriginStatus400 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus400() int32 { +func (o *Values) GetOriginStatus400() int64 { if o == nil || o.OriginStatus400 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus400 @@ -1615,7 +1615,7 @@ func (o *Values) GetOriginStatus400() int32 { // GetOriginStatus400Ok returns a tuple with the OriginStatus400 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus400Ok() (*int32, bool) { +func (o *Values) GetOriginStatus400Ok() (*int64, bool) { if o == nil || o.OriginStatus400 == nil { return nil, false } @@ -1631,15 +1631,15 @@ func (o *Values) HasOriginStatus400() bool { return false } -// SetOriginStatus400 gets a reference to the given int32 and assigns it to the OriginStatus400 field. -func (o *Values) SetOriginStatus400(v int32) { +// SetOriginStatus400 gets a reference to the given int64 and assigns it to the OriginStatus400 field. +func (o *Values) SetOriginStatus400(v int64) { o.OriginStatus400 = &v } // GetOriginStatus401 returns the OriginStatus401 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus401() int32 { +func (o *Values) GetOriginStatus401() int64 { if o == nil || o.OriginStatus401 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus401 @@ -1647,7 +1647,7 @@ func (o *Values) GetOriginStatus401() int32 { // GetOriginStatus401Ok returns a tuple with the OriginStatus401 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus401Ok() (*int32, bool) { +func (o *Values) GetOriginStatus401Ok() (*int64, bool) { if o == nil || o.OriginStatus401 == nil { return nil, false } @@ -1663,15 +1663,15 @@ func (o *Values) HasOriginStatus401() bool { return false } -// SetOriginStatus401 gets a reference to the given int32 and assigns it to the OriginStatus401 field. -func (o *Values) SetOriginStatus401(v int32) { +// SetOriginStatus401 gets a reference to the given int64 and assigns it to the OriginStatus401 field. +func (o *Values) SetOriginStatus401(v int64) { o.OriginStatus401 = &v } // GetOriginStatus403 returns the OriginStatus403 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus403() int32 { +func (o *Values) GetOriginStatus403() int64 { if o == nil || o.OriginStatus403 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus403 @@ -1679,7 +1679,7 @@ func (o *Values) GetOriginStatus403() int32 { // GetOriginStatus403Ok returns a tuple with the OriginStatus403 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus403Ok() (*int32, bool) { +func (o *Values) GetOriginStatus403Ok() (*int64, bool) { if o == nil || o.OriginStatus403 == nil { return nil, false } @@ -1695,15 +1695,15 @@ func (o *Values) HasOriginStatus403() bool { return false } -// SetOriginStatus403 gets a reference to the given int32 and assigns it to the OriginStatus403 field. -func (o *Values) SetOriginStatus403(v int32) { +// SetOriginStatus403 gets a reference to the given int64 and assigns it to the OriginStatus403 field. +func (o *Values) SetOriginStatus403(v int64) { o.OriginStatus403 = &v } // GetOriginStatus404 returns the OriginStatus404 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus404() int32 { +func (o *Values) GetOriginStatus404() int64 { if o == nil || o.OriginStatus404 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus404 @@ -1711,7 +1711,7 @@ func (o *Values) GetOriginStatus404() int32 { // GetOriginStatus404Ok returns a tuple with the OriginStatus404 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus404Ok() (*int32, bool) { +func (o *Values) GetOriginStatus404Ok() (*int64, bool) { if o == nil || o.OriginStatus404 == nil { return nil, false } @@ -1727,15 +1727,15 @@ func (o *Values) HasOriginStatus404() bool { return false } -// SetOriginStatus404 gets a reference to the given int32 and assigns it to the OriginStatus404 field. -func (o *Values) SetOriginStatus404(v int32) { +// SetOriginStatus404 gets a reference to the given int64 and assigns it to the OriginStatus404 field. +func (o *Values) SetOriginStatus404(v int64) { o.OriginStatus404 = &v } // GetOriginStatus416 returns the OriginStatus416 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus416() int32 { +func (o *Values) GetOriginStatus416() int64 { if o == nil || o.OriginStatus416 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus416 @@ -1743,7 +1743,7 @@ func (o *Values) GetOriginStatus416() int32 { // GetOriginStatus416Ok returns a tuple with the OriginStatus416 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus416Ok() (*int32, bool) { +func (o *Values) GetOriginStatus416Ok() (*int64, bool) { if o == nil || o.OriginStatus416 == nil { return nil, false } @@ -1759,15 +1759,15 @@ func (o *Values) HasOriginStatus416() bool { return false } -// SetOriginStatus416 gets a reference to the given int32 and assigns it to the OriginStatus416 field. -func (o *Values) SetOriginStatus416(v int32) { +// SetOriginStatus416 gets a reference to the given int64 and assigns it to the OriginStatus416 field. +func (o *Values) SetOriginStatus416(v int64) { o.OriginStatus416 = &v } // GetOriginStatus429 returns the OriginStatus429 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus429() int32 { +func (o *Values) GetOriginStatus429() int64 { if o == nil || o.OriginStatus429 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus429 @@ -1775,7 +1775,7 @@ func (o *Values) GetOriginStatus429() int32 { // GetOriginStatus429Ok returns a tuple with the OriginStatus429 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus429Ok() (*int32, bool) { +func (o *Values) GetOriginStatus429Ok() (*int64, bool) { if o == nil || o.OriginStatus429 == nil { return nil, false } @@ -1791,15 +1791,15 @@ func (o *Values) HasOriginStatus429() bool { return false } -// SetOriginStatus429 gets a reference to the given int32 and assigns it to the OriginStatus429 field. -func (o *Values) SetOriginStatus429(v int32) { +// SetOriginStatus429 gets a reference to the given int64 and assigns it to the OriginStatus429 field. +func (o *Values) SetOriginStatus429(v int64) { o.OriginStatus429 = &v } // GetOriginStatus500 returns the OriginStatus500 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus500() int32 { +func (o *Values) GetOriginStatus500() int64 { if o == nil || o.OriginStatus500 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus500 @@ -1807,7 +1807,7 @@ func (o *Values) GetOriginStatus500() int32 { // GetOriginStatus500Ok returns a tuple with the OriginStatus500 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus500Ok() (*int32, bool) { +func (o *Values) GetOriginStatus500Ok() (*int64, bool) { if o == nil || o.OriginStatus500 == nil { return nil, false } @@ -1823,15 +1823,15 @@ func (o *Values) HasOriginStatus500() bool { return false } -// SetOriginStatus500 gets a reference to the given int32 and assigns it to the OriginStatus500 field. -func (o *Values) SetOriginStatus500(v int32) { +// SetOriginStatus500 gets a reference to the given int64 and assigns it to the OriginStatus500 field. +func (o *Values) SetOriginStatus500(v int64) { o.OriginStatus500 = &v } // GetOriginStatus501 returns the OriginStatus501 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus501() int32 { +func (o *Values) GetOriginStatus501() int64 { if o == nil || o.OriginStatus501 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus501 @@ -1839,7 +1839,7 @@ func (o *Values) GetOriginStatus501() int32 { // GetOriginStatus501Ok returns a tuple with the OriginStatus501 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus501Ok() (*int32, bool) { +func (o *Values) GetOriginStatus501Ok() (*int64, bool) { if o == nil || o.OriginStatus501 == nil { return nil, false } @@ -1855,15 +1855,15 @@ func (o *Values) HasOriginStatus501() bool { return false } -// SetOriginStatus501 gets a reference to the given int32 and assigns it to the OriginStatus501 field. -func (o *Values) SetOriginStatus501(v int32) { +// SetOriginStatus501 gets a reference to the given int64 and assigns it to the OriginStatus501 field. +func (o *Values) SetOriginStatus501(v int64) { o.OriginStatus501 = &v } // GetOriginStatus502 returns the OriginStatus502 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus502() int32 { +func (o *Values) GetOriginStatus502() int64 { if o == nil || o.OriginStatus502 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus502 @@ -1871,7 +1871,7 @@ func (o *Values) GetOriginStatus502() int32 { // GetOriginStatus502Ok returns a tuple with the OriginStatus502 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus502Ok() (*int32, bool) { +func (o *Values) GetOriginStatus502Ok() (*int64, bool) { if o == nil || o.OriginStatus502 == nil { return nil, false } @@ -1887,15 +1887,15 @@ func (o *Values) HasOriginStatus502() bool { return false } -// SetOriginStatus502 gets a reference to the given int32 and assigns it to the OriginStatus502 field. -func (o *Values) SetOriginStatus502(v int32) { +// SetOriginStatus502 gets a reference to the given int64 and assigns it to the OriginStatus502 field. +func (o *Values) SetOriginStatus502(v int64) { o.OriginStatus502 = &v } // GetOriginStatus503 returns the OriginStatus503 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus503() int32 { +func (o *Values) GetOriginStatus503() int64 { if o == nil || o.OriginStatus503 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus503 @@ -1903,7 +1903,7 @@ func (o *Values) GetOriginStatus503() int32 { // GetOriginStatus503Ok returns a tuple with the OriginStatus503 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus503Ok() (*int32, bool) { +func (o *Values) GetOriginStatus503Ok() (*int64, bool) { if o == nil || o.OriginStatus503 == nil { return nil, false } @@ -1919,15 +1919,15 @@ func (o *Values) HasOriginStatus503() bool { return false } -// SetOriginStatus503 gets a reference to the given int32 and assigns it to the OriginStatus503 field. -func (o *Values) SetOriginStatus503(v int32) { +// SetOriginStatus503 gets a reference to the given int64 and assigns it to the OriginStatus503 field. +func (o *Values) SetOriginStatus503(v int64) { o.OriginStatus503 = &v } // GetOriginStatus504 returns the OriginStatus504 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus504() int32 { +func (o *Values) GetOriginStatus504() int64 { if o == nil || o.OriginStatus504 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus504 @@ -1935,7 +1935,7 @@ func (o *Values) GetOriginStatus504() int32 { // GetOriginStatus504Ok returns a tuple with the OriginStatus504 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus504Ok() (*int32, bool) { +func (o *Values) GetOriginStatus504Ok() (*int64, bool) { if o == nil || o.OriginStatus504 == nil { return nil, false } @@ -1951,15 +1951,15 @@ func (o *Values) HasOriginStatus504() bool { return false } -// SetOriginStatus504 gets a reference to the given int32 and assigns it to the OriginStatus504 field. -func (o *Values) SetOriginStatus504(v int32) { +// SetOriginStatus504 gets a reference to the given int64 and assigns it to the OriginStatus504 field. +func (o *Values) SetOriginStatus504(v int64) { o.OriginStatus504 = &v } // GetOriginStatus505 returns the OriginStatus505 field value if set, zero value otherwise. -func (o *Values) GetOriginStatus505() int32 { +func (o *Values) GetOriginStatus505() int64 { if o == nil || o.OriginStatus505 == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus505 @@ -1967,7 +1967,7 @@ func (o *Values) GetOriginStatus505() int32 { // GetOriginStatus505Ok returns a tuple with the OriginStatus505 field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus505Ok() (*int32, bool) { +func (o *Values) GetOriginStatus505Ok() (*int64, bool) { if o == nil || o.OriginStatus505 == nil { return nil, false } @@ -1983,15 +1983,15 @@ func (o *Values) HasOriginStatus505() bool { return false } -// SetOriginStatus505 gets a reference to the given int32 and assigns it to the OriginStatus505 field. -func (o *Values) SetOriginStatus505(v int32) { +// SetOriginStatus505 gets a reference to the given int64 and assigns it to the OriginStatus505 field. +func (o *Values) SetOriginStatus505(v int64) { o.OriginStatus505 = &v } // GetOriginStatus1xx returns the OriginStatus1xx field value if set, zero value otherwise. -func (o *Values) GetOriginStatus1xx() int32 { +func (o *Values) GetOriginStatus1xx() int64 { if o == nil || o.OriginStatus1xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus1xx @@ -1999,7 +1999,7 @@ func (o *Values) GetOriginStatus1xx() int32 { // GetOriginStatus1xxOk returns a tuple with the OriginStatus1xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus1xxOk() (*int32, bool) { +func (o *Values) GetOriginStatus1xxOk() (*int64, bool) { if o == nil || o.OriginStatus1xx == nil { return nil, false } @@ -2015,15 +2015,15 @@ func (o *Values) HasOriginStatus1xx() bool { return false } -// SetOriginStatus1xx gets a reference to the given int32 and assigns it to the OriginStatus1xx field. -func (o *Values) SetOriginStatus1xx(v int32) { +// SetOriginStatus1xx gets a reference to the given int64 and assigns it to the OriginStatus1xx field. +func (o *Values) SetOriginStatus1xx(v int64) { o.OriginStatus1xx = &v } // GetOriginStatus2xx returns the OriginStatus2xx field value if set, zero value otherwise. -func (o *Values) GetOriginStatus2xx() int32 { +func (o *Values) GetOriginStatus2xx() int64 { if o == nil || o.OriginStatus2xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus2xx @@ -2031,7 +2031,7 @@ func (o *Values) GetOriginStatus2xx() int32 { // GetOriginStatus2xxOk returns a tuple with the OriginStatus2xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus2xxOk() (*int32, bool) { +func (o *Values) GetOriginStatus2xxOk() (*int64, bool) { if o == nil || o.OriginStatus2xx == nil { return nil, false } @@ -2047,15 +2047,15 @@ func (o *Values) HasOriginStatus2xx() bool { return false } -// SetOriginStatus2xx gets a reference to the given int32 and assigns it to the OriginStatus2xx field. -func (o *Values) SetOriginStatus2xx(v int32) { +// SetOriginStatus2xx gets a reference to the given int64 and assigns it to the OriginStatus2xx field. +func (o *Values) SetOriginStatus2xx(v int64) { o.OriginStatus2xx = &v } // GetOriginStatus3xx returns the OriginStatus3xx field value if set, zero value otherwise. -func (o *Values) GetOriginStatus3xx() int32 { +func (o *Values) GetOriginStatus3xx() int64 { if o == nil || o.OriginStatus3xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus3xx @@ -2063,7 +2063,7 @@ func (o *Values) GetOriginStatus3xx() int32 { // GetOriginStatus3xxOk returns a tuple with the OriginStatus3xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus3xxOk() (*int32, bool) { +func (o *Values) GetOriginStatus3xxOk() (*int64, bool) { if o == nil || o.OriginStatus3xx == nil { return nil, false } @@ -2079,15 +2079,15 @@ func (o *Values) HasOriginStatus3xx() bool { return false } -// SetOriginStatus3xx gets a reference to the given int32 and assigns it to the OriginStatus3xx field. -func (o *Values) SetOriginStatus3xx(v int32) { +// SetOriginStatus3xx gets a reference to the given int64 and assigns it to the OriginStatus3xx field. +func (o *Values) SetOriginStatus3xx(v int64) { o.OriginStatus3xx = &v } // GetOriginStatus4xx returns the OriginStatus4xx field value if set, zero value otherwise. -func (o *Values) GetOriginStatus4xx() int32 { +func (o *Values) GetOriginStatus4xx() int64 { if o == nil || o.OriginStatus4xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus4xx @@ -2095,7 +2095,7 @@ func (o *Values) GetOriginStatus4xx() int32 { // GetOriginStatus4xxOk returns a tuple with the OriginStatus4xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus4xxOk() (*int32, bool) { +func (o *Values) GetOriginStatus4xxOk() (*int64, bool) { if o == nil || o.OriginStatus4xx == nil { return nil, false } @@ -2111,15 +2111,15 @@ func (o *Values) HasOriginStatus4xx() bool { return false } -// SetOriginStatus4xx gets a reference to the given int32 and assigns it to the OriginStatus4xx field. -func (o *Values) SetOriginStatus4xx(v int32) { +// SetOriginStatus4xx gets a reference to the given int64 and assigns it to the OriginStatus4xx field. +func (o *Values) SetOriginStatus4xx(v int64) { o.OriginStatus4xx = &v } // GetOriginStatus5xx returns the OriginStatus5xx field value if set, zero value otherwise. -func (o *Values) GetOriginStatus5xx() int32 { +func (o *Values) GetOriginStatus5xx() int64 { if o == nil || o.OriginStatus5xx == nil { - var ret int32 + var ret int64 return ret } return *o.OriginStatus5xx @@ -2127,7 +2127,7 @@ func (o *Values) GetOriginStatus5xx() int32 { // GetOriginStatus5xxOk returns a tuple with the OriginStatus5xx field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Values) GetOriginStatus5xxOk() (*int32, bool) { +func (o *Values) GetOriginStatus5xxOk() (*int64, bool) { if o == nil || o.OriginStatus5xx == nil { return nil, false } @@ -2143,8 +2143,8 @@ func (o *Values) HasOriginStatus5xx() bool { return false } -// SetOriginStatus5xx gets a reference to the given int32 and assigns it to the OriginStatus5xx field. -func (o *Values) SetOriginStatus5xx(v int32) { +// SetOriginStatus5xx gets a reference to the given int64 and assigns it to the OriginStatus5xx field. +func (o *Values) SetOriginStatus5xx(v int64) { o.OriginStatus5xx = &v } diff --git a/sig.json b/sig.json index 4729e57..ccbee4f 100644 --- a/sig.json +++ b/sig.json @@ -1 +1 @@ -{"G": "8147d17d", "D": "c00fd741"} +{"G": "8147d17d", "D": "a8df8891"}