Skip to content

Commit 4772f01

Browse files
speakeasybotunclesp1d3r
authored andcommitted
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.400.1
1 parent cce2e23 commit 4772f01

21 files changed

+1094
-331
lines changed

.speakeasy/gen.lock

+284-103
Large diffs are not rendered by default.

.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.8.3
15+
version: 0.8.4
1616
additionalDependencies: {}
1717
allowUnknownFieldsInWeakUnions: false
1818
clientServerStatusCodesAsErrors: true

.speakeasy/workflow.lock

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
speakeasyVersion: 1.379.0
1+
speakeasyVersion: 1.400.1
22
sources:
33
CipherSwarm_agent_api:
44
sourceNamespace: cipher-swarm-agent-api
5-
sourceRevisionDigest: sha256:abb0a124fd1e548164b96b8e56803106daadc61116cecc0042426a24ea65afb4
6-
sourceBlobDigest: sha256:756d43108a60dd436d2afd7c659609e4608fe45f36b01bf6be1ed50d1db7f83b
5+
sourceRevisionDigest: sha256:f9787ad737cfb6a94a7230bcfabc8f5edd188432525efd4b67ddc7bb8f1a0e2e
6+
sourceBlobDigest: sha256:93c3f31880777a5d06b7df353d9dffb8066729999e96794680edd65284d8c216
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:abb0a124fd1e548164b96b8e56803106daadc61116cecc0042426a24ea65afb4
15-
sourceBlobDigest: sha256:756d43108a60dd436d2afd7c659609e4608fe45f36b01bf6be1ed50d1db7f83b
16-
outLocation: /github/workspace/repo
14+
sourceRevisionDigest: sha256:f9787ad737cfb6a94a7230bcfabc8f5edd188432525efd4b67ddc7bb8f1a0e2e
15+
sourceBlobDigest: sha256:93c3f31880777a5d06b7df353d9dffb8066729999e96794680edd65284d8c216
1716
workflow:
1817
workflowVersion: 1.0.0
1918
speakeasyVersion: latest

README.md

+45-18
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,30 @@ Prerequisites
2020
- Go 1.16 or later
2121
- A working installation of the CipherSwarm platform. Refer to the [CipherSwarm documentation](https://github.com/unclesp1d3r/CipherSwarm) for setup instructions.
2222

23+
<!-- Start Summary [summary] -->
24+
## Summary
25+
26+
CipherSwarm Agent API: The CipherSwarm Agent API is used to allow agents to connect to the CipherSwarm server.
27+
<!-- End Summary [summary] -->
28+
29+
<!-- Start Table of Contents [toc] -->
30+
## Table of Contents
31+
32+
* [SDK Installation](#sdk-installation)
33+
* [SDK Example Usage](#sdk-example-usage)
34+
* [Available Resources and Operations](#available-resources-and-operations)
35+
* [Retries](#retries)
36+
* [Error Handling](#error-handling)
37+
* [Server Selection](#server-selection)
38+
* [Custom HTTP Client](#custom-http-client)
39+
* [Authentication](#authentication)
40+
* [Special Types](#special-types)
41+
<!-- End Table of Contents [toc] -->
42+
2343
<!-- Start SDK Installation [installation] -->
2444
## SDK Installation
2545

46+
To add the SDK as a dependency to your project:
2647
```bash
2748
go get github.com/unclesp1d3r/cipherswarm-agent-sdk-go
2849
```
@@ -46,9 +67,9 @@ func main() {
4667
s := cipherswarmagentsdkgo.New(
4768
cipherswarmagentsdkgo.WithSecurity("<YOUR_BEARER_TOKEN_HERE>"),
4869
)
49-
var id int64 = 135003
70+
5071
ctx := context.Background()
51-
res, err := s.Agents.GetAgent(ctx, id)
72+
res, err := s.Agents.GetAgent(ctx, 135003)
5273
if err != nil {
5374
log.Fatal(err)
5475
}
@@ -63,6 +84,9 @@ func main() {
6384
<!-- Start Available Resources and Operations [operations] -->
6485
## Available Resources and Operations
6586

87+
<details open>
88+
<summary>Available methods</summary>
89+
6690
### [Agents](docs/sdks/agents/README.md)
6791

6892
* [GetAgent](docs/sdks/agents/README.md#getagent) - Gets an instance of an agent
@@ -77,6 +101,12 @@ func main() {
77101
* [GetAttack](docs/sdks/attacks/README.md#getattack) - show attack
78102
* [GetHashList](docs/sdks/attacks/README.md#gethashlist) - Get the hash list
79103

104+
105+
### [Client](docs/sdks/client/README.md)
106+
107+
* [GetConfiguration](docs/sdks/client/README.md#getconfiguration) - Get Agent Configuration
108+
* [Authenticate](docs/sdks/client/README.md#authenticate) - Authenticate Client
109+
80110
### [Crackers](docs/sdks/crackers/README.md)
81111

82112
* [CheckForCrackerUpdate](docs/sdks/crackers/README.md#checkforcrackerupdate) - Check for Cracker Update
@@ -92,10 +122,7 @@ func main() {
92122
* [SetTaskAbandoned](docs/sdks/tasks/README.md#settaskabandoned) - Abandon Task
93123
* [GetTaskZaps](docs/sdks/tasks/README.md#gettaskzaps) - Get Completed Hashes
94124

95-
### [Client](docs/sdks/client/README.md)
96-
97-
* [GetConfiguration](docs/sdks/client/README.md#getconfiguration) - Get Agent Configuration
98-
* [Authenticate](docs/sdks/client/README.md#authenticate) - Authenticate Client
125+
</details>
99126
<!-- End Available Resources and Operations [operations] -->
100127

101128
<!-- Start Error Handling [errors] -->
@@ -125,9 +152,9 @@ func main() {
125152
s := cipherswarmagentsdkgo.New(
126153
cipherswarmagentsdkgo.WithSecurity("<YOUR_BEARER_TOKEN_HERE>"),
127154
)
128-
var id int64 = 135003
155+
129156
ctx := context.Background()
130-
res, err := s.Agents.GetAgent(ctx, id)
157+
res, err := s.Agents.GetAgent(ctx, 135003)
131158
if err != nil {
132159

133160
var e *sdkerrors.ErrorObject
@@ -175,9 +202,9 @@ func main() {
175202
cipherswarmagentsdkgo.WithServerIndex(1),
176203
cipherswarmagentsdkgo.WithSecurity("<YOUR_BEARER_TOKEN_HERE>"),
177204
)
178-
var id int64 = 135003
205+
179206
ctx := context.Background()
180-
res, err := s.Agents.GetAgent(ctx, id)
207+
res, err := s.Agents.GetAgent(ctx, 135003)
181208
if err != nil {
182209
log.Fatal(err)
183210
}
@@ -212,9 +239,9 @@ func main() {
212239
cipherswarmagentsdkgo.WithServerURL("https://{defaultHost}"),
213240
cipherswarmagentsdkgo.WithSecurity("<YOUR_BEARER_TOKEN_HERE>"),
214241
)
215-
var id int64 = 135003
242+
216243
ctx := context.Background()
217-
res, err := s.Agents.GetAgent(ctx, id)
244+
res, err := s.Agents.GetAgent(ctx, 135003)
218245
if err != nil {
219246
log.Fatal(err)
220247
}
@@ -280,9 +307,9 @@ func main() {
280307
s := cipherswarmagentsdkgo.New(
281308
cipherswarmagentsdkgo.WithSecurity("<YOUR_BEARER_TOKEN_HERE>"),
282309
)
283-
var id int64 = 135003
310+
284311
ctx := context.Background()
285-
res, err := s.Agents.GetAgent(ctx, id)
312+
res, err := s.Agents.GetAgent(ctx, 135003)
286313
if err != nil {
287314
log.Fatal(err)
288315
}
@@ -321,9 +348,9 @@ func main() {
321348
s := cipherswarmagentsdkgo.New(
322349
cipherswarmagentsdkgo.WithSecurity("<YOUR_BEARER_TOKEN_HERE>"),
323350
)
324-
var id int64 = 135003
351+
325352
ctx := context.Background()
326-
res, err := s.Agents.GetAgent(ctx, id, operations.WithRetries(
353+
res, err := s.Agents.GetAgent(ctx, 135003, operations.WithRetries(
327354
retry.Config{
328355
Strategy: "backoff",
329356
Backoff: &retry.BackoffStrategy{
@@ -370,9 +397,9 @@ func main() {
370397
}),
371398
cipherswarmagentsdkgo.WithSecurity("<YOUR_BEARER_TOKEN_HERE>"),
372399
)
373-
var id int64 = 135003
400+
374401
ctx := context.Background()
375-
res, err := s.Agents.GetAgent(ctx, id)
402+
res, err := s.Agents.GetAgent(ctx, 135003)
376403
if err != nil {
377404
log.Fatal(err)
378405
}

RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -268,4 +268,14 @@ Based on:
268268
### Generated
269269
- [go v0.8.3] .
270270
### Releases
271-
- [Go v0.8.3] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.8.3 - .
271+
- [Go v0.8.3] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.8.3 - .
272+
273+
## 2024-09-20 00:25:26
274+
### Changes
275+
Based on:
276+
- OpenAPI Doc
277+
- Speakeasy CLI 1.400.1 (2.420.2) https://github.com/speakeasy-api/speakeasy
278+
### Generated
279+
- [go v0.8.4] .
280+
### Releases
281+
- [Go v0.8.4] https://github.com/unclesp1d3r/cipherswarm-agent-sdk-go/releases/tag/v0.8.4 - .

USAGE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ func main() {
1212
s := cipherswarmagentsdkgo.New(
1313
cipherswarmagentsdkgo.WithSecurity("<YOUR_BEARER_TOKEN_HERE>"),
1414
)
15-
var id int64 = 135003
15+
1616
ctx := context.Background()
17-
res, err := s.Agents.GetAgent(ctx, id)
17+
res, err := s.Agents.GetAgent(ctx, 135003)
1818
if err != nil {
1919
log.Fatal(err)
2020
}

0 commit comments

Comments
 (0)