Class: Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ListProducerOverridesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1ListProducerOverridesResponse
- 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 ListProducerOverrides.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token identifying which result to start with; returned by a previous list call.
-
#overrides ⇒ Array<Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1QuotaOverride>
Producer overrides on this limit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ V1Beta1ListProducerOverridesResponse
constructor
A new instance of V1Beta1ListProducerOverridesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ V1Beta1ListProducerOverridesResponse
Returns a new instance of V1Beta1ListProducerOverridesResponse.
3794 3795 3796 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3794 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token identifying which result to start with; returned by a previous list call.
Corresponds to the JSON property nextPageToken
3787 3788 3789 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3787 def next_page_token @next_page_token end |
#overrides ⇒ Array<Google::Apis::ServiceconsumermanagementV1beta1::V1Beta1QuotaOverride>
Producer overrides on this limit.
Corresponds to the JSON property overrides
3792 3793 3794 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3792 def overrides @overrides end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3799 3800 3801 3802 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3799 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @overrides = args[:overrides] if args.key?(:overrides) end |