sapdiskconfigurations

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: 10 Imported by: 1

README

github.com/hashicorp/go-azure-sdk/resource-manager/workloads/2023-04-01/sapdiskconfigurations Documentation

The sapdiskconfigurations SDK allows for interaction with the Azure Resource Manager Service workloads (API Version 2023-04-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/workloads/2023-04-01/sapdiskconfigurations"

Client Initialization

client := sapdiskconfigurations.NewSAPDiskConfigurationsClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: SAPDiskConfigurationsClient.SAPDiskConfigurations

ctx := context.TODO()
id := sapdiskconfigurations.NewLocationID("12345678-1234-9876-4563-123456789012", "locationValue")

payload := sapdiskconfigurations.SAPDiskConfigurationsRequest{
	// ...
}


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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForDiskSkuName

func PossibleValuesForDiskSkuName() []string

func PossibleValuesForSAPDatabaseType

func PossibleValuesForSAPDatabaseType() []string

func PossibleValuesForSAPDeploymentType

func PossibleValuesForSAPDeploymentType() []string

func PossibleValuesForSAPEnvironmentType

func PossibleValuesForSAPEnvironmentType() []string

func PossibleValuesForSAPProductType

func PossibleValuesForSAPProductType() []string

func ValidateLocationID

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

ValidateLocationID checks that 'input' can be parsed as a Location ID

Types

type DiskDetails

type DiskDetails struct {
	DiskTier                  *string  `json:"diskTier,omitempty"`
	IopsReadWrite             *int64   `json:"iopsReadWrite,omitempty"`
	MaximumSupportedDiskCount *int64   `json:"maximumSupportedDiskCount,omitempty"`
	MbpsReadWrite             *int64   `json:"mbpsReadWrite,omitempty"`
	MinimumSupportedDiskCount *int64   `json:"minimumSupportedDiskCount,omitempty"`
	SizeGB                    *int64   `json:"sizeGB,omitempty"`
	Sku                       *DiskSku `json:"sku,omitempty"`
}

type DiskSku

type DiskSku struct {
	Name *DiskSkuName `json:"name,omitempty"`
}

type DiskSkuName

type DiskSkuName string
const (
	DiskSkuNamePremiumLRS     DiskSkuName = "Premium_LRS"
	DiskSkuNamePremiumVTwoLRS DiskSkuName = "PremiumV2_LRS"
	DiskSkuNamePremiumZRS     DiskSkuName = "Premium_ZRS"
	DiskSkuNameStandardLRS    DiskSkuName = "Standard_LRS"
	DiskSkuNameStandardSSDLRS DiskSkuName = "StandardSSD_LRS"
	DiskSkuNameStandardSSDZRS DiskSkuName = "StandardSSD_ZRS"
	DiskSkuNameUltraSSDLRS    DiskSkuName = "UltraSSD_LRS"
)

func (*DiskSkuName) UnmarshalJSON

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

type DiskVolumeConfiguration

type DiskVolumeConfiguration struct {
	Count  *int64   `json:"count,omitempty"`
	SizeGB *int64   `json:"sizeGB,omitempty"`
	Sku    *DiskSku `json:"sku,omitempty"`
}

type LocationId

type LocationId struct {
	SubscriptionId string
	LocationName   string
}

LocationId is a struct representing the Resource ID for a Location

func NewLocationID

func NewLocationID(subscriptionId string, locationName string) LocationId

NewLocationID returns a new LocationId struct

func ParseLocationID

func ParseLocationID(input string) (*LocationId, error)

ParseLocationID parses 'input' into a LocationId

func ParseLocationIDInsensitively

func ParseLocationIDInsensitively(input string) (*LocationId, error)

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

func (*LocationId) FromParseResult

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

func (LocationId) ID

func (id LocationId) ID() string

ID returns the formatted Location ID

func (LocationId) Segments

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

Segments returns a slice of Resource ID Segments which comprise this Location ID

func (LocationId) String

func (id LocationId) String() string

String returns a human-readable description of this Location ID

type SAPDatabaseType

type SAPDatabaseType string
const (
	SAPDatabaseTypeDBTwo SAPDatabaseType = "DB2"
	SAPDatabaseTypeHANA  SAPDatabaseType = "HANA"
)

func (*SAPDatabaseType) UnmarshalJSON

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

type SAPDeploymentType

type SAPDeploymentType string
const (
	SAPDeploymentTypeSingleServer SAPDeploymentType = "SingleServer"
	SAPDeploymentTypeThreeTier    SAPDeploymentType = "ThreeTier"
)

func (*SAPDeploymentType) UnmarshalJSON

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

type SAPDiskConfiguration

type SAPDiskConfiguration struct {
	RecommendedConfiguration *DiskVolumeConfiguration `json:"recommendedConfiguration,omitempty"`
	SupportedConfigurations  *[]DiskDetails           `json:"supportedConfigurations,omitempty"`
}

type SAPDiskConfigurationsClient

type SAPDiskConfigurationsClient struct {
	Client *resourcemanager.Client
}

func NewSAPDiskConfigurationsClientWithBaseURI

func NewSAPDiskConfigurationsClientWithBaseURI(sdkApi sdkEnv.Api) (*SAPDiskConfigurationsClient, error)

func (SAPDiskConfigurationsClient) SAPDiskConfigurations

SAPDiskConfigurations ...

type SAPDiskConfigurationsOperationResponse

type SAPDiskConfigurationsOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *SAPDiskConfigurationsResult
}

type SAPDiskConfigurationsRequest

type SAPDiskConfigurationsRequest struct {
	AppLocation    string             `json:"appLocation"`
	DatabaseType   SAPDatabaseType    `json:"databaseType"`
	DbVMSku        string             `json:"dbVmSku"`
	DeploymentType SAPDeploymentType  `json:"deploymentType"`
	Environment    SAPEnvironmentType `json:"environment"`
	SapProduct     SAPProductType     `json:"sapProduct"`
}

type SAPDiskConfigurationsResult

type SAPDiskConfigurationsResult struct {
	VolumeConfigurations *map[string]SAPDiskConfiguration `json:"volumeConfigurations,omitempty"`
}

type SAPEnvironmentType

type SAPEnvironmentType string
const (
	SAPEnvironmentTypeNonProd SAPEnvironmentType = "NonProd"
	SAPEnvironmentTypeProd    SAPEnvironmentType = "Prod"
)

func (*SAPEnvironmentType) UnmarshalJSON

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

type SAPProductType

type SAPProductType string
const (
	SAPProductTypeECC       SAPProductType = "ECC"
	SAPProductTypeOther     SAPProductType = "Other"
	SAPProductTypeSFourHANA SAPProductType = "S4HANA"
)

func (*SAPProductType) UnmarshalJSON

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

Jump to

Keyboard shortcuts

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