Class: Google::Apis::ContentV2_1::DatafeedStatus

Inherits:
Object
  • Object
show all
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, that is, 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.



3915
3916
3917
# File 'lib/google/apis/content_v2_1/classes.rb', line 3915

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)


3857
3858
3859
# File 'lib/google/apis/content_v2_1/classes.rb', line 3857

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)


3862
3863
3864
# File 'lib/google/apis/content_v2_1/classes.rb', line 3862

def datafeed_id
  @datafeed_id
end

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

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



3867
3868
3869
# File 'lib/google/apis/content_v2_1/classes.rb', line 3867

def errors
  @errors
end

#feed_labelString

The feed label status is reported for. Corresponds to the JSON property feedLabel

Returns:

  • (String)


3872
3873
3874
# File 'lib/google/apis/content_v2_1/classes.rb', line 3872

def feed_label
  @feed_label
end

#items_totalFixnum

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

Returns:

  • (Fixnum)


3877
3878
3879
# File 'lib/google/apis/content_v2_1/classes.rb', line 3877

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)


3882
3883
3884
# File 'lib/google/apis/content_v2_1/classes.rb', line 3882

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)


3888
3889
3890
# File 'lib/google/apis/content_v2_1/classes.rb', line 3888

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)


3893
3894
3895
# File 'lib/google/apis/content_v2_1/classes.rb', line 3893

def language
  @language
end

#last_upload_dateString

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

Returns:

  • (String)


3898
3899
3900
# File 'lib/google/apis/content_v2_1/classes.rb', line 3898

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)


3908
3909
3910
# File 'lib/google/apis/content_v2_1/classes.rb', line 3908

def processing_status
  @processing_status
end

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

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



3913
3914
3915
# File 'lib/google/apis/content_v2_1/classes.rb', line 3913

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
# File 'lib/google/apis/content_v2_1/classes.rb', line 3920

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)
  @feed_label = args[:feed_label] if args.key?(:feed_label)
  @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