Class: Google::Apis::DataflowV1b3::StageSource
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataflowV1b3::StageSource
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
 generated/google/apis/dataflow_v1b3/representations.rb,
 generated/google/apis/dataflow_v1b3/representations.rb
Overview
Description of an input or output of an execution stage.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Dataflow service generated name for this source. 
- 
  
    
      #original_transform_or_collection  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    User name for the original user transform or collection with which this source is most closely associated. 
- 
  
    
      #size_bytes  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Size of the source, if measurable. 
- 
  
    
      #user_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Human-readable name for this source; may be user or system generated. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ StageSource 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of StageSource. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ StageSource
Returns a new instance of StageSource
| 3767 3768 3769 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3767 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#name ⇒ String
Dataflow service generated name for this source.
Corresponds to the JSON property name
| 3749 3750 3751 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3749 def name @name end | 
#original_transform_or_collection ⇒ String
User name for the original user transform or collection with which this
source is most closely associated.
Corresponds to the JSON property originalTransformOrCollection
| 3755 3756 3757 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3755 def original_transform_or_collection @original_transform_or_collection end | 
#size_bytes ⇒ Fixnum
Size of the source, if measurable.
Corresponds to the JSON property sizeBytes
| 3760 3761 3762 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3760 def size_bytes @size_bytes end | 
#user_name ⇒ String
Human-readable name for this source; may be user or system generated.
Corresponds to the JSON property userName
| 3765 3766 3767 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3765 def user_name @user_name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3772 3773 3774 3775 3776 3777 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3772 def update!(**args) @name = args[:name] if args.key?(:name) @original_transform_or_collection = args[:original_transform_or_collection] if args.key?(:original_transform_or_collection) @size_bytes = args[:size_bytes] if args.key?(:size_bytes) @user_name = args[:user_name] if args.key?(:user_name) end |