Class: Google::Apis::ComputeBeta::Screenshot

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

An instance's screenshot.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Screenshot

Returns a new instance of Screenshot.



39275
39276
39277
# File 'lib/google/apis/compute_beta/classes.rb', line 39275

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

Instance Attribute Details

#contentsString

[Output Only] The Base64-encoded screenshot data. Corresponds to the JSON property contents

Returns:

  • (String)


39267
39268
39269
# File 'lib/google/apis/compute_beta/classes.rb', line 39267

def contents
  @contents
end

#kindString

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

Returns:

  • (String)


39273
39274
39275
# File 'lib/google/apis/compute_beta/classes.rb', line 39273

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



39280
39281
39282
39283
# File 'lib/google/apis/compute_beta/classes.rb', line 39280

def update!(**args)
  @contents = args[:contents] if args.key?(:contents)
  @kind = args[:kind] if args.key?(:kind)
end