Class: Google::Apis::MigrationcenterV1::NetworkUsageSample
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::NetworkUsageSample
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb
Overview
Network usage sample. Values are across all network interfaces.
Instance Attribute Summary collapse
-
#average_egress_bps ⇒ Float
Average network egress in B/s sampled over a short window.
-
#average_ingress_bps ⇒ Float
Average network ingress in B/s sampled over a short window.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkUsageSample
constructor
A new instance of NetworkUsageSample.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkUsageSample
Returns a new instance of NetworkUsageSample.
3250 3251 3252 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3250 def initialize(**args) update!(**args) end |
Instance Attribute Details
#average_egress_bps ⇒ Float
Average network egress in B/s sampled over a short window. Must be non-
negative.
Corresponds to the JSON property averageEgressBps
3242 3243 3244 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3242 def average_egress_bps @average_egress_bps end |
#average_ingress_bps ⇒ Float
Average network ingress in B/s sampled over a short window. Must be non-
negative.
Corresponds to the JSON property averageIngressBps
3248 3249 3250 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3248 def average_ingress_bps @average_ingress_bps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3255 3256 3257 3258 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 3255 def update!(**args) @average_egress_bps = args[:average_egress_bps] if args.key?(:average_egress_bps) @average_ingress_bps = args[:average_ingress_bps] if args.key?(:average_ingress_bps) end |