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.



1121
1122
1123
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1121

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



1107
1108
1109
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1107

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)


1113
1114
1115
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1113

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>)


1119
1120
1121
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1119

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1126
1127
1128
1129
1130
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1126

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