Class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaReplayResultsSummary

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/policysimulator_v1alpha/classes.rb,
lib/google/apis/policysimulator_v1alpha/representations.rb,
lib/google/apis/policysimulator_v1alpha/representations.rb

Overview

Summary statistics about the replayed log entries.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1alphaReplayResultsSummary

Returns a new instance of GoogleCloudPolicysimulatorV1alphaReplayResultsSummary.



1517
1518
1519
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1517

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

Instance Attribute Details

#difference_countFixnum

The number of replayed log entries with a difference between baseline and simulated policies. Corresponds to the JSON property differenceCount

Returns:

  • (Fixnum)


1475
1476
1477
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1475

def difference_count
  @difference_count
end

#error_countFixnum

The number of log entries that could not be replayed. Corresponds to the JSON property errorCount

Returns:

  • (Fixnum)


1480
1481
1482
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1480

def error_count
  @error_count
end

#log_countFixnum

The total number of log entries replayed. Corresponds to the JSON property logCount

Returns:

  • (Fixnum)


1485
1486
1487
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1485

def log_count
  @log_count
end

#newest_dateGoogle::Apis::PolicysimulatorV1alpha::GoogleTypeDate

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 newestDate



1497
1498
1499
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1497

def newest_date
  @newest_date
end

#oldest_dateGoogle::Apis::PolicysimulatorV1alpha::GoogleTypeDate

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 oldestDate



1509
1510
1511
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1509

def oldest_date
  @oldest_date
end

#unchanged_countFixnum

The number of replayed log entries with no difference between baseline and simulated policies. Corresponds to the JSON property unchangedCount

Returns:

  • (Fixnum)


1515
1516
1517
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1515

def unchanged_count
  @unchanged_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1522
1523
1524
1525
1526
1527
1528
1529
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1522

def update!(**args)
  @difference_count = args[:difference_count] if args.key?(:difference_count)
  @error_count = args[:error_count] if args.key?(:error_count)
  @log_count = args[:log_count] if args.key?(:log_count)
  @newest_date = args[:newest_date] if args.key?(:newest_date)
  @oldest_date = args[:oldest_date] if args.key?(:oldest_date)
  @unchanged_count = args[:unchanged_count] if args.key?(:unchanged_count)
end