Class: Google::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregation

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DailyResourceUsageAggregation

Returns a new instance of DailyResourceUsageAggregation.



1560
1561
1562
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1560

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cpuGoogle::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationCpu

Statistical aggregation of CPU usage. Corresponds to the JSON property cpu



1531
1532
1533
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1531

def cpu
  @cpu
end

#dateGoogle::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



1543
1544
1545
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1543

def date
  @date
end

#diskGoogle::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationDisk

Statistical aggregation of disk usage. Corresponds to the JSON property disk



1548
1549
1550
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1548

def disk
  @disk
end

#memoryGoogle::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationMemory

Statistical aggregation of memory usage. Corresponds to the JSON property memory



1553
1554
1555
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1553

def memory
  @memory
end

#networkGoogle::Apis::MigrationcenterV1alpha1::DailyResourceUsageAggregationNetwork

Statistical aggregation of network usage. Corresponds to the JSON property network



1558
1559
1560
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1558

def network
  @network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1565
1566
1567
1568
1569
1570
1571
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1565

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