Class: Google::Apis::DatamigrationV1::FetchStaticIpsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatamigrationV1::FetchStaticIpsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
 lib/google/apis/datamigration_v1/representations.rb,
 lib/google/apis/datamigration_v1/representations.rb
Overview
Response message for a 'FetchStaticIps' request.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token that can be sent as page_tokento retrieve the next page.
- 
  
    
      #static_ips  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of static IPs. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FetchStaticIpsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FetchStaticIpsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ FetchStaticIpsResponse
Returns a new instance of FetchStaticIpsResponse.
| 1859 1860 1861 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1859 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
A token that can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
| 1852 1853 1854 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1852 def next_page_token @next_page_token end | 
#static_ips ⇒ Array<String>
List of static IPs.
Corresponds to the JSON property staticIps
| 1857 1858 1859 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1857 def static_ips @static_ips end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1864 1865 1866 1867 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1864 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @static_ips = args[:static_ips] if args.key?(:static_ips) end |