Documentation ¶
Index ¶
- func PossibleValuesForEntitySearchType() []string
- func PossibleValuesForEntityViewParameterType() []string
- func PossibleValuesForPermissions() []string
- type EntitiesClient
- func (c EntitiesClient) List(ctx context.Context, options ListOperationOptions) (resp ListOperationResponse, err error)
- func (c EntitiesClient) ListComplete(ctx context.Context, options ListOperationOptions) (ListCompleteResult, error)
- func (c EntitiesClient) ListCompleteMatchingPredicate(ctx context.Context, options ListOperationOptions, ...) (resp ListCompleteResult, err error)
- type EntityInfo
- type EntityInfoOperationPredicate
- type EntityInfoProperties
- type EntityParentGroupInfo
- type EntitySearchType
- type EntityViewParameterType
- type ListCompleteResult
- type ListOperationOptions
- type ListOperationResponse
- type Permissions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForEntitySearchType ¶
func PossibleValuesForEntitySearchType() []string
func PossibleValuesForEntityViewParameterType ¶
func PossibleValuesForEntityViewParameterType() []string
func PossibleValuesForPermissions ¶
func PossibleValuesForPermissions() []string
Types ¶
type EntitiesClient ¶
func NewEntitiesClientWithBaseURI ¶
func NewEntitiesClientWithBaseURI(endpoint string) EntitiesClient
func (EntitiesClient) List ¶
func (c EntitiesClient) List(ctx context.Context, options ListOperationOptions) (resp ListOperationResponse, err error)
List ...
func (EntitiesClient) ListComplete ¶
func (c EntitiesClient) ListComplete(ctx context.Context, options ListOperationOptions) (ListCompleteResult, error)
ListComplete retrieves all of the results into a single object
func (EntitiesClient) ListCompleteMatchingPredicate ¶
func (c EntitiesClient) ListCompleteMatchingPredicate(ctx context.Context, options ListOperationOptions, predicate EntityInfoOperationPredicate) (resp ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all of the results and then applied the predicate
type EntityInfo ¶
type EntityInfo struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *EntityInfoProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type EntityInfoOperationPredicate ¶
func (EntityInfoOperationPredicate) Matches ¶
func (p EntityInfoOperationPredicate) Matches(input EntityInfo) bool
type EntityInfoProperties ¶
type EntityInfoProperties struct { DisplayName *string `json:"displayName,omitempty"` InheritedPermissions *Permissions `json:"inheritedPermissions,omitempty"` NumberOfChildGroups *int64 `json:"numberOfChildGroups,omitempty"` NumberOfChildren *int64 `json:"numberOfChildren,omitempty"` NumberOfDescendants *int64 `json:"numberOfDescendants,omitempty"` Parent *EntityParentGroupInfo `json:"parent,omitempty"` ParentDisplayNameChain *[]string `json:"parentDisplayNameChain,omitempty"` ParentNameChain *[]string `json:"parentNameChain,omitempty"` Permissions *Permissions `json:"permissions,omitempty"` TenantId *string `json:"tenantId,omitempty"` }
type EntityParentGroupInfo ¶
type EntityParentGroupInfo struct {
Id *string `json:"id,omitempty"`
}
type EntitySearchType ¶
type EntitySearchType string
const ( EntitySearchTypeAllowedChildren EntitySearchType = "AllowedChildren" EntitySearchTypeAllowedParents EntitySearchType = "AllowedParents" EntitySearchTypeChildrenOnly EntitySearchType = "ChildrenOnly" EntitySearchTypeParentAndFirstLevelChildren EntitySearchType = "ParentAndFirstLevelChildren" EntitySearchTypeParentOnly EntitySearchType = "ParentOnly" )
type EntityViewParameterType ¶
type EntityViewParameterType string
const ( EntityViewParameterTypeAudit EntityViewParameterType = "Audit" EntityViewParameterTypeFullHierarchy EntityViewParameterType = "FullHierarchy" EntityViewParameterTypeGroupsOnly EntityViewParameterType = "GroupsOnly" EntityViewParameterTypeSubscriptionsOnly EntityViewParameterType = "SubscriptionsOnly" )
type ListCompleteResult ¶
type ListCompleteResult struct {
Items []EntityInfo
}
type ListOperationOptions ¶
type ListOperationOptions struct { CacheControl *string Filter *string GroupName *string Search *EntitySearchType Select *string Skip *int64 Top *int64 View *EntityViewParameterType }
func DefaultListOperationOptions ¶
func DefaultListOperationOptions() ListOperationOptions
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response Model *[]EntityInfo // contains filtered or unexported fields }
func (ListOperationResponse) HasMore ¶
func (r ListOperationResponse) HasMore() bool
func (ListOperationResponse) LoadMore ¶
func (r ListOperationResponse) LoadMore(ctx context.Context) (resp ListOperationResponse, err error)
type Permissions ¶
type Permissions string
const ( PermissionsDelete Permissions = "delete" PermissionsEdit Permissions = "edit" PermissionsNoaccess Permissions = "noaccess" PermissionsView Permissions = "view" )
Click to show internal directories.
Click to hide internal directories.