Documentation ¶
Index ¶
- func PossibleValuesForServerSecurityAlertPolicyState() []string
- func ValidateServerID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type GetOperationResponse
- type ListByServerCompleteResult
- type ListByServerCustomPager
- type ListByServerOperationResponse
- type SecurityAlertPolicyProperties
- type ServerId
- type ServerSecurityAlertPoliciesClient
- func (c ServerSecurityAlertPoliciesClient) CreateOrUpdate(ctx context.Context, id ServerId, input ServerSecurityAlertPolicy) (result CreateOrUpdateOperationResponse, err error)
- func (c ServerSecurityAlertPoliciesClient) CreateOrUpdateThenPoll(ctx context.Context, id ServerId, input ServerSecurityAlertPolicy) error
- func (c ServerSecurityAlertPoliciesClient) Get(ctx context.Context, id ServerId) (result GetOperationResponse, err error)
- func (c ServerSecurityAlertPoliciesClient) ListByServer(ctx context.Context, id ServerId) (result ListByServerOperationResponse, err error)
- func (c ServerSecurityAlertPoliciesClient) ListByServerComplete(ctx context.Context, id ServerId) (ListByServerCompleteResult, error)
- func (c ServerSecurityAlertPoliciesClient) ListByServerCompleteMatchingPredicate(ctx context.Context, id ServerId, ...) (result ListByServerCompleteResult, err error)
- type ServerSecurityAlertPolicy
- type ServerSecurityAlertPolicyOperationPredicate
- type ServerSecurityAlertPolicyState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForServerSecurityAlertPolicyState ¶
func PossibleValuesForServerSecurityAlertPolicyState() []string
func ValidateServerID ¶
ValidateServerID checks that 'input' can be parsed as a Server ID
Types ¶
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ServerSecurityAlertPolicy }
type ListByServerCompleteResult ¶
type ListByServerCompleteResult struct { LatestHttpResponse *http.Response Items []ServerSecurityAlertPolicy }
type ListByServerCustomPager ¶ added in v0.20240628.1153531
func (*ListByServerCustomPager) NextPageLink ¶ added in v0.20240628.1153531
func (p *ListByServerCustomPager) NextPageLink() *odata.Link
type ListByServerOperationResponse ¶
type ListByServerOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]ServerSecurityAlertPolicy }
type SecurityAlertPolicyProperties ¶
type SecurityAlertPolicyProperties struct { DisabledAlerts *[]string `json:"disabledAlerts,omitempty"` EmailAccountAdmins *bool `json:"emailAccountAdmins,omitempty"` EmailAddresses *[]string `json:"emailAddresses,omitempty"` RetentionDays *int64 `json:"retentionDays,omitempty"` State ServerSecurityAlertPolicyState `json:"state"` StorageAccountAccessKey *string `json:"storageAccountAccessKey,omitempty"` StorageEndpoint *string `json:"storageEndpoint,omitempty"` }
type ServerId ¶
ServerId is a struct representing the Resource ID for a Server
func NewServerID ¶
NewServerID returns a new ServerId struct
func ParseServerID ¶
ParseServerID parses 'input' into a ServerId
func ParseServerIDInsensitively ¶
ParseServerIDInsensitively parses 'input' case-insensitively into a ServerId note: this method should only be used for API response data and not user input
func (*ServerId) FromParseResult ¶
func (id *ServerId) FromParseResult(input resourceids.ParseResult) error
func (ServerId) Segments ¶
func (id ServerId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Server ID
type ServerSecurityAlertPoliciesClient ¶
type ServerSecurityAlertPoliciesClient struct {
Client *resourcemanager.Client
}
func NewServerSecurityAlertPoliciesClientWithBaseURI ¶
func NewServerSecurityAlertPoliciesClientWithBaseURI(sdkApi sdkEnv.Api) (*ServerSecurityAlertPoliciesClient, error)
func (ServerSecurityAlertPoliciesClient) CreateOrUpdate ¶
func (c ServerSecurityAlertPoliciesClient) CreateOrUpdate(ctx context.Context, id ServerId, input ServerSecurityAlertPolicy) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ServerSecurityAlertPoliciesClient) CreateOrUpdateThenPoll ¶
func (c ServerSecurityAlertPoliciesClient) CreateOrUpdateThenPoll(ctx context.Context, id ServerId, input ServerSecurityAlertPolicy) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (ServerSecurityAlertPoliciesClient) Get ¶
func (c ServerSecurityAlertPoliciesClient) Get(ctx context.Context, id ServerId) (result GetOperationResponse, err error)
Get ...
func (ServerSecurityAlertPoliciesClient) ListByServer ¶
func (c ServerSecurityAlertPoliciesClient) ListByServer(ctx context.Context, id ServerId) (result ListByServerOperationResponse, err error)
ListByServer ...
func (ServerSecurityAlertPoliciesClient) ListByServerComplete ¶
func (c ServerSecurityAlertPoliciesClient) ListByServerComplete(ctx context.Context, id ServerId) (ListByServerCompleteResult, error)
ListByServerComplete retrieves all the results into a single object
func (ServerSecurityAlertPoliciesClient) ListByServerCompleteMatchingPredicate ¶
func (c ServerSecurityAlertPoliciesClient) ListByServerCompleteMatchingPredicate(ctx context.Context, id ServerId, predicate ServerSecurityAlertPolicyOperationPredicate) (result ListByServerCompleteResult, err error)
ListByServerCompleteMatchingPredicate retrieves all the results and then applies the predicate
type ServerSecurityAlertPolicy ¶
type ServerSecurityAlertPolicy struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *SecurityAlertPolicyProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type ServerSecurityAlertPolicyOperationPredicate ¶
func (ServerSecurityAlertPolicyOperationPredicate) Matches ¶
func (p ServerSecurityAlertPolicyOperationPredicate) Matches(input ServerSecurityAlertPolicy) bool
type ServerSecurityAlertPolicyState ¶
type ServerSecurityAlertPolicyState string
const ( ServerSecurityAlertPolicyStateDisabled ServerSecurityAlertPolicyState = "Disabled" ServerSecurityAlertPolicyStateEnabled ServerSecurityAlertPolicyState = "Enabled" )
func (*ServerSecurityAlertPolicyState) UnmarshalJSON ¶
func (s *ServerSecurityAlertPolicyState) UnmarshalJSON(bytes []byte) error