Class: Google::Apis::DfareportingV5::IngestionStatus
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV5::IngestionStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v5/classes.rb,
lib/google/apis/dfareporting_v5/representations.rb,
lib/google/apis/dfareporting_v5/representations.rb
Overview
Contains the ingestion status of the dynamic feed.
Instance Attribute Summary collapse
-
#num_active_rows ⇒ Fixnum
Output only.
-
#num_rows_processed ⇒ Fixnum
Output only.
-
#num_rows_total ⇒ Fixnum
Output only.
-
#num_rows_with_errors ⇒ Fixnum
Output only.
-
#num_warnings_total ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IngestionStatus
constructor
A new instance of IngestionStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IngestionStatus
Returns a new instance of IngestionStatus.
7999 8000 8001 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 7999 def initialize(**args) update!(**args) end |
Instance Attribute Details
#num_active_rows ⇒ Fixnum
Output only. The number of active rows in the feed.
Corresponds to the JSON property numActiveRows
7977 7978 7979 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 7977 def num_active_rows @num_active_rows end |
#num_rows_processed ⇒ Fixnum
Output only. The number of rows processed in the feed.
Corresponds to the JSON property numRowsProcessed
7982 7983 7984 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 7982 def num_rows_processed @num_rows_processed end |
#num_rows_total ⇒ Fixnum
Output only. The total number of rows in the feed.
Corresponds to the JSON property numRowsTotal
7987 7988 7989 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 7987 def num_rows_total @num_rows_total end |
#num_rows_with_errors ⇒ Fixnum
Output only. The number of rows with errors in the feed.
Corresponds to the JSON property numRowsWithErrors
7992 7993 7994 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 7992 def num_rows_with_errors @num_rows_with_errors end |
#num_warnings_total ⇒ Fixnum
Output only. The total number of warnings in the feed.
Corresponds to the JSON property numWarningsTotal
7997 7998 7999 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 7997 def num_warnings_total @num_warnings_total end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8004 8005 8006 8007 8008 8009 8010 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 8004 def update!(**args) @num_active_rows = args[:num_active_rows] if args.key?(:num_active_rows) @num_rows_processed = args[:num_rows_processed] if args.key?(:num_rows_processed) @num_rows_total = args[:num_rows_total] if args.key?(:num_rows_total) @num_rows_with_errors = args[:num_rows_with_errors] if args.key?(:num_rows_with_errors) @num_warnings_total = args[:num_warnings_total] if args.key?(:num_warnings_total) end |