Documentation ¶
Index ¶
- func ValidateIntegrationAccountID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateSessionID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type IntegrationAccountId
- type IntegrationAccountSession
- type IntegrationAccountSessionOperationPredicate
- type IntegrationAccountSessionProperties
- func (o *IntegrationAccountSessionProperties) GetChangedTimeAsTime() (*time.Time, error)
- func (o *IntegrationAccountSessionProperties) GetCreatedTimeAsTime() (*time.Time, error)
- func (o *IntegrationAccountSessionProperties) SetChangedTimeAsTime(input time.Time)
- func (o *IntegrationAccountSessionProperties) SetCreatedTimeAsTime(input time.Time)
- type IntegrationAccountSessionsClient
- func (c IntegrationAccountSessionsClient) CreateOrUpdate(ctx context.Context, id SessionId, input IntegrationAccountSession) (result CreateOrUpdateOperationResponse, err error)
- func (c IntegrationAccountSessionsClient) Delete(ctx context.Context, id SessionId) (result DeleteOperationResponse, err error)
- func (c IntegrationAccountSessionsClient) Get(ctx context.Context, id SessionId) (result GetOperationResponse, err error)
- func (c IntegrationAccountSessionsClient) List(ctx context.Context, id IntegrationAccountId, options ListOperationOptions) (result ListOperationResponse, err error)
- func (c IntegrationAccountSessionsClient) ListComplete(ctx context.Context, id IntegrationAccountId, options ListOperationOptions) (ListCompleteResult, error)
- func (c IntegrationAccountSessionsClient) ListCompleteMatchingPredicate(ctx context.Context, id IntegrationAccountId, options ListOperationOptions, ...) (result ListCompleteResult, err error)
- type ListCompleteResult
- type ListOperationOptions
- type ListOperationResponse
- type SessionId
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ValidateIntegrationAccountID ¶
func ValidateIntegrationAccountID(input interface{}, key string) (warnings []string, errors []error)
ValidateIntegrationAccountID checks that 'input' can be parsed as a Integration Account ID
func ValidateSessionID ¶
ValidateSessionID checks that 'input' can be parsed as a Session ID
Types ¶
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *IntegrationAccountSession }
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *IntegrationAccountSession }
type IntegrationAccountId ¶
type IntegrationAccountId struct { SubscriptionId string ResourceGroupName string IntegrationAccountName string }
IntegrationAccountId is a struct representing the Resource ID for a Integration Account
func NewIntegrationAccountID ¶
func NewIntegrationAccountID(subscriptionId string, resourceGroupName string, integrationAccountName string) IntegrationAccountId
NewIntegrationAccountID returns a new IntegrationAccountId struct
func ParseIntegrationAccountID ¶
func ParseIntegrationAccountID(input string) (*IntegrationAccountId, error)
ParseIntegrationAccountID parses 'input' into a IntegrationAccountId
func ParseIntegrationAccountIDInsensitively ¶
func ParseIntegrationAccountIDInsensitively(input string) (*IntegrationAccountId, error)
ParseIntegrationAccountIDInsensitively parses 'input' case-insensitively into a IntegrationAccountId note: this method should only be used for API response data and not user input
func (IntegrationAccountId) ID ¶
func (id IntegrationAccountId) ID() string
ID returns the formatted Integration Account ID
func (IntegrationAccountId) Segments ¶
func (id IntegrationAccountId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Integration Account ID
func (IntegrationAccountId) String ¶
func (id IntegrationAccountId) String() string
String returns a human-readable description of this Integration Account ID
type IntegrationAccountSession ¶
type IntegrationAccountSession struct { Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties IntegrationAccountSessionProperties `json:"properties"` Tags *map[string]string `json:"tags,omitempty"` Type *string `json:"type,omitempty"` }
type IntegrationAccountSessionOperationPredicate ¶
type IntegrationAccountSessionOperationPredicate struct { Id *string Location *string Name *string Type *string }
func (IntegrationAccountSessionOperationPredicate) Matches ¶
func (p IntegrationAccountSessionOperationPredicate) Matches(input IntegrationAccountSession) bool
type IntegrationAccountSessionProperties ¶
type IntegrationAccountSessionProperties struct { ChangedTime *string `json:"changedTime,omitempty"` Content *interface{} `json:"content,omitempty"` CreatedTime *string `json:"createdTime,omitempty"` }
func (*IntegrationAccountSessionProperties) GetChangedTimeAsTime ¶
func (o *IntegrationAccountSessionProperties) GetChangedTimeAsTime() (*time.Time, error)
func (*IntegrationAccountSessionProperties) GetCreatedTimeAsTime ¶
func (o *IntegrationAccountSessionProperties) GetCreatedTimeAsTime() (*time.Time, error)
func (*IntegrationAccountSessionProperties) SetChangedTimeAsTime ¶
func (o *IntegrationAccountSessionProperties) SetChangedTimeAsTime(input time.Time)
func (*IntegrationAccountSessionProperties) SetCreatedTimeAsTime ¶
func (o *IntegrationAccountSessionProperties) SetCreatedTimeAsTime(input time.Time)
type IntegrationAccountSessionsClient ¶
type IntegrationAccountSessionsClient struct {
Client *resourcemanager.Client
}
func NewIntegrationAccountSessionsClientWithBaseURI ¶
func NewIntegrationAccountSessionsClientWithBaseURI(sdkApi sdkEnv.Api) (*IntegrationAccountSessionsClient, error)
func (IntegrationAccountSessionsClient) CreateOrUpdate ¶
func (c IntegrationAccountSessionsClient) CreateOrUpdate(ctx context.Context, id SessionId, input IntegrationAccountSession) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (IntegrationAccountSessionsClient) Delete ¶
func (c IntegrationAccountSessionsClient) Delete(ctx context.Context, id SessionId) (result DeleteOperationResponse, err error)
Delete ...
func (IntegrationAccountSessionsClient) Get ¶
func (c IntegrationAccountSessionsClient) Get(ctx context.Context, id SessionId) (result GetOperationResponse, err error)
Get ...
func (IntegrationAccountSessionsClient) List ¶
func (c IntegrationAccountSessionsClient) List(ctx context.Context, id IntegrationAccountId, options ListOperationOptions) (result ListOperationResponse, err error)
List ...
func (IntegrationAccountSessionsClient) ListComplete ¶
func (c IntegrationAccountSessionsClient) ListComplete(ctx context.Context, id IntegrationAccountId, options ListOperationOptions) (ListCompleteResult, error)
ListComplete retrieves all the results into a single object
func (IntegrationAccountSessionsClient) ListCompleteMatchingPredicate ¶
func (c IntegrationAccountSessionsClient) ListCompleteMatchingPredicate(ctx context.Context, id IntegrationAccountId, options ListOperationOptions, predicate IntegrationAccountSessionOperationPredicate) (result ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all the results and then applies the predicate
type ListCompleteResult ¶
type ListCompleteResult struct {
Items []IntegrationAccountSession
}
type ListOperationOptions ¶
func DefaultListOperationOptions ¶
func DefaultListOperationOptions() ListOperationOptions
func (ListOperationOptions) ToHeaders ¶ added in v0.20230712.1163130
func (o ListOperationOptions) ToHeaders() *client.Headers
func (ListOperationOptions) ToOData ¶ added in v0.20230712.1163130
func (o ListOperationOptions) ToOData() *odata.Query
func (ListOperationOptions) ToQuery ¶ added in v0.20230712.1163130
func (o ListOperationOptions) ToQuery() *client.QueryParams
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]IntegrationAccountSession }
type SessionId ¶
type SessionId struct { SubscriptionId string ResourceGroupName string IntegrationAccountName string SessionName string }
SessionId is a struct representing the Resource ID for a Session
func NewSessionID ¶
func NewSessionID(subscriptionId string, resourceGroupName string, integrationAccountName string, sessionName string) SessionId
NewSessionID returns a new SessionId struct
func ParseSessionID ¶
ParseSessionID parses 'input' into a SessionId
func ParseSessionIDInsensitively ¶
ParseSessionIDInsensitively parses 'input' case-insensitively into a SessionId note: this method should only be used for API response data and not user input
func (SessionId) Segments ¶
func (id SessionId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Session ID