Class: Google::Apis::CloudbillingV1::Sku

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudbilling_v1/classes.rb,
lib/google/apis/cloudbilling_v1/representations.rb,
lib/google/apis/cloudbilling_v1/representations.rb

Overview

Encapsulates a single SKU in Google Cloud

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Sku

Returns a new instance of Sku.



994
995
996
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 994

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#categoryGoogle::Apis::CloudbillingV1::Category

Represents the category hierarchy of a SKU. Corresponds to the JSON property category



953
954
955
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 953

def category
  @category
end

#descriptionString

A human readable description of the SKU, has a maximum length of 256 characters. Corresponds to the JSON property description

Returns:

  • (String)


959
960
961
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 959

def description
  @description
end

#geo_taxonomyGoogle::Apis::CloudbillingV1::GeoTaxonomy

Encapsulates the geographic taxonomy data for a sku. Corresponds to the JSON property geoTaxonomy



964
965
966
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 964

def geo_taxonomy
  @geo_taxonomy
end

#nameString

The resource name for the SKU. Example: "services/6F81-5844-456A/skus/D041- B8A1-6E0B" Corresponds to the JSON property name

Returns:

  • (String)


970
971
972
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 970

def name
  @name
end

#pricing_infoArray<Google::Apis::CloudbillingV1::PricingInfo>

A timeline of pricing info for this SKU in chronological order. Corresponds to the JSON property pricingInfo



975
976
977
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 975

def pricing_info
  @pricing_info
end

#service_provider_nameString

Identifies the service provider. This is 'Google' for first party services in Google Cloud Platform. Corresponds to the JSON property serviceProviderName

Returns:

  • (String)


981
982
983
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 981

def service_provider_name
  @service_provider_name
end

#service_regionsArray<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/ Corresponds to the JSON property serviceRegions

Returns:

  • (Array<String>)


987
988
989
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 987

def service_regions
  @service_regions
end

#sku_idString

The identifier for the SKU. Example: "D041-B8A1-6E0B" Corresponds to the JSON property skuId

Returns:

  • (String)


992
993
994
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 992

def sku_id
  @sku_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



999
1000
1001
1002
1003
1004
1005
1006
1007
1008
# File 'lib/google/apis/cloudbilling_v1/classes.rb', line 999

def update!(**args)
  @category = args[:category] if args.key?(:category)
  @description = args[:description] if args.key?(:description)
  @geo_taxonomy = args[:geo_taxonomy] if args.key?(:geo_taxonomy)
  @name = args[:name] if args.key?(:name)
  @pricing_info = args[:pricing_info] if args.key?(:pricing_info)
  @service_provider_name = args[:service_provider_name] if args.key?(:service_provider_name)
  @service_regions = args[:service_regions] if args.key?(:service_regions)
  @sku_id = args[:sku_id] if args.key?(:sku_id)
end