Class: Google::Apis::ContainerV1beta1::ListUsableSubnetworksResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContainerV1beta1::ListUsableSubnetworksResponse
 
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
 generated/google/apis/container_v1beta1/representations.rb,
 generated/google/apis/container_v1beta1/representations.rb
Overview
ListUsableSubnetworksResponse is the response of ListUsableSubnetworksRequest.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This token allows you to get the next page of results for list requests. 
- 
  
    
      #subnetworks  ⇒ Array<Google::Apis::ContainerV1beta1::UsableSubnetwork> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of usable subnetworks in the specified network project. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListUsableSubnetworksResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListUsableSubnetworksResponse. 
- 
  
    
      #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) ⇒ ListUsableSubnetworksResponse
Returns a new instance of ListUsableSubnetworksResponse
| 1195 1196 1197 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1195 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
This token allows you to get the next page of results for list requests.
If the number of results is larger than page_size, use the
next_page_token as a value for the query parameter page_token in the
next request. The value will become empty when there are no more pages.
Corresponds to the JSON property nextPageToken
| 1188 1189 1190 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1188 def next_page_token @next_page_token end | 
#subnetworks ⇒ Array<Google::Apis::ContainerV1beta1::UsableSubnetwork>
A list of usable subnetworks in the specified network project.
Corresponds to the JSON property subnetworks
| 1193 1194 1195 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1193 def subnetworks @subnetworks end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1200 1201 1202 1203 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1200 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @subnetworks = args[:subnetworks] if args.key?(:subnetworks) end |