netappaccounts

package
v0.20221010.1142840 Latest Latest
Warning

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

Go to latest
Published: Oct 10, 2022 License: MPL-2.0 Imports: 11 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/netapp/2022-01-01/netappaccounts Documentation

The netappaccounts SDK allows for interaction with the Azure Resource Manager Service netapp (API Version 2022-01-01).

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/netapp/2022-01-01/netappaccounts"

Client Initialization

client := netappaccounts.NewNetAppAccountsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: NetAppAccountsClient.AccountsCreateOrUpdate

ctx := context.TODO()
id := netappaccounts.NewNetAppAccountID("12345678-1234-9876-4563-123456789012", "example-resource-group", "accountValue")

payload := netappaccounts.NetAppAccount{
	// ...
}


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

Example Usage: NetAppAccountsClient.AccountsDelete

ctx := context.TODO()
id := netappaccounts.NewNetAppAccountID("12345678-1234-9876-4563-123456789012", "example-resource-group", "accountValue")

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

Example Usage: NetAppAccountsClient.AccountsGet

ctx := context.TODO()
id := netappaccounts.NewNetAppAccountID("12345678-1234-9876-4563-123456789012", "example-resource-group", "accountValue")

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

Example Usage: NetAppAccountsClient.AccountsList

ctx := context.TODO()
id := netappaccounts.NewResourceGroupID("12345678-1234-9876-4563-123456789012", "example-resource-group")

// alternatively `client.AccountsList(ctx, id)` can be used to do batched pagination
items, err := client.AccountsListComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Example Usage: NetAppAccountsClient.AccountsListBySubscription

ctx := context.TODO()
id := netappaccounts.NewSubscriptionID("12345678-1234-9876-4563-123456789012")

// alternatively `client.AccountsListBySubscription(ctx, id)` can be used to do batched pagination
items, err := client.AccountsListBySubscriptionComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Example Usage: NetAppAccountsClient.AccountsUpdate

ctx := context.TODO()
id := netappaccounts.NewNetAppAccountID("12345678-1234-9876-4563-123456789012", "example-resource-group", "accountValue")

payload := netappaccounts.NetAppAccountPatch{
	// ...
}


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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForActiveDirectoryStatus

func PossibleValuesForActiveDirectoryStatus() []string

func ValidateNetAppAccountID

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

ValidateNetAppAccountID checks that 'input' can be parsed as a Net App Account ID

Types

type AccountEncryption

type AccountEncryption struct {
	KeySource *string `json:"keySource,omitempty"`
}

type AccountProperties

type AccountProperties struct {
	ActiveDirectories *[]ActiveDirectory `json:"activeDirectories,omitempty"`
	Encryption        *AccountEncryption `json:"encryption,omitempty"`
	ProvisioningState *string            `json:"provisioningState,omitempty"`
}

type AccountsCreateOrUpdateOperationResponse

type AccountsCreateOrUpdateOperationResponse struct {
	Poller       polling.LongRunningPoller
	HttpResponse *http.Response
}

type AccountsDeleteOperationResponse

type AccountsDeleteOperationResponse struct {
	Poller       polling.LongRunningPoller
	HttpResponse *http.Response
}

type AccountsGetOperationResponse

type AccountsGetOperationResponse struct {
	HttpResponse *http.Response
	Model        *NetAppAccount
}

type AccountsListBySubscriptionCompleteResult

type AccountsListBySubscriptionCompleteResult struct {
	Items []NetAppAccount
}

type AccountsListBySubscriptionOperationResponse

type AccountsListBySubscriptionOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]NetAppAccount
	// contains filtered or unexported fields
}

func (AccountsListBySubscriptionOperationResponse) HasMore

func (AccountsListBySubscriptionOperationResponse) LoadMore

type AccountsListCompleteResult

type AccountsListCompleteResult struct {
	Items []NetAppAccount
}

type AccountsListOperationResponse

type AccountsListOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]NetAppAccount
	// contains filtered or unexported fields
}

func (AccountsListOperationResponse) HasMore

func (r AccountsListOperationResponse) HasMore() bool

func (AccountsListOperationResponse) LoadMore

type AccountsUpdateOperationResponse

type AccountsUpdateOperationResponse struct {
	Poller       polling.LongRunningPoller
	HttpResponse *http.Response
}

type ActiveDirectory

type ActiveDirectory struct {
	ActiveDirectoryId          *string                `json:"activeDirectoryId,omitempty"`
	AdName                     *string                `json:"adName,omitempty"`
	Administrators             *[]string              `json:"administrators,omitempty"`
	AesEncryption              *bool                  `json:"aesEncryption,omitempty"`
	AllowLocalNfsUsersWithLdap *bool                  `json:"allowLocalNfsUsersWithLdap,omitempty"`
	BackupOperators            *[]string              `json:"backupOperators,omitempty"`
	Dns                        *string                `json:"dns,omitempty"`
	Domain                     *string                `json:"domain,omitempty"`
	EncryptDCConnections       *bool                  `json:"encryptDCConnections,omitempty"`
	KdcIP                      *string                `json:"kdcIP,omitempty"`
	LdapOverTLS                *bool                  `json:"ldapOverTLS,omitempty"`
	LdapSearchScope            *LdapSearchScopeOpt    `json:"ldapSearchScope,omitempty"`
	LdapSigning                *bool                  `json:"ldapSigning,omitempty"`
	OrganizationalUnit         *string                `json:"organizationalUnit,omitempty"`
	Password                   *string                `json:"password,omitempty"`
	SecurityOperators          *[]string              `json:"securityOperators,omitempty"`
	ServerRootCACertificate    *string                `json:"serverRootCACertificate,omitempty"`
	Site                       *string                `json:"site,omitempty"`
	SmbServerName              *string                `json:"smbServerName,omitempty"`
	Status                     *ActiveDirectoryStatus `json:"status,omitempty"`
	StatusDetails              *string                `json:"statusDetails,omitempty"`
	Username                   *string                `json:"username,omitempty"`
}

type ActiveDirectoryStatus

type ActiveDirectoryStatus string
const (
	ActiveDirectoryStatusCreated  ActiveDirectoryStatus = "Created"
	ActiveDirectoryStatusDeleted  ActiveDirectoryStatus = "Deleted"
	ActiveDirectoryStatusError    ActiveDirectoryStatus = "Error"
	ActiveDirectoryStatusInUse    ActiveDirectoryStatus = "InUse"
	ActiveDirectoryStatusUpdating ActiveDirectoryStatus = "Updating"
)

type LdapSearchScopeOpt

type LdapSearchScopeOpt struct {
	GroupDN               *string `json:"groupDN,omitempty"`
	GroupMembershipFilter *string `json:"groupMembershipFilter,omitempty"`
	UserDN                *string `json:"userDN,omitempty"`
}

type NetAppAccount

type NetAppAccount struct {
	Etag       *string                `json:"etag,omitempty"`
	Id         *string                `json:"id,omitempty"`
	Location   string                 `json:"location"`
	Name       *string                `json:"name,omitempty"`
	Properties *AccountProperties     `json:"properties,omitempty"`
	SystemData *systemdata.SystemData `json:"systemData,omitempty"`
	Tags       *map[string]string     `json:"tags,omitempty"`
	Type       *string                `json:"type,omitempty"`
}

type NetAppAccountId

type NetAppAccountId struct {
	SubscriptionId    string
	ResourceGroupName string
	AccountName       string
}

NetAppAccountId is a struct representing the Resource ID for a Net App Account

func NewNetAppAccountID

func NewNetAppAccountID(subscriptionId string, resourceGroupName string, accountName string) NetAppAccountId

NewNetAppAccountID returns a new NetAppAccountId struct

func ParseNetAppAccountID

func ParseNetAppAccountID(input string) (*NetAppAccountId, error)

ParseNetAppAccountID parses 'input' into a NetAppAccountId

func ParseNetAppAccountIDInsensitively

func ParseNetAppAccountIDInsensitively(input string) (*NetAppAccountId, error)

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

func (NetAppAccountId) ID

func (id NetAppAccountId) ID() string

ID returns the formatted Net App Account ID

func (NetAppAccountId) Segments

func (id NetAppAccountId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Net App Account ID

func (NetAppAccountId) String

func (id NetAppAccountId) String() string

String returns a human-readable description of this Net App Account ID

type NetAppAccountOperationPredicate

type NetAppAccountOperationPredicate struct {
	Etag     *string
	Id       *string
	Location *string
	Name     *string
	Type     *string
}

func (NetAppAccountOperationPredicate) Matches

type NetAppAccountPatch

type NetAppAccountPatch struct {
	Id         *string            `json:"id,omitempty"`
	Location   *string            `json:"location,omitempty"`
	Name       *string            `json:"name,omitempty"`
	Properties *AccountProperties `json:"properties,omitempty"`
	Tags       *map[string]string `json:"tags,omitempty"`
	Type       *string            `json:"type,omitempty"`
}

type NetAppAccountsClient

type NetAppAccountsClient struct {
	Client autorest.Client
	// contains filtered or unexported fields
}

func NewNetAppAccountsClientWithBaseURI

func NewNetAppAccountsClientWithBaseURI(endpoint string) NetAppAccountsClient

func (NetAppAccountsClient) AccountsCreateOrUpdate

AccountsCreateOrUpdate ...

func (NetAppAccountsClient) AccountsCreateOrUpdateThenPoll

func (c NetAppAccountsClient) AccountsCreateOrUpdateThenPoll(ctx context.Context, id NetAppAccountId, input NetAppAccount) error

AccountsCreateOrUpdateThenPoll performs AccountsCreateOrUpdate then polls until it's completed

func (NetAppAccountsClient) AccountsDelete

AccountsDelete ...

func (NetAppAccountsClient) AccountsDeleteThenPoll

func (c NetAppAccountsClient) AccountsDeleteThenPoll(ctx context.Context, id NetAppAccountId) error

AccountsDeleteThenPoll performs AccountsDelete then polls until it's completed

func (NetAppAccountsClient) AccountsGet

AccountsGet ...

func (NetAppAccountsClient) AccountsList

AccountsList ...

func (NetAppAccountsClient) AccountsListBySubscription

AccountsListBySubscription ...

func (NetAppAccountsClient) AccountsListBySubscriptionComplete

AccountsListBySubscriptionComplete retrieves all of the results into a single object

func (NetAppAccountsClient) AccountsListBySubscriptionCompleteMatchingPredicate

func (c NetAppAccountsClient) AccountsListBySubscriptionCompleteMatchingPredicate(ctx context.Context, id commonids.SubscriptionId, predicate NetAppAccountOperationPredicate) (resp AccountsListBySubscriptionCompleteResult, err error)

AccountsListBySubscriptionCompleteMatchingPredicate retrieves all of the results and then applied the predicate

func (NetAppAccountsClient) AccountsListComplete

AccountsListComplete retrieves all of the results into a single object

func (NetAppAccountsClient) AccountsListCompleteMatchingPredicate

func (c NetAppAccountsClient) AccountsListCompleteMatchingPredicate(ctx context.Context, id commonids.ResourceGroupId, predicate NetAppAccountOperationPredicate) (resp AccountsListCompleteResult, err error)

AccountsListCompleteMatchingPredicate retrieves all of the results and then applied the predicate

func (NetAppAccountsClient) AccountsUpdate

AccountsUpdate ...

func (NetAppAccountsClient) AccountsUpdateThenPoll

func (c NetAppAccountsClient) AccountsUpdateThenPoll(ctx context.Context, id NetAppAccountId, input NetAppAccountPatch) error

AccountsUpdateThenPoll performs AccountsUpdate then polls until it's completed

Jump to

Keyboard shortcuts

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