You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// ### Generate Lockfile for All LookML Dependencies
6217
6257
///
6218
6258
/// Git must have been configured, must be in dev mode and deploy permission required
@@ -6738,9 +6778,6 @@ public async Task<SdkResponse<ProjectFile, Exception>> project_file(
6738
6778
6739
6779
/// ### Get All Git Connection Tests
6740
6780
///
6741
-
/// dev mode required.
6742
-
/// - Call `update_session` to select the 'dev' workspace.
6743
-
///
6744
6781
/// Returns a list of tests which can be run against a project's (or the dependency project for the provided remote_url) git connection. Call [Run Git Connection Test](#!/Project/run_git_connection_test) to execute each test in sequence.
6745
6782
///
6746
6783
/// Tests are ordered by increasing specificity. Tests should be run in the order returned because later tests require functionality tested by tests earlier in the test list.
@@ -6869,46 +6906,6 @@ public async Task<SdkResponse<TSuccess, Exception>> tag_ref<TSuccess>(
6869
6906
{"tag_message",tag_message}},body,options);
6870
6907
}
6871
6908
6872
-
/// ### Fetches a CI Run.
6873
-
///
6874
-
/// GET /projects/{project_id}/ci/runs/{run_id} -> ProjectCIRun
6875
-
///
6876
-
/// <returns><c>ProjectCIRun</c> CI Run (application/json)</returns>
Copy file name to clipboardExpand all lines: csharp/sdk/4.0/models.cs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3657,6 +3657,8 @@ public class LookmlModelExploreField : SdkModel
3657
3657
publicbool?suggestable{get;set;}=null;
3658
3658
/// <summary>If available, a list of suggestions for this field. For most fields, a suggest query is a more appropriate way to get an up-to-date list of suggestions. Or use enumerations to list all the possible values. (read-only)</summary>
3659
3659
publicstring[]?suggestions{get;set;}=null;
3660
+
/// <summary>A list of string synonyms (words or phrases) that can be used to help large language models and app developers understand other ways that users may refer to a field. (read-only)</summary>
3661
+
publicstring[]?synonyms{get;set;}=null;
3660
3662
/// <summary>An array of arbitrary string tags provided in the model for this field. (read-only)</summary>
3661
3663
publicstring[]?tags{get;set;}=null;
3662
3664
/// <summary>The LookML type of the field. (read-only)</summary>
@@ -3733,6 +3735,8 @@ public class LookmlModelExploreFieldPeriodOverPeriodParams : SdkModel
3733
3735
/// <summary>The type of calculation for the period_over_period measure. Valid values are: "previous", "difference", "relative_change". (read-only)</summary>
3734
3736
[JsonConverter(typeof(StringEnumConverter))]
3735
3737
publicKind?kind{get;set;}
3738
+
/// <summary>specifies whether to compare the current partially completed period to an equivalent part of the previous period, or to use the entire previous period. (read-only)</summary>
// - Call `update_session` to select the 'dev' workspace.
5186
-
//
5187
5215
// Returns a list of tests which can be run against a project's (or the dependency project for the provided remote_url) git connection. Call [Run Git Connection Test](#!/Project/run_git_connection_test) to execute each test in sequence.
5188
5216
//
5189
5217
// Tests are ordered by increasing specificity. Tests should be run in the order returned because later tests require functionality tested by tests earlier in the test list.
Copy file name to clipboardExpand all lines: go/sdk/v4/models.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2053,6 +2053,7 @@ type LookmlModelExploreField struct {
2053
2053
SuggestExplore*string`json:"suggest_explore,omitempty"`// The name of the explore to base suggest queries from.
2054
2054
Suggestable*bool`json:"suggestable,omitempty"`// Whether or not suggestions are possible for this field.
2055
2055
Suggestions*[]string`json:"suggestions,omitempty"`// If available, a list of suggestions for this field. For most fields, a suggest query is a more appropriate way to get an up-to-date list of suggestions. Or use enumerations to list all the possible values.
2056
+
Synonyms*[]string`json:"synonyms,omitempty"`// A list of string synonyms (words or phrases) that can be used to help large language models and app developers understand other ways that users may refer to a field.
2056
2057
Tags*[]string`json:"tags,omitempty"`// An array of arbitrary string tags provided in the model for this field.
2057
2058
Type*string`json:"type,omitempty"`// The LookML type of the field.
2058
2059
UserAttributeFilterTypes*[]UserAttributeFilterTypes`json:"user_attribute_filter_types,omitempty"`// An array of user attribute types that are allowed to be used in filters on this field. Valid values are: "advanced_filter_string", "advanced_filter_number", "advanced_filter_datetime", "string", "number", "datetime", "relative_url", "yesno", "zipcode".
@@ -2093,6 +2094,7 @@ type LookmlModelExploreFieldPeriodOverPeriodParams struct {
2093
2094
BasedOnTime*string`json:"based_on_time,omitempty"`// Specifies the time dimension that this measure will operate over.
2094
2095
Period*Period`json:"period,omitempty"`// Specifies the time frame for the comparison. Valid values are: "year", "fiscal_year", "quarter", "fiscal_quarter", "month", "week", "date".
2095
2096
Kind*Kind`json:"kind,omitempty"`// The type of calculation for the period_over_period measure. Valid values are: "previous", "difference", "relative_change".
2097
+
ValueToDate*bool`json:"value_to_date,omitempty"`// specifies whether to compare the current partially completed period to an equivalent part of the previous period, or to use the entire previous period.
* POST /projects/{project_id}/ci/run -> CreateCIRunResponse
6397
+
*/
6398
+
@JvmOverloads funcreate_ci_run(
6399
+
project_id:String,
6400
+
body:CreateCIRunRequest,
6401
+
fields:String? = null,
6402
+
): SDKResponse {
6403
+
val path_project_id = encodeParam(project_id)
6404
+
returnthis.post<CreateCIRunResponse>(
6405
+
"/projects/${path_project_id}/ci/run",
6406
+
mapOf("fields" to fields),
6407
+
body,
6408
+
)
6409
+
}
6410
+
6367
6411
/**
6368
6412
* ### Generate Lockfile for All LookML Dependencies
6369
6413
*
@@ -6878,9 +6922,6 @@ class LookerSDK(authSession: AuthSession) : APIMethods(authSession) {
6878
6922
/**
6879
6923
* ### Get All Git Connection Tests
6880
6924
*
6881
-
* dev mode required.
6882
-
* - Call `update_session` to select the 'dev' workspace.
6883
-
*
6884
6925
* Returns a list of tests which can be run against a project's (or the dependency project for the provided remote_url) git connection. Call [Run Git Connection Test](#!/Project/run_git_connection_test) to execute each test in sequence.
6885
6926
*
6886
6927
* Tests are ordered by increasing specificity. Tests should be run in the order returned because later tests require functionality tested by tests earlier in the test list.
@@ -7018,50 +7059,6 @@ class LookerSDK(authSession: AuthSession) : APIMethods(authSession) {
7018
7059
)
7019
7060
}
7020
7061
7021
-
/**
7022
-
* ### Fetches a CI Run.
7023
-
*
7024
-
* @param {String} project_id Project Id
7025
-
* @param {String} run_id Run Id
7026
-
* @param {String} fields Requested fields
7027
-
*
7028
-
* GET /projects/{project_id}/ci/runs/{run_id} -> ProjectCIRun
Copy file name to clipboardExpand all lines: kotlin/src/main/com/looker/sdk/4.0/models.kt
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3816,6 +3816,7 @@ data class LookmlModelExploreError(
3816
3816
* @property suggest_explore The name of the explore to base suggest queries from. (read-only)
3817
3817
* @property suggestable Whether or not suggestions are possible for this field. (read-only)
3818
3818
* @property suggestions If available, a list of suggestions for this field. For most fields, a suggest query is a more appropriate way to get an up-to-date list of suggestions. Or use enumerations to list all the possible values. (read-only)
3819
+
* @property synonyms A list of string synonyms (words or phrases) that can be used to help large language models and app developers understand other ways that users may refer to a field. (read-only)
3819
3820
* @property tags An array of arbitrary string tags provided in the model for this field. (read-only)
3820
3821
* @property type The LookML type of the field. (read-only)
3821
3822
* @property user_attribute_filter_types An array of user attribute types that are allowed to be used in filters on this field. Valid values are: "advanced_filter_string", "advanced_filter_number", "advanced_filter_datetime", "string", "number", "datetime", "relative_url", "yesno", "zipcode". (read-only)
@@ -3876,6 +3877,7 @@ data class LookmlModelExploreField(
@@ -3936,12 +3938,14 @@ data class LookmlModelExploreFieldMeasureFilters(
3936
3938
* @property based_on_time Specifies the time dimension that this measure will operate over. (read-only)
3937
3939
* @property period Specifies the time frame for the comparison. Valid values are: "year", "fiscal_year", "quarter", "fiscal_quarter", "month", "week", "date". (read-only)
3938
3940
* @property kind The type of calculation for the period_over_period measure. Valid values are: "previous", "difference", "relative_change". (read-only)
3941
+
* @property value_to_date specifies whether to compare the current partially completed period to an equivalent part of the previous period, or to use the entire previous period. (read-only)
3939
3942
*/
3940
3943
data classLookmlModelExploreFieldPeriodOverPeriodParams(
0 commit comments