Class: Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregation
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
Usage data aggregation for a single day.
Instance Attribute Summary collapse
-
#cpu ⇒ Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationCpu
Statistical aggregation of CPU usage.
-
#date ⇒ Google::Apis::MigrationcenterV1alpha1::Date
Represents a whole or partial calendar date, such as a birthday.
-
#disk ⇒ Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationDisk
Statistical aggregation of disk usage.
-
#memory ⇒ Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationMemory
Statistical aggregation of memory usage.
-
#network ⇒ Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationNetwork
Statistical aggregation of network usage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DailyResourceUsageAggregation
constructor
A new instance of DailyResourceUsageAggregation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DailyResourceUsageAggregation
Returns a new instance of DailyResourceUsageAggregation.
1410 1411 1412 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1410 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpu ⇒ Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationCpu
Statistical aggregation of CPU usage.
Corresponds to the JSON property cpu
1381 1382 1383 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1381 def cpu @cpu end |
#date ⇒ Google::Apis::MigrationcenterV1alpha1::Date
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values. * A month
and day, with a zero year (for example, an anniversary). * A year on its own,
with a zero month and a zero day. * A year and month, with a zero day (for
example, a credit card expiration date). Related types: * google.type.
TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
Corresponds to the JSON property date
1393 1394 1395 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1393 def date @date end |
#disk ⇒ Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationDisk
Statistical aggregation of disk usage.
Corresponds to the JSON property disk
1398 1399 1400 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1398 def disk @disk end |
#memory ⇒ Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationMemory
Statistical aggregation of memory usage.
Corresponds to the JSON property memory
1403 1404 1405 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1403 def memory @memory end |
#network ⇒ Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationNetwork
Statistical aggregation of network usage.
Corresponds to the JSON property network
1408 1409 1410 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1408 def network @network end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1415 1416 1417 1418 1419 1420 1421 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1415 def update!(**args) @cpu = args[:cpu] if args.key?(:cpu) @date = args[:date] if args.key?(:date) @disk = args[:disk] if args.key?(:disk) @memory = args[:memory] if args.key?(:memory) @network = args[:network] if args.key?(:network) end |