Documentation
¶
Index ¶
- Constants
- func GetNextToken(page int, limit int, total int) string
- func ParsePaginationToken(pToken *pagination.Token) (int, int, string, error)
- func ParsePaginationTokenString(pToken string) (int, int, string, error)
- func WithBearerToken(token string) uhttp.RequestOption
- type AuthRequest
- type AuthResponse
- type Client
- func (c *Client) AddUserToOrganization(ctx context.Context, organizationId string, userId string) (*v2.RateLimitDescription, error)
- func (c *Client) AddUserToRole(ctx context.Context, roleId string, userId string) (*v2.RateLimitDescription, error)
- func (c *Client) Authorize(ctx context.Context, clientId string, clientSecret string) error
- func (c *Client) GetOrganizationMembers(ctx context.Context, organizationId string, limit int, page int) ([]User, int, *v2.RateLimitDescription, error)
- func (c *Client) GetOrganizations(ctx context.Context, limit int, page int) ([]Organization, int, *v2.RateLimitDescription, error)
- func (c *Client) GetResourceServer(ctx context.Context, id string) (*ResourceServer, *v2.RateLimitDescription, error)
- func (c *Client) GetResourceServers(ctx context.Context, limit int, page int) ([]*ResourceServer, int, *v2.RateLimitDescription, error)
- func (c *Client) GetRolePermissions(ctx context.Context, id string) ([]*RolePermission, *v2.RateLimitDescription, error)
- func (c *Client) GetRoleUsers(ctx context.Context, roleId string, limit int, page int) ([]User, int, *v2.RateLimitDescription, error)
- func (c *Client) GetRoles(ctx context.Context, limit int, page int) ([]Role, int, *v2.RateLimitDescription, error)
- func (c *Client) GetUsers(ctx context.Context, limit int, page int) ([]User, int, *v2.RateLimitDescription, error)
- func (c *Client) List(ctx context.Context, path string, target interface{}, limit int, page int) (*v2.RateLimitDescription, error)
- func (c *Client) RemoveUserFromOrganization(ctx context.Context, organizationId string, userId string) (*v2.RateLimitDescription, error)
- func (c *Client) RemoveUserFromRole(ctx context.Context, roleId string, userId string) (*v2.RateLimitDescription, error)
- type Organization
- type OrganizationMembersResponse
- type OrganizationsResponse
- type PaginatedResponse
- type Pagination
- type ResourceServer
- type ResourceServerResponse
- type ResourceServerScope
- type Role
- type RolePermission
- type RolesResponse
- type RolesUsersResponse
- type User
- type UserIdentities
- type UsersResponse
Constants ¶
View Source
const PageSizeDefault = 100
Variables ¶
This section is empty.
Functions ¶
func GetNextToken ¶
GetNextToken given a limit and page that were used to fetch _this_ page of data, and total number of resources, return the next pagination token as a string.
func ParsePaginationToken ¶
ParsePaginationToken - takes as pagination token and returns page, limit, and `pagingRequestId` in that order.
func ParsePaginationTokenString ¶ added in v0.0.5
func WithBearerToken ¶
func WithBearerToken(token string) uhttp.RequestOption
WithBearerToken - TODO(marcos): move this function to `baton-sdk`.
Types ¶
type AuthRequest ¶
type AuthResponse ¶
type Client ¶
type Client struct {
BearerToken string
BaseUrl *url.URL
// contains filtered or unexported fields
}
func (*Client) AddUserToOrganization ¶
func (*Client) AddUserToRole ¶
func (*Client) GetOrganizationMembers ¶
func (*Client) GetOrganizations ¶
func (c *Client) GetOrganizations( ctx context.Context, limit int, page int, ) ( []Organization, int, *v2.RateLimitDescription, error, )
func (*Client) GetResourceServer ¶ added in v0.0.5
func (c *Client) GetResourceServer( ctx context.Context, id string, ) ( *ResourceServer, *v2.RateLimitDescription, error, )
func (*Client) GetResourceServers ¶ added in v0.0.5
func (c *Client) GetResourceServers( ctx context.Context, limit int, page int, ) ( []*ResourceServer, int, *v2.RateLimitDescription, error, )
func (*Client) GetRolePermissions ¶ added in v0.0.5
func (c *Client) GetRolePermissions( ctx context.Context, id string, ) ( []*RolePermission, *v2.RateLimitDescription, error, )
func (*Client) GetRoleUsers ¶
func (*Client) RemoveUserFromOrganization ¶
func (*Client) RemoveUserFromRole ¶
type Organization ¶
type OrganizationMembersResponse ¶
type OrganizationMembersResponse struct {
Members []User `json:"members"`
PaginatedResponse
}
type OrganizationsResponse ¶
type OrganizationsResponse struct {
Organizations []Organization `json:"organizations"`
PaginatedResponse
}
type PaginatedResponse ¶
type Pagination ¶
type ResourceServer ¶ added in v0.0.5
type ResourceServer struct {
Id string `json:"id"`
Name string `json:"name"`
IsSystem bool `json:"is_system"`
Identifier string `json:"identifier"`
Scopes []ResourceServerScope `json:"scopes"`
SigningAlg string `json:"signing_alg"`
AllowOfflineAccess bool `json:"allow_offline_access"`
SkipConsentForVerifiableFirstPartyClients bool `json:"skip_consent_for_verifiable_first_party_clients"`
TokenLifetime int `json:"token_lifetime"`
TokenLifetimeForWeb int `json:"token_lifetime_for_web"`
EnforcePolicies bool `json:"enforce_policies"`
TokenDialect string `json:"token_dialect"`
ConsentPolicy string `json:"consent_policy"`
}
type ResourceServerResponse ¶ added in v0.0.5
type ResourceServerResponse struct {
PaginatedResponse
ResourceServers []*ResourceServer `json:"resource_servers"`
}
type ResourceServerScope ¶ added in v0.0.5
type RolePermission ¶ added in v0.0.5
type RolesResponse ¶
type RolesResponse struct {
PaginatedResponse
Roles []Role `json:"roles"`
}
type RolesUsersResponse ¶
type RolesUsersResponse struct {
PaginatedResponse
Users []User `json:"users"`
}
type User ¶
type User struct {
CreatedAt time.Time `json:"created_at"`
Email string `json:"email"`
EmailVerified bool `json:"email_verified"`
Identities []UserIdentities `json:"identities"`
Name string `json:"name"`
Nickname string `json:"nickname"`
Picture string `json:"picture"`
UpdatedAt time.Time `json:"updated_at"`
UserId string `json:"user_id"`
}
type UserIdentities ¶
type UsersResponse ¶
type UsersResponse struct {
PaginatedResponse
Length int `json:"length"`
Users []User `json:"users"`
}
Click to show internal directories.
Click to hide internal directories.