@@ -85,18 +85,8 @@ func main() {
85
85
cipherswarmagentsdkgo.WithSecurity (os.Getenv (" BEARER_AUTH" )),
86
86
)
87
87
var id int64 = 828119
88
-
89
- var agentUpdate *components.AgentUpdate = &components.AgentUpdate {
90
- ID: 182255 ,
91
- Name: " <value>" ,
92
- ClientSignature: " <value>" ,
93
- OperatingSystem: " <value>" ,
94
- Devices: []string {
95
- " <value>" ,
96
- },
97
- }
98
88
ctx := context.Background ()
99
- res , err := s.Agents .UpdateAgent (ctx, id, agentUpdate )
89
+ res , err := s.Agents .UpdateAgent (ctx, id, nil )
100
90
if err != nil {
101
91
log.Fatal (err)
102
92
}
@@ -195,17 +185,8 @@ func main() {
195
185
cipherswarmagentsdkgo.WithSecurity (os.Getenv (" BEARER_AUTH" )),
196
186
)
197
187
var id int64 = 303399
198
-
199
- var requestBody []components.HashcatBenchmark = []components.HashcatBenchmark {
200
- components.HashcatBenchmark {
201
- HashType: 442220 ,
202
- Runtime: 8499 ,
203
- HashSpeed: 156.49 ,
204
- Device: 322052 ,
205
- },
206
- }
207
188
ctx := context.Background ()
208
- res , err := s.Agents .SubmitBenchmark (ctx, id, requestBody )
189
+ res , err := s.Agents .SubmitBenchmark (ctx, id, nil )
209
190
if err != nil {
210
191
log.Fatal (err)
211
192
}
@@ -254,14 +235,8 @@ func main() {
254
235
cipherswarmagentsdkgo.WithSecurity (os.Getenv (" BEARER_AUTH" )),
255
236
)
256
237
var id int64 = 607526
257
-
258
- var agentError *components.AgentError = &components.AgentError {
259
- Message: " <value>" ,
260
- Severity: components.SeverityMajor ,
261
- AgentID: 837317 ,
262
- }
263
238
ctx := context.Background ()
264
- res , err := s.Agents .SubmitErrorAgent (ctx, id, agentError )
239
+ res , err := s.Agents .SubmitErrorAgent (ctx, id, nil )
265
240
if err != nil {
266
241
log.Fatal (err)
267
242
}
0 commit comments