Documentation ¶
Index ¶
- func PossibleValuesForDiskSkuName() []string
- func PossibleValuesForSAPDatabaseType() []string
- func PossibleValuesForSAPDeploymentType() []string
- func PossibleValuesForSAPEnvironmentType() []string
- func PossibleValuesForSAPProductType() []string
- func ValidateLocationID(input interface{}, key string) (warnings []string, errors []error)
- type DiskDetails
- type DiskSku
- type DiskSkuName
- type DiskVolumeConfiguration
- type LocationId
- type SAPDatabaseType
- type SAPDeploymentType
- type SAPDiskConfiguration
- type SAPDiskConfigurationsClient
- type SAPDiskConfigurationsOperationResponse
- type SAPDiskConfigurationsRequest
- type SAPDiskConfigurationsResult
- type SAPEnvironmentType
- type SAPProductType
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 ¶
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 LocationId ¶
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) 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 ¶
func (c SAPDiskConfigurationsClient) SAPDiskConfigurations(ctx context.Context, id LocationId, input SAPDiskConfigurationsRequest) (result SAPDiskConfigurationsOperationResponse, err error)
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
Click to show internal directories.
Click to hide internal directories.