Show / Hide Table of Contents

Class GoogleCloudRetailLoggingImportErrorContext

The error payload that is populated on LRO import APIs. Including: "google.cloud.retail.v2.ProductService.ImportProducts" "google.cloud.retail.v2.EventService.ImportUserEvents"

Inheritance
System.Object
GoogleCloudRetailLoggingImportErrorContext
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudRetail.v2.Data
Assembly: Google.Apis.CloudRetail.v2.dll
Syntax
public class GoogleCloudRetailLoggingImportErrorContext : IDirectResponseSchema

Properties

CatalogItem

The detailed content which caused the error on importing a catalog item.

Declaration
[JsonProperty("catalogItem")]
public virtual string CatalogItem { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GcsPath

Cloud Storage file path of the import source. Can be set for batch operation error.

Declaration
[JsonProperty("gcsPath")]
public virtual string GcsPath { get; set; }
Property Value
Type Description
System.String

LineNumber

Line number of the content in file. Should be empty for permission or batch operation error.

Declaration
[JsonProperty("lineNumber")]
public virtual string LineNumber { get; set; }
Property Value
Type Description
System.String

OperationName

The operation resource name of the LRO.

Declaration
[JsonProperty("operationName")]
public virtual string OperationName { get; set; }
Property Value
Type Description
System.String

Product

The detailed content which caused the error on importing a product.

Declaration
[JsonProperty("product")]
public virtual string Product { get; set; }
Property Value
Type Description
System.String

UserEvent

The detailed content which caused the error on importing a user event.

Declaration
[JsonProperty("userEvent")]
public virtual string UserEvent { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top