Class: Google::Apis::NetworkconnectivityV1::ListInternalRangesResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworkconnectivityV1::ListInternalRangesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkconnectivity_v1/classes.rb,
lib/google/apis/networkconnectivity_v1/representations.rb,
lib/google/apis/networkconnectivity_v1/representations.rb
Overview
Response for InternalRange.ListInternalRanges
Instance Attribute Summary collapse
-
#internal_ranges ⇒ Array<Google::Apis::NetworkconnectivityV1::InternalRange>
Internal ranges to be returned.
-
#next_page_token ⇒ String
The next pagination token in the List response.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInternalRangesResponse
constructor
A new instance of ListInternalRangesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListInternalRangesResponse
Returns a new instance of ListInternalRangesResponse.
2191 2192 2193 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2191 def initialize(**args) update!(**args) end |
Instance Attribute Details
#internal_ranges ⇒ Array<Google::Apis::NetworkconnectivityV1::InternalRange>
Internal ranges to be returned.
Corresponds to the JSON property internalRanges
2178 2179 2180 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2178 def internal_ranges @internal_ranges end |
#next_page_token ⇒ String
The next pagination token in the List response. It should be used as
page_token for the following request. An empty value means no more result.
Corresponds to the JSON property nextPageToken
2184 2185 2186 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2184 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
2189 2190 2191 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2189 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2196 2197 2198 2199 2200 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 2196 def update!(**args) @internal_ranges = args[:internal_ranges] if args.key?(:internal_ranges) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |