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.
3151 3152 3153 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3151 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
3144 3145 3146 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3144 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
3149 3150 3151 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3149 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3156 3157 3158 3159 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3156 def update!(**args) @metrics = args[:metrics] if args.key?(:metrics) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |