Class: Google::Apis::LanguageV2::DiskMetric

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DiskMetric

Returns a new instance of DiskMetric.



525
526
527
# File 'lib/google/apis/language_v2/classes.rb', line 525

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

Instance Attribute Details

#disk_typeString

Required. Type of Disk, e.g. REGIONAL_SSD. Corresponds to the JSON property diskType

Returns:

  • (String)


518
519
520
# File 'lib/google/apis/language_v2/classes.rb', line 518

def disk_type
  @disk_type
end

#gib_secFixnum

Required. Seconds of physical disk usage, e.g. 3600. Corresponds to the JSON property gibSec

Returns:

  • (Fixnum)


523
524
525
# File 'lib/google/apis/language_v2/classes.rb', line 523

def gib_sec
  @gib_sec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



530
531
532
533
# File 'lib/google/apis/language_v2/classes.rb', line 530

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