Class: Google::Apis::NotebooksV2::CheckInstanceUpgradabilityResponse

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

Overview

Response for checking if a notebook instance is upgradeable.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CheckInstanceUpgradabilityResponse

Returns a new instance of CheckInstanceUpgradabilityResponse.



238
239
240
# File 'lib/google/apis/notebooks_v2/classes.rb', line 238

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

Instance Attribute Details

#upgrade_imageString

The new image self link this instance will be upgraded to if calling the upgrade endpoint. This field will only be populated if field upgradeable is true. Corresponds to the JSON property upgradeImage

Returns:

  • (String)


219
220
221
# File 'lib/google/apis/notebooks_v2/classes.rb', line 219

def upgrade_image
  @upgrade_image
end

#upgrade_infoString

Additional information about upgrade. Corresponds to the JSON property upgradeInfo

Returns:

  • (String)


224
225
226
# File 'lib/google/apis/notebooks_v2/classes.rb', line 224

def upgrade_info
  @upgrade_info
end

#upgrade_versionString

The version this instance will be upgraded to if calling the upgrade endpoint. This field will only be populated if field upgradeable is true. Corresponds to the JSON property upgradeVersion

Returns:

  • (String)


230
231
232
# File 'lib/google/apis/notebooks_v2/classes.rb', line 230

def upgrade_version
  @upgrade_version
end

#upgradeableBoolean Also known as: upgradeable?

If an instance is upgradeable. Corresponds to the JSON property upgradeable

Returns:

  • (Boolean)


235
236
237
# File 'lib/google/apis/notebooks_v2/classes.rb', line 235

def upgradeable
  @upgradeable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



243
244
245
246
247
248
# File 'lib/google/apis/notebooks_v2/classes.rb', line 243

def update!(**args)
  @upgrade_image = args[:upgrade_image] if args.key?(:upgrade_image)
  @upgrade_info = args[:upgrade_info] if args.key?(:upgrade_info)
  @upgrade_version = args[:upgrade_version] if args.key?(:upgrade_version)
  @upgradeable = args[:upgradeable] if args.key?(:upgradeable)
end