Skip to content

Commit

Permalink
Add AllRegionsIncluded field to user group
Browse files Browse the repository at this point in the history
  • Loading branch information
vladhanzha committed Aug 22, 2024
1 parent d35ab58 commit 0c1eb95
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 0c1eb95

Please sign in to comment.