Class: Google::Apis::ContentV2::DatafeedStatus

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DatafeedStatus

Returns a new instance of DatafeedStatus.



2033
2034
2035
# File 'generated/google/apis/content_v2/classes.rb', line 2033

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#countryString

The country for which the status is reported, represented as a CLDR territory code. Corresponds to the JSON property country

Returns:

  • (String)


1980
1981
1982
# File 'generated/google/apis/content_v2/classes.rb', line 1980

def country
  @country
end

#datafeed_idFixnum

The ID of the feed for which the status is reported. Corresponds to the JSON property datafeedId

Returns:

  • (Fixnum)


1985
1986
1987
# File 'generated/google/apis/content_v2/classes.rb', line 1985

def datafeed_id
  @datafeed_id
end

#errorsArray<Google::Apis::ContentV2::DatafeedStatusError>

The list of errors occurring in the feed. Corresponds to the JSON property errors



1990
1991
1992
# File 'generated/google/apis/content_v2/classes.rb', line 1990

def errors
  @errors
end

#items_totalFixnum

The number of items in the feed that were processed. Corresponds to the JSON property itemsTotal

Returns:

  • (Fixnum)


1995
1996
1997
# File 'generated/google/apis/content_v2/classes.rb', line 1995

def items_total
  @items_total
end

#items_validFixnum

The number of items in the feed that were valid. Corresponds to the JSON property itemsValid

Returns:

  • (Fixnum)


2000
2001
2002
# File 'generated/google/apis/content_v2/classes.rb', line 2000

def items_valid
  @items_valid
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "content# datafeedStatus" Corresponds to the JSON property kind

Returns:

  • (String)


2006
2007
2008
# File 'generated/google/apis/content_v2/classes.rb', line 2006

def kind
  @kind
end

#languageString

The two-letter ISO 639-1 language for which the status is reported. Corresponds to the JSON property language

Returns:

  • (String)


2011
2012
2013
# File 'generated/google/apis/content_v2/classes.rb', line 2011

def language
  @language
end

#last_upload_dateString

The last date at which the feed was uploaded. Corresponds to the JSON property lastUploadDate

Returns:

  • (String)


2016
2017
2018
# File 'generated/google/apis/content_v2/classes.rb', line 2016

def last_upload_date
  @last_upload_date
end

#processing_statusString

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 property processingStatus

Returns:

  • (String)


2026
2027
2028
# File 'generated/google/apis/content_v2/classes.rb', line 2026

def processing_status
  @processing_status
end

#warningsArray<Google::Apis::ContentV2::DatafeedStatusError>

The list of errors occurring in the feed. Corresponds to the JSON property warnings



2031
2032
2033
# File 'generated/google/apis/content_v2/classes.rb', line 2031

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
# File 'generated/google/apis/content_v2/classes.rb', line 2038

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