class Google::Apis::GmailpostmastertoolsV1beta1::IpReputation

IP Reputation information for a set of IPs in a specific reputation category.

Attributes

ip_count[RW]

Total number of unique IPs in this reputation category. This metric only pertains to traffic that passed [SPF](www.openspf.org/) or [DKIM](http:/ /www.dkim.org/). Corresponds to the JSON property `ipCount` @return [Fixnum]

num_ips[RW]

Total number of unique IPs in this reputation category. This metric only pertains to traffic that passed [SPF](www.openspf.org/) or [DKIM](http:/ /www.dkim.org/). Deprecated to be complied with ApiLinter for Quantities. Use ip_count instead. Corresponds to the JSON property `numIps` @return [Fixnum]

reputation[RW]

The reputation category this IP reputation represents. Corresponds to the JSON property `reputation` @return [String]

sample_ips[RW]

A sample of IPs in this reputation category. Corresponds to the JSON property `sampleIps` @return [Array<String>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/gmailpostmastertools_v1beta1/classes.rb, line 150
def update!(**args)
  @ip_count = args[:ip_count] if args.key?(:ip_count)
  @num_ips = args[:num_ips] if args.key?(:num_ips)
  @reputation = args[:reputation] if args.key?(:reputation)
  @sample_ips = args[:sample_ips] if args.key?(:sample_ips)
end