Class: Google::Apis::ComputeV1::OperationList::Warning
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeV1::OperationList::Warning
 
 
- Defined in:
 - generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb 
Overview
[Output Only] Informational warning message.
Defined Under Namespace
Classes: Datum
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] A warning code, if applicable.
 - 
  
    
      #data  ⇒ Array<Google::Apis::ComputeV1::OperationList::Warning::Datum> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Metadata about this warning in key: value format.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] A human-readable description of the warning code.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Warning 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Warning.
 - 
  
    
      #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) ⇒ Warning
Returns a new instance of Warning
      13909 13910 13911  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13909 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#code ⇒ String
[Output Only] A warning code, if applicable. For example, Compute Engine
returns NO_RESULTS_ON_PAGE if there are no results in the response.
Corresponds to the JSON property code
      13896 13897 13898  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13896 def code @code end  | 
  
#data ⇒ Array<Google::Apis::ComputeV1::OperationList::Warning::Datum>
[Output Only] Metadata about this warning in key: value format. For example:
"data": [ "key": "scope", "value": "zones/us-east1-d"
Corresponds to the JSON property data
      13902 13903 13904  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13902 def data @data end  | 
  
#message ⇒ String
[Output Only] A human-readable description of the warning code.
Corresponds to the JSON property message
      13907 13908 13909  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13907 def @message end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      13914 13915 13916 13917 13918  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13914 def update!(**args) @code = args[:code] if args.key?(:code) @data = args[:data] if args.key?(:data) @message = args[:message] if args.key?(:message) end  |