Class: Google::Apis::ServiceusageV1beta1::ListAdminOverridesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServiceusageV1beta1::ListAdminOverridesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceusage_v1beta1/classes.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb
Overview
Response message for ListAdminOverrides.
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>
Admin overrides on this limit.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAdminOverridesResponse
constructor
A new instance of ListAdminOverridesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAdminOverridesResponse
Returns a new instance of ListAdminOverridesResponse.
2409 2410 2411 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 2409 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
2402 2403 2404 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 2402 def next_page_token @next_page_token end |
#overrides ⇒ Array<Google::Apis::ServiceusageV1beta1::QuotaOverride>
Admin overrides on this limit.
Corresponds to the JSON property overrides
2407 2408 2409 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 2407 def overrides @overrides end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2414 2415 2416 2417 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 2414 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @overrides = args[:overrides] if args.key?(:overrides) end |