class Google::Apis::AppengineV1::NetworkUtilization

Target scaling by network usage. Only applicable in the App Engine flexible environment.

Attributes

target_received_bytes_per_second[RW]

Target bytes received per second. Corresponds to the JSON property `targetReceivedBytesPerSecond` @return [Fixnum]

target_received_packets_per_second[RW]

Target packets received per second. Corresponds to the JSON property `targetReceivedPacketsPerSecond` @return [Fixnum]

target_sent_bytes_per_second[RW]

Target bytes sent per second. Corresponds to the JSON property `targetSentBytesPerSecond` @return [Fixnum]

target_sent_packets_per_second[RW]

Target packets sent per second. Corresponds to the JSON property `targetSentPacketsPerSecond` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 1997
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_v1/classes.rb, line 2002
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