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.
3930 3931 3932 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3930 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
3923 3924 3925 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3923 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
3928 3929 3930 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3928 def overrides @overrides end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3935 3936 3937 3938 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 3935 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @overrides = args[:overrides] if args.key?(:overrides) end |