Class: Google::Apis::ScriptV1::MetricsValue
- Inherits:
-
Object
- Object
- Google::Apis::ScriptV1::MetricsValue
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
generated/google/apis/script_v1/representations.rb,
generated/google/apis/script_v1/representations.rb
Overview
Metrics value that holds number of executions counted.
Instance Attribute Summary collapse
-
#end_time ⇒ String
Required field indicating the end time of the interval.
-
#start_time ⇒ String
Required field indicating the start time of the interval.
-
#value ⇒ Fixnum
Indicates the number of executions counted.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MetricsValue
constructor
A new instance of MetricsValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MetricsValue
Returns a new instance of MetricsValue
886 887 888 |
# File 'generated/google/apis/script_v1/classes.rb', line 886 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Required field indicating the end time of the interval.
Corresponds to the JSON property endTime
874 875 876 |
# File 'generated/google/apis/script_v1/classes.rb', line 874 def end_time @end_time end |
#start_time ⇒ String
Required field indicating the start time of the interval.
Corresponds to the JSON property startTime
879 880 881 |
# File 'generated/google/apis/script_v1/classes.rb', line 879 def start_time @start_time end |
#value ⇒ Fixnum
Indicates the number of executions counted.
Corresponds to the JSON property value
884 885 886 |
# File 'generated/google/apis/script_v1/classes.rb', line 884 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
891 892 893 894 895 |
# File 'generated/google/apis/script_v1/classes.rb', line 891 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) @value = args[:value] if args.key?(:value) end |