Class: Google::Apis::VmwareengineV1::ListLoggingServersResponse
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::ListLoggingServersResponse
- 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
-
#logging_servers ⇒ Array<Google::Apis::VmwareengineV1::LoggingServer>
A list of Logging Servers.
-
#next_page_token ⇒ String
A token, which can be send as
page_tokento retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached when making an aggregated query using wildcards.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListLoggingServersResponse
constructor
A new instance of ListLoggingServersResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListLoggingServersResponse
Returns a new instance of ListLoggingServersResponse.
1003 1004 1005 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1003 def initialize(**args) update!(**args) end |
Instance Attribute Details
#logging_servers ⇒ Array<Google::Apis::VmwareengineV1::LoggingServer>
A list of Logging Servers.
Corresponds to the JSON property loggingServers
989 990 991 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 989 def logging_servers @logging_servers end |
#next_page_token ⇒ String
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
995 996 997 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 995 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached when making an aggregated query using
wildcards.
Corresponds to the JSON property unreachable
1001 1002 1003 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1001 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1008 1009 1010 1011 1012 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1008 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 |