Class: Google::Apis::DataflowV1b3::HotKeyDetection
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::HotKeyDetection
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb
Overview
Proto describing a hot key detected on a given WorkItem.
Instance Attribute Summary collapse
-
#hot_key_age ⇒ String
The age of the hot key measured from when it was first detected.
-
#system_name ⇒ String
System-defined name of the step containing this hot key.
-
#user_step_name ⇒ String
User-provided name of the step that contains this hot key.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HotKeyDetection
constructor
A new instance of HotKeyDetection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HotKeyDetection
Returns a new instance of HotKeyDetection.
1870 1871 1872 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1870 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hot_key_age ⇒ String
The age of the hot key measured from when it was first detected.
Corresponds to the JSON property hotKeyAge
1857 1858 1859 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1857 def hot_key_age @hot_key_age end |
#system_name ⇒ String
System-defined name of the step containing this hot key. Unique across the
workflow.
Corresponds to the JSON property systemName
1863 1864 1865 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1863 def system_name @system_name end |
#user_step_name ⇒ String
User-provided name of the step that contains this hot key.
Corresponds to the JSON property userStepName
1868 1869 1870 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1868 def user_step_name @user_step_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1875 1876 1877 1878 1879 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1875 def update!(**args) @hot_key_age = args[:hot_key_age] if args.key?(:hot_key_age) @system_name = args[:system_name] if args.key?(:system_name) @user_step_name = args[:user_step_name] if args.key?(:user_step_name) end |