Class: Google::Apis::ComputeBeta::LicenseCode

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

Overview

Represents a License Code resource. A License Code is a unique identifier used to represent a license resource. Caution This resource is intended for use only by third-party partners who are creating Cloud Marketplace images.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LicenseCode

Returns a new instance of LicenseCode.



22105
22106
22107
# File 'lib/google/apis/compute_beta/classes.rb', line 22105

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

Instance Attribute Details

#creation_timestampString

[Output Only] Creation timestamp in RFC3339 text format. Corresponds to the JSON property creationTimestamp

Returns:

  • (String)


22058
22059
22060
# File 'lib/google/apis/compute_beta/classes.rb', line 22058

def creation_timestamp
  @creation_timestamp
end

#descriptionString

[Output Only] Description of this License Code. Corresponds to the JSON property description

Returns:

  • (String)


22063
22064
22065
# File 'lib/google/apis/compute_beta/classes.rb', line 22063

def description
  @description
end

#idFixnum

[Output Only] The unique identifier for the resource. This identifier is defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


22069
22070
22071
# File 'lib/google/apis/compute_beta/classes.rb', line 22069

def id
  @id
end

#kindString

[Output Only] Type of resource. Always compute#licenseCode for licenses. Corresponds to the JSON property kind

Returns:

  • (String)


22074
22075
22076
# File 'lib/google/apis/compute_beta/classes.rb', line 22074

def kind
  @kind
end

#license_aliasArray<Google::Apis::ComputeBeta::LicenseCodeLicenseAlias>

[Output Only] URL and description aliases of Licenses with the same License Code. Corresponds to the JSON property licenseAlias



22080
22081
22082
# File 'lib/google/apis/compute_beta/classes.rb', line 22080

def license_alias
  @license_alias
end

#nameString

[Output Only] Name of the resource. The name is 1-20 characters long and must be a valid 64 bit integer. Corresponds to the JSON property name

Returns:

  • (String)


22086
22087
22088
# File 'lib/google/apis/compute_beta/classes.rb', line 22086

def name
  @name
end

[Output Only] Server-defined URL for the resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


22091
22092
22093
# File 'lib/google/apis/compute_beta/classes.rb', line 22091

def self_link
  @self_link
end

#stateString

[Output Only] Current state of this License Code. Corresponds to the JSON property state

Returns:

  • (String)


22096
22097
22098
# File 'lib/google/apis/compute_beta/classes.rb', line 22096

def state
  @state
end

#transferableBoolean Also known as: transferable?

[Output Only] If true, the license will remain attached when creating images or snapshots from disks. Otherwise, the license is not transferred. Corresponds to the JSON property transferable

Returns:

  • (Boolean)


22102
22103
22104
# File 'lib/google/apis/compute_beta/classes.rb', line 22102

def transferable
  @transferable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22110
22111
22112
22113
22114
22115
22116
22117
22118
22119
22120
# File 'lib/google/apis/compute_beta/classes.rb', line 22110

def update!(**args)
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
  @description = args[:description] if args.key?(:description)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @license_alias = args[:license_alias] if args.key?(:license_alias)
  @name = args[:name] if args.key?(:name)
  @self_link = args[:self_link] if args.key?(:self_link)
  @state = args[:state] if args.key?(:state)
  @transferable = args[:transferable] if args.key?(:transferable)
end