Skip to content

Commit

Permalink
Adds additional godoc comments and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonc committed Jul 12, 2024
1 parent f73f833 commit 79e2f37
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# UNRELEASED

* Adds more BETA support for `Stacks` resources, which is EXPERIMENTAL, SUBJECT TO CHANGE, and may not be available to all users by @brandonc. [#934](https://github.com/hashicorp/go-tfe/pull/934)

# v1.59.0

## Features
Expand Down
4 changes: 4 additions & 0 deletions stack_configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ import (
"net/url"
)

// StackConfigurations describes all the stacks configurations-related methods that the
// HCP Terraform API supports.
// NOTE WELL: This is a beta feature and is subject to change until noted otherwise in the
// release notes.
type StackConfigurations interface {
// ReadConfiguration returns a stack configuration by its ID.
Read(ctx context.Context, ID string) (*StackConfiguration, error)
Expand Down
4 changes: 4 additions & 0 deletions stack_deployments.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ import (
"net/url"
)

// StackDeployments describes all the stacks deployments-related methods that the
// HCP Terraform API supports.
// NOTE WELL: This is a beta feature and is subject to change until noted otherwise in the
// release notes.
type StackDeployments interface {
// Read returns a stack deployment by its name.
Read(ctx context.Context, stackID, deployment string) (*StackDeployment, error)
Expand Down

0 comments on commit 79e2f37

Please sign in to comment.