class Google::Apis::ComputeV1::QuotaExceededInfo
Additional details for quota exceeded error for resource quota.
Attributes
dimensions[RW]
The map holding related quota dimensions. Corresponds to the JSON property `dimensions` @return [Hash<String,String>]
limit[RW]
Current effective quota limit. The limit's unit depends on the quota type or metric. Corresponds to the JSON property `limit` @return [Float]
limit_name[RW]
The name of the quota limit. Corresponds to the JSON property `limitName` @return [String]
metric_name[RW]
The Compute Engine quota metric name. Corresponds to the JSON property `metricName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 26513 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/compute_v1/classes.rb, line 26518 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) @limit = args[:limit] if args.key?(:limit) @limit_name = args[:limit_name] if args.key?(:limit_name) @metric_name = args[:metric_name] if args.key?(:metric_name) end