Documentation ¶
Index ¶
- func PossibleValuesForAttackTactic() []string
- func PossibleValuesForSecurityMLAnalyticsSettingsKind() []string
- func PossibleValuesForSettingsStatus() []string
- func ValidateSecurityMLAnalyticsSettingID(input interface{}, key string) (warnings []string, errors []error)
- func ValidateWorkspaceID(input interface{}, key string) (warnings []string, errors []error)
- type AnomalySecurityMLAnalyticsSettings
- type AnomalySecurityMLAnalyticsSettingsProperties
- type AttackTactic
- type CreateOrUpdateOperationResponse
- type DeleteOperationResponse
- type GetOperationResponse
- type ListCompleteResult
- type ListCustomPager
- type ListOperationResponse
- type RawSecurityMLAnalyticsSettingImpl
- type SecurityMLAnalyticsSetting
- type SecurityMLAnalyticsSettingId
- func NewSecurityMLAnalyticsSettingID(subscriptionId string, resourceGroupName string, workspaceName string, ...) SecurityMLAnalyticsSettingId
- func ParseSecurityMLAnalyticsSettingID(input string) (*SecurityMLAnalyticsSettingId, error)
- func ParseSecurityMLAnalyticsSettingIDInsensitively(input string) (*SecurityMLAnalyticsSettingId, error)
- type SecurityMLAnalyticsSettingOperationPredicate
- type SecurityMLAnalyticsSettingsClient
- func (c SecurityMLAnalyticsSettingsClient) CreateOrUpdate(ctx context.Context, id SecurityMLAnalyticsSettingId, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c SecurityMLAnalyticsSettingsClient) Delete(ctx context.Context, id SecurityMLAnalyticsSettingId) (result DeleteOperationResponse, err error)
- func (c SecurityMLAnalyticsSettingsClient) Get(ctx context.Context, id SecurityMLAnalyticsSettingId) (result GetOperationResponse, err error)
- func (c SecurityMLAnalyticsSettingsClient) List(ctx context.Context, id WorkspaceId) (result ListOperationResponse, err error)
- func (c SecurityMLAnalyticsSettingsClient) ListComplete(ctx context.Context, id WorkspaceId) (ListCompleteResult, error)
- func (c SecurityMLAnalyticsSettingsClient) ListCompleteMatchingPredicate(ctx context.Context, id WorkspaceId, ...) (result ListCompleteResult, err error)
- type SecurityMLAnalyticsSettingsDataSource
- type SecurityMLAnalyticsSettingsKind
- type SettingsStatus
- type WorkspaceId
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForAttackTactic ¶
func PossibleValuesForAttackTactic() []string
func PossibleValuesForSecurityMLAnalyticsSettingsKind ¶
func PossibleValuesForSecurityMLAnalyticsSettingsKind() []string
func PossibleValuesForSettingsStatus ¶
func PossibleValuesForSettingsStatus() []string
func ValidateSecurityMLAnalyticsSettingID ¶
func ValidateSecurityMLAnalyticsSettingID(input interface{}, key string) (warnings []string, errors []error)
ValidateSecurityMLAnalyticsSettingID checks that 'input' can be parsed as a Security M L Analytics Setting ID
func ValidateWorkspaceID ¶
ValidateWorkspaceID checks that 'input' can be parsed as a Workspace ID
Types ¶
type AnomalySecurityMLAnalyticsSettings ¶
type AnomalySecurityMLAnalyticsSettings struct { Properties *AnomalySecurityMLAnalyticsSettingsProperties `json:"properties,omitempty"` // Fields inherited from SecurityMLAnalyticsSetting Etag *string `json:"etag,omitempty"` Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` SystemData *systemdata.SystemData `json:"systemData,omitempty"` Type *string `json:"type,omitempty"` }
func (AnomalySecurityMLAnalyticsSettings) MarshalJSON ¶
func (s AnomalySecurityMLAnalyticsSettings) MarshalJSON() ([]byte, error)
type AnomalySecurityMLAnalyticsSettingsProperties ¶
type AnomalySecurityMLAnalyticsSettingsProperties struct { AnomalySettingsVersion *int64 `json:"anomalySettingsVersion,omitempty"` AnomalyVersion string `json:"anomalyVersion"` CustomizableObservations *interface{} `json:"customizableObservations,omitempty"` Description *string `json:"description,omitempty"` DisplayName string `json:"displayName"` Enabled bool `json:"enabled"` Frequency string `json:"frequency"` IsDefaultSettings bool `json:"isDefaultSettings"` LastModifiedUtc *string `json:"lastModifiedUtc,omitempty"` RequiredDataConnectors *[]SecurityMLAnalyticsSettingsDataSource `json:"requiredDataConnectors,omitempty"` SettingsDefinitionId *string `json:"settingsDefinitionId,omitempty"` SettingsStatus SettingsStatus `json:"settingsStatus"` Tactics *[]AttackTactic `json:"tactics,omitempty"` Techniques *[]string `json:"techniques,omitempty"` }
func (*AnomalySecurityMLAnalyticsSettingsProperties) GetLastModifiedUtcAsTime ¶
func (o *AnomalySecurityMLAnalyticsSettingsProperties) GetLastModifiedUtcAsTime() (*time.Time, error)
func (*AnomalySecurityMLAnalyticsSettingsProperties) SetLastModifiedUtcAsTime ¶
func (o *AnomalySecurityMLAnalyticsSettingsProperties) SetLastModifiedUtcAsTime(input time.Time)
type AttackTactic ¶
type AttackTactic string
const ( AttackTacticCollection AttackTactic = "Collection" AttackTacticCommandAndControl AttackTactic = "CommandAndControl" AttackTacticCredentialAccess AttackTactic = "CredentialAccess" AttackTacticDefenseEvasion AttackTactic = "DefenseEvasion" AttackTacticDiscovery AttackTactic = "Discovery" AttackTacticExecution AttackTactic = "Execution" AttackTacticExfiltration AttackTactic = "Exfiltration" AttackTacticImpact AttackTactic = "Impact" AttackTacticImpairProcessControl AttackTactic = "ImpairProcessControl" AttackTacticInhibitResponseFunction AttackTactic = "InhibitResponseFunction" AttackTacticInitialAccess AttackTactic = "InitialAccess" AttackTacticLateralMovement AttackTactic = "LateralMovement" AttackTacticPersistence AttackTactic = "Persistence" AttackTacticPreAttack AttackTactic = "PreAttack" AttackTacticPrivilegeEscalation AttackTactic = "PrivilegeEscalation" AttackTacticReconnaissance AttackTactic = "Reconnaissance" AttackTacticResourceDevelopment AttackTactic = "ResourceDevelopment" )
func (*AttackTactic) UnmarshalJSON ¶ added in v0.20240221.1115631
func (s *AttackTactic) UnmarshalJSON(bytes []byte) error
type CreateOrUpdateOperationResponse ¶
type CreateOrUpdateOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *SecurityMLAnalyticsSetting }
type DeleteOperationResponse ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *SecurityMLAnalyticsSetting }
type ListCompleteResult ¶
type ListCompleteResult struct { LatestHttpResponse *http.Response Items []SecurityMLAnalyticsSetting }
type ListCustomPager ¶ added in v0.20240628.1153531
func (*ListCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *ListCustomPager) NextPageLink() *odata.Link
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]SecurityMLAnalyticsSetting }
type RawSecurityMLAnalyticsSettingImpl ¶
RawSecurityMLAnalyticsSettingImpl 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).
type SecurityMLAnalyticsSetting ¶
type SecurityMLAnalyticsSetting interface { }
type SecurityMLAnalyticsSettingId ¶
type SecurityMLAnalyticsSettingId struct { SubscriptionId string ResourceGroupName string WorkspaceName string SecurityMLAnalyticsSettingName string }
SecurityMLAnalyticsSettingId is a struct representing the Resource ID for a Security M L Analytics Setting
func NewSecurityMLAnalyticsSettingID ¶
func NewSecurityMLAnalyticsSettingID(subscriptionId string, resourceGroupName string, workspaceName string, securityMLAnalyticsSettingName string) SecurityMLAnalyticsSettingId
NewSecurityMLAnalyticsSettingID returns a new SecurityMLAnalyticsSettingId struct
func ParseSecurityMLAnalyticsSettingID ¶
func ParseSecurityMLAnalyticsSettingID(input string) (*SecurityMLAnalyticsSettingId, error)
ParseSecurityMLAnalyticsSettingID parses 'input' into a SecurityMLAnalyticsSettingId
func ParseSecurityMLAnalyticsSettingIDInsensitively ¶
func ParseSecurityMLAnalyticsSettingIDInsensitively(input string) (*SecurityMLAnalyticsSettingId, error)
ParseSecurityMLAnalyticsSettingIDInsensitively parses 'input' case-insensitively into a SecurityMLAnalyticsSettingId note: this method should only be used for API response data and not user input
func (*SecurityMLAnalyticsSettingId) FromParseResult ¶
func (id *SecurityMLAnalyticsSettingId) FromParseResult(input resourceids.ParseResult) error
func (SecurityMLAnalyticsSettingId) ID ¶
func (id SecurityMLAnalyticsSettingId) ID() string
ID returns the formatted Security M L Analytics Setting ID
func (SecurityMLAnalyticsSettingId) Segments ¶
func (id SecurityMLAnalyticsSettingId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Security M L Analytics Setting ID
func (SecurityMLAnalyticsSettingId) String ¶
func (id SecurityMLAnalyticsSettingId) String() string
String returns a human-readable description of this Security M L Analytics Setting ID
type SecurityMLAnalyticsSettingOperationPredicate ¶
type SecurityMLAnalyticsSettingOperationPredicate struct { }
func (SecurityMLAnalyticsSettingOperationPredicate) Matches ¶
func (p SecurityMLAnalyticsSettingOperationPredicate) Matches(input SecurityMLAnalyticsSetting) bool
type SecurityMLAnalyticsSettingsClient ¶
type SecurityMLAnalyticsSettingsClient struct {
Client *resourcemanager.Client
}
func NewSecurityMLAnalyticsSettingsClientWithBaseURI ¶
func NewSecurityMLAnalyticsSettingsClientWithBaseURI(sdkApi sdkEnv.Api) (*SecurityMLAnalyticsSettingsClient, error)
func (SecurityMLAnalyticsSettingsClient) CreateOrUpdate ¶
func (c SecurityMLAnalyticsSettingsClient) CreateOrUpdate(ctx context.Context, id SecurityMLAnalyticsSettingId, input SecurityMLAnalyticsSetting) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (SecurityMLAnalyticsSettingsClient) Delete ¶
func (c SecurityMLAnalyticsSettingsClient) Delete(ctx context.Context, id SecurityMLAnalyticsSettingId) (result DeleteOperationResponse, err error)
Delete ...
func (SecurityMLAnalyticsSettingsClient) Get ¶
func (c SecurityMLAnalyticsSettingsClient) Get(ctx context.Context, id SecurityMLAnalyticsSettingId) (result GetOperationResponse, err error)
Get ...
func (SecurityMLAnalyticsSettingsClient) List ¶
func (c SecurityMLAnalyticsSettingsClient) List(ctx context.Context, id WorkspaceId) (result ListOperationResponse, err error)
List ...
func (SecurityMLAnalyticsSettingsClient) ListComplete ¶
func (c SecurityMLAnalyticsSettingsClient) ListComplete(ctx context.Context, id WorkspaceId) (ListCompleteResult, error)
ListComplete retrieves all the results into a single object
func (SecurityMLAnalyticsSettingsClient) ListCompleteMatchingPredicate ¶
func (c SecurityMLAnalyticsSettingsClient) ListCompleteMatchingPredicate(ctx context.Context, id WorkspaceId, predicate SecurityMLAnalyticsSettingOperationPredicate) (result ListCompleteResult, err error)
ListCompleteMatchingPredicate retrieves all the results and then applies the predicate
type SecurityMLAnalyticsSettingsKind ¶
type SecurityMLAnalyticsSettingsKind string
const (
SecurityMLAnalyticsSettingsKindAnomaly SecurityMLAnalyticsSettingsKind = "Anomaly"
)
func (*SecurityMLAnalyticsSettingsKind) UnmarshalJSON ¶ added in v0.20240221.1115631
func (s *SecurityMLAnalyticsSettingsKind) UnmarshalJSON(bytes []byte) error
type SettingsStatus ¶
type SettingsStatus string
const ( SettingsStatusFlighting SettingsStatus = "Flighting" SettingsStatusProduction SettingsStatus = "Production" )
func (*SettingsStatus) UnmarshalJSON ¶ added in v0.20240221.1115631
func (s *SettingsStatus) UnmarshalJSON(bytes []byte) error
type WorkspaceId ¶
WorkspaceId is a struct representing the Resource ID for a Workspace
func NewWorkspaceID ¶
func NewWorkspaceID(subscriptionId string, resourceGroupName string, workspaceName string) WorkspaceId
NewWorkspaceID returns a new WorkspaceId struct
func ParseWorkspaceID ¶
func ParseWorkspaceID(input string) (*WorkspaceId, error)
ParseWorkspaceID parses 'input' into a WorkspaceId
func ParseWorkspaceIDInsensitively ¶
func ParseWorkspaceIDInsensitively(input string) (*WorkspaceId, error)
ParseWorkspaceIDInsensitively parses 'input' case-insensitively into a WorkspaceId note: this method should only be used for API response data and not user input
func (*WorkspaceId) FromParseResult ¶
func (id *WorkspaceId) FromParseResult(input resourceids.ParseResult) error
func (WorkspaceId) Segments ¶
func (id WorkspaceId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Workspace ID
func (WorkspaceId) String ¶
func (id WorkspaceId) String() string
String returns a human-readable description of this Workspace ID
Source Files ¶
- client.go
- constants.go
- id_securitymlanalyticssetting.go
- id_workspace.go
- method_createorupdate.go
- method_delete.go
- method_get.go
- method_list.go
- model_anomalysecuritymlanalyticssettings.go
- model_anomalysecuritymlanalyticssettingsproperties.go
- model_securitymlanalyticssetting.go
- model_securitymlanalyticssettingsdatasource.go
- predicates.go
- version.go