Documentation ¶
Index ¶
- type Google
- func (Google) Availability() (available bool, err error)
- func (Google) GetFile(fileName string, path string) (base64File string, err error)
- func (Google) List(path string) (files []cloudLib.CloudFile, err error)
- func (Google) Price(size float64) (price float64, err error)
- func (Google) SendFile(base64File string, fileName string, remotePath string) (createdFile cloudLib.CloudFile, err error)
- type JsonGoogleCloud
- type PricingExpression
- type PricingInfo
- type Sku
- type TieredRate
- type UnitPrice
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type JsonGoogleCloud ¶
type JsonGoogleCloud struct {
Sku []Sku `json:"skus"`
}
type PricingExpression ¶
type PricingExpression struct {
TieredRates []TieredRate `json:"tieredRates"`
}
type PricingInfo ¶
type PricingInfo struct {
PriceExpression PricingExpression `json:"pricingExpression"`
}
type Sku ¶
type Sku struct { Name string `json:"name"` PricingInfo []PricingInfo `json:"pricingInfo"` }
type TieredRate ¶
type TieredRate struct {
UnitPrice UnitPrice `json:"unitPrice"`
}
Click to show internal directories.
Click to hide internal directories.