Documentation ¶
Index ¶
- func PossibleValuesForAadConnectivityState() []string
- func PossibleValuesForExternalSecuritySolutionKind() []string
- func ValidateExternalSecuritySolutionID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateLocationID(input interface{}, key string) (warnings []string, errors []error)
- type AadConnectivityState
- type AadExternalSecuritySolution
- type AadSolutionProperties
- type AtaExternalSecuritySolution
- type AtaSolutionProperties
- type CefExternalSecuritySolution
- type CefSolutionProperties
- type ConnectedWorkspace
- type ExternalSecuritySolution
- type ExternalSecuritySolutionId
- func NewExternalSecuritySolutionID(subscriptionId string, resourceGroupName string, locationName string, ...) ExternalSecuritySolutionId
- func ParseExternalSecuritySolutionID(input string) (*ExternalSecuritySolutionId, error)
- func ParseExternalSecuritySolutionIDInsensitively(input string) (*ExternalSecuritySolutionId, error)
- type ExternalSecuritySolutionKind
- type ExternalSecuritySolutionOperationPredicate
- type ExternalSecuritySolutionsClient
- func (c ExternalSecuritySolutionsClient) Get(ctx context.Context, id ExternalSecuritySolutionId) (result GetOperationResponse, err error)
- func (c ExternalSecuritySolutionsClient) List(ctx context.Context, id commonids.SubscriptionId) (result ListOperationResponse, err error)
- func (c ExternalSecuritySolutionsClient) ListByHomeRegion(ctx context.Context, id LocationId) (result ListByHomeRegionOperationResponse, err error)
- func (c ExternalSecuritySolutionsClient) ListByHomeRegionComplete(ctx context.Context, id LocationId) (ListByHomeRegionCompleteResult, error)
- func (c ExternalSecuritySolutionsClient) ListByHomeRegionCompleteMatchingPredicate(ctx context.Context, id LocationId, ...) (result ListByHomeRegionCompleteResult, err error)
- func (c ExternalSecuritySolutionsClient) ListComplete(ctx context.Context, id commonids.SubscriptionId) (ListCompleteResult, error)
- func (c ExternalSecuritySolutionsClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.SubscriptionId, ...) (result ListCompleteResult, err error)
- type GetOperationResponse
- type ListByHomeRegionCompleteResult
- type ListByHomeRegionOperationResponse
- type ListCompleteResult
- type ListOperationResponse
- type LocationId
- type RawExternalSecuritySolutionImpl
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForAadConnectivityState ¶
func PossibleValuesForAadConnectivityState() []string
func PossibleValuesForExternalSecuritySolutionKind ¶
func PossibleValuesForExternalSecuritySolutionKind() []string
func ValidateExternalSecuritySolutionID ¶
func ValidateExternalSecuritySolutionID(input interface{}, key string) (warnings []string, errors []error)
ValidateExternalSecuritySolutionID checks that 'input' can be parsed as a External Security Solution ID
func ValidateLocationID ¶
ValidateLocationID checks that 'input' can be parsed as a Location ID
Types ¶
type AadConnectivityState ¶
type AadConnectivityState string
const ( AadConnectivityStateConnected AadConnectivityState = "Connected" AadConnectivityStateDiscovered AadConnectivityState = "Discovered" AadConnectivityStateNotLicensed AadConnectivityState = "NotLicensed" )
func (*AadConnectivityState) UnmarshalJSON ¶ added in v0.20240228.1142829
func (s *AadConnectivityState) UnmarshalJSON(bytes []byte) error
type AadExternalSecuritySolution ¶
type AadExternalSecuritySolution struct { Properties *AadSolutionProperties `json:"properties,omitempty"` // Fields inherited from ExternalSecuritySolution Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Type *string `json:"type,omitempty"` }
func (AadExternalSecuritySolution) MarshalJSON ¶
func (s AadExternalSecuritySolution) MarshalJSON() ([]byte, error)
type AadSolutionProperties ¶
type AadSolutionProperties struct { ConnectivityState *AadConnectivityState `json:"connectivityState,omitempty"` DeviceType *string `json:"deviceType,omitempty"` DeviceVendor *string `json:"deviceVendor,omitempty"` Workspace *ConnectedWorkspace `json:"workspace,omitempty"` }
type AtaExternalSecuritySolution ¶
type AtaExternalSecuritySolution struct { Properties *AtaSolutionProperties `json:"properties,omitempty"` // Fields inherited from ExternalSecuritySolution Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Type *string `json:"type,omitempty"` }
func (AtaExternalSecuritySolution) MarshalJSON ¶
func (s AtaExternalSecuritySolution) MarshalJSON() ([]byte, error)
type AtaSolutionProperties ¶
type AtaSolutionProperties struct { DeviceType *string `json:"deviceType,omitempty"` DeviceVendor *string `json:"deviceVendor,omitempty"` LastEventReceived *string `json:"lastEventReceived,omitempty"` Workspace *ConnectedWorkspace `json:"workspace,omitempty"` }
type CefExternalSecuritySolution ¶
type CefExternalSecuritySolution struct { Properties *CefSolutionProperties `json:"properties,omitempty"` // Fields inherited from ExternalSecuritySolution Id *string `json:"id,omitempty"` Location *string `json:"location,omitempty"` Name *string `json:"name,omitempty"` Type *string `json:"type,omitempty"` }
func (CefExternalSecuritySolution) MarshalJSON ¶
func (s CefExternalSecuritySolution) MarshalJSON() ([]byte, error)
type CefSolutionProperties ¶
type CefSolutionProperties struct { Agent *string `json:"agent,omitempty"` DeviceType *string `json:"deviceType,omitempty"` DeviceVendor *string `json:"deviceVendor,omitempty"` Hostname *string `json:"hostname,omitempty"` LastEventReceived *string `json:"lastEventReceived,omitempty"` Workspace *ConnectedWorkspace `json:"workspace,omitempty"` }
type ConnectedWorkspace ¶
type ConnectedWorkspace struct {
Id *string `json:"id,omitempty"`
}
type ExternalSecuritySolution ¶
type ExternalSecuritySolution interface { }
type ExternalSecuritySolutionId ¶
type ExternalSecuritySolutionId struct { SubscriptionId string ResourceGroupName string LocationName string ExternalSecuritySolutionName string }
ExternalSecuritySolutionId is a struct representing the Resource ID for a External Security Solution
func NewExternalSecuritySolutionID ¶
func NewExternalSecuritySolutionID(subscriptionId string, resourceGroupName string, locationName string, externalSecuritySolutionName string) ExternalSecuritySolutionId
NewExternalSecuritySolutionID returns a new ExternalSecuritySolutionId struct
func ParseExternalSecuritySolutionID ¶
func ParseExternalSecuritySolutionID(input string) (*ExternalSecuritySolutionId, error)
ParseExternalSecuritySolutionID parses 'input' into a ExternalSecuritySolutionId
func ParseExternalSecuritySolutionIDInsensitively ¶
func ParseExternalSecuritySolutionIDInsensitively(input string) (*ExternalSecuritySolutionId, error)
ParseExternalSecuritySolutionIDInsensitively parses 'input' case-insensitively into a ExternalSecuritySolutionId note: this method should only be used for API response data and not user input
func (*ExternalSecuritySolutionId) FromParseResult ¶
func (id *ExternalSecuritySolutionId) FromParseResult(input resourceids.ParseResult) error
func (ExternalSecuritySolutionId) ID ¶
func (id ExternalSecuritySolutionId) ID() string
ID returns the formatted External Security Solution ID
func (ExternalSecuritySolutionId) Segments ¶
func (id ExternalSecuritySolutionId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this External Security Solution ID
func (ExternalSecuritySolutionId) String ¶
func (id ExternalSecuritySolutionId) String() string
String returns a human-readable description of this External Security Solution ID
type ExternalSecuritySolutionKind ¶
type ExternalSecuritySolutionKind string
const ( ExternalSecuritySolutionKindAAD ExternalSecuritySolutionKind = "AAD" ExternalSecuritySolutionKindATA ExternalSecuritySolutionKind = "ATA" ExternalSecuritySolutionKindCEF ExternalSecuritySolutionKind = "CEF" )
func (*ExternalSecuritySolutionKind) UnmarshalJSON ¶ added in v0.20240228.1142829
func (s *ExternalSecuritySolutionKind) UnmarshalJSON(bytes []byte) error
type ExternalSecuritySolutionOperationPredicate ¶
type ExternalSecuritySolutionOperationPredicate struct { }
func (ExternalSecuritySolutionOperationPredicate) Matches ¶
func (p ExternalSecuritySolutionOperationPredicate) Matches(input ExternalSecuritySolution) bool
type ExternalSecuritySolutionsClient ¶
type ExternalSecuritySolutionsClient struct {
Client *resourcemanager.Client
}
func NewExternalSecuritySolutionsClientWithBaseURI ¶
func NewExternalSecuritySolutionsClientWithBaseURI(sdkApi sdkEnv.Api) (*ExternalSecuritySolutionsClient, error)
func (ExternalSecuritySolutionsClient) Get ¶
func (c ExternalSecuritySolutionsClient) Get(ctx context.Context, id ExternalSecuritySolutionId) (result GetOperationResponse, err error)
Get ...
func (ExternalSecuritySolutionsClient) List ¶
func (c ExternalSecuritySolutionsClient) List(ctx context.Context, id commonids.SubscriptionId) (result ListOperationResponse, err error)
List ...
func (ExternalSecuritySolutionsClient) ListByHomeRegion ¶
func (c ExternalSecuritySolutionsClient) ListByHomeRegion(ctx context.Context, id LocationId) (result ListByHomeRegionOperationResponse, err error)
ListByHomeRegion ...
func (ExternalSecuritySolutionsClient) ListByHomeRegionComplete ¶
func (c ExternalSecuritySolutionsClient) ListByHomeRegionComplete(ctx context.Context, id LocationId) (ListByHomeRegionCompleteResult, error)
ListByHomeRegionComplete retrieves all the results into a single object
func (ExternalSecuritySolutionsClient) ListByHomeRegionCompleteMatchingPredicate ¶
func (c ExternalSecuritySolutionsClient) ListByHomeRegionCompleteMatchingPredicate(ctx context.Context, id LocationId, predicate ExternalSecuritySolutionOperationPredicate) (result ListByHomeRegionCompleteResult, err error)
ListByHomeRegionCompleteMatchingPredicate retrieves all the results and then applies the predicate
func (ExternalSecuritySolutionsClient) ListComplete ¶
func (c ExternalSecuritySolutionsClient) ListComplete(ctx context.Context, id commonids.SubscriptionId) (ListCompleteResult, error)
ListComplete retrieves all the results into a single object
func (ExternalSecuritySolutionsClient) ListCompleteMatchingPredicate ¶
func (c ExternalSecuritySolutionsClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.SubscriptionId, predicate ExternalSecuritySolutionOperationPredicate) (result ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all the results and then applies the predicate
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ExternalSecuritySolution }
type ListByHomeRegionCompleteResult ¶
type ListByHomeRegionCompleteResult struct { LatestHttpResponse *http.Response Items []ExternalSecuritySolution }
type ListByHomeRegionOperationResponse ¶
type ListByHomeRegionOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]ExternalSecuritySolution }
type ListCompleteResult ¶
type ListCompleteResult struct { LatestHttpResponse *http.Response Items []ExternalSecuritySolution }
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]ExternalSecuritySolution }
type LocationId ¶
LocationId is a struct representing the Resource ID for a Location
func NewLocationID ¶
func NewLocationID(subscriptionId string, locationName string) LocationId
NewLocationID returns a new LocationId struct
func ParseLocationID ¶
func ParseLocationID(input string) (*LocationId, error)
ParseLocationID parses 'input' into a LocationId
func ParseLocationIDInsensitively ¶
func ParseLocationIDInsensitively(input string) (*LocationId, error)
ParseLocationIDInsensitively parses 'input' case-insensitively into a LocationId note: this method should only be used for API response data and not user input
func (*LocationId) FromParseResult ¶
func (id *LocationId) FromParseResult(input resourceids.ParseResult) error
func (LocationId) Segments ¶
func (id LocationId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Location ID
func (LocationId) String ¶
func (id LocationId) String() string
String returns a human-readable description of this Location ID
type RawExternalSecuritySolutionImpl ¶
RawExternalSecuritySolutionImpl is returned when the Discriminated Value doesn't match any of the defined types NOTE: this should only be used when a type isn't defined for this type of Object (as a workaround) and is used only for Deserialization (e.g. this cannot be used as a Request Payload).
Source Files ¶
- client.go
- constants.go
- id_externalsecuritysolution.go
- id_location.go
- method_get.go
- method_list.go
- method_listbyhomeregion.go
- model_aadexternalsecuritysolution.go
- model_aadsolutionproperties.go
- model_ataexternalsecuritysolution.go
- model_atasolutionproperties.go
- model_cefexternalsecuritysolution.go
- model_cefsolutionproperties.go
- model_connectedworkspace.go
- model_externalsecuritysolution.go
- predicates.go
- version.go