Class: Google::Apis::LanguageV2::DiskMetric
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV2::DiskMetric
- 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
-
#disk_type ⇒ String
Required.
-
#gib_sec ⇒ Fixnum
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DiskMetric
constructor
A new instance of DiskMetric.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_type ⇒ String
Required. Type of Disk, e.g. REGIONAL_SSD.
Corresponds to the JSON property diskType
518 519 520 |
# File 'lib/google/apis/language_v2/classes.rb', line 518 def disk_type @disk_type end |
#gib_sec ⇒ Fixnum
Required. Seconds of physical disk usage, e.g. 3600.
Corresponds to the JSON property gibSec
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 |