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.



30215
30216
30217
# File 'lib/google/apis/compute_beta/classes.rb', line 30215

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)


30207
30208
30209
# File 'lib/google/apis/compute_beta/classes.rb', line 30207

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)


30213
30214
30215
# File 'lib/google/apis/compute_beta/classes.rb', line 30213

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30220
30221
30222
30223
# File 'lib/google/apis/compute_beta/classes.rb', line 30220

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