Class: Google::Apis::VmwareengineV1::ListLoggingServersResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/vmwareengine_v1/classes.rb,
lib/google/apis/vmwareengine_v1/representations.rb,
lib/google/apis/vmwareengine_v1/representations.rb

Overview

Response message for VmwareEngine.ListLoggingServers

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListLoggingServersResponse

Returns a new instance of ListLoggingServersResponse.



1006
1007
1008
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1006

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

Instance Attribute Details

#logging_serversArray<Google::Apis::VmwareengineV1::LoggingServer>

A list of Logging Servers. Corresponds to the JSON property loggingServers



992
993
994
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 992

def logging_servers
  @logging_servers
end

#next_page_tokenString

A token, which can be send as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


998
999
1000
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 998

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached when making an aggregated query using wildcards. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


1004
1005
1006
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1004

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1011
1012
1013
1014
1015
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1011

def update!(**args)
  @logging_servers = args[:logging_servers] if args.key?(:logging_servers)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end