Skip to content

Commit

Permalink
Merge pull request #34 from vladhss/feature/all-regions-in-user-group
Browse files Browse the repository at this point in the history
Add `AllRegionsIncluded` field to user group
  • Loading branch information
sahaqaa authored Aug 22, 2024
2 parents d35ab58 + 0c1eb95 commit b656cef
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions cloudconnexa/user_groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ type UserGroupPageResponse struct {
}

type UserGroup struct {
ConnectAuth string `json:"connectAuth"`
ID string `json:"id"`
InternetAccess string `json:"internetAccess"`
MaxDevice int `json:"maxDevice"`
Name string `json:"name"`
SystemSubnets []string `json:"systemSubnets"`
VpnRegionIds []string `json:"vpnRegionIds"`
ConnectAuth string `json:"connectAuth"`
ID string `json:"id"`
InternetAccess string `json:"internetAccess"`
MaxDevice int `json:"maxDevice"`
Name string `json:"name"`
SystemSubnets []string `json:"systemSubnets"`
VpnRegionIds []string `json:"vpnRegionIds"`
AllRegionsIncluded bool `json:"allRegionsIncluded"`
}

type UserGroupsService service
Expand Down

0 comments on commit b656cef

Please sign in to comment.