Class GoogleCloudMetastoreV2AlterTablePropertiesRequest
Request message for DataprocMetastore.AlterTableProperties.
Implements
Inherited Members
Namespace: Google.Apis.DataprocMetastore.v2.Data
Assembly: Google.Apis.DataprocMetastore.v2.dll
Syntax
public class GoogleCloudMetastoreV2AlterTablePropertiesRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Properties
A map that describes the desired values to mutate. If update_mask is empty, the properties will not update. Otherwise, the properties only alters the value whose associated paths exist in the update mask
Declaration
[JsonProperty("properties")]
public virtual IDictionary<string, string> Properties { get; set; }
Property Value
| Type | Description |
|---|---|
| IDictionary<string, string> |
TableName
Required. The name of the table containing the properties you're altering in the following format.databases/{database_id}/tables/{table_id}
Declaration
[JsonProperty("tableName")]
public virtual string TableName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
UpdateMask
A field mask that specifies the metadata table properties that are overwritten by the update. Fields specified in the update_mask are relative to the resource (not to the full request). A field is overwritten if it is in the mask.For example, given the target properties: properties { a: 1 b: 2 } And an update properties: properties { a: 2 b: 3 c: 4 } then if the field mask is:paths: "properties.b", "properties.c"then the result will be: properties { a: 1 b: 3 c: 4 }
Declaration
[JsonProperty("updateMask")]
public virtual object UpdateMask { get; set; }
Property Value
| Type | Description |
|---|---|
| object |