Class: Google::Apis::NotebooksV2::UpgradeHistoryEntry

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

The entry of VM image upgrade history.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpgradeHistoryEntry

Returns a new instance of UpgradeHistoryEntry.



1599
1600
1601
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1599

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

Instance Attribute Details

#actionString

Optional. Action. Rolloback or Upgrade. Corresponds to the JSON property action

Returns:

  • (String)


1556
1557
1558
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1556

def action
  @action
end

#container_imageString

Optional. The container image before this instance upgrade. Corresponds to the JSON property containerImage

Returns:

  • (String)


1561
1562
1563
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1561

def container_image
  @container_image
end

#create_timeString

Immutable. The time that this instance upgrade history entry is created. Corresponds to the JSON property createTime

Returns:

  • (String)


1566
1567
1568
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1566

def create_time
  @create_time
end

#frameworkString

Optional. The framework of this notebook instance. Corresponds to the JSON property framework

Returns:

  • (String)


1571
1572
1573
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1571

def framework
  @framework
end

#snapshotString

Optional. The snapshot of the boot disk of this notebook instance before upgrade. Corresponds to the JSON property snapshot

Returns:

  • (String)


1577
1578
1579
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1577

def snapshot
  @snapshot
end

#stateString

Output only. The state of this instance upgrade history entry. Corresponds to the JSON property state

Returns:

  • (String)


1582
1583
1584
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1582

def state
  @state
end

#target_versionString

Optional. Target VM Version, like m63. Corresponds to the JSON property targetVersion

Returns:

  • (String)


1587
1588
1589
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1587

def target_version
  @target_version
end

#versionString

Optional. The version of the notebook instance before this upgrade. Corresponds to the JSON property version

Returns:

  • (String)


1592
1593
1594
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1592

def version
  @version
end

#vm_imageString

Optional. The VM image before this instance upgrade. Corresponds to the JSON property vmImage

Returns:

  • (String)


1597
1598
1599
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1597

def vm_image
  @vm_image
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
# File 'lib/google/apis/notebooks_v2/classes.rb', line 1604

def update!(**args)
  @action = args[:action] if args.key?(:action)
  @container_image = args[:container_image] if args.key?(:container_image)
  @create_time = args[:create_time] if args.key?(:create_time)
  @framework = args[:framework] if args.key?(:framework)
  @snapshot = args[:snapshot] if args.key?(:snapshot)
  @state = args[:state] if args.key?(:state)
  @target_version = args[:target_version] if args.key?(:target_version)
  @version = args[:version] if args.key?(:version)
  @vm_image = args[:vm_image] if args.key?(:vm_image)
end