Class: Google::Apis::WorkloadmanagerV1::Summary
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::Summary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workloadmanager_v1/classes.rb,
lib/google/apis/workloadmanager_v1/representations.rb,
lib/google/apis/workloadmanager_v1/representations.rb
Overview
Message for execution summary
Instance Attribute Summary collapse
-
#failures ⇒ Fixnum
Output only.
-
#new_failures ⇒ Fixnum
Output only.
-
#new_fixes ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Summary
constructor
A new instance of Summary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Summary
Returns a new instance of Summary.
1894 1895 1896 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1894 def initialize(**args) update!(**args) end |
Instance Attribute Details
#failures ⇒ Fixnum
Output only. Number of failures
Corresponds to the JSON property failures
1882 1883 1884 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1882 def failures @failures end |
#new_failures ⇒ Fixnum
Output only. Number of new failures compared to the previous execution
Corresponds to the JSON property newFailures
1887 1888 1889 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1887 def new_failures @new_failures end |
#new_fixes ⇒ Fixnum
Output only. Number of new fixes compared to the previous execution
Corresponds to the JSON property newFixes
1892 1893 1894 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1892 def new_fixes @new_fixes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1899 1900 1901 1902 1903 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1899 def update!(**args) @failures = args[:failures] if args.key?(:failures) @new_failures = args[:new_failures] if args.key?(:new_failures) @new_fixes = args[:new_fixes] if args.key?(:new_fixes) end |