Class: Google::Apis::ComputeBeta::AddressList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::AddressList
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb 
Overview
Contains a list of addresses.
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Unique identifier for the resource; defined by the server.
 - 
  
    
      #items  ⇒ Array<Google::Apis::ComputeBeta::Address> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of Address resources.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Type of resource.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] This token allows you to get the next page of results for list requests.
 - 
  
    
      #self_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Server-defined URL for this resource.
 - 
  
    
      #warning  ⇒ Google::Apis::ComputeBeta::AddressList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Informational warning message.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AddressList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of AddressList.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ AddressList
Returns a new instance of AddressList.
      958 959 960  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 958 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#id ⇒ String
[Output Only] Unique identifier for the resource; defined by the server.
Corresponds to the JSON property id
      926 927 928  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 926 def id @id end  | 
  
#items ⇒ Array<Google::Apis::ComputeBeta::Address>
A list of Address resources.
Corresponds to the JSON property items
      931 932 933  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 931 def items @items end  | 
  
#kind ⇒ String
[Output Only] Type of resource. Always compute#addressList for lists of
addresses.
Corresponds to the JSON property kind
      937 938 939  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 937 def kind @kind end  | 
  
#next_page_token ⇒ String
[Output Only] This token allows you to get the next page of results for list
requests. If the number of results is larger than maxResults, use the
nextPageToken as a value for the query parameter pageToken in the next list
request. Subsequent list requests will have their own nextPageToken to
continue paging through the results.
Corresponds to the JSON property nextPageToken
      946 947 948  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 946 def next_page_token @next_page_token end  | 
  
#self_link ⇒ String
[Output Only] Server-defined URL for this resource.
Corresponds to the JSON property selfLink
      951 952 953  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 951 def self_link @self_link end  | 
  
#warning ⇒ Google::Apis::ComputeBeta::AddressList::Warning
[Output Only] Informational warning message.
Corresponds to the JSON property warning
      956 957 958  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 956 def warning @warning end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      963 964 965 966 967 968 969 970  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 963 def update!(**args) @id = args[:id] if args.key?(:id) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @self_link = args[:self_link] if args.key?(:self_link) @warning = args[:warning] if args.key?(:warning) end  |