Class: Google::Apis::ContainerV1beta1::UpgradeDetails

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

Overview

UpgradeDetails contains detailed information of each individual upgrade operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpgradeDetails

Returns a new instance of UpgradeDetails.



10721
10722
10723
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10721

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

Instance Attribute Details

#end_timeString

The end timestamp of the upgrade. Corresponds to the JSON property endTime

Returns:

  • (String)


10684
10685
10686
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10684

def end_time
  @end_time
end

#initial_emulated_versionString

The emulated version before the upgrade. Corresponds to the JSON property initialEmulatedVersion

Returns:

  • (String)


10689
10690
10691
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10689

def initial_emulated_version
  @initial_emulated_version
end

#initial_versionString

The version before the upgrade. Corresponds to the JSON property initialVersion

Returns:

  • (String)


10694
10695
10696
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10694

def initial_version
  @initial_version
end

#start_timeString

The start timestamp of the upgrade. Corresponds to the JSON property startTime

Returns:

  • (String)


10699
10700
10701
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10699

def start_time
  @start_time
end

#start_typeString

The start type of the upgrade. Corresponds to the JSON property startType

Returns:

  • (String)


10704
10705
10706
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10704

def start_type
  @start_type
end

#stateString

Output only. The state of the upgrade. Corresponds to the JSON property state

Returns:

  • (String)


10709
10710
10711
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10709

def state
  @state
end

#target_emulated_versionString

The emulated version after the upgrade. Corresponds to the JSON property targetEmulatedVersion

Returns:

  • (String)


10714
10715
10716
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10714

def target_emulated_version
  @target_emulated_version
end

#target_versionString

The version after the upgrade. Corresponds to the JSON property targetVersion

Returns:

  • (String)


10719
10720
10721
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10719

def target_version
  @target_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10726
10727
10728
10729
10730
10731
10732
10733
10734
10735
# File 'lib/google/apis/container_v1beta1/classes.rb', line 10726

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @initial_emulated_version = args[:initial_emulated_version] if args.key?(:initial_emulated_version)
  @initial_version = args[:initial_version] if args.key?(:initial_version)
  @start_time = args[:start_time] if args.key?(:start_time)
  @start_type = args[:start_type] if args.key?(:start_type)
  @state = args[:state] if args.key?(:state)
  @target_emulated_version = args[:target_emulated_version] if args.key?(:target_emulated_version)
  @target_version = args[:target_version] if args.key?(:target_version)
end