Class: Google::Apis::ServiceusageV1beta1::ConsumerQuotaMetric
- Inherits:
-
Object
- Object
- Google::Apis::ServiceusageV1beta1::ConsumerQuotaMetric
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceusage_v1beta1/classes.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb
Overview
Consumer quota settings for a quota metric.
Instance Attribute Summary collapse
-
#consumer_quota_limits ⇒ Array<Google::Apis::ServiceusageV1beta1::ConsumerQuotaLimit>
The consumer quota for each quota limit defined on the metric.
-
#descendant_consumer_quota_limits ⇒ Array<Google::Apis::ServiceusageV1beta1::ConsumerQuotaLimit>
The quota limits targeting the descendant containers of the consumer in request.
-
#display_name ⇒ String
The display name of the metric.
-
#metric ⇒ String
The name of the metric.
-
#name ⇒ String
The resource name of the quota settings on this metric for this consumer.
-
#unit ⇒ String
The units in which the metric value is reported.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConsumerQuotaMetric
constructor
A new instance of ConsumerQuotaMetric.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConsumerQuotaMetric
Returns a new instance of ConsumerQuotaMetric.
730 731 732 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 730 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer_quota_limits ⇒ Array<Google::Apis::ServiceusageV1beta1::ConsumerQuotaLimit>
The consumer quota for each quota limit defined on the metric.
Corresponds to the JSON property consumerQuotaLimits
695 696 697 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 695 def consumer_quota_limits @consumer_quota_limits end |
#descendant_consumer_quota_limits ⇒ Array<Google::Apis::ServiceusageV1beta1::ConsumerQuotaLimit>
The quota limits targeting the descendant containers of the consumer in
request. If the consumer in request is of type organizations or folders,
the field will list per-project limits in the metric; if the consumer in
request is of type project, the field will be empty. The quota_buckets
field of each descendant consumer quota limit will not be populated.
Corresponds to the JSON property descendantConsumerQuotaLimits
704 705 706 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 704 def descendant_consumer_quota_limits @descendant_consumer_quota_limits end |
#display_name ⇒ String
The display name of the metric. An example name would be: "CPUs"
Corresponds to the JSON property displayName
709 710 711 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 709 def display_name @display_name end |
#metric ⇒ String
The name of the metric. An example name would be: compute.googleapis.com/cpus
Corresponds to the JSON property metric
714 715 716 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 714 def metric @metric end |
#name ⇒ String
The resource name of the quota settings on this metric for this consumer. An
example name would be: projects/123/services/compute.googleapis.com/
consumerQuotaMetrics/compute.googleapis.com%2Fcpus The resource name is
intended to be opaque and should not be parsed for its component strings,
since its representation could change in the future.
Corresponds to the JSON propertyname`
723 724 725 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 723 def name @name end |
#unit ⇒ String
The units in which the metric value is reported.
Corresponds to the JSON property unit
728 729 730 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 728 def unit @unit end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
735 736 737 738 739 740 741 742 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 735 def update!(**args) @consumer_quota_limits = args[:consumer_quota_limits] if args.key?(:consumer_quota_limits) @descendant_consumer_quota_limits = args[:descendant_consumer_quota_limits] if args.key?(:descendant_consumer_quota_limits) @display_name = args[:display_name] if args.key?(:display_name) @metric = args[:metric] if args.key?(:metric) @name = args[:name] if args.key?(:name) @unit = args[:unit] if args.key?(:unit) end |