serversecurityalertpolicies

package
v0.20240524.1090207 Latest Latest
Warning

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

Go to latest
Published: May 24, 2024 License: MPL-2.0 Imports: 12 Imported by: 1

README

github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/serversecurityalertpolicies Documentation

The serversecurityalertpolicies SDK allows for interaction with the Azure Resource Manager Service postgresql (API Version 2017-12-01).

This readme covers example usages, but further information on using this SDK can be found in the project root.

Import Path

import "github.com/hashicorp/go-azure-sdk/resource-manager/postgresql/2017-12-01/serversecurityalertpolicies"

Client Initialization

client := serversecurityalertpolicies.NewServerSecurityAlertPoliciesClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: ServerSecurityAlertPoliciesClient.CreateOrUpdate

ctx := context.TODO()
id := serversecurityalertpolicies.NewServerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serverValue")

payload := serversecurityalertpolicies.ServerSecurityAlertPolicy{
	// ...
}


if err := client.CreateOrUpdateThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Example Usage: ServerSecurityAlertPoliciesClient.Get

ctx := context.TODO()
id := serversecurityalertpolicies.NewServerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serverValue")

read, err := client.Get(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ServerSecurityAlertPoliciesClient.ListByServer

ctx := context.TODO()
id := serversecurityalertpolicies.NewServerID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serverValue")

// alternatively `client.ListByServer(ctx, id)` can be used to do batched pagination
items, err := client.ListByServerComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForServerSecurityAlertPolicyState

func PossibleValuesForServerSecurityAlertPolicyState() []string

func ValidateServerID

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

ValidateServerID checks that 'input' can be parsed as a Server ID

Types

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ServerSecurityAlertPolicy
}

type GetOperationResponse

type GetOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ServerSecurityAlertPolicy
}

type ListByServerCompleteResult

type ListByServerCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []ServerSecurityAlertPolicy
}

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

type ServerId struct {
	SubscriptionId    string
	ResourceGroupName string
	ServerName        string
}

ServerId is a struct representing the Resource ID for a Server

func NewServerID

func NewServerID(subscriptionId string, resourceGroupName string, serverName string) ServerId

NewServerID returns a new ServerId struct

func ParseServerID

func ParseServerID(input string) (*ServerId, error)

ParseServerID parses 'input' into a ServerId

func ParseServerIDInsensitively

func ParseServerIDInsensitively(input string) (*ServerId, error)

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) ID

func (id ServerId) ID() string

ID returns the formatted Server ID

func (ServerId) Segments

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

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

func (ServerId) String

func (id ServerId) String() string

String returns a human-readable description of this Server ID

type ServerSecurityAlertPoliciesClient

type ServerSecurityAlertPoliciesClient struct {
	Client *resourcemanager.Client
}

func NewServerSecurityAlertPoliciesClientWithBaseURI

func NewServerSecurityAlertPoliciesClientWithBaseURI(sdkApi sdkEnv.Api) (*ServerSecurityAlertPoliciesClient, error)

func (ServerSecurityAlertPoliciesClient) CreateOrUpdate

CreateOrUpdate ...

func (ServerSecurityAlertPoliciesClient) CreateOrUpdateThenPoll

CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed

func (ServerSecurityAlertPoliciesClient) Get

Get ...

func (ServerSecurityAlertPoliciesClient) ListByServer

ListByServer ...

func (ServerSecurityAlertPoliciesClient) ListByServerComplete

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

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

func (ServerSecurityAlertPolicyOperationPredicate) Matches

type ServerSecurityAlertPolicyState

type ServerSecurityAlertPolicyState string
const (
	ServerSecurityAlertPolicyStateDisabled ServerSecurityAlertPolicyState = "Disabled"
	ServerSecurityAlertPolicyStateEnabled  ServerSecurityAlertPolicyState = "Enabled"
)

func (*ServerSecurityAlertPolicyState) UnmarshalJSON

func (s *ServerSecurityAlertPolicyState) UnmarshalJSON(bytes []byte) error

Jump to

Keyboard shortcuts

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