Skip to content

Commit 2dd742c

Browse files
authored
feat: generate SDKs for Looker 24.4 (#1450)
Release-As: 24.4.0
1 parent dfab079 commit 2dd742c

File tree

14 files changed

+415
-251
lines changed

14 files changed

+415
-251
lines changed

csharp/rtl/Constants.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public struct Constants
6161

6262
public const string DefaultApiVersion = "4.0";
6363
public const string AgentPrefix = "CS-SDK";
64-
public const string LookerVersion = "24.2";
64+
public const string LookerVersion = "24.4";
6565

6666
public const string Bearer = "Bearer";
6767
public const string LookerAppiId = "x-looker-appid";

csharp/sdk/4.0/models.cs

+23-18
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/// SOFTWARE.
2222
///
2323

24-
/// 339 API models: 256 Spec, 0 Request, 61 Write, 22 Enum
24+
/// 340 API models: 257 Spec, 0 Request, 61 Write, 22 Enum
2525

2626
#nullable enable
2727
using System;
@@ -2608,24 +2608,9 @@ public enum InvestigativeContentType
26082608

26092609
public class JsonBi : SdkModel
26102610
{
2611-
public JsonBiBigQueryMetadata big_query_metadata { get; set; } = null;
2612-
public JsonBiFields fields { get; set; } = null;
2613-
/// <summary>Pivots (read-only)</summary>
2614-
public JsonBiPivots[] pivots { get; set; } = null;
2615-
/// <summary>If the query has subtotals (read-only)</summary>
2616-
public bool has_subtotals { get; set; }
2617-
/// <summary>If the query has totals (read-only)</summary>
2618-
public bool has_totals { get; set; }
2619-
/// <summary>If the query results hit the maximum column limit and additional columns were truncated (read-only)</summary>
2620-
public string columns_truncated { get; set; } = "";
2621-
/// <summary>Filter expression applied to the query results (read-only)</summary>
2622-
public string filter_expression { get; set; } = "";
2623-
/// <summary>Filters applied to the query results (read-only)</summary>
2624-
public StringDictionary<string> filters { get; set; } = null;
2625-
/// <summary>Raw sql query. Null if user does not have permission to view sql (read-only)</summary>
2626-
public string sql { get; set; } = "";
2611+
public JsonBiMetadata metadata { get; set; } = null;
26272612
/// <summary>Json query results (read-only)</summary>
2628-
public string[] data { get; set; } = null;
2613+
public string[] rows { get; set; } = null;
26292614
}
26302615

26312616
public class JsonBiBigQueryMetadata : SdkModel
@@ -2674,6 +2659,26 @@ public class JsonBiFields : SdkModel
26742659
public JsonBiField[] pivots { get; set; } = null;
26752660
}
26762661

2662+
public class JsonBiMetadata : SdkModel
2663+
{
2664+
public JsonBiBigQueryMetadata big_query_metadata { get; set; } = null;
2665+
public JsonBiFields fields { get; set; } = null;
2666+
/// <summary>Pivots (read-only)</summary>
2667+
public JsonBiPivots[] pivots { get; set; } = null;
2668+
/// <summary>If the query has subtotals (read-only)</summary>
2669+
public bool has_subtotals { get; set; }
2670+
/// <summary>If the query has totals (read-only)</summary>
2671+
public bool has_totals { get; set; }
2672+
/// <summary>If the query results hit the maximum column limit and additional columns were truncated (read-only)</summary>
2673+
public string columns_truncated { get; set; } = "";
2674+
/// <summary>Filter expression applied to the query results (read-only)</summary>
2675+
public string filter_expression { get; set; } = "";
2676+
/// <summary>Filters applied to the query results (read-only)</summary>
2677+
public StringDictionary<string> filters { get; set; } = null;
2678+
/// <summary>Raw sql query. Null if user does not have permission to view sql (read-only)</summary>
2679+
public string sql { get; set; } = "";
2680+
}
2681+
26772682
public class JsonBiPivots : SdkModel
26782683
{
26792684
/// <summary>Pivot Column Value (read-only)</summary>

go/sdk/v4/models.go

+15-11
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ SOFTWARE.
2626

2727
/*
2828
29-
405 API models: 256 Spec, 67 Request, 60 Write, 22 Enum
29+
406 API models: 257 Spec, 67 Request, 60 Write, 22 Enum
3030
*/
3131

3232
// NOTE: Do not edit this file generated by Looker SDK Codegen for API v4
@@ -1468,16 +1468,8 @@ type InvestigativeContentType string
14681468
const InvestigativeContentType_Dashboard InvestigativeContentType = "dashboard"
14691469

14701470
type JsonBi struct {
1471-
BigQueryMetadata JsonBiBigQueryMetadata `json:"big_query_metadata"`
1472-
Fields JsonBiFields `json:"fields"`
1473-
Pivots []JsonBiPivots `json:"pivots"` // Pivots
1474-
HasSubtotals bool `json:"has_subtotals"` // If the query has subtotals
1475-
HasTotals bool `json:"has_totals"` // If the query has totals
1476-
ColumnsTruncated string `json:"columns_truncated"` // If the query results hit the maximum column limit and additional columns were truncated
1477-
FilterExpression string `json:"filter_expression"` // Filter expression applied to the query results
1478-
Filters map[string]interface{} `json:"filters"` // Filters applied to the query results
1479-
Sql string `json:"sql"` // Raw sql query. Null if user does not have permission to view sql
1480-
Data []string `json:"data"` // Json query results
1471+
Metadata JsonBiMetadata `json:"metadata"`
1472+
Rows []string `json:"rows"` // Json query results
14811473
}
14821474

14831475
type JsonBiBigQueryMetadata struct {
@@ -1506,6 +1498,18 @@ type JsonBiFields struct {
15061498
Pivots []JsonBiField `json:"pivots"` // Pivots
15071499
}
15081500

1501+
type JsonBiMetadata struct {
1502+
BigQueryMetadata JsonBiBigQueryMetadata `json:"big_query_metadata"`
1503+
Fields JsonBiFields `json:"fields"`
1504+
Pivots []JsonBiPivots `json:"pivots"` // Pivots
1505+
HasSubtotals bool `json:"has_subtotals"` // If the query has subtotals
1506+
HasTotals bool `json:"has_totals"` // If the query has totals
1507+
ColumnsTruncated string `json:"columns_truncated"` // If the query results hit the maximum column limit and additional columns were truncated
1508+
FilterExpression string `json:"filter_expression"` // Filter expression applied to the query results
1509+
Filters map[string]interface{} `json:"filters"` // Filters applied to the query results
1510+
Sql string `json:"sql"` // Raw sql query. Null if user does not have permission to view sql
1511+
}
1512+
15091513
type JsonBiPivots struct {
15101514
Key string `json:"key"` // Pivot Column Value
15111515
Data map[string]interface{} `json:"data"` // Pivot Data

kotlin/src/main/com/looker/sdk/4.0/models.kt

+28-21
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626

2727
/**
28-
* 339 API models: 256 Spec, 0 Request, 61 Write, 22 Enum
28+
* 340 API models: 257 Spec, 0 Request, 61 Write, 22 Enum
2929
*/
3030

3131
// NOTE: Do not edit this file generated by Looker SDK Codegen for API 4.0
@@ -2745,28 +2745,12 @@ enum class InvestigativeContentType : Serializable {
27452745
}
27462746

27472747
/**
2748-
* @property big_query_metadata
2749-
* @property fields
2750-
* @property pivots Pivots (read-only)
2751-
* @property has_subtotals If the query has subtotals (read-only)
2752-
* @property has_totals If the query has totals (read-only)
2753-
* @property columns_truncated If the query results hit the maximum column limit and additional columns were truncated (read-only)
2754-
* @property filter_expression Filter expression applied to the query results (read-only)
2755-
* @property filters Filters applied to the query results (read-only)
2756-
* @property sql Raw sql query. Null if user does not have permission to view sql (read-only)
2757-
* @property data Json query results (read-only)
2748+
* @property metadata
2749+
* @property rows Json query results (read-only)
27582750
*/
27592751
data class JsonBi(
2760-
var big_query_metadata: JsonBiBigQueryMetadata,
2761-
var fields: JsonBiFields,
2762-
var pivots: Array<JsonBiPivots>,
2763-
var has_subtotals: Boolean,
2764-
var has_totals: Boolean,
2765-
var columns_truncated: String,
2766-
var filter_expression: String,
2767-
var filters: Map<String, Any>,
2768-
var sql: String,
2769-
var data: Array<String>,
2752+
var metadata: JsonBiMetadata,
2753+
var rows: Array<String>,
27702754
) : Serializable
27712755

27722756
/**
@@ -2818,6 +2802,29 @@ data class JsonBiFields(
28182802
var pivots: Array<JsonBiField>,
28192803
) : Serializable
28202804

2805+
/**
2806+
* @property big_query_metadata
2807+
* @property fields
2808+
* @property pivots Pivots (read-only)
2809+
* @property has_subtotals If the query has subtotals (read-only)
2810+
* @property has_totals If the query has totals (read-only)
2811+
* @property columns_truncated If the query results hit the maximum column limit and additional columns were truncated (read-only)
2812+
* @property filter_expression Filter expression applied to the query results (read-only)
2813+
* @property filters Filters applied to the query results (read-only)
2814+
* @property sql Raw sql query. Null if user does not have permission to view sql (read-only)
2815+
*/
2816+
data class JsonBiMetadata(
2817+
var big_query_metadata: JsonBiBigQueryMetadata,
2818+
var fields: JsonBiFields,
2819+
var pivots: Array<JsonBiPivots>,
2820+
var has_subtotals: Boolean,
2821+
var has_totals: Boolean,
2822+
var columns_truncated: String,
2823+
var filter_expression: String,
2824+
var filters: Map<String, Any>,
2825+
var sql: String,
2826+
) : Serializable
2827+
28212828
/**
28222829
* @property key Pivot Column Value (read-only)
28232830
* @property data Pivot Data (read-only)

kotlin/src/main/com/looker/sdk/Constants.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ package com.looker.sdk
2828

2929
const val ENVIRONMENT_PREFIX = "LOOKERSDK"
3030
const val SDK_TAG = "KT-SDK"
31-
const val LOOKER_VERSION = "24.2"
31+
const val LOOKER_VERSION = "24.4"
3232
const val API_VERSION = "4.0"
3333
const val AGENT_TAG = "$SDK_TAG $LOOKER_VERSION"
3434
const val LOOKER_APPID = "x-looker-appid"

packages/sdk/src/4.0/models.ts

+36-32
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626

2727
/**
28-
* 406 API models: 256 Spec, 67 Request, 61 Write, 22 Enum
28+
* 407 API models: 257 Spec, 67 Request, 61 Write, 22 Enum
2929
*/
3030

3131
import type { DelimArray, IDictionary } from '@looker/sdk-rtl';
@@ -4393,40 +4393,11 @@ export enum InvestigativeContentType {
43934393
}
43944394

43954395
export interface IJsonBi {
4396-
big_query_metadata: IJsonBiBigQueryMetadata;
4397-
fields: IJsonBiFields;
4398-
/**
4399-
* Pivots (read-only)
4400-
*/
4401-
pivots: IJsonBiPivots[];
4402-
/**
4403-
* If the query has subtotals (read-only)
4404-
*/
4405-
has_subtotals: boolean;
4406-
/**
4407-
* If the query has totals (read-only)
4408-
*/
4409-
has_totals: boolean;
4410-
/**
4411-
* If the query results hit the maximum column limit and additional columns were truncated (read-only)
4412-
*/
4413-
columns_truncated: string;
4414-
/**
4415-
* Filter expression applied to the query results (read-only)
4416-
*/
4417-
filter_expression: string | null;
4418-
/**
4419-
* Filters applied to the query results (read-only)
4420-
*/
4421-
filters: IDictionary<string>;
4422-
/**
4423-
* Raw sql query. Null if user does not have permission to view sql (read-only)
4424-
*/
4425-
sql: string | null;
4396+
metadata: IJsonBiMetadata;
44264397
/**
44274398
* Json query results (read-only)
44284399
*/
4429-
data: string[];
4400+
rows: string[];
44304401
}
44314402

44324403
export interface IJsonBiBigQueryMetadata {
@@ -4506,6 +4477,39 @@ export interface IJsonBiFields {
45064477
pivots: IJsonBiField[];
45074478
}
45084479

4480+
export interface IJsonBiMetadata {
4481+
big_query_metadata: IJsonBiBigQueryMetadata;
4482+
fields: IJsonBiFields;
4483+
/**
4484+
* Pivots (read-only)
4485+
*/
4486+
pivots: IJsonBiPivots[];
4487+
/**
4488+
* If the query has subtotals (read-only)
4489+
*/
4490+
has_subtotals: boolean;
4491+
/**
4492+
* If the query has totals (read-only)
4493+
*/
4494+
has_totals: boolean;
4495+
/**
4496+
* If the query results hit the maximum column limit and additional columns were truncated (read-only)
4497+
*/
4498+
columns_truncated: string;
4499+
/**
4500+
* Filter expression applied to the query results (read-only)
4501+
*/
4502+
filter_expression: string | null;
4503+
/**
4504+
* Filters applied to the query results (read-only)
4505+
*/
4506+
filters: IDictionary<string>;
4507+
/**
4508+
* Raw sql query. Null if user does not have permission to view sql (read-only)
4509+
*/
4510+
sql: string | null;
4511+
}
4512+
45094513
export interface IJsonBiPivots {
45104514
/**
45114515
* Pivot Column Value (read-only)

packages/sdk/src/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
2525
*/
2626

27-
export const sdkVersion = '24.2';
27+
export const sdkVersion = '24.4';
2828
export const environmentPrefix = 'LOOKERSDK';

0 commit comments

Comments
 (0)