wcfrelays

package
v2.96.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 14, 2022 License: MPL-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForAccessRights

func PossibleValuesForAccessRights() []string

func PossibleValuesForKeyType

func PossibleValuesForKeyType() []string

func PossibleValuesForRelaytype

func PossibleValuesForRelaytype() []string

func ValidateNamespaceID

func ValidateNamespaceID(input interface{}, key string) (warnings []string, errors []error)

ValidateNamespaceID checks that 'input' can be parsed as a Namespace ID

func ValidateWcfRelayAuthorizationRuleID

func ValidateWcfRelayAuthorizationRuleID(input interface{}, key string) (warnings []string, errors []error)

ValidateWcfRelayAuthorizationRuleID checks that 'input' can be parsed as a Wcf Relay Authorization Rule ID

func ValidateWcfRelayID

func ValidateWcfRelayID(input interface{}, key string) (warnings []string, errors []error)

ValidateWcfRelayID checks that 'input' can be parsed as a Wcf Relay ID

Types

type AccessKeys

type AccessKeys struct {
	KeyName                   *string `json:"keyName,omitempty"`
	PrimaryConnectionString   *string `json:"primaryConnectionString,omitempty"`
	PrimaryKey                *string `json:"primaryKey,omitempty"`
	SecondaryConnectionString *string `json:"secondaryConnectionString,omitempty"`
	SecondaryKey              *string `json:"secondaryKey,omitempty"`
}

type AccessRights

type AccessRights string
const (
	AccessRightsListen AccessRights = "Listen"
	AccessRightsManage AccessRights = "Manage"
	AccessRightsSend   AccessRights = "Send"
)

type AuthorizationRule

type AuthorizationRule struct {
	Id         *string                     `json:"id,omitempty"`
	Name       *string                     `json:"name,omitempty"`
	Properties AuthorizationRuleProperties `json:"properties"`
	Type       *string                     `json:"type,omitempty"`
}

type AuthorizationRulePredicate

type AuthorizationRulePredicate struct {
	Id   *string
	Name *string
	Type *string
}

func (AuthorizationRulePredicate) Matches

type AuthorizationRuleProperties

type AuthorizationRuleProperties struct {
	Rights []AccessRights `json:"rights"`
}

type CreateOrUpdateAuthorizationRuleResponse

type CreateOrUpdateAuthorizationRuleResponse struct {
	HttpResponse *http.Response
	Model        *AuthorizationRule
}

type CreateOrUpdateResponse

type CreateOrUpdateResponse struct {
	HttpResponse *http.Response
	Model        *WcfRelay
}

type DeleteAuthorizationRuleResponse

type DeleteAuthorizationRuleResponse struct {
	HttpResponse *http.Response
}

type DeleteResponse

type DeleteResponse struct {
	HttpResponse *http.Response
}

type GetAuthorizationRuleResponse

type GetAuthorizationRuleResponse struct {
	HttpResponse *http.Response
	Model        *AuthorizationRule
}

type GetResponse

type GetResponse struct {
	HttpResponse *http.Response
	Model        *WcfRelay
}

type KeyType

type KeyType string
const (
	KeyTypePrimaryKey   KeyType = "PrimaryKey"
	KeyTypeSecondaryKey KeyType = "SecondaryKey"
)

type ListAuthorizationRulesCompleteResult

type ListAuthorizationRulesCompleteResult struct {
	Items []AuthorizationRule
}

type ListAuthorizationRulesResponse

type ListAuthorizationRulesResponse struct {
	HttpResponse *http.Response
	Model        *[]AuthorizationRule
	// contains filtered or unexported fields
}

func (ListAuthorizationRulesResponse) HasMore

func (ListAuthorizationRulesResponse) LoadMore

type ListByNamespaceCompleteResult

type ListByNamespaceCompleteResult struct {
	Items []WcfRelay
}

type ListByNamespaceResponse

type ListByNamespaceResponse struct {
	HttpResponse *http.Response
	Model        *[]WcfRelay
	// contains filtered or unexported fields
}

func (ListByNamespaceResponse) HasMore

func (r ListByNamespaceResponse) HasMore() bool

func (ListByNamespaceResponse) LoadMore

type ListKeysResponse

type ListKeysResponse struct {
	HttpResponse *http.Response
	Model        *AccessKeys
}

type NamespaceId

type NamespaceId struct {
	SubscriptionId    string
	ResourceGroupName string
	NamespaceName     string
}

NamespaceId is a struct representing the Resource ID for a Namespace

func NewNamespaceID

func NewNamespaceID(subscriptionId string, resourceGroupName string, namespaceName string) NamespaceId

NewNamespaceID returns a new NamespaceId struct

func ParseNamespaceID

func ParseNamespaceID(input string) (*NamespaceId, error)

ParseNamespaceID parses 'input' into a NamespaceId

func ParseNamespaceIDInsensitively

func ParseNamespaceIDInsensitively(input string) (*NamespaceId, error)

ParseNamespaceIDInsensitively parses 'input' case-insensitively into a NamespaceId note: this method should only be used for API response data and not user input

func (NamespaceId) ID

func (id NamespaceId) ID() string

ID returns the formatted Namespace ID

func (NamespaceId) Segments

func (id NamespaceId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Namespace ID

func (NamespaceId) String

func (id NamespaceId) String() string

String returns a human-readable description of this Namespace ID

type RegenerateAccessKeyParameters

type RegenerateAccessKeyParameters struct {
	Key     *string `json:"key,omitempty"`
	KeyType KeyType `json:"keyType"`
}

type RegenerateKeysResponse

type RegenerateKeysResponse struct {
	HttpResponse *http.Response
	Model        *AccessKeys
}

type Relaytype

type Relaytype string
const (
	RelaytypeHttp   Relaytype = "Http"
	RelaytypeNetTcp Relaytype = "NetTcp"
)

type WCFRelaysClient

type WCFRelaysClient struct {
	Client autorest.Client
	// contains filtered or unexported fields
}

func NewWCFRelaysClientWithBaseURI

func NewWCFRelaysClientWithBaseURI(endpoint string) WCFRelaysClient

func (WCFRelaysClient) CreateOrUpdate

func (c WCFRelaysClient) CreateOrUpdate(ctx context.Context, id WcfRelayId, input WcfRelay) (result CreateOrUpdateResponse, err error)

CreateOrUpdate ...

func (WCFRelaysClient) CreateOrUpdateAuthorizationRule

func (c WCFRelaysClient) CreateOrUpdateAuthorizationRule(ctx context.Context, id WcfRelayAuthorizationRuleId, input AuthorizationRule) (result CreateOrUpdateAuthorizationRuleResponse, err error)

CreateOrUpdateAuthorizationRule ...

func (WCFRelaysClient) Delete

func (c WCFRelaysClient) Delete(ctx context.Context, id WcfRelayId) (result DeleteResponse, err error)

Delete ...

func (WCFRelaysClient) DeleteAuthorizationRule

func (c WCFRelaysClient) DeleteAuthorizationRule(ctx context.Context, id WcfRelayAuthorizationRuleId) (result DeleteAuthorizationRuleResponse, err error)

DeleteAuthorizationRule ...

func (WCFRelaysClient) Get

func (c WCFRelaysClient) Get(ctx context.Context, id WcfRelayId) (result GetResponse, err error)

Get ...

func (WCFRelaysClient) GetAuthorizationRule

func (c WCFRelaysClient) GetAuthorizationRule(ctx context.Context, id WcfRelayAuthorizationRuleId) (result GetAuthorizationRuleResponse, err error)

GetAuthorizationRule ...

func (WCFRelaysClient) ListAuthorizationRules

func (c WCFRelaysClient) ListAuthorizationRules(ctx context.Context, id WcfRelayId) (resp ListAuthorizationRulesResponse, err error)

ListAuthorizationRules ...

func (WCFRelaysClient) ListAuthorizationRulesComplete

func (c WCFRelaysClient) ListAuthorizationRulesComplete(ctx context.Context, id WcfRelayId) (ListAuthorizationRulesCompleteResult, error)

ListAuthorizationRulesComplete retrieves all of the results into a single object

func (WCFRelaysClient) ListAuthorizationRulesCompleteMatchingPredicate

func (c WCFRelaysClient) ListAuthorizationRulesCompleteMatchingPredicate(ctx context.Context, id WcfRelayId, predicate AuthorizationRulePredicate) (resp ListAuthorizationRulesCompleteResult, err error)

ListAuthorizationRulesCompleteMatchingPredicate retrieves all of the results and then applied the predicate

func (WCFRelaysClient) ListByNamespace

func (c WCFRelaysClient) ListByNamespace(ctx context.Context, id NamespaceId) (resp ListByNamespaceResponse, err error)

ListByNamespace ...

func (WCFRelaysClient) ListByNamespaceComplete

func (c WCFRelaysClient) ListByNamespaceComplete(ctx context.Context, id NamespaceId) (ListByNamespaceCompleteResult, error)

ListByNamespaceComplete retrieves all of the results into a single object

func (WCFRelaysClient) ListByNamespaceCompleteMatchingPredicate

func (c WCFRelaysClient) ListByNamespaceCompleteMatchingPredicate(ctx context.Context, id NamespaceId, predicate WcfRelayPredicate) (resp ListByNamespaceCompleteResult, err error)

ListByNamespaceCompleteMatchingPredicate retrieves all of the results and then applied the predicate

func (WCFRelaysClient) ListKeys

ListKeys ...

func (WCFRelaysClient) RegenerateKeys

RegenerateKeys ...

type WcfRelay

type WcfRelay struct {
	Id         *string             `json:"id,omitempty"`
	Name       *string             `json:"name,omitempty"`
	Properties *WcfRelayProperties `json:"properties,omitempty"`
	Type       *string             `json:"type,omitempty"`
}

type WcfRelayAuthorizationRuleId

type WcfRelayAuthorizationRuleId struct {
	SubscriptionId        string
	ResourceGroupName     string
	NamespaceName         string
	RelayName             string
	AuthorizationRuleName string
}

WcfRelayAuthorizationRuleId is a struct representing the Resource ID for a Wcf Relay Authorization Rule

func NewWcfRelayAuthorizationRuleID

func NewWcfRelayAuthorizationRuleID(subscriptionId string, resourceGroupName string, namespaceName string, relayName string, authorizationRuleName string) WcfRelayAuthorizationRuleId

NewWcfRelayAuthorizationRuleID returns a new WcfRelayAuthorizationRuleId struct

func ParseWcfRelayAuthorizationRuleID

func ParseWcfRelayAuthorizationRuleID(input string) (*WcfRelayAuthorizationRuleId, error)

ParseWcfRelayAuthorizationRuleID parses 'input' into a WcfRelayAuthorizationRuleId

func ParseWcfRelayAuthorizationRuleIDInsensitively

func ParseWcfRelayAuthorizationRuleIDInsensitively(input string) (*WcfRelayAuthorizationRuleId, error)

ParseWcfRelayAuthorizationRuleIDInsensitively parses 'input' case-insensitively into a WcfRelayAuthorizationRuleId note: this method should only be used for API response data and not user input

func (WcfRelayAuthorizationRuleId) ID

ID returns the formatted Wcf Relay Authorization Rule ID

func (WcfRelayAuthorizationRuleId) Segments

Segments returns a slice of Resource ID Segments which comprise this Wcf Relay Authorization Rule ID

func (WcfRelayAuthorizationRuleId) String

func (id WcfRelayAuthorizationRuleId) String() string

String returns a human-readable description of this Wcf Relay Authorization Rule ID

type WcfRelayId

type WcfRelayId struct {
	SubscriptionId    string
	ResourceGroupName string
	NamespaceName     string
	RelayName         string
}

WcfRelayId is a struct representing the Resource ID for a Wcf Relay

func NewWcfRelayID

func NewWcfRelayID(subscriptionId string, resourceGroupName string, namespaceName string, relayName string) WcfRelayId

NewWcfRelayID returns a new WcfRelayId struct

func ParseWcfRelayID

func ParseWcfRelayID(input string) (*WcfRelayId, error)

ParseWcfRelayID parses 'input' into a WcfRelayId

func ParseWcfRelayIDInsensitively

func ParseWcfRelayIDInsensitively(input string) (*WcfRelayId, error)

ParseWcfRelayIDInsensitively parses 'input' case-insensitively into a WcfRelayId note: this method should only be used for API response data and not user input

func (WcfRelayId) ID

func (id WcfRelayId) ID() string

ID returns the formatted Wcf Relay ID

func (WcfRelayId) Segments

func (id WcfRelayId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Wcf Relay ID

func (WcfRelayId) String

func (id WcfRelayId) String() string

String returns a human-readable description of this Wcf Relay ID

type WcfRelayPredicate

type WcfRelayPredicate struct {
	Id   *string
	Name *string
	Type *string
}

func (WcfRelayPredicate) Matches

func (p WcfRelayPredicate) Matches(input WcfRelay) bool

type WcfRelayProperties

type WcfRelayProperties struct {
	CreatedAt                   *string    `json:"createdAt,omitempty"`
	IsDynamic                   *bool      `json:"isDynamic,omitempty"`
	ListenerCount               *int64     `json:"listenerCount,omitempty"`
	RelayType                   *Relaytype `json:"relayType,omitempty"`
	RequiresClientAuthorization *bool      `json:"requiresClientAuthorization,omitempty"`
	RequiresTransportSecurity   *bool      `json:"requiresTransportSecurity,omitempty"`
	UpdatedAt                   *string    `json:"updatedAt,omitempty"`
	UserMetadata                *string    `json:"userMetadata,omitempty"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL