class Google::Apis::PolicysimulatorV1::GoogleCloudPolicysimulatorV1beta1ReplayResultsSummary

Summary statistics about the replayed log entries.

Attributes

difference_count[RW]

The number of replayed log entries with a difference between baseline and simulated policies. Corresponds to the JSON property `differenceCount` @return [Fixnum]

error_count[RW]

The number of log entries that could not be replayed. Corresponds to the JSON property `errorCount` @return [Fixnum]

log_count[RW]

The total number of log entries replayed. Corresponds to the JSON property `logCount` @return [Fixnum]

newest_date[RW]

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 value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and ` google.protobuf.Timestamp`. Corresponds to the JSON property `newestDate` @return [Google::Apis::PolicysimulatorV1::GoogleTypeDate]

oldest_date[RW]

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 value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and ` google.protobuf.Timestamp`. Corresponds to the JSON property `oldestDate` @return [Google::Apis::PolicysimulatorV1::GoogleTypeDate]

unchanged_count[RW]

The number of replayed log entries with no difference between baseline and simulated policies. Corresponds to the JSON property `unchangedCount` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/policysimulator_v1/classes.rb, line 757
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/policysimulator_v1/classes.rb, line 762
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