Class: Google::Apis::VaultV1::ListExportsResponse
- Inherits:
-
Object
- Object
- Google::Apis::VaultV1::ListExportsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vault_v1/classes.rb,
generated/google/apis/vault_v1/representations.rb,
generated/google/apis/vault_v1/representations.rb
Overview
The holds for a matter.
Instance Attribute Summary collapse
-
#exports ⇒ Array<Google::Apis::VaultV1::Export>
The list of exports.
-
#next_page_token ⇒ String
Page token to retrieve the next page of results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListExportsResponse
constructor
A new instance of ListExportsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListExportsResponse
Returns a new instance of ListExportsResponse
849 850 851 |
# File 'generated/google/apis/vault_v1/classes.rb', line 849 def initialize(**args) update!(**args) end |
Instance Attribute Details
#exports ⇒ Array<Google::Apis::VaultV1::Export>
The list of exports.
Corresponds to the JSON property exports
842 843 844 |
# File 'generated/google/apis/vault_v1/classes.rb', line 842 def exports @exports end |
#next_page_token ⇒ String
Page token to retrieve the next page of results in the list.
Corresponds to the JSON property nextPageToken
847 848 849 |
# File 'generated/google/apis/vault_v1/classes.rb', line 847 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
854 855 856 857 |
# File 'generated/google/apis/vault_v1/classes.rb', line 854 def update!(**args) @exports = args[:exports] if args.key?(:exports) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |