Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc 0.0.1, Speakeasy CLI 1.147.0
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Jan 19, 2024
1 parent 1b884bf commit b04fada
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ management:
docChecksum: efc15a2cebb7508c2a3d9c4322a8dc7c
docVersion: 0.0.1
speakeasyVersion: internal
generationVersion: 2.234.3
releaseVersion: 2.5.2
configChecksum: c4f24f64504e2d02517bbc8837f6792a
generationVersion: 2.237.2
releaseVersion: 2.5.3
configChecksum: 1cf93519c064fe9bcf3ed6017abd922c
repoURL: https://github.com/speakeasy-sdks/terraform-provider-netbird.git
repoSubDirectory: .
published: true
features:
terraform:
core: 3.8.4
deprecations: 2.81.1
globalSecurity: 2.81.2
globalSecurity: 2.81.3
globalServerURLs: 2.82.1
methodSecurity: 2.82.0
methodSecurity: 2.82.1
generatedFiles:
- internal/sdk/accounts.go
- internal/sdk/dns.go
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
required_providers {
netbird = {
source = "NetBird/netbird"
version = "2.5.2"
version = "2.5.3"
}
}
}
Expand Down
10 changes: 9 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,4 +482,12 @@ Based on:
- OpenAPI Doc 0.0.1
- Speakeasy CLI 1.142.1 (2.234.3) https://github.com/speakeasy-api/speakeasy
### Generated
- [terraform v2.5.2] .
- [terraform v2.5.2] .

## 2024-01-19 00:39:58
### Changes
Based on:
- OpenAPI Doc 0.0.1
- Speakeasy CLI 1.147.0 (2.237.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [terraform v2.5.3] .
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ terraform {
required_providers {
netbird = {
source = "NetBird/netbird"
version = "2.5.2"
version = "2.5.3"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
netbird = {
source = "NetBird/netbird"
version = "2.5.2"
version = "2.5.3"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ generation:
fixes:
nameResolutionDec2023: false
terraform:
version: 2.5.2
version: 2.5.3
author: NetBird
imports:
option: openapi
Expand Down
4 changes: 2 additions & 2 deletions internal/sdk/pkg/utils/security.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ func parseSecuritySchemeValue(client *securityConfig, schemeTag *securityTag, se
panic("not supported")
}
case "openIdConnect":
client.headers[secTag.Name] = valToString(val)
client.headers[secTag.Name] = prefixBearer(valToString(val))
case "oauth2":
client.headers[secTag.Name] = valToString(val)
client.headers[secTag.Name] = prefixBearer(valToString(val))
case "http":
switch schemeTag.SubType {
case "bearer":
Expand Down
6 changes: 3 additions & 3 deletions internal/sdk/sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,9 @@ func New(opts ...SDKOption) *Netbird {
sdkConfiguration: sdkConfiguration{
Language: "go",
OpenAPIDocVersion: "0.0.1",
SDKVersion: "2.5.2",
GenVersion: "2.234.3",
UserAgent: "speakeasy-sdk/go 2.5.2 2.234.3 0.0.1 netbird",
SDKVersion: "2.5.3",
GenVersion: "2.237.2",
UserAgent: "speakeasy-sdk/go 2.5.3 2.237.2 0.0.1 netbird",
},
}
for _, opt := range opts {
Expand Down

0 comments on commit b04fada

Please sign in to comment.