Class: Google::Apis::BaremetalsolutionV2::ListNfsSharesResponse
- Inherits:
-
Object
- Object
- Google::Apis::BaremetalsolutionV2::ListNfsSharesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/baremetalsolution_v2/classes.rb,
lib/google/apis/baremetalsolution_v2/representations.rb,
lib/google/apis/baremetalsolution_v2/representations.rb
Overview
Response message containing the list of NFS shares.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token identifying a page of results from the server.
-
#nfs_shares ⇒ Array<Google::Apis::BaremetalsolutionV2::NfsShare>
The list of NFS shares.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListNfsSharesResponse
constructor
A new instance of ListNfsSharesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListNfsSharesResponse
Returns a new instance of ListNfsSharesResponse.
703 704 705 |
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 703 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token identifying a page of results from the server.
Corresponds to the JSON property nextPageToken
691 692 693 |
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 691 def next_page_token @next_page_token end |
#nfs_shares ⇒ Array<Google::Apis::BaremetalsolutionV2::NfsShare>
The list of NFS shares.
Corresponds to the JSON property nfsShares
696 697 698 |
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 696 def nfs_shares @nfs_shares end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
701 702 703 |
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 701 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
708 709 710 711 712 |
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 708 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @nfs_shares = args[:nfs_shares] if args.key?(:nfs_shares) @unreachable = args[:unreachable] if args.key?(:unreachable) end |