class Google::Apis::AnalyticsdataV1beta::PropertyQuota

Current state of all quotas for this Analytics Property. If any quota for a property is exhausted, all requests to that property will return Resource Exhausted errors.

Attributes

concurrent_requests[RW]

Current state for a particular quota group. Corresponds to the JSON property `concurrentRequests` @return [Google::Apis::AnalyticsdataV1beta::QuotaStatus]

potentially_thresholded_requests_per_hour[RW]

Current state for a particular quota group. Corresponds to the JSON property `potentiallyThresholdedRequestsPerHour` @return [Google::Apis::AnalyticsdataV1beta::QuotaStatus]

server_errors_per_project_per_hour[RW]

Current state for a particular quota group. Corresponds to the JSON property `serverErrorsPerProjectPerHour` @return [Google::Apis::AnalyticsdataV1beta::QuotaStatus]

tokens_per_day[RW]

Current state for a particular quota group. Corresponds to the JSON property `tokensPerDay` @return [Google::Apis::AnalyticsdataV1beta::QuotaStatus]

tokens_per_hour[RW]

Current state for a particular quota group. Corresponds to the JSON property `tokensPerHour` @return [Google::Apis::AnalyticsdataV1beta::QuotaStatus]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 1381
def update!(**args)
  @concurrent_requests = args[:concurrent_requests] if args.key?(:concurrent_requests)
  @potentially_thresholded_requests_per_hour = args[:potentially_thresholded_requests_per_hour] if args.key?(:potentially_thresholded_requests_per_hour)
  @server_errors_per_project_per_hour = args[:server_errors_per_project_per_hour] if args.key?(:server_errors_per_project_per_hour)
  @tokens_per_day = args[:tokens_per_day] if args.key?(:tokens_per_day)
  @tokens_per_hour = args[:tokens_per_hour] if args.key?(:tokens_per_hour)
end