Documentation ¶
Index ¶
- func PossibleValuesForActiveDirectoryStatus() []string
- func ValidateNetAppAccountID(input interface{}, key string) (warnings []string, errors []error)
- type AccountEncryption
- type AccountProperties
- type AccountsCreateOrUpdateOperationResponse
- type AccountsDeleteOperationResponse
- type AccountsGetOperationResponse
- type AccountsListBySubscriptionCompleteResult
- type AccountsListBySubscriptionOperationResponse
- type AccountsListCompleteResult
- type AccountsListOperationResponse
- type AccountsUpdateOperationResponse
- type ActiveDirectory
- type ActiveDirectoryStatus
- type LdapSearchScopeOpt
- type NetAppAccount
- type NetAppAccountId
- type NetAppAccountOperationPredicate
- type NetAppAccountPatch
- type NetAppAccountsClient
- func (c NetAppAccountsClient) AccountsCreateOrUpdate(ctx context.Context, id NetAppAccountId, input NetAppAccount) (result AccountsCreateOrUpdateOperationResponse, err error)
- func (c NetAppAccountsClient) AccountsCreateOrUpdateThenPoll(ctx context.Context, id NetAppAccountId, input NetAppAccount) error
- func (c NetAppAccountsClient) AccountsDelete(ctx context.Context, id NetAppAccountId) (result AccountsDeleteOperationResponse, err error)
- func (c NetAppAccountsClient) AccountsDeleteThenPoll(ctx context.Context, id NetAppAccountId) error
- func (c NetAppAccountsClient) AccountsGet(ctx context.Context, id NetAppAccountId) (result AccountsGetOperationResponse, err error)
- func (c NetAppAccountsClient) AccountsList(ctx context.Context, id commonids.ResourceGroupId) (result AccountsListOperationResponse, err error)
- func (c NetAppAccountsClient) AccountsListBySubscription(ctx context.Context, id commonids.SubscriptionId) (result AccountsListBySubscriptionOperationResponse, err error)
- func (c NetAppAccountsClient) AccountsListBySubscriptionComplete(ctx context.Context, id commonids.SubscriptionId) (AccountsListBySubscriptionCompleteResult, error)
- func (c NetAppAccountsClient) AccountsListBySubscriptionCompleteMatchingPredicate(ctx context.Context, id commonids.SubscriptionId, ...) (result AccountsListBySubscriptionCompleteResult, err error)
- func (c NetAppAccountsClient) AccountsListComplete(ctx context.Context, id commonids.ResourceGroupId) (AccountsListCompleteResult, error)
- func (c NetAppAccountsClient) AccountsListCompleteMatchingPredicate(ctx context.Context, id commonids.ResourceGroupId, ...) (result AccountsListCompleteResult, err error)
- func (c NetAppAccountsClient) AccountsUpdate(ctx context.Context, id NetAppAccountId, input NetAppAccountPatch) (result AccountsUpdateOperationResponse, err error)
- func (c NetAppAccountsClient) AccountsUpdateThenPoll(ctx context.Context, id NetAppAccountId, input NetAppAccountPatch) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForActiveDirectoryStatus ¶
func PossibleValuesForActiveDirectoryStatus() []string
func ValidateNetAppAccountID ¶
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 AccountsGetOperationResponse ¶
type AccountsGetOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *NetAppAccount }
type AccountsListBySubscriptionCompleteResult ¶
type AccountsListBySubscriptionCompleteResult struct {
Items []NetAppAccount
}
type AccountsListBySubscriptionOperationResponse ¶
type AccountsListBySubscriptionOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]NetAppAccount }
type AccountsListCompleteResult ¶
type AccountsListCompleteResult struct {
Items []NetAppAccount
}
type AccountsListOperationResponse ¶
type AccountsListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *[]NetAppAccount }
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" )
func (*ActiveDirectoryStatus) UnmarshalJSON ¶ added in v0.20230712.1163130
func (s *ActiveDirectoryStatus) UnmarshalJSON(bytes []byte) error
type LdapSearchScopeOpt ¶
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 NetAppAccountName string }
NetAppAccountId is a struct representing the Resource ID for a Net App Account
func NewNetAppAccountID ¶
func NewNetAppAccountID(subscriptionId string, resourceGroupName string, netAppAccountName 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 ¶
func (p NetAppAccountOperationPredicate) Matches(input NetAppAccount) bool
type NetAppAccountPatch ¶
type NetAppAccountsClient ¶
type NetAppAccountsClient struct {
Client *resourcemanager.Client
}
func NewNetAppAccountsClientWithBaseURI ¶
func NewNetAppAccountsClientWithBaseURI(api environments.Api) (*NetAppAccountsClient, error)
func (NetAppAccountsClient) AccountsCreateOrUpdate ¶
func (c NetAppAccountsClient) AccountsCreateOrUpdate(ctx context.Context, id NetAppAccountId, input NetAppAccount) (result AccountsCreateOrUpdateOperationResponse, err error)
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 ¶
func (c NetAppAccountsClient) AccountsDelete(ctx context.Context, id NetAppAccountId) (result AccountsDeleteOperationResponse, err error)
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 ¶
func (c NetAppAccountsClient) AccountsGet(ctx context.Context, id NetAppAccountId) (result AccountsGetOperationResponse, err error)
AccountsGet ...
func (NetAppAccountsClient) AccountsList ¶
func (c NetAppAccountsClient) AccountsList(ctx context.Context, id commonids.ResourceGroupId) (result AccountsListOperationResponse, err error)
AccountsList ...
func (NetAppAccountsClient) AccountsListBySubscription ¶
func (c NetAppAccountsClient) AccountsListBySubscription(ctx context.Context, id commonids.SubscriptionId) (result AccountsListBySubscriptionOperationResponse, err error)
AccountsListBySubscription ...
func (NetAppAccountsClient) AccountsListBySubscriptionComplete ¶
func (c NetAppAccountsClient) AccountsListBySubscriptionComplete(ctx context.Context, id commonids.SubscriptionId) (AccountsListBySubscriptionCompleteResult, error)
AccountsListBySubscriptionComplete retrieves all the results into a single object
func (NetAppAccountsClient) AccountsListBySubscriptionCompleteMatchingPredicate ¶
func (c NetAppAccountsClient) AccountsListBySubscriptionCompleteMatchingPredicate(ctx context.Context, id commonids.SubscriptionId, predicate NetAppAccountOperationPredicate) (result AccountsListBySubscriptionCompleteResult, err error)
AccountsListBySubscriptionCompleteMatchingPredicate retrieves all the results and then applies the predicate
func (NetAppAccountsClient) AccountsListComplete ¶
func (c NetAppAccountsClient) AccountsListComplete(ctx context.Context, id commonids.ResourceGroupId) (AccountsListCompleteResult, error)
AccountsListComplete retrieves all the results into a single object
func (NetAppAccountsClient) AccountsListCompleteMatchingPredicate ¶
func (c NetAppAccountsClient) AccountsListCompleteMatchingPredicate(ctx context.Context, id commonids.ResourceGroupId, predicate NetAppAccountOperationPredicate) (result AccountsListCompleteResult, err error)
AccountsListCompleteMatchingPredicate retrieves all the results and then applies the predicate
func (NetAppAccountsClient) AccountsUpdate ¶
func (c NetAppAccountsClient) AccountsUpdate(ctx context.Context, id NetAppAccountId, input NetAppAccountPatch) (result AccountsUpdateOperationResponse, err error)
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
Source Files ¶
- client.go
- constants.go
- id_netappaccount.go
- method_accountscreateorupdate.go
- method_accountsdelete.go
- method_accountsget.go
- method_accountslist.go
- method_accountslistbysubscription.go
- method_accountsupdate.go
- model_accountencryption.go
- model_accountproperties.go
- model_activedirectory.go
- model_ldapsearchscopeopt.go
- model_netappaccount.go
- model_netappaccountpatch.go
- predicates.go
- version.go