-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4711211
commit 521dba0
Showing
4 changed files
with
139 additions
and
35 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
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,14 @@ | ||
package model | ||
|
||
import "github.com/hashicorp/terraform-plugin-framework/types" | ||
|
||
// Cluster describes the cluster resource and data source model. | ||
type Cluster struct { | ||
Id types.String `tfsdk:"id"` | ||
InseredAt types.String `tfsdk:"inserted_at"` | ||
Name types.String `tfsdk:"name"` | ||
Handle types.String `tfsdk:"handle"` | ||
Cloud types.String `tfsdk:"cloud"` | ||
Protect types.Bool `tfsdk:"protect"` | ||
Tags types.Map `tfsdk:"tags"` | ||
} |
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