ledgerdigestuploads

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: 11 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/sql/2021-02-01-preview/ledgerdigestuploads Documentation

The ledgerdigestuploads SDK allows for interaction with the Azure Resource Manager Service sql (API Version 2021-02-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/2021-02-01-preview/ledgerdigestuploads"

Client Initialization

client := ledgerdigestuploads.NewLedgerDigestUploadsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: LedgerDigestUploadsClient.CreateOrUpdate

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

payload := ledgerdigestuploads.LedgerDigestUploads{
	// ...
}


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

Example Usage: LedgerDigestUploadsClient.Disable

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

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

Example Usage: LedgerDigestUploadsClient.Get

ctx := context.TODO()
id := ledgerdigestuploads.NewDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serverValue", "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: LedgerDigestUploadsClient.ListByDatabase

ctx := context.TODO()
id := ledgerdigestuploads.NewDatabaseID("12345678-1234-9876-4563-123456789012", "example-resource-group", "serverValue", "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 PossibleValuesForLedgerDigestUploadsState

func PossibleValuesForLedgerDigestUploadsState() []string

func ValidateDatabaseID

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

ValidateDatabaseID checks that 'input' can be parsed as a Database ID

Types

type CreateOrUpdateOperationResponse

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

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

func (id DatabaseId) ID() string

ID returns the formatted Database ID

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 DisableOperationResponse

type DisableOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type GetOperationResponse

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

type LedgerDigestUploads

type LedgerDigestUploads struct {
	Id         *string                        `json:"id,omitempty"`
	Name       *string                        `json:"name,omitempty"`
	Properties *LedgerDigestUploadsProperties `json:"properties,omitempty"`
	Type       *string                        `json:"type,omitempty"`
}

type LedgerDigestUploadsClient

type LedgerDigestUploadsClient struct {
	Client *resourcemanager.Client
}

func NewLedgerDigestUploadsClientWithBaseURI

func NewLedgerDigestUploadsClientWithBaseURI(sdkApi sdkEnv.Api) (*LedgerDigestUploadsClient, error)

func (LedgerDigestUploadsClient) CreateOrUpdate

CreateOrUpdate ...

func (LedgerDigestUploadsClient) CreateOrUpdateThenPoll

func (c LedgerDigestUploadsClient) CreateOrUpdateThenPoll(ctx context.Context, id DatabaseId, input LedgerDigestUploads) error

CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed

func (LedgerDigestUploadsClient) Disable

Disable ...

func (LedgerDigestUploadsClient) DisableThenPoll

func (c LedgerDigestUploadsClient) DisableThenPoll(ctx context.Context, id DatabaseId) error

DisableThenPoll performs Disable then polls until it's completed

func (LedgerDigestUploadsClient) Get

Get ...

func (LedgerDigestUploadsClient) ListByDatabase

ListByDatabase ...

func (LedgerDigestUploadsClient) ListByDatabaseComplete

ListByDatabaseComplete retrieves all the results into a single object

func (LedgerDigestUploadsClient) ListByDatabaseCompleteMatchingPredicate

func (c LedgerDigestUploadsClient) ListByDatabaseCompleteMatchingPredicate(ctx context.Context, id DatabaseId, predicate LedgerDigestUploadsOperationPredicate) (result ListByDatabaseCompleteResult, err error)

ListByDatabaseCompleteMatchingPredicate retrieves all the results and then applies the predicate

type LedgerDigestUploadsOperationPredicate

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

func (LedgerDigestUploadsOperationPredicate) Matches

type LedgerDigestUploadsProperties

type LedgerDigestUploadsProperties struct {
	DigestStorageEndpoint *string                   `json:"digestStorageEndpoint,omitempty"`
	State                 *LedgerDigestUploadsState `json:"state,omitempty"`
}

type LedgerDigestUploadsState

type LedgerDigestUploadsState string
const (
	LedgerDigestUploadsStateDisabled LedgerDigestUploadsState = "Disabled"
	LedgerDigestUploadsStateEnabled  LedgerDigestUploadsState = "Enabled"
)

func (*LedgerDigestUploadsState) UnmarshalJSON

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

type ListByDatabaseCompleteResult

type ListByDatabaseCompleteResult struct {
	Items []LedgerDigestUploads
}

type ListByDatabaseOperationResponse

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

Jump to

Keyboard shortcuts

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