README
¶
github.com/hashicorp/go-azure-sdk/resource-manager/sql/2023-05-01-preview/managedinstanceadvancedthreatprotectionsettings
Documentation
The managedinstanceadvancedthreatprotectionsettings
SDK allows for interaction with the Azure Resource Manager Service sql
(API Version 2023-05-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-helpers/resourcemanager/commonids"
import "github.com/hashicorp/go-azure-sdk/resource-manager/sql/2023-05-01-preview/managedinstanceadvancedthreatprotectionsettings"
Client Initialization
client := managedinstanceadvancedthreatprotectionsettings.NewManagedInstanceAdvancedThreatProtectionSettingsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer
Example Usage: ManagedInstanceAdvancedThreatProtectionSettingsClient.CreateOrUpdate
ctx := context.TODO()
id := commonids.NewSqlManagedInstanceID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue")
payload := managedinstanceadvancedthreatprotectionsettings.ManagedInstanceAdvancedThreatProtection{
// ...
}
if err := client.CreateOrUpdateThenPoll(ctx, id, payload); err != nil {
// handle the error
}
Example Usage: ManagedInstanceAdvancedThreatProtectionSettingsClient.Get
ctx := context.TODO()
id := commonids.NewSqlManagedInstanceID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue")
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: ManagedInstanceAdvancedThreatProtectionSettingsClient.ListByInstance
ctx := context.TODO()
id := commonids.NewSqlManagedInstanceID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue")
// alternatively `client.ListByInstance(ctx, id)` can be used to do batched pagination
items, err := client.ListByInstanceComplete(ctx, id)
if err != nil {
// handle the error
}
for _, item := range items {
// do something
}
Documentation
¶
Index ¶
- func PossibleValuesForAdvancedThreatProtectionState() []string
- type AdvancedThreatProtectionProperties
- type AdvancedThreatProtectionState
- type CreateOrUpdateOperationResponse
- type GetOperationResponse
- type ListByInstanceCompleteResult
- type ListByInstanceOperationResponse
- type ManagedInstanceAdvancedThreatProtection
- type ManagedInstanceAdvancedThreatProtectionOperationPredicate
- type ManagedInstanceAdvancedThreatProtectionSettingsClient
- func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) CreateOrUpdate(ctx context.Context, id commonids.SqlManagedInstanceId, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) CreateOrUpdateThenPoll(ctx context.Context, id commonids.SqlManagedInstanceId, ...) error
- func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) Get(ctx context.Context, id commonids.SqlManagedInstanceId) (result GetOperationResponse, err error)
- func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstance(ctx context.Context, id commonids.SqlManagedInstanceId) (result ListByInstanceOperationResponse, err error)
- func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstanceComplete(ctx context.Context, id commonids.SqlManagedInstanceId) (ListByInstanceCompleteResult, error)
- func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstanceCompleteMatchingPredicate(ctx context.Context, id commonids.SqlManagedInstanceId, ...) (result ListByInstanceCompleteResult, err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForAdvancedThreatProtectionState ¶
func PossibleValuesForAdvancedThreatProtectionState() []string
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 GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *ManagedInstanceAdvancedThreatProtection }
type ListByInstanceCompleteResult ¶
type ListByInstanceCompleteResult struct { LatestHttpResponse *http.Response Items []ManagedInstanceAdvancedThreatProtection }
type ListByInstanceOperationResponse ¶
type ListByInstanceOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]ManagedInstanceAdvancedThreatProtection }
type ManagedInstanceAdvancedThreatProtection ¶
type ManagedInstanceAdvancedThreatProtection 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 ManagedInstanceAdvancedThreatProtectionOperationPredicate ¶
type ManagedInstanceAdvancedThreatProtectionOperationPredicate struct { Id *string Name *string Type *string }
func (ManagedInstanceAdvancedThreatProtectionOperationPredicate) Matches ¶
func (p ManagedInstanceAdvancedThreatProtectionOperationPredicate) Matches(input ManagedInstanceAdvancedThreatProtection) bool
type ManagedInstanceAdvancedThreatProtectionSettingsClient ¶
type ManagedInstanceAdvancedThreatProtectionSettingsClient struct {
Client *resourcemanager.Client
}
func NewManagedInstanceAdvancedThreatProtectionSettingsClientWithBaseURI ¶
func NewManagedInstanceAdvancedThreatProtectionSettingsClientWithBaseURI(sdkApi sdkEnv.Api) (*ManagedInstanceAdvancedThreatProtectionSettingsClient, error)
func (ManagedInstanceAdvancedThreatProtectionSettingsClient) CreateOrUpdate ¶
func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) CreateOrUpdate(ctx context.Context, id commonids.SqlManagedInstanceId, input ManagedInstanceAdvancedThreatProtection) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (ManagedInstanceAdvancedThreatProtectionSettingsClient) CreateOrUpdateThenPoll ¶
func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) CreateOrUpdateThenPoll(ctx context.Context, id commonids.SqlManagedInstanceId, input ManagedInstanceAdvancedThreatProtection) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (ManagedInstanceAdvancedThreatProtectionSettingsClient) Get ¶
func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) Get(ctx context.Context, id commonids.SqlManagedInstanceId) (result GetOperationResponse, err error)
Get ...
func (ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstance ¶
func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstance(ctx context.Context, id commonids.SqlManagedInstanceId) (result ListByInstanceOperationResponse, err error)
ListByInstance ...
func (ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstanceComplete ¶
func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstanceComplete(ctx context.Context, id commonids.SqlManagedInstanceId) (ListByInstanceCompleteResult, error)
ListByInstanceComplete retrieves all the results into a single object
func (ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstanceCompleteMatchingPredicate ¶
func (c ManagedInstanceAdvancedThreatProtectionSettingsClient) ListByInstanceCompleteMatchingPredicate(ctx context.Context, id commonids.SqlManagedInstanceId, predicate ManagedInstanceAdvancedThreatProtectionOperationPredicate) (result ListByInstanceCompleteResult, err error)
ListByInstanceCompleteMatchingPredicate retrieves all the results and then applies the predicate
Click to show internal directories.
Click to hide internal directories.