Skip to content

Commit

Permalink
Generated v1.0.0-beta.38
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Dec 17, 2024
1 parent 57a45cb commit e7522c4
Show file tree
Hide file tree
Showing 20 changed files with 11,019 additions and 11,013 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
```

Expand Down
480 changes: 240 additions & 240 deletions docs/DomainInspectorMeasurements.md

Large diffs are not rendered by default.

1,216 changes: 608 additions & 608 deletions docs/OriginInspectorMeasurements.md

Large diffs are not rendered by default.

1,216 changes: 608 additions & 608 deletions docs/OriginInspectorValues.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/Realtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down
1,800 changes: 900 additions & 900 deletions docs/RealtimeEntryAggregated.md

Large diffs are not rendered by default.

1,800 changes: 900 additions & 900 deletions docs/RealtimeMeasurements.md

Large diffs are not rendered by default.

1,808 changes: 904 additions & 904 deletions docs/Results.md

Large diffs are not rendered by default.

480 changes: 240 additions & 240 deletions docs/Values.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion fastly/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
{
Expand Down
720 changes: 360 additions & 360 deletions fastly/model_domain_inspector_measurements.go

Large diffs are not rendered by default.

1,824 changes: 912 additions & 912 deletions fastly/model_origin_inspector_measurements.go

Large diffs are not rendered by default.

1,824 changes: 912 additions & 912 deletions fastly/model_origin_inspector_values.go

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions fastly/model_realtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -79,17 +79,17 @@ 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
}

// 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
}
Expand All @@ -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
}

Expand Down
2,700 changes: 1,350 additions & 1,350 deletions fastly/model_realtime_entry_aggregated.go

Large diffs are not rendered by default.

2,700 changes: 1,350 additions & 1,350 deletions fastly/model_realtime_measurements.go

Large diffs are not rendered by default.

2,712 changes: 1,356 additions & 1,356 deletions fastly/model_results.go

Large diffs are not rendered by default.

Loading

0 comments on commit e7522c4

Please sign in to comment.