Class: Google::Apis::BaremetalsolutionV2::ListNfsSharesResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListNfsSharesResponse

Returns a new instance of ListNfsSharesResponse.



516
517
518
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 516

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token identifying a page of results from the server. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


504
505
506
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 504

def next_page_token
  @next_page_token
end

#nfs_sharesArray<Google::Apis::BaremetalsolutionV2::NfsShare>

The list of NFS shares. Corresponds to the JSON property nfsShares



509
510
511
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 509

def nfs_shares
  @nfs_shares
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


514
515
516
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 514

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



521
522
523
524
525
# File 'lib/google/apis/baremetalsolution_v2/classes.rb', line 521

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