Documentation ¶
Index ¶
- func ValidateEntitiesID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateRelationID(input interface{}, key string) (warnings []string, errors []error)
- type EntitiesId
- type EntitiesRelationsListCompleteResult
- type EntitiesRelationsListOperationOptions
- type EntitiesRelationsListOperationResponse
- type EntityRelationsClient
- func (c EntityRelationsClient) EntitiesRelationsList(ctx context.Context, id EntitiesId, ...) (resp EntitiesRelationsListOperationResponse, err error)
- func (c EntityRelationsClient) EntitiesRelationsListComplete(ctx context.Context, id EntitiesId, ...) (EntitiesRelationsListCompleteResult, error)
- func (c EntityRelationsClient) EntitiesRelationsListCompleteMatchingPredicate(ctx context.Context, id EntitiesId, ...) (resp EntitiesRelationsListCompleteResult, err error)
- func (c EntityRelationsClient) GetRelation(ctx context.Context, id RelationId) (result GetRelationOperationResponse, err error)
- type GetRelationOperationResponse
- type Relation
- type RelationId
- type RelationOperationPredicate
- type RelationProperties
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateEntitiesID ¶
ValidateEntitiesID checks that 'input' can be parsed as a Entities ID
func ValidateRelationID ¶
ValidateRelationID checks that 'input' can be parsed as a Relation ID
Types ¶
type EntitiesId ¶
type EntitiesId struct { SubscriptionId string ResourceGroupName string WorkspaceName string EntityId string }
EntitiesId is a struct representing the Resource ID for a Entities
func NewEntitiesID ¶
func NewEntitiesID(subscriptionId string, resourceGroupName string, workspaceName string, entityId string) EntitiesId
NewEntitiesID returns a new EntitiesId struct
func ParseEntitiesID ¶
func ParseEntitiesID(input string) (*EntitiesId, error)
ParseEntitiesID parses 'input' into a EntitiesId
func ParseEntitiesIDInsensitively ¶
func ParseEntitiesIDInsensitively(input string) (*EntitiesId, error)
ParseEntitiesIDInsensitively parses 'input' case-insensitively into a EntitiesId note: this method should only be used for API response data and not user input
func (EntitiesId) Segments ¶
func (id EntitiesId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Entities ID
func (EntitiesId) String ¶
func (id EntitiesId) String() string
String returns a human-readable description of this Entities ID
type EntitiesRelationsListCompleteResult ¶
type EntitiesRelationsListCompleteResult struct {
Items []Relation
}
type EntitiesRelationsListOperationOptions ¶
func DefaultEntitiesRelationsListOperationOptions ¶
func DefaultEntitiesRelationsListOperationOptions() EntitiesRelationsListOperationOptions
type EntitiesRelationsListOperationResponse ¶
type EntitiesRelationsListOperationResponse struct { HttpResponse *http.Response Model *[]Relation // contains filtered or unexported fields }
func (EntitiesRelationsListOperationResponse) HasMore ¶
func (r EntitiesRelationsListOperationResponse) HasMore() bool
func (EntitiesRelationsListOperationResponse) LoadMore ¶
func (r EntitiesRelationsListOperationResponse) LoadMore(ctx context.Context) (resp EntitiesRelationsListOperationResponse, err error)
type EntityRelationsClient ¶
type EntityRelationsClient struct { Client autorest.Client // contains filtered or unexported fields }
func NewEntityRelationsClientWithBaseURI ¶
func NewEntityRelationsClientWithBaseURI(endpoint string) EntityRelationsClient
func (EntityRelationsClient) EntitiesRelationsList ¶
func (c EntityRelationsClient) EntitiesRelationsList(ctx context.Context, id EntitiesId, options EntitiesRelationsListOperationOptions) (resp EntitiesRelationsListOperationResponse, err error)
EntitiesRelationsList ...
func (EntityRelationsClient) EntitiesRelationsListComplete ¶
func (c EntityRelationsClient) EntitiesRelationsListComplete(ctx context.Context, id EntitiesId, options EntitiesRelationsListOperationOptions) (EntitiesRelationsListCompleteResult, error)
EntitiesRelationsListComplete retrieves all of the results into a single object
func (EntityRelationsClient) EntitiesRelationsListCompleteMatchingPredicate ¶
func (c EntityRelationsClient) EntitiesRelationsListCompleteMatchingPredicate(ctx context.Context, id EntitiesId, options EntitiesRelationsListOperationOptions, predicate RelationOperationPredicate) (resp EntitiesRelationsListCompleteResult, err error)
EntitiesRelationsListCompleteMatchingPredicate retrieves all of the results and then applied the predicate
func (EntityRelationsClient) GetRelation ¶
func (c EntityRelationsClient) GetRelation(ctx context.Context, id RelationId) (result GetRelationOperationResponse, err error)
GetRelation ...
type Relation ¶
type Relation struct { Etag *string `json:"etag,omitempty"` Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *RelationProperties `json:"properties,omitempty"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Type *string `json:"type,omitempty"` }
type RelationId ¶
type RelationId struct { SubscriptionId string ResourceGroupName string WorkspaceName string EntityId string RelationName string }
RelationId is a struct representing the Resource ID for a Relation
func NewRelationID ¶
func NewRelationID(subscriptionId string, resourceGroupName string, workspaceName string, entityId string, relationName string) RelationId
NewRelationID returns a new RelationId struct
func ParseRelationID ¶
func ParseRelationID(input string) (*RelationId, error)
ParseRelationID parses 'input' into a RelationId
func ParseRelationIDInsensitively ¶
func ParseRelationIDInsensitively(input string) (*RelationId, error)
ParseRelationIDInsensitively parses 'input' case-insensitively into a RelationId note: this method should only be used for API response data and not user input
func (RelationId) Segments ¶
func (id RelationId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Relation ID
func (RelationId) String ¶
func (id RelationId) String() string
String returns a human-readable description of this Relation ID
type RelationOperationPredicate ¶
func (RelationOperationPredicate) Matches ¶
func (p RelationOperationPredicate) Matches(input Relation) bool