View Source GoogleApi.Metastore.V1.Model.AlterTablePropertiesRequest (google_api_metastore v0.7.0)

Request message for DataprocMetastore.AlterTableProperties.

Attributes

  • properties (type: map(), default: nil) - 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
  • tableName (type: String.t, default: nil) - Required. The name of the table containing the properties you're altering in the following format.databases/{database_id}/tables/{table_id}
  • updateMask (type: String.t, default: nil) - 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 }

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Metastore.V1.Model.AlterTablePropertiesRequest{
  properties: map() | nil,
  tableName: String.t() | nil,
  updateMask: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.