Class: Google::Apis::ComputeAlpha::NetworkEndpointGroupsListEndpointsRequest
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::NetworkEndpointGroupsListEndpointsRequest
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#endpoint_filters ⇒ Array<Google::Apis::ComputeAlpha::NetworkEndpointGroupsListEndpointsRequestNetworkEndpointFilter>
Optional list of endpoints to query.
-
#health_status ⇒ String
Optional query parameter for showing the health status of each network endpoint.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkEndpointGroupsListEndpointsRequest
constructor
A new instance of NetworkEndpointGroupsListEndpointsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ NetworkEndpointGroupsListEndpointsRequest
Returns a new instance of NetworkEndpointGroupsListEndpointsRequest
18810 18811 18812 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18810 def initialize(**args) update!(**args) end |
Instance Attribute Details
#endpoint_filters ⇒ Array<Google::Apis::ComputeAlpha::NetworkEndpointGroupsListEndpointsRequestNetworkEndpointFilter>
Optional list of endpoints to query. This is a more efficient but also limited
version of filter parameter. Endpoints in the filter must have ip_address and
port fields populated, other fields are not supported.
Corresponds to the JSON property endpointFilters
18801 18802 18803 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18801 def endpoint_filters @endpoint_filters end |
#health_status ⇒ String
Optional query parameter for showing the health status of each network
endpoint. Valid options are SKIP or SHOW. If you don't specifiy this parameter,
the health status of network endpoints will not be provided.
Corresponds to the JSON property healthStatus
18808 18809 18810 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18808 def health_status @health_status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18815 18816 18817 18818 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 18815 def update!(**args) @endpoint_filters = args[:endpoint_filters] if args.key?(:endpoint_filters) @health_status = args[:health_status] if args.key?(:health_status) end |