Class: Google::Apis::AppengineV1::NetworkUtilization
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::NetworkUtilization
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/representations.rb
Overview
Target scaling by network usage. Only applicable in the App Engine flexible environment.
Instance Attribute Summary collapse
-
#target_received_bytes_per_second ⇒ Fixnum
Target bytes received per second.
-
#target_received_packets_per_second ⇒ Fixnum
Target packets received per second.
-
#target_sent_bytes_per_second ⇒ Fixnum
Target bytes sent per second.
-
#target_sent_packets_per_second ⇒ Fixnum
Target packets sent per second.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkUtilization
constructor
A new instance of NetworkUtilization.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkUtilization
Returns a new instance of NetworkUtilization.
2030 2031 2032 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2030 def initialize(**args) update!(**args) end |
Instance Attribute Details
#target_received_bytes_per_second ⇒ Fixnum
Target bytes received per second.
Corresponds to the JSON property targetReceivedBytesPerSecond
2013 2014 2015 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2013 def target_received_bytes_per_second @target_received_bytes_per_second end |
#target_received_packets_per_second ⇒ Fixnum
Target packets received per second.
Corresponds to the JSON property targetReceivedPacketsPerSecond
2018 2019 2020 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2018 def target_received_packets_per_second @target_received_packets_per_second end |
#target_sent_bytes_per_second ⇒ Fixnum
Target bytes sent per second.
Corresponds to the JSON property targetSentBytesPerSecond
2023 2024 2025 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2023 def target_sent_bytes_per_second @target_sent_bytes_per_second end |
#target_sent_packets_per_second ⇒ Fixnum
Target packets sent per second.
Corresponds to the JSON property targetSentPacketsPerSecond
2028 2029 2030 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2028 def target_sent_packets_per_second @target_sent_packets_per_second end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2035 2036 2037 2038 2039 2040 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 2035 def update!(**args) @target_received_bytes_per_second = args[:target_received_bytes_per_second] if args.key?(:target_received_bytes_per_second) @target_received_packets_per_second = args[:target_received_packets_per_second] if args.key?(:target_received_packets_per_second) @target_sent_bytes_per_second = args[:target_sent_bytes_per_second] if args.key?(:target_sent_bytes_per_second) @target_sent_packets_per_second = args[:target_sent_packets_per_second] if args.key?(:target_sent_packets_per_second) end |