Documentation ¶
Index ¶
- func PossibleValuesForDefaultAction() []string
- func PossibleValuesForNetworkRuleIPAction() []string
- func PossibleValuesForPublicNetworkAccessFlag() []string
- func ValidateNamespaceID(input interface{}, key string) (warnings []string, errors []error)
- type DefaultAction
- type NWRuleSetIPRules
- type NWRuleSetVirtualNetworkRules
- type NamespaceId
- type NamespacesCreateOrUpdateNetworkRuleSetOperationResponse
- type NamespacesGetNetworkRuleSetOperationResponse
- type NamespacesListNetworkRuleSetOperationResponse
- type NetworkRuleIPAction
- type NetworkRuleSet
- type NetworkRuleSetListResult
- type NetworkRuleSetProperties
- type NetworkRuleSetsClient
- func (c NetworkRuleSetsClient) NamespacesCreateOrUpdateNetworkRuleSet(ctx context.Context, id NamespaceId, input NetworkRuleSet) (result NamespacesCreateOrUpdateNetworkRuleSetOperationResponse, err error)
- func (c NetworkRuleSetsClient) NamespacesGetNetworkRuleSet(ctx context.Context, id NamespaceId) (result NamespacesGetNetworkRuleSetOperationResponse, err error)
- func (c NetworkRuleSetsClient) NamespacesListNetworkRuleSet(ctx context.Context, id NamespaceId) (result NamespacesListNetworkRuleSetOperationResponse, err error)
- type PublicNetworkAccessFlag
- type Subnet
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForDefaultAction ¶
func PossibleValuesForDefaultAction() []string
func PossibleValuesForNetworkRuleIPAction ¶
func PossibleValuesForNetworkRuleIPAction() []string
func PossibleValuesForPublicNetworkAccessFlag ¶
func PossibleValuesForPublicNetworkAccessFlag() []string
func ValidateNamespaceID ¶
ValidateNamespaceID checks that 'input' can be parsed as a Namespace ID
Types ¶
type DefaultAction ¶
type DefaultAction string
const ( DefaultActionAllow DefaultAction = "Allow" DefaultActionDeny DefaultAction = "Deny" )
func (*DefaultAction) UnmarshalJSON ¶ added in v0.20230508.1101604
func (s *DefaultAction) UnmarshalJSON(bytes []byte) error
type NWRuleSetIPRules ¶ added in v0.20220725.1131927
type NWRuleSetIPRules struct { Action *NetworkRuleIPAction `json:"action,omitempty"` IPMask *string `json:"ipMask,omitempty"` }
type NamespaceId ¶
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) 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 NamespacesCreateOrUpdateNetworkRuleSetOperationResponse ¶
type NamespacesCreateOrUpdateNetworkRuleSetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *NetworkRuleSet }
type NamespacesGetNetworkRuleSetOperationResponse ¶
type NamespacesGetNetworkRuleSetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *NetworkRuleSet }
type NamespacesListNetworkRuleSetOperationResponse ¶
type NamespacesListNetworkRuleSetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *NetworkRuleSetListResult }
type NetworkRuleIPAction ¶
type NetworkRuleIPAction string
const (
NetworkRuleIPActionAllow NetworkRuleIPAction = "Allow"
)
func (*NetworkRuleIPAction) UnmarshalJSON ¶ added in v0.20230508.1101604
func (s *NetworkRuleIPAction) UnmarshalJSON(bytes []byte) error
type NetworkRuleSet ¶
type NetworkRuleSet struct { Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Properties *NetworkRuleSetProperties `json:"properties,omitempty"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Type *string `json:"type,omitempty"` }
type NetworkRuleSetListResult ¶
type NetworkRuleSetListResult struct { NextLink *string `json:"nextLink,omitempty"` Value *[]NetworkRuleSet `json:"value,omitempty"` }
type NetworkRuleSetProperties ¶
type NetworkRuleSetProperties struct { DefaultAction *DefaultAction `json:"defaultAction,omitempty"` IPRules *[]NWRuleSetIPRules `json:"ipRules,omitempty"` PublicNetworkAccess *PublicNetworkAccessFlag `json:"publicNetworkAccess,omitempty"` TrustedServiceAccessEnabled *bool `json:"trustedServiceAccessEnabled,omitempty"` VirtualNetworkRules *[]NWRuleSetVirtualNetworkRules `json:"virtualNetworkRules,omitempty"` }
type NetworkRuleSetsClient ¶
type NetworkRuleSetsClient struct {
Client *resourcemanager.Client
}
func NewNetworkRuleSetsClientWithBaseURI ¶
func NewNetworkRuleSetsClientWithBaseURI(sdkApi sdkEnv.Api) (*NetworkRuleSetsClient, error)
func (NetworkRuleSetsClient) NamespacesCreateOrUpdateNetworkRuleSet ¶
func (c NetworkRuleSetsClient) NamespacesCreateOrUpdateNetworkRuleSet(ctx context.Context, id NamespaceId, input NetworkRuleSet) (result NamespacesCreateOrUpdateNetworkRuleSetOperationResponse, err error)
NamespacesCreateOrUpdateNetworkRuleSet ...
func (NetworkRuleSetsClient) NamespacesGetNetworkRuleSet ¶
func (c NetworkRuleSetsClient) NamespacesGetNetworkRuleSet(ctx context.Context, id NamespaceId) (result NamespacesGetNetworkRuleSetOperationResponse, err error)
NamespacesGetNetworkRuleSet ...
func (NetworkRuleSetsClient) NamespacesListNetworkRuleSet ¶
func (c NetworkRuleSetsClient) NamespacesListNetworkRuleSet(ctx context.Context, id NamespaceId) (result NamespacesListNetworkRuleSetOperationResponse, err error)
NamespacesListNetworkRuleSet ...
type PublicNetworkAccessFlag ¶
type PublicNetworkAccessFlag string
const ( PublicNetworkAccessFlagDisabled PublicNetworkAccessFlag = "Disabled" PublicNetworkAccessFlagEnabled PublicNetworkAccessFlag = "Enabled" )
func (*PublicNetworkAccessFlag) UnmarshalJSON ¶ added in v0.20230508.1101604
func (s *PublicNetworkAccessFlag) UnmarshalJSON(bytes []byte) error
Source Files ¶
- client.go
- constants.go
- id_namespace.go
- method_namespacescreateorupdatenetworkruleset.go
- method_namespacesgetnetworkruleset.go
- method_namespaceslistnetworkruleset.go
- model_networkruleset.go
- model_networkrulesetlistresult.go
- model_networkrulesetproperties.go
- model_nwrulesetiprules.go
- model_nwrulesetvirtualnetworkrules.go
- model_subnet.go
- version.go