Class FieldViolation
A message type used to describe a single bad request field.
Implements
Inherited Members
Namespace: Google.Apis.DatabaseMigrationService.v1.Data
Assembly: Google.Apis.DatabaseMigrationService.v1.dll
Syntax
public class FieldViolation : IDirectResponseSchema
Properties
Description
A description of why the request element is bad.
Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Field
A path that leads to a field in the request body. The value will be a sequence of dot-separated identifiers
that identify a protocol buffer field. Consider the following: message CreateContactRequest { message
EmailAddress { enum Type { TYPE_UNSPECIFIED = 0; HOME = 1; WORK = 2; } optional string email = 1; repeated
EmailType type = 2; } string full_name = 1; repeated EmailAddress email_addresses = 2; } In this example, in
proto field could take one of the following values: * full_name for a violation in the full_name value
email_addresses[1].emailfor a violation in theemailfield of the firstemail_addressesmessage *email_addresses[3].type[2]for a violation in the secondtypevalue in the thirdemail_addressesmessage. In JSON, the same values are represented as: *fullNamefor a violation in thefullNamevalue *emailAddresses[1].emailfor a violation in theemailfield of the firstemailAddressesmessage *emailAddresses[3].type[2]for a violation in the secondtypevalue in the thirdemailAddressesmessage.
Declaration
[JsonProperty("field")]
public virtual string Field { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
LocalizedMessage
Provides a localized error message for field-level errors that is safe to return to the API consumer.
Declaration
[JsonProperty("localizedMessage")]
public virtual LocalizedMessage LocalizedMessage { get; set; }
Property Value
| Type | Description |
|---|---|
| LocalizedMessage |
Reason
The reason of the field-level error. This is a constant value that identifies the proximate cause of the
field-level error. It should uniquely identify the type of the FieldViolation within the scope of the
google.rpc.ErrorInfo.domain. This should be at most 63 characters and match a regular expression of
A-Z+[A-Z0-9], which represents UPPER_SNAKE_CASE.
Declaration
[JsonProperty("reason")]
public virtual string Reason { get; set; }
Property Value
| Type | Description |
|---|---|
| string |