-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc 0.0.1, Speakeay CLI 1.34.0
- Loading branch information
1 parent
6344ee4
commit 7894b56
Showing
134 changed files
with
3,243 additions
and
1,110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# Telemetry | ||
|
||
## Overview | ||
|
||
Endpoints for testing telemetry. | ||
|
||
### Available Operations | ||
|
||
* [TelemetrySpeakeasyUserAgentGet](#telemetryspeakeasyuseragentget) | ||
* [TelemetryUserAgentGet](#telemetryuseragentget) | ||
|
||
## TelemetrySpeakeasyUserAgentGet | ||
|
||
### Example Usage | ||
|
||
```go | ||
package main | ||
|
||
import( | ||
"context" | ||
"log" | ||
"openapi" | ||
"openapi/pkg/models/operations" | ||
) | ||
|
||
func main() { | ||
s := sdk.New( | ||
sdk.WithSecurity(shared.Security{ | ||
APIKeyAuth: sdk.String("Token YOUR_API_KEY"), | ||
}), | ||
sdk.WithGlobalPathParam(100), | ||
sdk.WithGlobalQueryParam("some example global query param"), | ||
) | ||
|
||
ctx := context.Background() | ||
res, err := s.Telemetry.TelemetrySpeakeasyUserAgentGet(ctx, "dolorum") | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
if res.Res != nil { | ||
// handle response | ||
} | ||
} | ||
``` | ||
|
||
## TelemetryUserAgentGet | ||
|
||
### Example Usage | ||
|
||
```go | ||
package main | ||
|
||
import( | ||
"context" | ||
"log" | ||
"openapi" | ||
) | ||
|
||
func main() { | ||
s := sdk.New( | ||
sdk.WithSecurity(shared.Security{ | ||
APIKeyAuth: sdk.String("Token YOUR_API_KEY"), | ||
}), | ||
sdk.WithGlobalPathParam(100), | ||
sdk.WithGlobalQueryParam("some example global query param"), | ||
) | ||
|
||
ctx := context.Background() | ||
res, err := s.Telemetry.TelemetryUserAgentGet(ctx) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
if res.Res != nil { | ||
// handle response | ||
} | ||
} | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
configVersion: 1.0.0 | ||
management: | ||
docChecksum: ff2c1441c7d689e0339b5b03ba509741 | ||
docChecksum: 948d86c8c8659783f15ecb6484ae3368 | ||
docVersion: 0.0.1 | ||
speakeasyVersion: 1.34.0 | ||
generationVersion: 2.30.0 | ||
generation: | ||
sdkClassName: SDK | ||
singleTagPerOp: false | ||
go: | ||
version: 1.1.0 | ||
version: 1.1.1 | ||
maxMethodParams: 5 | ||
packageName: openapi |
Oops, something went wrong.