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.
3838 3839 3840 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3838 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
3831 3832 3833 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3831 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
3836 3837 3838 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3836 def overrides @overrides end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3843 3844 3845 3846 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3843 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @overrides = args[:overrides] if args.key?(:overrides) end |