class Google::Apis::ComputeV1::Screenshot

An instance's screenshot.

Attributes

contents[RW]
Output Only

The Base64-encoded screenshot data.

Corresponds to the JSON property `contents` @return [String]

kind[RW]
Output Only

Type of the resource. Always compute#screenshot for the

screenshots. Corresponds to the JSON property `kind` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 31855
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 31860
def update!(**args)
  @contents = args[:contents] if args.key?(:contents)
  @kind = args[:kind] if args.key?(:kind)
end