Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc 0.0.1, Speakeasy CLI 1.207.1
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed Mar 13, 2024
1 parent e7e3c99 commit e8b9577
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ id: a72a4b0f-521b-4892-bd77-b6a1afb8b82b
management:
docChecksum: 7b193330bf41e2c47ba62aa354c4a561
docVersion: 0.0.1
speakeasyVersion: 1.204.1
generationVersion: 2.279.1
releaseVersion: 0.14.0
configChecksum: b99dffbb53af772facca9608df837a1e
speakeasyVersion: 1.207.1
generationVersion: 2.280.6
releaseVersion: 0.14.1
configChecksum: dc259f1ec47d0e5a0ff35ade30aa7888
repoURL: https://github.com/speakeasy-sdks/terraform-provider-hashicups.git
repoSubDirectory: .
published: true
features:
terraform:
core: 3.10.2
core: 3.10.3
globalSecurity: 2.81.5
globalServerURLs: 2.82.1
generatedFiles:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ terraform {
required_providers {
hashicups = {
source = "speakeasy/hashicups"
version = "0.14.0"
version = "0.14.1"
}
}
}
Expand Down
10 changes: 9 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,4 +222,12 @@ Based on:
- OpenAPI Doc 0.0.1
- Speakeasy CLI 1.204.1 (2.279.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [terraform v0.14.0] .
- [terraform v0.14.0] .

## 2024-03-13 01:05:16
### Changes
Based on:
- OpenAPI Doc 0.0.1
- Speakeasy CLI 1.207.1 (2.280.6) https://github.com/speakeasy-api/speakeasy
### Generated
- [terraform v0.14.1] .
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 {
hashicups = {
source = "speakeasy/hashicups"
version = "0.14.0"
version = "0.14.1"
}
}
}
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 {
hashicups = {
source = "speakeasy/hashicups"
version = "0.14.0"
version = "0.14.1"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
terraform:
version: 0.14.0
version: 0.14.1
author: speakeasy
imports:
option: openapi
Expand Down
2 changes: 2 additions & 0 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"github.com/hashicorp/terraform-plugin-framework/types"
"github.com/speakeasy/terraform-provider-hashicups/internal/sdk"
"github.com/speakeasy/terraform-provider-hashicups/internal/sdk/pkg/models/shared"
"net/http"
)

var _ provider.Provider = &HashicupsProvider{}
Expand Down Expand Up @@ -73,6 +74,7 @@ func (p *HashicupsProvider) Configure(ctx context.Context, req provider.Configur
opts := []sdk.SDKOption{
sdk.WithServerURL(ServerURL),
sdk.WithSecurity(security),
sdk.WithClient(http.DefaultClient),
}
client := sdk.New(opts...)

Expand Down
6 changes: 3 additions & 3 deletions internal/sdk/sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ func New(opts ...SDKOption) *SDK {
sdkConfiguration: sdkConfiguration{
Language: "go",
OpenAPIDocVersion: "0.0.1",
SDKVersion: "0.14.0",
GenVersion: "2.279.1",
UserAgent: "speakeasy-sdk/go 0.14.0 2.279.1 0.0.1 hashicups",
SDKVersion: "0.14.1",
GenVersion: "2.280.6",
UserAgent: "speakeasy-sdk/go 0.14.1 2.280.6 0.0.1 hashicups",
},
}
for _, opt := range opts {
Expand Down

0 comments on commit e8b9577

Please sign in to comment.