class Google::Apis::AppengineV1beta4::NetworkUtilization
Target scaling by network usage. Only applicable for VM runtimes.
Attributes
target_received_bytes_per_sec[RW]
Target bytes received per second. Corresponds to the JSON property `targetReceivedBytesPerSec` @return [Fixnum]
target_received_packets_per_sec[RW]
Target packets received per second. Corresponds to the JSON property `targetReceivedPacketsPerSec` @return [Fixnum]
target_sent_bytes_per_sec[RW]
Target bytes sent per second. Corresponds to the JSON property `targetSentBytesPerSec` @return [Fixnum]
target_sent_packets_per_sec[RW]
Target packets sent per second. Corresponds to the JSON property `targetSentPacketsPerSec` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1beta4/classes.rb, line 1182 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/appengine_v1beta4/classes.rb, line 1187 def update!(**args) @target_received_bytes_per_sec = args[:target_received_bytes_per_sec] if args.key?(:target_received_bytes_per_sec) @target_received_packets_per_sec = args[:target_received_packets_per_sec] if args.key?(:target_received_packets_per_sec) @target_sent_bytes_per_sec = args[:target_sent_bytes_per_sec] if args.key?(:target_sent_bytes_per_sec) @target_sent_packets_per_sec = args[:target_sent_packets_per_sec] if args.key?(:target_sent_packets_per_sec) end