Class: Google::Apis::MigrationcenterV1::DailyResourceUsageAggregation

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

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.



929
930
931
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 929

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

Instance Attribute Details

#cpuGoogle::Apis::MigrationcenterV1::DailyResourceUsageAggregationCpu

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



900
901
902
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 900

def cpu
  @cpu
end

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



912
913
914
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 912

def date
  @date
end

#diskGoogle::Apis::MigrationcenterV1::DailyResourceUsageAggregationDisk

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



917
918
919
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 917

def disk
  @disk
end

#memoryGoogle::Apis::MigrationcenterV1::DailyResourceUsageAggregationMemory

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



922
923
924
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 922

def memory
  @memory
end

#networkGoogle::Apis::MigrationcenterV1::DailyResourceUsageAggregationNetwork

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



927
928
929
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 927

def network
  @network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



934
935
936
937
938
939
940
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 934

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