Module Values.UpdateConfiguredTableInputSource

Updates a configured table.

Sourcetype nonrec t = {
  1. configuredTableIdentifier : ConfiguredTableIdentifier.t;
    (*

    The identifier for the configured table to update. Currently accepts the configured table ID.

    *)
  2. name : DisplayName.t option;
    (*

    A new name for the configured table.

    *)
  3. description : TableDescription.t option;
    (*

    A new description for the configured table.

    *)
  4. tableReference : TableReference.t option;
  5. allowedColumns : AllowedColumnList.t option;
    (*

    The columns of the underlying table that can be used by collaborations or analysis rules.

    *)
  6. analysisMethod : AnalysisMethod.t option;
    (*

    The analysis method for the configured table. DIRECT_QUERY allows SQL queries to be run directly on this table. DIRECT_JOB allows PySpark jobs to be run directly on this table. MULTIPLE allows both SQL queries and PySpark jobs to be run directly on this table.

    *)
  7. selectedAnalysisMethods : SelectedAnalysisMethods.t option;
    (*

    The selected analysis methods for the table configuration update.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?tableReference:??? -> ?allowedColumns:??? -> ?analysisMethod:??? -> ?selectedAnalysisMethods:??? -> configuredTableIdentifier:ConfiguredTableIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of ColumnName.t ] list | `String of ConfiguredTableIdentifier.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of GlueTableName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t