Documentation ¶
Index ¶
- func PossibleValuesForTransparentDataEncryptionState() []string
- func ValidateDatabaseID(input interface{}, key string) (warnings []string, errors []error)
- type CreateOrUpdateOperationResponse
- type DatabaseId
- type GetOperationResponse
- type ListByDatabaseCompleteResult
- type ListByDatabaseOperationResponse
- type LogicalDatabaseTransparentDataEncryption
- type LogicalDatabaseTransparentDataEncryptionOperationPredicate
- type TransparentDataEncryptionProperties
- type TransparentDataEncryptionState
- type TransparentDataEncryptionsClient
- func (c TransparentDataEncryptionsClient) CreateOrUpdate(ctx context.Context, id DatabaseId, ...) (result CreateOrUpdateOperationResponse, err error)
- func (c TransparentDataEncryptionsClient) CreateOrUpdateThenPoll(ctx context.Context, id DatabaseId, ...) error
- func (c TransparentDataEncryptionsClient) Get(ctx context.Context, id DatabaseId) (result GetOperationResponse, err error)
- func (c TransparentDataEncryptionsClient) ListByDatabase(ctx context.Context, id DatabaseId) (result ListByDatabaseOperationResponse, err error)
- func (c TransparentDataEncryptionsClient) ListByDatabaseComplete(ctx context.Context, id DatabaseId) (ListByDatabaseCompleteResult, error)
- func (c TransparentDataEncryptionsClient) ListByDatabaseCompleteMatchingPredicate(ctx context.Context, id DatabaseId, ...) (result ListByDatabaseCompleteResult, err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForTransparentDataEncryptionState ¶
func PossibleValuesForTransparentDataEncryptionState() []string
func ValidateDatabaseID ¶
ValidateDatabaseID checks that 'input' can be parsed as a Database ID
Types ¶
type DatabaseId ¶
type DatabaseId struct { SubscriptionId string ResourceGroupName string ServerName string DatabaseName string }
DatabaseId is a struct representing the Resource ID for a Database
func NewDatabaseID ¶
func NewDatabaseID(subscriptionId string, resourceGroupName string, serverName string, databaseName string) DatabaseId
NewDatabaseID returns a new DatabaseId struct
func ParseDatabaseID ¶
func ParseDatabaseID(input string) (*DatabaseId, error)
ParseDatabaseID parses 'input' into a DatabaseId
func ParseDatabaseIDInsensitively ¶
func ParseDatabaseIDInsensitively(input string) (*DatabaseId, error)
ParseDatabaseIDInsensitively parses 'input' case-insensitively into a DatabaseId note: this method should only be used for API response data and not user input
func (DatabaseId) Segments ¶
func (id DatabaseId) Segments() []resourceids.Segment
Segments returns a slice of Resource ID Segments which comprise this Database ID
func (DatabaseId) String ¶
func (id DatabaseId) String() string
String returns a human-readable description of this Database ID
type GetOperationResponse ¶
type GetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *LogicalDatabaseTransparentDataEncryption }
type ListByDatabaseCompleteResult ¶
type ListByDatabaseCompleteResult struct {
Items []LogicalDatabaseTransparentDataEncryption
}
type ListByDatabaseOperationResponse ¶
type ListByDatabaseOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]LogicalDatabaseTransparentDataEncryption }
type LogicalDatabaseTransparentDataEncryption ¶
type LogicalDatabaseTransparentDataEncryption struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Properties *TransparentDataEncryptionProperties `json:"properties,omitempty"` Type *string `json:"type,omitempty"` }
type LogicalDatabaseTransparentDataEncryptionOperationPredicate ¶
type LogicalDatabaseTransparentDataEncryptionOperationPredicate struct { Id *string Name *string Type *string }
func (LogicalDatabaseTransparentDataEncryptionOperationPredicate) Matches ¶
func (p LogicalDatabaseTransparentDataEncryptionOperationPredicate) Matches(input LogicalDatabaseTransparentDataEncryption) bool
type TransparentDataEncryptionProperties ¶
type TransparentDataEncryptionProperties struct {
State TransparentDataEncryptionState `json:"state"`
}
type TransparentDataEncryptionState ¶
type TransparentDataEncryptionState string
const ( TransparentDataEncryptionStateDisabled TransparentDataEncryptionState = "Disabled" TransparentDataEncryptionStateEnabled TransparentDataEncryptionState = "Enabled" )
func (*TransparentDataEncryptionState) UnmarshalJSON ¶
func (s *TransparentDataEncryptionState) UnmarshalJSON(bytes []byte) error
type TransparentDataEncryptionsClient ¶
type TransparentDataEncryptionsClient struct {
Client *resourcemanager.Client
}
func NewTransparentDataEncryptionsClientWithBaseURI ¶
func NewTransparentDataEncryptionsClientWithBaseURI(sdkApi sdkEnv.Api) (*TransparentDataEncryptionsClient, error)
func (TransparentDataEncryptionsClient) CreateOrUpdate ¶
func (c TransparentDataEncryptionsClient) CreateOrUpdate(ctx context.Context, id DatabaseId, input LogicalDatabaseTransparentDataEncryption) (result CreateOrUpdateOperationResponse, err error)
CreateOrUpdate ...
func (TransparentDataEncryptionsClient) CreateOrUpdateThenPoll ¶
func (c TransparentDataEncryptionsClient) CreateOrUpdateThenPoll(ctx context.Context, id DatabaseId, input LogicalDatabaseTransparentDataEncryption) error
CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed
func (TransparentDataEncryptionsClient) Get ¶
func (c TransparentDataEncryptionsClient) Get(ctx context.Context, id DatabaseId) (result GetOperationResponse, err error)
Get ...
func (TransparentDataEncryptionsClient) ListByDatabase ¶
func (c TransparentDataEncryptionsClient) ListByDatabase(ctx context.Context, id DatabaseId) (result ListByDatabaseOperationResponse, err error)
ListByDatabase ...
func (TransparentDataEncryptionsClient) ListByDatabaseComplete ¶
func (c TransparentDataEncryptionsClient) ListByDatabaseComplete(ctx context.Context, id DatabaseId) (ListByDatabaseCompleteResult, error)
ListByDatabaseComplete retrieves all the results into a single object
func (TransparentDataEncryptionsClient) ListByDatabaseCompleteMatchingPredicate ¶
func (c TransparentDataEncryptionsClient) ListByDatabaseCompleteMatchingPredicate(ctx context.Context, id DatabaseId, predicate LogicalDatabaseTransparentDataEncryptionOperationPredicate) (result ListByDatabaseCompleteResult, err error)
ListByDatabaseCompleteMatchingPredicate retrieves all the results and then applies the predicate