Class: Google::Apis::ComputeBeta::TargetTcpProxiesScopedList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::TargetTcpProxiesScopedList
 
 
- 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 
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
- 
  
    
      #target_tcp_proxies  ⇒ Array<Google::Apis::ComputeBeta::TargetTcpProxy> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of TargetTcpProxies contained in this scope.
 - 
  
    
      #warning  ⇒ Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Informational warning which replaces the list of backend services when the list is empty.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TargetTcpProxiesScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of TargetTcpProxiesScopedList.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ TargetTcpProxiesScopedList
Returns a new instance of TargetTcpProxiesScopedList.
      48983 48984 48985  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 48983 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#target_tcp_proxies ⇒ Array<Google::Apis::ComputeBeta::TargetTcpProxy>
A list of TargetTcpProxies contained in this scope.
Corresponds to the JSON property targetTcpProxies
      48975 48976 48977  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 48975 def target_tcp_proxies @target_tcp_proxies end  | 
  
#warning ⇒ Google::Apis::ComputeBeta::TargetTcpProxiesScopedList::Warning
Informational warning which replaces the list of backend services when the
list is empty.
Corresponds to the JSON property warning
      48981 48982 48983  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 48981 def warning @warning end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      48988 48989 48990 48991  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 48988 def update!(**args) @target_tcp_proxies = args[:target_tcp_proxies] if args.key?(:target_tcp_proxies) @warning = args[:warning] if args.key?(:warning) end  |