Documentation ¶
Index ¶
- func PossibleValuesForBillingCurrency() []string
- func PossibleValuesForUnitOfMeasure() []string
- func PossibleValuesForVMPriceOSType() []string
- func PossibleValuesForVMTier() []string
- func ValidateLocationID(input interface{}, key string) (warnings []string, errors []error)
- type BillingCurrency
- type EstimatedVMPrice
- type EstimatedVMPrices
- type ListOperationResponse
- type LocationId
- type UnitOfMeasure
- type VMPriceOSType
- type VMTier
- type VirtualMachineSize
- type VirtualMachineSizeListResult
- type VirtualMachineSizesClient
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PossibleValuesForBillingCurrency ¶
func PossibleValuesForBillingCurrency() []string
func PossibleValuesForUnitOfMeasure ¶
func PossibleValuesForUnitOfMeasure() []string
func PossibleValuesForVMPriceOSType ¶
func PossibleValuesForVMPriceOSType() []string
func PossibleValuesForVMTier ¶
func PossibleValuesForVMTier() []string
func ValidateLocationID ¶
ValidateLocationID checks that 'input' can be parsed as a Location ID
Types ¶
type BillingCurrency ¶
type BillingCurrency string
const (
BillingCurrencyUSD BillingCurrency = "USD"
)
func (*BillingCurrency) UnmarshalJSON ¶
func (s *BillingCurrency) UnmarshalJSON(bytes []byte) error
type EstimatedVMPrice ¶
type EstimatedVMPrice struct { OsType VMPriceOSType `json:"osType"` RetailPrice float64 `json:"retailPrice"` VMTier VMTier `json:"vmTier"` }
type EstimatedVMPrices ¶
type EstimatedVMPrices struct { BillingCurrency BillingCurrency `json:"billingCurrency"` UnitOfMeasure UnitOfMeasure `json:"unitOfMeasure"` Values []EstimatedVMPrice `json:"values"` }
type ListOperationResponse ¶
type ListOperationResponse struct { HttpResponse *http.Response OData *odata.OData Model *VirtualMachineSizeListResult }
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 UnitOfMeasure ¶
type UnitOfMeasure string
const (
UnitOfMeasureOneHour UnitOfMeasure = "OneHour"
)
func (*UnitOfMeasure) UnmarshalJSON ¶
func (s *UnitOfMeasure) UnmarshalJSON(bytes []byte) error
type VMPriceOSType ¶
type VMPriceOSType string
const ( VMPriceOSTypeLinux VMPriceOSType = "Linux" VMPriceOSTypeWindows VMPriceOSType = "Windows" )
func (*VMPriceOSType) UnmarshalJSON ¶
func (s *VMPriceOSType) UnmarshalJSON(bytes []byte) error
type VirtualMachineSize ¶
type VirtualMachineSize struct { EstimatedVMPrices *EstimatedVMPrices `json:"estimatedVMPrices,omitempty"` Family *string `json:"family,omitempty"` Gpus *int64 `json:"gpus,omitempty"` LowPriorityCapable *bool `json:"lowPriorityCapable,omitempty"` MaxResourceVolumeMB *int64 `json:"maxResourceVolumeMB,omitempty"` MemoryGB *float64 `json:"memoryGB,omitempty"` Name *string `json:"name,omitempty"` OsVhdSizeMB *int64 `json:"osVhdSizeMB,omitempty"` PremiumIO *bool `json:"premiumIO,omitempty"` SupportedComputeTypes *[]string `json:"supportedComputeTypes,omitempty"` VCPUs *int64 `json:"vCPUs,omitempty"` }
type VirtualMachineSizeListResult ¶
type VirtualMachineSizeListResult struct {
Value *[]VirtualMachineSize `json:"value,omitempty"`
}
type VirtualMachineSizesClient ¶
type VirtualMachineSizesClient struct {
Client *resourcemanager.Client
}
func NewVirtualMachineSizesClientWithBaseURI ¶
func NewVirtualMachineSizesClientWithBaseURI(sdkApi sdkEnv.Api) (*VirtualMachineSizesClient, error)
func (VirtualMachineSizesClient) List ¶
func (c VirtualMachineSizesClient) List(ctx context.Context, id LocationId) (result ListOperationResponse, err error)
List ...
Click to show internal directories.
Click to hide internal directories.