Class: Google::Apis::ContentV2_1::DatafeedStatus
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::DatafeedStatus
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb
Overview
The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished.
Instance Attribute Summary collapse
-
#country ⇒ String
The country for which the status is reported, represented as a CLDR territory code.
-
#datafeed_id ⇒ Fixnum
The ID of the feed for which the status is reported.
-
#errors ⇒ Array<Google::Apis::ContentV2_1::DatafeedStatusError>
The list of errors occurring in the feed.
-
#items_total ⇒ Fixnum
The number of items in the feed that were processed.
-
#items_valid ⇒ Fixnum
The number of items in the feed that were valid.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#language ⇒ String
The two-letter ISO 639-1 language for which the status is reported.
-
#last_upload_date ⇒ String
The last date at which the feed was uploaded.
-
#processing_status ⇒ String
The processing status of the feed.
-
#warnings ⇒ Array<Google::Apis::ContentV2_1::DatafeedStatusError>
The list of errors occurring in the feed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatafeedStatus
constructor
A new instance of DatafeedStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatafeedStatus
Returns a new instance of DatafeedStatus.
2368 2369 2370 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2368 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country ⇒ String
The country for which the status is reported, represented as a CLDR territory
code.
Corresponds to the JSON property country
2315 2316 2317 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2315 def country @country end |
#datafeed_id ⇒ Fixnum
The ID of the feed for which the status is reported.
Corresponds to the JSON property datafeedId
2320 2321 2322 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2320 def datafeed_id @datafeed_id end |
#errors ⇒ Array<Google::Apis::ContentV2_1::DatafeedStatusError>
The list of errors occurring in the feed.
Corresponds to the JSON property errors
2325 2326 2327 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2325 def errors @errors end |
#items_total ⇒ Fixnum
The number of items in the feed that were processed.
Corresponds to the JSON property itemsTotal
2330 2331 2332 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2330 def items_total @items_total end |
#items_valid ⇒ Fixnum
The number of items in the feed that were valid.
Corresponds to the JSON property itemsValid
2335 2336 2337 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2335 def items_valid @items_valid end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
datafeedStatus"
Corresponds to the JSON property kind
2341 2342 2343 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2341 def kind @kind end |
#language ⇒ String
The two-letter ISO 639-1 language for which the status is reported.
Corresponds to the JSON property language
2346 2347 2348 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2346 def language @language end |
#last_upload_date ⇒ String
The last date at which the feed was uploaded.
Corresponds to the JSON property lastUploadDate
2351 2352 2353 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2351 def last_upload_date @last_upload_date end |
#processing_status ⇒ String
The processing status of the feed. Acceptable values are: - ""failure": The
feed could not be processed or all items had errors." - "in progress": The
feed is being processed. - "none": The feed has not yet been processed. For
example, a feed that has never been uploaded will have this processing status.
- "
success": The feed was processed successfully, though some items might have had errors. Corresponds to the JSON propertyprocessingStatus
2361 2362 2363 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2361 def processing_status @processing_status end |
#warnings ⇒ Array<Google::Apis::ContentV2_1::DatafeedStatusError>
The list of errors occurring in the feed.
Corresponds to the JSON property warnings
2366 2367 2368 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2366 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 2373 def update!(**args) @country = args[:country] if args.key?(:country) @datafeed_id = args[:datafeed_id] if args.key?(:datafeed_id) @errors = args[:errors] if args.key?(:errors) @items_total = args[:items_total] if args.key?(:items_total) @items_valid = args[:items_valid] if args.key?(:items_valid) @kind = args[:kind] if args.key?(:kind) @language = args[:language] if args.key?(:language) @last_upload_date = args[:last_upload_date] if args.key?(:last_upload_date) @processing_status = args[:processing_status] if args.key?(:processing_status) @warnings = args[:warnings] if args.key?(:warnings) end |