Class: Google::Apis::ManagedkafkaV1::ListAclsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#aclsArray<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_tokenString

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

Returns:

  • (String)


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