Class: Google::Apis::ComputeV1::QuotaExceededInfo
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::QuotaExceededInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Overview
Additional details for quota exceeded error for resource quota.
Instance Attribute Summary collapse
-
#dimensions ⇒ Hash<String,String>
The map holding related quota dimensions.
-
#future_limit ⇒ Float
Future quota limit being rolled out.
-
#limit ⇒ Float
Current effective quota limit.
-
#limit_name ⇒ String
The name of the quota limit.
-
#metric_name ⇒ String
The Compute Engine quota metric name.
-
#rollout_status ⇒ String
Rollout status of the future quota limit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QuotaExceededInfo
constructor
A new instance of QuotaExceededInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QuotaExceededInfo
Returns a new instance of QuotaExceededInfo.
30918 30919 30920 |
# File 'lib/google/apis/compute_v1/classes.rb', line 30918 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimensions ⇒ Hash<String,String>
The map holding related quota dimensions.
Corresponds to the JSON property dimensions
30889 30890 30891 |
# File 'lib/google/apis/compute_v1/classes.rb', line 30889 def dimensions @dimensions end |
#future_limit ⇒ Float
Future quota limit being rolled out. The limit's unit depends on the quota
type or metric.
Corresponds to the JSON property futureLimit
30895 30896 30897 |
# File 'lib/google/apis/compute_v1/classes.rb', line 30895 def future_limit @future_limit end |
#limit ⇒ Float
Current effective quota limit. The limit's unit depends on the quota type or
metric.
Corresponds to the JSON property limit
30901 30902 30903 |
# File 'lib/google/apis/compute_v1/classes.rb', line 30901 def limit @limit end |
#limit_name ⇒ String
The name of the quota limit.
Corresponds to the JSON property limitName
30906 30907 30908 |
# File 'lib/google/apis/compute_v1/classes.rb', line 30906 def limit_name @limit_name end |
#metric_name ⇒ String
The Compute Engine quota metric name.
Corresponds to the JSON property metricName
30911 30912 30913 |
# File 'lib/google/apis/compute_v1/classes.rb', line 30911 def metric_name @metric_name end |
#rollout_status ⇒ String
Rollout status of the future quota limit.
Corresponds to the JSON property rolloutStatus
30916 30917 30918 |
# File 'lib/google/apis/compute_v1/classes.rb', line 30916 def rollout_status @rollout_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
30923 30924 30925 30926 30927 30928 30929 30930 |
# File 'lib/google/apis/compute_v1/classes.rb', line 30923 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) @future_limit = args[:future_limit] if args.key?(:future_limit) @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) @rollout_status = args[:rollout_status] if args.key?(:rollout_status) end |