manageddatabaseadvancedthreatprotectionsettings

package
v0.20230823.1052657 Latest Latest
Warning

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

Go to latest
Published: Aug 23, 2023 License: MPL-2.0 Imports: 13 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/sql/2022-11-01-preview/manageddatabaseadvancedthreatprotectionsettings Documentation

The manageddatabaseadvancedthreatprotectionsettings SDK allows for interaction with the Azure Resource Manager Service sql (API Version 2022-11-01-preview).

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/sql/2022-11-01-preview/manageddatabaseadvancedthreatprotectionsettings"

Client Initialization

client := manageddatabaseadvancedthreatprotectionsettings.NewManagedDatabaseAdvancedThreatProtectionSettingsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: ManagedDatabaseAdvancedThreatProtectionSettingsClient.CreateOrUpdate

ctx := context.TODO()
id := manageddatabaseadvancedthreatprotectionsettings.NewManagedInstanceDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue", "databaseValue")

payload := manageddatabaseadvancedthreatprotectionsettings.ManagedDatabaseAdvancedThreatProtection{
	// ...
}


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

Example Usage: ManagedDatabaseAdvancedThreatProtectionSettingsClient.Get

ctx := context.TODO()
id := manageddatabaseadvancedthreatprotectionsettings.NewManagedInstanceDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue", "databaseValue")

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: ManagedDatabaseAdvancedThreatProtectionSettingsClient.ListByDatabase

ctx := context.TODO()
id := manageddatabaseadvancedthreatprotectionsettings.NewManagedInstanceDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue", "databaseValue")

// alternatively `client.ListByDatabase(ctx, id)` can be used to do batched pagination
items, err := client.ListByDatabaseComplete(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 PossibleValuesForAdvancedThreatProtectionState

func PossibleValuesForAdvancedThreatProtectionState() []string

func ValidateManagedInstanceDatabaseID

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

ValidateManagedInstanceDatabaseID checks that 'input' can be parsed as a Managed Instance Database ID

Types

type AdvancedThreatProtectionProperties

type AdvancedThreatProtectionProperties struct {
	CreationTime *string                       `json:"creationTime,omitempty"`
	State        AdvancedThreatProtectionState `json:"state"`
}

func (*AdvancedThreatProtectionProperties) GetCreationTimeAsTime

func (o *AdvancedThreatProtectionProperties) GetCreationTimeAsTime() (*time.Time, error)

func (*AdvancedThreatProtectionProperties) SetCreationTimeAsTime

func (o *AdvancedThreatProtectionProperties) SetCreationTimeAsTime(input time.Time)

type AdvancedThreatProtectionState

type AdvancedThreatProtectionState string
const (
	AdvancedThreatProtectionStateDisabled AdvancedThreatProtectionState = "Disabled"
	AdvancedThreatProtectionStateEnabled  AdvancedThreatProtectionState = "Enabled"
	AdvancedThreatProtectionStateNew      AdvancedThreatProtectionState = "New"
)

func (*AdvancedThreatProtectionState) UnmarshalJSON

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

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ManagedDatabaseAdvancedThreatProtection
}

type GetOperationResponse

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

type ListByDatabaseCompleteResult

type ListByDatabaseCompleteResult struct {
	Items []ManagedDatabaseAdvancedThreatProtection
}

type ListByDatabaseOperationResponse

type ListByDatabaseOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]ManagedDatabaseAdvancedThreatProtection
}

type ManagedDatabaseAdvancedThreatProtection

type ManagedDatabaseAdvancedThreatProtection struct {
	Id         *string                             `json:"id,omitempty"`
	Name       *string                             `json:"name,omitempty"`
	Properties *AdvancedThreatProtectionProperties `json:"properties,omitempty"`
	SystemData *systemdata.SystemData              `json:"systemData,omitempty"`
	Type       *string                             `json:"type,omitempty"`
}

type ManagedDatabaseAdvancedThreatProtectionOperationPredicate

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

func (ManagedDatabaseAdvancedThreatProtectionOperationPredicate) Matches

type ManagedDatabaseAdvancedThreatProtectionSettingsClient

type ManagedDatabaseAdvancedThreatProtectionSettingsClient struct {
	Client *resourcemanager.Client
}

func NewManagedDatabaseAdvancedThreatProtectionSettingsClientWithBaseURI

func NewManagedDatabaseAdvancedThreatProtectionSettingsClientWithBaseURI(sdkApi sdkEnv.Api) (*ManagedDatabaseAdvancedThreatProtectionSettingsClient, error)

func (ManagedDatabaseAdvancedThreatProtectionSettingsClient) CreateOrUpdate

CreateOrUpdate ...

func (ManagedDatabaseAdvancedThreatProtectionSettingsClient) Get

Get ...

func (ManagedDatabaseAdvancedThreatProtectionSettingsClient) ListByDatabase

ListByDatabase ...

func (ManagedDatabaseAdvancedThreatProtectionSettingsClient) ListByDatabaseComplete

ListByDatabaseComplete retrieves all the results into a single object

func (ManagedDatabaseAdvancedThreatProtectionSettingsClient) ListByDatabaseCompleteMatchingPredicate

ListByDatabaseCompleteMatchingPredicate retrieves all the results and then applies the predicate

type ManagedInstanceDatabaseId

type ManagedInstanceDatabaseId struct {
	SubscriptionId      string
	ResourceGroupName   string
	ManagedInstanceName string
	DatabaseName        string
}

ManagedInstanceDatabaseId is a struct representing the Resource ID for a Managed Instance Database

func NewManagedInstanceDatabaseID

func NewManagedInstanceDatabaseID(subscriptionId string, resourceGroupName string, managedInstanceName string, databaseName string) ManagedInstanceDatabaseId

NewManagedInstanceDatabaseID returns a new ManagedInstanceDatabaseId struct

func ParseManagedInstanceDatabaseID

func ParseManagedInstanceDatabaseID(input string) (*ManagedInstanceDatabaseId, error)

ParseManagedInstanceDatabaseID parses 'input' into a ManagedInstanceDatabaseId

func ParseManagedInstanceDatabaseIDInsensitively

func ParseManagedInstanceDatabaseIDInsensitively(input string) (*ManagedInstanceDatabaseId, error)

ParseManagedInstanceDatabaseIDInsensitively parses 'input' case-insensitively into a ManagedInstanceDatabaseId note: this method should only be used for API response data and not user input

func (ManagedInstanceDatabaseId) ID

ID returns the formatted Managed Instance Database ID

func (ManagedInstanceDatabaseId) Segments

Segments returns a slice of Resource ID Segments which comprise this Managed Instance Database ID

func (ManagedInstanceDatabaseId) String

func (id ManagedInstanceDatabaseId) String() string

String returns a human-readable description of this Managed Instance Database ID

Jump to

Keyboard shortcuts

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