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
/// <param name="user_id">Match user id(s).To create a list of multiple ids, use commas as separators</param>
3148
-
/// <param name="content_metadata_id">Match content metadata id(s).To create a list of multiple ids, use commas as separators</param>
3149
-
/// <param name="dashboard_id">Match dashboard id(s).To create a list of multiple ids, use commas as separators</param>
3150
-
/// <param name="look_id">Match look id(s).To create a list of multiple ids, use commas as separators</param>
3151
-
/// <param name="board_id">Match board id(s).To create a list of multiple ids, use commas as separators</param>
3147
+
/// <param name="user_id">Match user id(s).To create a list of multiple ids, use commas as separators</param>
3148
+
/// <param name="content_metadata_id">Match content metadata id(s).To create a list of multiple ids, use commas as separators</param>
3149
+
/// <param name="dashboard_id">Match dashboard id(s).To create a list of multiple ids, use commas as separators</param>
3150
+
/// <param name="look_id">Match look id(s).To create a list of multiple ids, use commas as separators</param>
3151
+
/// <param name="board_id">Match board id(s).To create a list of multiple ids, use commas as separators</param>
3152
3152
/// <param name="include_board_items">If true, and board_id is provided, returns the content favorites for all items on the board. If false, returns the content favorite for the board itself.</param>
3153
3153
/// <param name="limit">Number of results to return. (used with offset)</param>
3154
3154
/// <param name="offset">Number of results to skip before returning any. (used with limit)</param>
@@ -6218,22 +6218,22 @@ public async Task<SdkResponse<CostEstimate, Exception>> connection_cost_estimate
6218
6218
6219
6219
/// ### Fetches a CI Run.
6220
6220
///
6221
-
/// GET /projects/{project_id}/ci/runs/{run_id} -> ProjectCIRun
6221
+
/// GET /projects/{project_id}/ci/runs/{run_id} -> ProjectRun
6222
6222
///
6223
-
/// <returns><c>ProjectCIRun</c> CI Run (application/json)</returns>
6223
+
/// <returns><c>ProjectRun</c> CI Run (application/json)</returns>
Copy file name to clipboardExpand all lines: csharp/sdk/4.0/models.cs
+72-50Lines changed: 72 additions & 50 deletions
Original file line number
Diff line number
Diff line change
@@ -504,38 +504,6 @@ public class CIGitState : SdkModel
504
504
publicstring?target{get;set;}=null;
505
505
}
506
506
507
-
publicclassCIRun:SdkModel
508
-
{
509
-
/// <summary>ID of the CI run (read-only)</summary>
510
-
publicstring?run_id{get;set;}=null;
511
-
/// <summary>Time and date that the CI run was initiated (read-only)</summary>
512
-
publicDateTime?created_at{get;set;}=null;
513
-
/// <summary>Time and date that the CI run began executing (read-only)</summary>
514
-
publicDateTime?started_at{get;set;}=null;
515
-
/// <summary>Time and date that the CI run completed (read-only)</summary>
516
-
publicDateTime?finished_at{get;set;}=null;
517
-
/// <summary>Git provider URL where you can view the commit status. This is the status URL that you specify when you create a CI suite (read-only)</summary>
518
-
publicstring?status_url{get;set;}=null;
519
-
/// <summary>Status of the CI run (unknown, failed, passed, skipped, errored, cancelled, queued, running) (read-only)</summary>
520
-
publicstring?status{get;set;}=null;
521
-
/// <summary>Git service for CI run (e.g. GitHub) (read-only)</summary>
522
-
publicstring?git_service{get;set;}=null;
523
-
publicCIGitState?git_state{get;set;}
524
-
publicCIRunResult?result{get;set;}
525
-
publicCIScheduleTrigger?schedule{get;set;}
526
-
/// <summary>Git branch that the CI run compares against during validation, used for incremental runs (read-only)</summary>
527
-
publicstring?target_branch{get;set;}=null;
528
-
/// <summary>Name of the CI suite (read-only)</summary>
529
-
publicstring?title{get;set;}=null;
530
-
/// <summary>Trigger for CI run (unknown, manual, schedule, change_request) (read-only)</summary>
531
-
publicstring?trigger{get;set;}=null;
532
-
publicCIChangeRequest?change_request{get;set;}
533
-
/// <summary>ID of the CI suite (read-only)</summary>
534
-
publicstring?suite_id{get;set;}=null;
535
-
/// <summary>Username of the user who triggered the CI run, if the CI run was manually triggered (read-only)</summary>
536
-
publicstring?username{get;set;}=null;
537
-
}
538
-
539
507
publicclassCIRunResult:SdkModel
540
508
{
541
509
publicSqlValidatorResult?sql_result{get;set;}
@@ -668,6 +636,9 @@ public class ContentFavorite : SdkModel
668
636
publicDashboardBase?dashboard{get;set;}
669
637
/// <summary>Id of a board (read-only)</summary>
670
638
publicstring?board_id{get;set;}=null;
639
+
/// <summary>Id of a lookml dashboard (read-only)</summary>
640
+
publicstring?lookml_dashboard_id{get;set;}=null;
641
+
publicDashboardBase?lookml_dashboard{get;set;}
671
642
}
672
643
673
644
publicclassContentMeta:SdkModel
@@ -4563,11 +4534,6 @@ public class Project : SdkModel
4563
4534
publicstring?dependency_status{get;set;}=null;
4564
4535
}
4565
4536
4566
-
publicclassProjectCIRun:SdkModel
4567
-
{
4568
-
publicCIRun?run{get;set;}
4569
-
}
4570
-
4571
4537
publicclassProjectError:SdkModel
4572
4538
{
4573
4539
/// <summary>A stable token that uniquely identifies this class of error, ignoring parameter values. Error message text may vary due to parameters or localization, but error codes do not. For example, a "File not found" error will have the same error code regardless of the filename in question or the user's display language (read-only)</summary>
@@ -4617,6 +4583,11 @@ public class ProjectFile : SdkModel
4617
4583
publicGitStatus?git_status{get;set;}
4618
4584
}
4619
4585
4586
+
publicclassProjectRun:SdkModel
4587
+
{
4588
+
publicRun?run{get;set;}
4589
+
}
4590
+
4620
4591
publicclassProjectValidation:SdkModel
4621
4592
{
4622
4593
/// <summary>A list of project errors (read-only)</summary>
@@ -4911,11 +4882,11 @@ public enum ResultFormat
4911
4882
4912
4883
publicclassResultMakerFilterables:SdkModel
4913
4884
{
4914
-
/// <summary>The model this filterable comes from (used for field suggestions). (read-only)</summary>
4885
+
/// <summary>The model this filterable comes from (used for field suggestions).</summary>
4915
4886
publicstring?model{get;set;}=null;
4916
-
/// <summary>The view this filterable comes from (used for field suggestions). (read-only)</summary>
4887
+
/// <summary>The view this filterable comes from (used for field suggestions).</summary>
4917
4888
publicstring?view{get;set;}=null;
4918
-
/// <summary>The name of the filterable thing (Query or Merged Results). (read-only)</summary>
4889
+
/// <summary>The name of the filterable thing (Query or Merged Results).</summary>
4919
4890
publicstring?name{get;set;}=null;
4920
4891
/// <summary>array of dashboard_filter_name: and field: objects. (read-only)</summary>
@@ -4994,6 +4965,38 @@ public class RoleSearch : SdkModel
4994
4965
publicstring?users_url{get;set;}=null;
4995
4966
}
4996
4967
4968
+
publicclassRun:SdkModel
4969
+
{
4970
+
/// <summary>ID of the CI run (read-only)</summary>
4971
+
publicstring?run_id{get;set;}=null;
4972
+
/// <summary>Time and date that the CI run was initiated (read-only)</summary>
4973
+
publicDateTime?created_at{get;set;}=null;
4974
+
/// <summary>Time and date that the CI run began executing (read-only)</summary>
4975
+
publicDateTime?started_at{get;set;}=null;
4976
+
/// <summary>Time and date that the CI run completed (read-only)</summary>
4977
+
publicDateTime?finished_at{get;set;}=null;
4978
+
/// <summary>Git provider URL where you can view the commit status. This is the status URL that you specify when you create a CI suite (read-only)</summary>
4979
+
publicstring?status_url{get;set;}=null;
4980
+
/// <summary>Status of the CI run (unknown, failed, passed, skipped, errored, cancelled, queued, running) (read-only)</summary>
4981
+
publicstring?status{get;set;}=null;
4982
+
/// <summary>Git service for CI run (e.g. GitHub) (read-only)</summary>
4983
+
publicstring?git_service{get;set;}=null;
4984
+
publicCIGitState?git_state{get;set;}
4985
+
publicCIRunResult?result{get;set;}
4986
+
publicCIScheduleTrigger?schedule{get;set;}
4987
+
/// <summary>Git branch that the CI run compares against during validation, used for incremental runs (read-only)</summary>
4988
+
publicstring?target_branch{get;set;}=null;
4989
+
/// <summary>Name of the CI suite (read-only)</summary>
4990
+
publicstring?title{get;set;}=null;
4991
+
/// <summary>Trigger for CI run (unknown, manual, schedule, change_request) (read-only)</summary>
4992
+
publicstring?trigger{get;set;}=null;
4993
+
publicCIChangeRequest?change_request{get;set;}
4994
+
/// <summary>ID of the CI suite (read-only)</summary>
4995
+
publicstring?suite_id{get;set;}=null;
4996
+
/// <summary>Username of the user who triggered the CI run, if the CI run was manually triggered (read-only)</summary>
4997
+
publicstring?username{get;set;}=null;
4998
+
}
4999
+
4997
5000
publicclassRunningQueries:SdkModel
4998
5001
{
4999
5002
/// <summary>Operations the current user is able to perform on this object (read-only)</summary>
@@ -6420,7 +6423,7 @@ public class WriteColorCollection : SdkModel
6420
6423
}
6421
6424
6422
6425
/// Dynamic writeable type for ContentFavorite removes:
0 commit comments