Class: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ListConsumerQuotaMetricsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ListConsumerQuotaMetricsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb,
lib/google/apis/serviceconsumermanagement_v1beta1/representations.rb,
lib/google/apis/serviceconsumermanagement_v1beta1/representations.rb
Overview
Response message for ListConsumerQuotaMetrics.
Instance Attribute Summary collapse
-
#metrics ⇒ Array<Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ConsumerQuotaMetric>
Quota settings for the consumer, organized by quota metric.
-
#next_page_token ⇒ String
Token identifying which result to start with; returned by a previous list call.
Instance Method Summary collapse
-
#initialize(**args) ⇒ V1Beta1ListConsumerQuotaMetricsResponse
constructor
A new instance of V1Beta1ListConsumerQuotaMetricsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ V1Beta1ListConsumerQuotaMetricsResponse
Returns a new instance of V1Beta1ListConsumerQuotaMetricsResponse.
3813 3814 3815 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3813 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metrics ⇒ Array<Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ConsumerQuotaMetric>
Quota settings for the consumer, organized by quota metric.
Corresponds to the JSON property metrics
3806 3807 3808 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3806 def metrics @metrics end |
#next_page_token ⇒ String
Token identifying which result to start with; returned by a previous list call.
Corresponds to the JSON property nextPageToken
3811 3812 3813 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3811 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3818 3819 3820 3821 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3818 def update!(**args) @metrics = args[:metrics] if args.key?(:metrics) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |