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.
774 775 776 |
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 774 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
766 767 768 |
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 766 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
772 773 774 |
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 772 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
779 780 781 782 |
# File 'lib/google/apis/cloudresourcemanager_v3/classes.rb', line 779 def update!(**args) @liens = args[:liens] if args.key?(:liens) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |