Documentation
¶
Index ¶
- type GroupAddUserService
- type GroupCreateService
- type GroupDeleteService
- type GroupDetailsResponse
- type GroupDetailsService
- type GroupItem
- type GroupListConnectionsResponse
- type GroupListConnectionsService
- func (s *GroupListConnectionsService) Cursor(value string) *GroupListConnectionsService
- func (s *GroupListConnectionsService) Do(ctx context.Context) (GroupListConnectionsResponse, error)
- func (s *GroupListConnectionsService) GroupID(value string) *GroupListConnectionsService
- func (s *GroupListConnectionsService) Limit(value int) *GroupListConnectionsService
- func (s *GroupListConnectionsService) Schema(value string) *GroupListConnectionsService
- type GroupListUsersResponse
- type GroupListUsersService
- func (s *GroupListUsersService) Cursor(value string) *GroupListUsersService
- func (s *GroupListUsersService) Do(ctx context.Context) (GroupListUsersResponse, error)
- func (s *GroupListUsersService) GroupID(value string) *GroupListUsersService
- func (s *GroupListUsersService) Limit(value int) *GroupListUsersService
- type GroupRemoveUserService
- type GroupServiceAccountResponse
- type GroupServiceAccountService
- type GroupSshKeyResponse
- type GroupSshKeyService
- type GroupUpdateService
- type GroupsListResponse
- type GroupsListService
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GroupAddUserService ¶ added in v0.7.15
type GroupAddUserService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupAddUserService) Do ¶ added in v0.7.15
func (s *GroupAddUserService) Do(ctx context.Context) (common.CommonResponse, error)
func (*GroupAddUserService) Email ¶ added in v0.7.15
func (s *GroupAddUserService) Email(value string) *GroupAddUserService
func (*GroupAddUserService) GroupID ¶ added in v0.7.15
func (s *GroupAddUserService) GroupID(value string) *GroupAddUserService
func (*GroupAddUserService) Role ¶ added in v0.7.15
func (s *GroupAddUserService) Role(value string) *GroupAddUserService
type GroupCreateService ¶ added in v0.7.15
type GroupCreateService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupCreateService) Do ¶ added in v0.7.15
func (s *GroupCreateService) Do(ctx context.Context) (GroupDetailsResponse, error)
func (*GroupCreateService) Name ¶ added in v0.7.15
func (s *GroupCreateService) Name(value string) *GroupCreateService
type GroupDeleteService ¶ added in v0.7.15
type GroupDeleteService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupDeleteService) Do ¶ added in v0.7.15
func (s *GroupDeleteService) Do(ctx context.Context) (common.CommonResponse, error)
func (*GroupDeleteService) GroupID ¶ added in v0.7.15
func (s *GroupDeleteService) GroupID(value string) *GroupDeleteService
type GroupDetailsResponse ¶
type GroupDetailsResponse struct {
common.CommonResponse
Data GroupItem `json:"data"`
}
type GroupDetailsService ¶ added in v0.7.15
type GroupDetailsService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupDetailsService) Do ¶ added in v0.7.15
func (s *GroupDetailsService) Do(ctx context.Context) (GroupDetailsResponse, error)
func (*GroupDetailsService) GroupID ¶ added in v0.7.15
func (s *GroupDetailsService) GroupID(value string) *GroupDetailsService
type GroupListConnectionsResponse ¶ added in v1.1.1
type GroupListConnectionsResponse struct {
common.CommonResponse
Data struct {
Items []connections.DetailsResponseDataCommon `json:"items"`
NextCursor string `json:"next_cursor"`
} `json:"data"`
}
type GroupListConnectionsService ¶ added in v1.1.1
type GroupListConnectionsService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupListConnectionsService) Cursor ¶ added in v1.1.1
func (s *GroupListConnectionsService) Cursor(value string) *GroupListConnectionsService
func (*GroupListConnectionsService) Do ¶ added in v1.1.1
func (s *GroupListConnectionsService) Do(ctx context.Context) (GroupListConnectionsResponse, error)
func (*GroupListConnectionsService) GroupID ¶ added in v1.1.1
func (s *GroupListConnectionsService) GroupID(value string) *GroupListConnectionsService
func (*GroupListConnectionsService) Limit ¶ added in v1.1.1
func (s *GroupListConnectionsService) Limit(value int) *GroupListConnectionsService
func (*GroupListConnectionsService) Schema ¶ added in v1.1.1
func (s *GroupListConnectionsService) Schema(value string) *GroupListConnectionsService
type GroupListUsersResponse ¶ added in v0.7.15
type GroupListUsersResponse struct {
common.CommonResponse
Data struct {
Items []users.UserDetailsData `json:"items"`
NextCursor string `json:"next_cursor"`
} `json:"data"`
}
type GroupListUsersService ¶ added in v0.7.15
type GroupListUsersService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupListUsersService) Cursor ¶ added in v0.7.15
func (s *GroupListUsersService) Cursor(value string) *GroupListUsersService
func (*GroupListUsersService) Do ¶ added in v0.7.15
func (s *GroupListUsersService) Do(ctx context.Context) (GroupListUsersResponse, error)
func (*GroupListUsersService) GroupID ¶ added in v0.7.15
func (s *GroupListUsersService) GroupID(value string) *GroupListUsersService
func (*GroupListUsersService) Limit ¶ added in v0.7.15
func (s *GroupListUsersService) Limit(value int) *GroupListUsersService
type GroupRemoveUserService ¶ added in v0.7.15
type GroupRemoveUserService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupRemoveUserService) Do ¶ added in v0.7.15
func (s *GroupRemoveUserService) Do(ctx context.Context) (common.CommonResponse, error)
func (*GroupRemoveUserService) GroupID ¶ added in v0.7.15
func (s *GroupRemoveUserService) GroupID(value string) *GroupRemoveUserService
func (*GroupRemoveUserService) UserID ¶ added in v0.7.15
func (s *GroupRemoveUserService) UserID(value string) *GroupRemoveUserService
type GroupServiceAccountResponse ¶ added in v0.7.15
type GroupServiceAccountResponse struct {
common.CommonResponse
Data struct {
ServiceAccount string `json:"service_account"`
}
}
type GroupServiceAccountService ¶ added in v0.7.15
type GroupServiceAccountService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupServiceAccountService) Do ¶ added in v0.7.15
func (s *GroupServiceAccountService) Do(ctx context.Context) (GroupServiceAccountResponse, error)
func (*GroupServiceAccountService) GroupID ¶ added in v0.7.15
func (s *GroupServiceAccountService) GroupID(value string) *GroupServiceAccountService
type GroupSshKeyResponse ¶ added in v0.7.15
type GroupSshKeyResponse struct {
common.CommonResponse
Data struct {
PublicKey string `json:"public_key"`
}
}
type GroupSshKeyService ¶ added in v0.7.15
type GroupSshKeyService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupSshKeyService) Do ¶ added in v0.7.15
func (s *GroupSshKeyService) Do(ctx context.Context) (GroupSshKeyResponse, error)
func (*GroupSshKeyService) GroupID ¶ added in v0.7.15
func (s *GroupSshKeyService) GroupID(value string) *GroupSshKeyService
type GroupUpdateService ¶ added in v1.1.1
type GroupUpdateService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupUpdateService) Do ¶ added in v1.1.1
func (s *GroupUpdateService) Do(ctx context.Context) (GroupDetailsResponse, error)
func (*GroupUpdateService) GroupID ¶ added in v1.1.1
func (s *GroupUpdateService) GroupID(value string) *GroupUpdateService
func (*GroupUpdateService) Name ¶ added in v1.1.1
func (s *GroupUpdateService) Name(value string) *GroupUpdateService
type GroupsListResponse ¶ added in v0.7.15
type GroupsListResponse struct {
common.CommonResponse
Data struct {
Items []GroupItem `json:"items"`
NextCursor string `json:"next_cursor"`
} `json:"data"`
}
type GroupsListService ¶ added in v0.7.15
type GroupsListService struct {
httputils.HttpService
// contains filtered or unexported fields
}
func (*GroupsListService) Cursor ¶ added in v0.7.15
func (s *GroupsListService) Cursor(value string) *GroupsListService
func (*GroupsListService) Do ¶ added in v0.7.15
func (s *GroupsListService) Do(ctx context.Context) (GroupsListResponse, error)
func (*GroupsListService) Limit ¶ added in v0.7.15
func (s *GroupsListService) Limit(value int) *GroupsListService
Click to show internal directories.
Click to hide internal directories.