Class: Google::Apis::ServiceusageV1beta1::ListProducerOverridesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServiceusageV1beta1::ListProducerOverridesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceusage_v1beta1/classes.rb,
generated/google/apis/serviceusage_v1beta1/representations.rb,
generated/google/apis/serviceusage_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::ServiceusageV1beta1::QuotaOverride>
Producer overrides on this limit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListProducerOverridesResponse
constructor
A new instance of ListProducerOverridesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListProducerOverridesResponse
Returns a new instance of ListProducerOverridesResponse.
2749 2750 2751 |
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 2749 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
2742 2743 2744 |
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 2742 def next_page_token @next_page_token end |
#overrides ⇒ Array<Google::Apis::ServiceusageV1beta1::QuotaOverride>
Producer overrides on this limit.
Corresponds to the JSON property overrides
2747 2748 2749 |
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 2747 def overrides @overrides end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2754 2755 2756 2757 |
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 2754 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @overrides = args[:overrides] if args.key?(:overrides) end |