pub struct Sku {
pub category: Option<Category>,
pub description: Option<String>,
pub geo_taxonomy: Option<GeoTaxonomy>,
pub name: Option<String>,
pub pricing_info: Option<Vec<PricingInfo>>,
pub service_provider_name: Option<String>,
pub service_regions: Option<Vec<String>>,
pub sku_id: Option<String>,
}Expand description
Encapsulates a single SKU in Google Cloud
This type is not used in any activity, and only used as part of another schema.
Fields§
§category: Option<Category>The category hierarchy of this SKU, purely for organizational purpose.
description: Option<String>A human readable description of the SKU, has a maximum length of 256 characters.
geo_taxonomy: Option<GeoTaxonomy>The geographic taxonomy for this sku.
name: Option<String>The resource name for the SKU. Example: “services/6F81-5844-456A/skus/D041-B8A1-6E0B”
pricing_info: Option<Vec<PricingInfo>>A timeline of pricing info for this SKU in chronological order.
service_provider_name: Option<String>Identifies the service provider. This is ‘Google’ for first party services in Google Cloud Platform.
service_regions: Option<Vec<String>>List of service regions this SKU is offered at. Example: “asia-east1” Service regions can be found at https://cloud.google.com/about/locations/
sku_id: Option<String>The identifier for the SKU. Example: “D041-B8A1-6E0B”