File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ type Organization struct {
105
105
DefaultExecutionMode string `jsonapi:"attr,default-execution-mode"`
106
106
Email string `jsonapi:"attr,email"`
107
107
ExternalID string `jsonapi:"attr,external-id"`
108
+ IsUnified bool `jsonapi:"attr,is-unified"`
108
109
OwnersTeamSAMLRoleID string `jsonapi:"attr,owners-team-saml-role-id"`
109
110
Permissions * OrganizationPermissions `jsonapi:"attr,permissions"`
110
111
SAMLEnabled bool `jsonapi:"attr,saml-enabled"`
Original file line number Diff line number Diff line change @@ -46,8 +46,9 @@ type ProjectList struct {
46
46
47
47
// Project represents a Terraform Enterprise project
48
48
type Project struct {
49
- ID string `jsonapi:"primary,projects"`
50
- Name string `jsonapi:"attr,name"`
49
+ ID string `jsonapi:"primary,projects"`
50
+ IsUnified bool `jsonapi:"attr,is-unified"`
51
+ Name string `jsonapi:"attr,name"`
51
52
52
53
Description string `jsonapi:"attr,description"`
53
54
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ type TeamList struct {
47
47
// Team represents a Terraform Enterprise team.
48
48
type Team struct {
49
49
ID string `jsonapi:"primary,teams"`
50
+ IsUnified bool `jsonapi:"attr,is-unified"`
50
51
Name string `jsonapi:"attr,name"`
51
52
OrganizationAccess * OrganizationAccess `jsonapi:"attr,organization-access"`
52
53
Visibility string `jsonapi:"attr,visibility"`
You can’t perform that action at this time.
0 commit comments