Class: Google::Apis::ComputeAlpha::License
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::License
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Represents a License resource. A License represents billing and aggregate usage data for public and marketplace images. Caution This resource is intended for use only by third-party partners who are creating Cloud Marketplace images.
Instance Attribute Summary collapse
-
#charges_use_fee ⇒ Boolean
(also: #charges_use_fee?)
[Output Only] Deprecated.
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#description ⇒ String
An optional textual description of the resource; provided by the client when the resource is created.
-
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource.
-
#kind ⇒ String
[Output Only] Type of resource.
-
#license_code ⇒ Fixnum
[Output Only] The unique code used to attach this license to images, snapshots, and disks.
-
#name ⇒ String
Name of the resource.
-
#resource_requirements ⇒ Google::Apis::ComputeAlpha::LicenseResourceRequirements
Corresponds to the JSON property
resourceRequirements
. -
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
-
#self_link_with_id ⇒ String
[Output Only] Server-defined URL for this resource with the resource id.
-
#transferable ⇒ Boolean
(also: #transferable?)
If false, licenses will not be copied from the source resource when creating an image from a disk, disk from snapshot, or snapshot from disk.
Instance Method Summary collapse
-
#initialize(**args) ⇒ License
constructor
A new instance of License.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ License
Returns a new instance of License.
22986 22987 22988 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22986 def initialize(**args) update!(**args) end |
Instance Attribute Details
#charges_use_fee ⇒ Boolean Also known as: charges_use_fee?
[Output Only] Deprecated. This field no longer reflects whether a license
charges a usage fee.
Corresponds to the JSON property chargesUseFee
22927 22928 22929 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22927 def charges_use_fee @charges_use_fee end |
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
22933 22934 22935 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22933 def @creation_timestamp end |
#description ⇒ String
An optional textual description of the resource; provided by the client when
the resource is created.
Corresponds to the JSON property description
22939 22940 22941 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22939 def description @description end |
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource. This identifier is
defined by the server.
Corresponds to the JSON property id
22945 22946 22947 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22945 def id @id end |
#kind ⇒ String
[Output Only] Type of resource. Always compute#license for licenses.
Corresponds to the JSON property kind
22950 22951 22952 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22950 def kind @kind end |
#license_code ⇒ Fixnum
[Output Only] The unique code used to attach this license to images, snapshots,
and disks.
Corresponds to the JSON property licenseCode
22956 22957 22958 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22956 def license_code @license_code end |
#name ⇒ String
Name of the resource. The name must be 1-63 characters long and comply with
RFC1035.
Corresponds to the JSON property name
22962 22963 22964 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22962 def name @name end |
#resource_requirements ⇒ Google::Apis::ComputeAlpha::LicenseResourceRequirements
Corresponds to the JSON property resourceRequirements
22967 22968 22969 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22967 def resource_requirements @resource_requirements end |
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
22972 22973 22974 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22972 def self_link @self_link end |
#self_link_with_id ⇒ String
[Output Only] Server-defined URL for this resource with the resource id.
Corresponds to the JSON property selfLinkWithId
22977 22978 22979 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22977 def self_link_with_id @self_link_with_id end |
#transferable ⇒ Boolean Also known as: transferable?
If false, licenses will not be copied from the source resource when creating
an image from a disk, disk from snapshot, or snapshot from disk.
Corresponds to the JSON property transferable
22983 22984 22985 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22983 def transferable @transferable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 22991 def update!(**args) @charges_use_fee = args[:charges_use_fee] if args.key?(:charges_use_fee) @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_code = args[:license_code] if args.key?(:license_code) @name = args[:name] if args.key?(:name) @resource_requirements = args[:resource_requirements] if args.key?(:resource_requirements) @self_link = args[:self_link] if args.key?(:self_link) @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id) @transferable = args[:transferable] if args.key?(:transferable) end |