servertrustcertificates

package
v0.20240320.1000025 Latest Latest
Warning

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

Go to latest
Published: Mar 20, 2024 License: MPL-2.0 Imports: 11 Imported by: 0

README

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

The servertrustcertificates SDK allows for interaction with the Azure Resource Manager Service sql (API Version 2023-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-helpers/resourcemanager/commonids"
import "github.com/hashicorp/go-azure-sdk/resource-manager/sql/2023-02-01-preview/servertrustcertificates"

Client Initialization

client := servertrustcertificates.NewServerTrustCertificatesClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: ServerTrustCertificatesClient.CreateOrUpdate

ctx := context.TODO()
id := servertrustcertificates.NewServerTrustCertificateID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue", "serverTrustCertificateValue")

payload := servertrustcertificates.ServerTrustCertificate{
	// ...
}


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

Example Usage: ServerTrustCertificatesClient.Delete

ctx := context.TODO()
id := servertrustcertificates.NewServerTrustCertificateID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue", "serverTrustCertificateValue")

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

Example Usage: ServerTrustCertificatesClient.Get

ctx := context.TODO()
id := servertrustcertificates.NewServerTrustCertificateID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedInstanceValue", "serverTrustCertificateValue")

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: ServerTrustCertificatesClient.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

Constants

This section is empty.

Variables

This section is empty.

Functions

func ValidateServerTrustCertificateID

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

ValidateServerTrustCertificateID checks that 'input' can be parsed as a Server Trust Certificate ID

Types

type CreateOrUpdateOperationResponse

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

type DeleteOperationResponse

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

type GetOperationResponse

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

type ListByInstanceCompleteResult

type ListByInstanceCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []ServerTrustCertificate
}

type ListByInstanceOperationResponse

type ListByInstanceOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]ServerTrustCertificate
}

type ServerTrustCertificate

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

type ServerTrustCertificateId

type ServerTrustCertificateId struct {
	SubscriptionId             string
	ResourceGroupName          string
	ManagedInstanceName        string
	ServerTrustCertificateName string
}

ServerTrustCertificateId is a struct representing the Resource ID for a Server Trust Certificate

func NewServerTrustCertificateID

func NewServerTrustCertificateID(subscriptionId string, resourceGroupName string, managedInstanceName string, serverTrustCertificateName string) ServerTrustCertificateId

NewServerTrustCertificateID returns a new ServerTrustCertificateId struct

func ParseServerTrustCertificateID

func ParseServerTrustCertificateID(input string) (*ServerTrustCertificateId, error)

ParseServerTrustCertificateID parses 'input' into a ServerTrustCertificateId

func ParseServerTrustCertificateIDInsensitively

func ParseServerTrustCertificateIDInsensitively(input string) (*ServerTrustCertificateId, error)

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

func (*ServerTrustCertificateId) FromParseResult

func (id *ServerTrustCertificateId) FromParseResult(input resourceids.ParseResult) error

func (ServerTrustCertificateId) ID

ID returns the formatted Server Trust Certificate ID

func (ServerTrustCertificateId) Segments

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

func (ServerTrustCertificateId) String

func (id ServerTrustCertificateId) String() string

String returns a human-readable description of this Server Trust Certificate ID

type ServerTrustCertificateOperationPredicate

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

func (ServerTrustCertificateOperationPredicate) Matches

type ServerTrustCertificateProperties

type ServerTrustCertificateProperties struct {
	CertificateName *string `json:"certificateName,omitempty"`
	PublicBlob      *string `json:"publicBlob,omitempty"`
	Thumbprint      *string `json:"thumbprint,omitempty"`
}

type ServerTrustCertificatesClient

type ServerTrustCertificatesClient struct {
	Client *resourcemanager.Client
}

func NewServerTrustCertificatesClientWithBaseURI

func NewServerTrustCertificatesClientWithBaseURI(sdkApi sdkEnv.Api) (*ServerTrustCertificatesClient, error)

func (ServerTrustCertificatesClient) CreateOrUpdate

CreateOrUpdate ...

func (ServerTrustCertificatesClient) CreateOrUpdateThenPoll

CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed

func (ServerTrustCertificatesClient) Delete

Delete ...

func (ServerTrustCertificatesClient) DeleteThenPoll

DeleteThenPoll performs Delete then polls until it's completed

func (ServerTrustCertificatesClient) Get

Get ...

func (ServerTrustCertificatesClient) ListByInstance

ListByInstance ...

func (ServerTrustCertificatesClient) ListByInstanceComplete

ListByInstanceComplete retrieves all the results into a single object

func (ServerTrustCertificatesClient) ListByInstanceCompleteMatchingPredicate

ListByInstanceCompleteMatchingPredicate retrieves all the results and then applies the predicate

Jump to

Keyboard shortcuts

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