Class: Google::Apis::ManagedkafkaV1::ListAclsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ManagedkafkaV1::ListAclsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/managedkafka_v1/classes.rb,
lib/google/apis/managedkafka_v1/representations.rb,
lib/google/apis/managedkafka_v1/representations.rb
Overview
Response for ListAcls.
Instance Attribute Summary collapse
-
#acls ⇒ Array<Google::Apis::ManagedkafkaV1::Acl>
The list of acls in the requested parent.
-
#next_page_token ⇒ String
A token that can be sent as
page_tokento retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAclsResponse
constructor
A new instance of ListAclsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAclsResponse
Returns a new instance of ListAclsResponse.
995 996 997 |
# File 'lib/google/apis/managedkafka_v1/classes.rb', line 995 def initialize(**args) update!(**args) end |
Instance Attribute Details
#acls ⇒ Array<Google::Apis::ManagedkafkaV1::Acl>
The list of acls in the requested parent. The order of the acls is unspecified.
Corresponds to the JSON property acls
987 988 989 |
# File 'lib/google/apis/managedkafka_v1/classes.rb', line 987 def acls @acls end |
#next_page_token ⇒ String
A token that can be sent as page_token to retrieve the next page of results.
If this field is omitted, there are no more results.
Corresponds to the JSON property nextPageToken
993 994 995 |
# File 'lib/google/apis/managedkafka_v1/classes.rb', line 993 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1000 1001 1002 1003 |
# File 'lib/google/apis/managedkafka_v1/classes.rb', line 1000 def update!(**args) @acls = args[:acls] if args.key?(:acls) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |