class Google::Apis::VaultV1::GroupsCountResult
Groups specific count metrics.
Attributes
Error occurred when querying these accounts. Corresponds to the JSON property `accountCountErrors` @return [Array<Google::Apis::VaultV1::AccountCountError>]
Subtotal count per matching account that have more than zero messages. Corresponds to the JSON property `accountCounts` @return [Array<Google::Apis::VaultV1::AccountCount>]
Total number of accounts that can be queried and have more than zero messages. Corresponds to the JSON property `matchingAccountsCount` @return [Fixnum]
When DataScope is HELD_DATA, these accounts in the request are not queried because they are not on hold. For other data scope, this field is not set. Corresponds to the JSON property `nonQueryableAccounts` @return [Array<String>]
Total number of accounts involved in this count operation. Corresponds to the JSON property `queriedAccountsCount` @return [Fixnum]
Public Class Methods
# File lib/google/apis/vault_v1/classes.rb, line 720 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/vault_v1/classes.rb, line 725 def update!(**args) @account_count_errors = args[:account_count_errors] if args.key?(:account_count_errors) @account_counts = args[:account_counts] if args.key?(:account_counts) @matching_accounts_count = args[:matching_accounts_count] if args.key?(:matching_accounts_count) @non_queryable_accounts = args[:non_queryable_accounts] if args.key?(:non_queryable_accounts) @queried_accounts_count = args[:queried_accounts_count] if args.key?(:queried_accounts_count) end