We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da51d3c commit c2d256bCopy full SHA for c2d256b
stack_deployment_groups.go
@@ -28,14 +28,14 @@ type stackDeploymentGroups struct {
28
var _ StackDeploymentGroups = &stackDeploymentGroups{}
29
30
type StackDeploymentGroup struct {
31
- ID string
+ ID string `jsonapi:"primary,stacks-deployment-groups"`
32
Name string `jsonapi:"attr,name"`
33
Status DeploymentGroupStatus `jsonapi:"attr,status"`
34
- CreatedAt string
35
- UpdatedAt string
+ CreatedAt string `jsonapi:"attr,created-at"`
+ UpdatedAt string `jsonapi:"attr,updated-at"`
36
37
// Relationships
38
- StackConfiguration StackConfiguration
+ StackConfiguration StackConfiguration `jsonapi:"relation,stack-configurations"`
39
}
40
41
// StackDeploymentGroupList represents a list of stack deployment groups.
0 commit comments