Skip to content

Commit fb25fcc

Browse files
speakeasybotunclesp1d3r
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.326.0
1 parent 18f112e commit fb25fcc

File tree

15 files changed

+105
-78
lines changed

15 files changed

+105
-78
lines changed

.speakeasy/gen.lock

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: 11fa8266-8454-49fd-ba7b-d5f8744980cc
33
management:
44
docChecksum: 4f728fefb6d3bc4a3331bcf2a2dad6a0
55
docVersion: "1.3"
6-
speakeasyVersion: 1.314.2
7-
generationVersion: 2.349.6
8-
releaseVersion: 0.4.6
9-
configChecksum: c37c4c6bdb4df37e10103ac118de7580
6+
speakeasyVersion: 1.326.0
7+
generationVersion: 2.359.0
8+
releaseVersion: 0.5.0
9+
configChecksum: 8b59d911922f4d08735f060da7bcca8a
1010
repoURL: https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go.git
1111
installationURL: https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go
1212
features:
@@ -23,7 +23,7 @@ features:
2323
intellisenseMarkdownSupport: 0.1.0
2424
nullables: 0.1.0
2525
responseFormat: 0.1.2
26-
retries: 2.82.3
26+
retries: 2.83.0
2727
sdkHooks: 0.1.0
2828
generatedFiles:
2929
- agents.go
@@ -34,6 +34,7 @@ generatedFiles:
3434
- cipherswarmagentsdk.go
3535
- go.mod
3636
- models/sdkerrors/sdkerror.go
37+
- retry/config.go
3738
- types/bigint.go
3839
- types/date.go
3940
- types/datetime.go

.speakeasy/gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ generation:
1212
auth:
1313
oAuth2ClientCredentialsEnabled: false
1414
go:
15-
version: 0.4.6
15+
version: 0.5.0
1616
additionalDependencies: {}
1717
allowUnknownFieldsInWeakUnions: false
1818
clientServerStatusCodesAsErrors: true

.speakeasy/workflow.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
speakeasyVersion: 1.314.2
1+
speakeasyVersion: 1.326.0
22
sources:
33
CipherSwarm_agent_api:
44
sourceNamespace: cipher-swarm-agent-api
5-
sourceRevisionDigest: sha256:5671dee7432d7520d1142e6d9209647f58c657e87fdbc3d46275cd2051e590ba
6-
sourceBlobDigest: sha256:fa98bda67941ff065675fb7e7d8adf76145738dbe96db5455a413884faa36cdc
5+
sourceRevisionDigest: sha256:ac08784015e55f66e791e5f642aa4365c05da489ecb1b467b85f6c8532d91857
6+
sourceBlobDigest: sha256:4665a098ebcaa513a93016adce5462bd39bc3fb817260a8a435bf45a7e9f16f4
77
tags:
88
- latest
99
- main
1010
targets:
1111
golang-sdk:
1212
source: CipherSwarm_agent_api
1313
sourceNamespace: cipher-swarm-agent-api
14-
sourceRevisionDigest: sha256:5671dee7432d7520d1142e6d9209647f58c657e87fdbc3d46275cd2051e590ba
15-
sourceBlobDigest: sha256:fa98bda67941ff065675fb7e7d8adf76145738dbe96db5455a413884faa36cdc
14+
sourceRevisionDigest: sha256:ac08784015e55f66e791e5f642aa4365c05da489ecb1b467b85f6c8532d91857
15+
sourceBlobDigest: sha256:4665a098ebcaa513a93016adce5462bd39bc3fb817260a8a435bf45a7e9f16f4
1616
outLocation: /github/workspace/repo
1717
workflow:
1818
workflowVersion: 1.0.0

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -304,14 +304,14 @@ func main() {
304304

305305
Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
306306

307-
To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call by using the `WithRetries` option:
307+
To change the default retry strategy for a single API call, simply provide a `retry.Config` object to the call by using the `WithRetries` option:
308308
```go
309309
package main
310310

311311
import (
312312
"context"
313313
cipherswarmagentsdkgo "github.com/unclesp1d3r/cipherswarm-agent-sdk-go"
314-
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/internal/utils"
314+
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/retry"
315315
"log"
316316
"models/operations"
317317
)
@@ -323,9 +323,9 @@ func main() {
323323
var id int64 = 135003
324324
ctx := context.Background()
325325
res, err := s.Agents.GetAgent(ctx, id, operations.WithRetries(
326-
utils.RetryConfig{
326+
retry.Config{
327327
Strategy: "backoff",
328-
Backoff: &utils.BackoffStrategy{
328+
Backoff: &retry.BackoffStrategy{
329329
InitialInterval: 1,
330330
MaxInterval: 50,
331331
Exponent: 1.1,
@@ -350,16 +350,16 @@ package main
350350
import (
351351
"context"
352352
cipherswarmagentsdkgo "github.com/unclesp1d3r/cipherswarm-agent-sdk-go"
353-
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/internal/utils"
353+
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/retry"
354354
"log"
355355
)
356356

357357
func main() {
358358
s := cipherswarmagentsdkgo.New(
359359
cipherswarmagentsdkgo.WithRetryConfig(
360-
utils.RetryConfig{
360+
retry.Config{
361361
Strategy: "backoff",
362-
Backoff: &utils.BackoffStrategy{
362+
Backoff: &retry.BackoffStrategy{
363363
InitialInterval: 1,
364364
MaxInterval: 50,
365365
Exponent: 1.1,

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,14 @@ Based on:
178178
### Generated
179179
- [go v0.4.6] .
180180
### Releases
181-
- [Go v0.4.6] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.4.6 - .
181+
- [Go v0.4.6] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.4.6 - .
182+
183+
## 2024-07-03 00:22:34
184+
### Changes
185+
Based on:
186+
- OpenAPI Doc
187+
- Speakeasy CLI 1.326.0 (2.359.0) https://github.com/speakeasy-api/speakeasy
188+
### Generated
189+
- [go v0.5.0] .
190+
### Releases
191+
- [Go v0.5.0] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.5.0 - .

agents.go

+13-12
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/components"
1313
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/operations"
1414
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/sdkerrors"
15+
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/retry"
1516
"io"
1617
"net/http"
1718
)
@@ -71,9 +72,9 @@ func (s *Agents) GetAgent(ctx context.Context, id int64, opts ...operations.Opti
7172
retryConfig := o.Retries
7273
if retryConfig == nil {
7374
if globalRetryConfig == nil {
74-
retryConfig = &utils.RetryConfig{
75+
retryConfig = &retry.Config{
7576
Strategy: "backoff",
76-
Backoff: &utils.BackoffStrategy{
77+
Backoff: &retry.BackoffStrategy{
7778
InitialInterval: 500,
7879
MaxInterval: 60000,
7980
Exponent: 1.5,
@@ -228,9 +229,9 @@ func (s *Agents) UpdateAgent(ctx context.Context, id int64, agentUpdate *compone
228229
retryConfig := o.Retries
229230
if retryConfig == nil {
230231
if globalRetryConfig == nil {
231-
retryConfig = &utils.RetryConfig{
232+
retryConfig = &retry.Config{
232233
Strategy: "backoff",
233-
Backoff: &utils.BackoffStrategy{
234+
Backoff: &retry.BackoffStrategy{
234235
InitialInterval: 500,
235236
MaxInterval: 60000,
236237
Exponent: 1.5,
@@ -378,9 +379,9 @@ func (s *Agents) SendHeartbeat(ctx context.Context, id int64, opts ...operations
378379
retryConfig := o.Retries
379380
if retryConfig == nil {
380381
if globalRetryConfig == nil {
381-
retryConfig = &utils.RetryConfig{
382+
retryConfig = &retry.Config{
382383
Strategy: "backoff",
383-
Backoff: &utils.BackoffStrategy{
384+
Backoff: &retry.BackoffStrategy{
384385
InitialInterval: 500,
385386
MaxInterval: 60000,
386387
Exponent: 1.5,
@@ -536,9 +537,9 @@ func (s *Agents) SubmitBenchmark(ctx context.Context, id int64, requestBody []co
536537
retryConfig := o.Retries
537538
if retryConfig == nil {
538539
if globalRetryConfig == nil {
539-
retryConfig = &utils.RetryConfig{
540+
retryConfig = &retry.Config{
540541
Strategy: "backoff",
541-
Backoff: &utils.BackoffStrategy{
542+
Backoff: &retry.BackoffStrategy{
542543
InitialInterval: 500,
543544
MaxInterval: 60000,
544545
Exponent: 1.5,
@@ -674,9 +675,9 @@ func (s *Agents) SubmitErrorAgent(ctx context.Context, id int64, agentError *com
674675
retryConfig := o.Retries
675676
if retryConfig == nil {
676677
if globalRetryConfig == nil {
677-
retryConfig = &utils.RetryConfig{
678+
retryConfig = &retry.Config{
678679
Strategy: "backoff",
679-
Backoff: &utils.BackoffStrategy{
680+
Backoff: &retry.BackoffStrategy{
680681
InitialInterval: 500,
681682
MaxInterval: 60000,
682683
Exponent: 1.5,
@@ -805,9 +806,9 @@ func (s *Agents) SetAgentShutdown(ctx context.Context, id int64, opts ...operati
805806
retryConfig := o.Retries
806807
if retryConfig == nil {
807808
if globalRetryConfig == nil {
808-
retryConfig = &utils.RetryConfig{
809+
retryConfig = &retry.Config{
809810
Strategy: "backoff",
810-
Backoff: &utils.BackoffStrategy{
811+
Backoff: &retry.BackoffStrategy{
811812
InitialInterval: 500,
812813
MaxInterval: 60000,
813814
Exponent: 1.5,

attacks.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/components"
1313
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/operations"
1414
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/sdkerrors"
15+
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/retry"
1516
"io"
1617
"net/http"
1718
)
@@ -71,9 +72,9 @@ func (s *Attacks) GetAttack(ctx context.Context, id int64, opts ...operations.Op
7172
retryConfig := o.Retries
7273
if retryConfig == nil {
7374
if globalRetryConfig == nil {
74-
retryConfig = &utils.RetryConfig{
75+
retryConfig = &retry.Config{
7576
Strategy: "backoff",
76-
Backoff: &utils.BackoffStrategy{
77+
Backoff: &retry.BackoffStrategy{
7778
InitialInterval: 500,
7879
MaxInterval: 60000,
7980
Exponent: 1.5,
@@ -223,9 +224,9 @@ func (s *Attacks) GetHashList(ctx context.Context, id int64, opts ...operations.
223224
retryConfig := o.Retries
224225
if retryConfig == nil {
225226
if globalRetryConfig == nil {
226-
retryConfig = &utils.RetryConfig{
227+
retryConfig = &retry.Config{
227228
Strategy: "backoff",
228-
Backoff: &utils.BackoffStrategy{
229+
Backoff: &retry.BackoffStrategy{
229230
InitialInterval: 500,
230231
MaxInterval: 60000,
231232
Exponent: 1.5,

cipherswarmagentsdk.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/internal/hooks"
99
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/internal/utils"
1010
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/components"
11+
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/retry"
1112
"net/http"
1213
"time"
1314
)
@@ -54,7 +55,7 @@ type sdkConfiguration struct {
5455
SDKVersion string
5556
GenVersion string
5657
UserAgent string
57-
RetryConfig *utils.RetryConfig
58+
RetryConfig *retry.Config
5859
Hooks *hooks.Hooks
5960
}
6061

@@ -176,7 +177,7 @@ func WithSecuritySource(security func(context.Context) (components.Security, err
176177
}
177178
}
178179

179-
func WithRetryConfig(retryConfig utils.RetryConfig) SDKOption {
180+
func WithRetryConfig(retryConfig retry.Config) SDKOption {
180181
return func(sdk *CipherSwarmAgentSDK) {
181182
sdk.sdkConfiguration.RetryConfig = &retryConfig
182183
}
@@ -188,9 +189,9 @@ func New(opts ...SDKOption) *CipherSwarmAgentSDK {
188189
sdkConfiguration: sdkConfiguration{
189190
Language: "go",
190191
OpenAPIDocVersion: "1.3",
191-
SDKVersion: "0.4.6",
192-
GenVersion: "2.349.6",
193-
UserAgent: "speakeasy-sdk/go 0.4.6 2.349.6 1.3 github.com/unclesp1d3r/cipherswarm-agent-sdk-go",
192+
SDKVersion: "0.5.0",
193+
GenVersion: "2.359.0",
194+
UserAgent: "speakeasy-sdk/go 0.5.0 2.359.0 1.3 github.com/unclesp1d3r/cipherswarm-agent-sdk-go",
194195
ServerDefaults: []map[string]string{
195196
{
196197
"defaultHost": "www.example.com",

client.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/components"
1313
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/operations"
1414
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/sdkerrors"
15+
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/retry"
1516
"io"
1617
"net/http"
1718
"net/url"
@@ -68,9 +69,9 @@ func (s *Client) GetConfiguration(ctx context.Context, opts ...operations.Option
6869
retryConfig := o.Retries
6970
if retryConfig == nil {
7071
if globalRetryConfig == nil {
71-
retryConfig = &utils.RetryConfig{
72+
retryConfig = &retry.Config{
7273
Strategy: "backoff",
73-
Backoff: &utils.BackoffStrategy{
74+
Backoff: &retry.BackoffStrategy{
7475
InitialInterval: 500,
7576
MaxInterval: 60000,
7677
Exponent: 1.5,
@@ -204,9 +205,9 @@ func (s *Client) Authenticate(ctx context.Context, opts ...operations.Option) (*
204205
retryConfig := o.Retries
205206
if retryConfig == nil {
206207
if globalRetryConfig == nil {
207-
retryConfig = &utils.RetryConfig{
208+
retryConfig = &retry.Config{
208209
Strategy: "backoff",
209-
Backoff: &utils.BackoffStrategy{
210+
Backoff: &retry.BackoffStrategy{
210211
InitialInterval: 500,
211212
MaxInterval: 60000,
212213
Exponent: 1.5,

crackers.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/components"
1313
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/operations"
1414
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/models/sdkerrors"
15+
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/retry"
1516
"io"
1617
"net/http"
1718
"net/url"
@@ -77,9 +78,9 @@ func (s *Crackers) CheckForCrackerUpdate(ctx context.Context, operatingSystem *s
7778
retryConfig := o.Retries
7879
if retryConfig == nil {
7980
if globalRetryConfig == nil {
80-
retryConfig = &utils.RetryConfig{
81+
retryConfig = &retry.Config{
8182
Strategy: "backoff",
82-
Backoff: &utils.BackoffStrategy{
83+
Backoff: &retry.BackoffStrategy{
8384
InitialInterval: 500,
8485
MaxInterval: 60000,
8586
Exponent: 1.5,

docs/models/operations/option.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ operations.WithTemplatedServerURL("http://{host}:{port}", map[string]string{
2424
WithRetries allows customizing the default retry configuration. Only usable with methods that mention they support retries.
2525

2626
```go
27-
operations.WithRetries(utils.RetryConfig{
27+
operations.WithRetries(retry.Config{
2828
Strategy: "backoff",
29-
Backoff: utils.BackoffStrategy{
29+
Backoff: retry.BackoffStrategy{
3030
InitialInterval: 500 * time.Millisecond,
3131
MaxInterval: 60 * time.Second,
3232
Exponent: 1.5,

internal/utils/retries.go

+7-14
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,25 @@ import (
66
"context"
77
"errors"
88
"fmt"
9+
"github.com/cenkalti/backoff/v4"
10+
"github.com/unclesp1d3r/cipherswarm-agent-sdk-go/retry"
911
"net/http"
1012
"net/url"
1113
"strconv"
1214
"strings"
1315
"time"
14-
15-
"github.com/cenkalti/backoff/v4"
1616
)
1717

1818
var errRequestFailed = errors.New("request failed")
1919

20-
type BackoffStrategy struct {
21-
InitialInterval int
22-
MaxInterval int
23-
Exponent float64
24-
MaxElapsedTime int
25-
}
20+
// Deprecated: Use retry.BackoffStrategy instead.
21+
type BackoffStrategy = retry.BackoffStrategy
2622

27-
type RetryConfig struct {
28-
Strategy string
29-
Backoff *BackoffStrategy
30-
RetryConnectionErrors bool
31-
}
23+
// Deprecated: Use retry.Config instead.
24+
type RetryConfig = retry.Config
3225

3326
type Retries struct {
34-
Config *RetryConfig
27+
Config *retry.Config
3528
StatusCodes []string
3629
}
3730

0 commit comments

Comments
 (0)