Class: Google::Apis::LanguageV2::CpuMetric

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

Overview

Metric for billing reports.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CpuMetric

Returns a new instance of CpuMetric.



497
498
499
# File 'lib/google/apis/language_v2/classes.rb', line 497

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

Instance Attribute Details

#core_numberFixnum

Required. Number of CPU cores. Corresponds to the JSON property coreNumber

Returns:

  • (Fixnum)


472
473
474
# File 'lib/google/apis/language_v2/classes.rb', line 472

def core_number
  @core_number
end

#core_secFixnum

Required. Total seconds of core usage, e.g. 4. Corresponds to the JSON property coreSec

Returns:

  • (Fixnum)


477
478
479
# File 'lib/google/apis/language_v2/classes.rb', line 477

def core_sec
  @core_sec
end

#cpu_typeString

Required. Type of cpu, e.g. N2. Corresponds to the JSON property cpuType

Returns:

  • (String)


482
483
484
# File 'lib/google/apis/language_v2/classes.rb', line 482

def cpu_type
  @cpu_type
end

#machine_specString

Required. Machine spec, e.g. N1_STANDARD_4. Corresponds to the JSON property machineSpec

Returns:

  • (String)


487
488
489
# File 'lib/google/apis/language_v2/classes.rb', line 487

def machine_spec
  @machine_spec
end

#tracking_labelsHash<String,String>

Billing tracking labels. They do not contain any user data but only the labels set by Vertex Core Infra itself. Tracking labels' keys are defined with special format: goog-[\pLl\pN]+ E.g. "key": "goog-k8s-cluster-name","value" : "us-east1-b4rk" Corresponds to the JSON property trackingLabels

Returns:

  • (Hash<String,String>)


495
496
497
# File 'lib/google/apis/language_v2/classes.rb', line 495

def tracking_labels
  @tracking_labels
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



502
503
504
505
506
507
508
# File 'lib/google/apis/language_v2/classes.rb', line 502

def update!(**args)
  @core_number = args[:core_number] if args.key?(:core_number)
  @core_sec = args[:core_sec] if args.key?(:core_sec)
  @cpu_type = args[:cpu_type] if args.key?(:cpu_type)
  @machine_spec = args[:machine_spec] if args.key?(:machine_spec)
  @tracking_labels = args[:tracking_labels] if args.key?(:tracking_labels)
end