Class: Google::Apis::DataprocV1beta2::YarnApplication
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataprocV1beta2::YarnApplication
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dataproc_v1beta2/classes.rb,
generated/google/apis/dataproc_v1beta2/representations.rb,
generated/google/apis/dataproc_v1beta2/representations.rb 
Overview
A YARN application created by a job. Application information is a subset of < code>org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto. Beta Feature: This report is available for testing purposes only. It may be changed before final release.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #progress  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #tracking_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ YarnApplication 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of YarnApplication.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ YarnApplication
Returns a new instance of YarnApplication
      2711 2712 2713  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2711 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#name ⇒ String
Required. The application name.
Corresponds to the JSON property name
      2691 2692 2693  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2691 def name @name end  | 
  
#progress ⇒ Float
Required. The numerical progress of the application, from 1 to 100.
Corresponds to the JSON property progress
      2696 2697 2698  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2696 def progress @progress end  | 
  
#state ⇒ String
Required. The application state.
Corresponds to the JSON property state
      2701 2702 2703  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2701 def state @state end  | 
  
#tracking_url ⇒ String
Optional. The HTTP URL of the ApplicationMaster, HistoryServer, or
TimelineServer that provides application-specific information. The URL uses
the internal hostname, and requires a proxy server for resolution and,
possibly, access.
Corresponds to the JSON property trackingUrl
      2709 2710 2711  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2709 def tracking_url @tracking_url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2716 2717 2718 2719 2720 2721  | 
    
      # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2716 def update!(**args) @name = args[:name] if args.key?(:name) @progress = args[:progress] if args.key?(:progress) @state = args[:state] if args.key?(:state) @tracking_url = args[:tracking_url] if args.key?(:tracking_url) end  |