@@ -987,7 +987,7 @@ public class CreateQueryTask : SdkModel
987987 public StringDictionary < bool > ? can { get ; set ; } = null ;
988988 /// <summary>Id of query to run</summary>
989989 public string query_id { get ; set ; } = "" ;
990- /// <summary>Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "json_bi", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql".</summary>
990+ /// <summary>Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "json_bi", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql", "odc" .</summary>
991991 [ JsonConverter ( typeof ( StringEnumConverter ) ) ]
992992 public ResultFormat result_format { get ; set ; }
993993 /// <summary>Source of query task</summary>
@@ -1658,6 +1658,8 @@ public class DBConnection : SdkModel
16581658 public Snippet [ ] ? snippets { get ; set ; } = null ;
16591659 /// <summary>True if PDTs are enabled on this connection (read-only)</summary>
16601660 public bool ? pdts_enabled { get ; set ; } = null ;
1661+ /// <summary>JDBC driver version name</summary>
1662+ public string ? named_driver_version { get ; set ; } = null ;
16611663 /// <summary>Host name/address of server; or the string 'localhost' in case of a connection over an SSH tunnel.</summary>
16621664 public string ? host { get ; set ; } = null ;
16631665 /// <summary>Port number on server. If the connection is over an SSH tunnel, then the local port associated with the SSH tunnel.</summary>
@@ -1763,6 +1765,8 @@ public class DBConnection : SdkModel
17631765 public bool ? bq_roles_verified { get ; set ; } = null ;
17641766 /// <summary>The name of P4SA service account that is associated with the Looker instance (read-only)</summary>
17651767 public string ? p4sa_name { get ; set ; } = null ;
1768+ /// <summary>Disable query holding for this connection.</summary>
1769+ public bool ? query_holding_disabled { get ; set ; } = null ;
17661770}
17671771
17681772public class DBConnectionBase : SdkModel
@@ -4452,7 +4456,7 @@ public class RepositoryCredential : SdkModel
44524456 public bool ? is_configured { get ; set ; } = null ;
44534457}
44544458
4455- /// Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "json_bi", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql". (Enum defined in CreateQueryTask)
4459+ /// Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "json_bi", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql", "odc" . (Enum defined in CreateQueryTask)
44564460public enum ResultFormat
44574461{
44584462 [ EnumMember ( Value = "inline_json" ) ]
@@ -4478,7 +4482,9 @@ public enum ResultFormat
44784482 [ EnumMember ( Value = "gsxml" ) ]
44794483 gsxml ,
44804484 [ EnumMember ( Value = "sql" ) ]
4481- sql
4485+ sql ,
4486+ [ EnumMember ( Value = "odc" ) ]
4487+ odc
44824488}
44834489
44844490public class ResultMakerFilterables : SdkModel
@@ -5991,7 +5997,7 @@ public class WriteCreateQueryTask : SdkModel
59915997{
59925998 /// <summary>Id of query to run</summary>
59935999 public string query_id { get ; set ; } = "" ;
5994- /// <summary>Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "json_bi", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql".</summary>
6000+ /// <summary>Desired async query result format. Valid values are: "inline_json", "json", "json_detail", "json_fe", "json_bi", "csv", "html", "md", "txt", "xlsx", "gsxml", "sql", "odc" .</summary>
59956001 [ JsonConverter ( typeof ( StringEnumConverter ) ) ]
59966002 public ResultFormat result_format { get ; set ; }
59976003 /// <summary>Source of query task</summary>
@@ -6228,6 +6234,8 @@ public class WriteDBConnection : SdkModel
62286234{
62296235 /// <summary>Name of the connection. Also used as the unique identifier</summary>
62306236 public string ? name { get ; set ; } = null ;
6237+ /// <summary>JDBC driver version name</summary>
6238+ public string ? named_driver_version { get ; set ; } = null ;
62316239 /// <summary>Host name/address of server; or the string 'localhost' in case of a connection over an SSH tunnel.</summary>
62326240 public string ? host { get ; set ; } = null ;
62336241 /// <summary>Port number on server. If the connection is over an SSH tunnel, then the local port associated with the SSH tunnel.</summary>
@@ -6315,6 +6323,8 @@ public class WriteDBConnection : SdkModel
63156323 public string ? bq_storage_project_id { get ; set ; } = null ;
63166324 /// <summary>When true, represents that all project roles have been verified.</summary>
63176325 public bool ? bq_roles_verified { get ; set ; } = null ;
6326+ /// <summary>Disable query holding for this connection.</summary>
6327+ public bool ? query_holding_disabled { get ; set ; } = null ;
63186328}
63196329
63206330/// Dynamic writeable type for DBConnectionOverride removes:
0 commit comments