Class: Google::Apis::CloudresourcemanagerV3::ListLiensResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudresourcemanagerV3::ListLiensResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudresourcemanager_v3/classes.rb,
lib/google/apis/cloudresourcemanager_v3/representations.rb,
lib/google/apis/cloudresourcemanager_v3/representations.rb
Overview
The response message for Liens.ListLiens.
Instance Attribute Summary collapse
-
#liens ⇒ Array<Google::Apis::CloudresourcemanagerV3::Lien>
A list of Liens.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListLiensResponse
constructor
A new instance of ListLiensResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListLiensResponse
Returns a new instance of ListLiensResponse.
775 776 777 |
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 775 def initialize(**args) update!(**args) end |
Instance Attribute Details
#liens ⇒ Array<Google::Apis::CloudresourcemanagerV3::Lien>
A list of Liens.
Corresponds to the JSON property liens
767 768 769 |
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 767 def liens @liens end |
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
773 774 775 |
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 773 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
780 781 782 783 |
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 780 def update!(**args) @liens = args[:liens] if args.key?(:liens) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |