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
Copy file name to clipboardExpand all lines: csharp/sdk/4.0/methods.cs
+41-4
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
/// SOFTWARE.
22
22
///
23
23
24
-
/// 469 API methods
24
+
/// 471 API methods
25
25
26
26
#nullable enable
27
27
usingSystem;
@@ -733,9 +733,6 @@ public async Task<SdkResponse<EmbedUrlResponse, Exception>> create_sso_embed_url
733
733
/// it to disk, do not pass it to a third party, and only pass it through a secure HTTPS
734
734
/// encrypted transport.
735
735
///
736
-
///
737
-
/// **NOTE**: Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled. Usage of this endpoint is not authorized for Looker Core Standard and Looker Core Enterprise.
@@ -4213,6 +4324,11 @@ public class Project : SdkModel
4213
4324
publicstring?dependency_status{get;set;}=null;
4214
4325
}
4215
4326
4327
+
publicclassProjectCIRun:SdkModel
4328
+
{
4329
+
publicCIRun?run{get;set;}
4330
+
}
4331
+
4216
4332
publicclassProjectError:SdkModel
4217
4333
{
4218
4334
/// <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>
@@ -4499,6 +4615,8 @@ public class Report : SdkModel
4499
4615
publicstring?deleter_user_id{get;set;}=null;
4500
4616
/// <summary>Name of User that deleted the Report. (read-only)</summary>
4501
4617
publicstring?deleter_user_name{get;set;}=null;
4618
+
/// <summary>Count of schedules on the report. (read-only)</summary>
4619
+
publiclong?schedule_count{get;set;}=null;
4502
4620
}
4503
4621
4504
4622
publicclassRepositoryCredential:SdkModel
@@ -6311,9 +6429,11 @@ public class WriteDBConnection : SdkModel
6311
6429
publicstring?username{get;set;}=null;
6312
6430
/// <summary>(Write-Only) Password for server authentication</summary>
6313
6431
publicstring?password{get;set;}=null;
6432
+
/// <summary>Whether the connection uses key-pair for authentication.</summary>
6433
+
publicbool?uses_key_pair_auth{get;set;}=null;
6314
6434
/// <summary>(Write-Only) Base64 encoded Certificate body for server authentication (when appropriate for dialect).</summary>
6315
6435
publicstring?certificate{get;set;}=null;
6316
-
/// <summary>(Write-Only) Certificate keyfile type - .json or .p12</summary>
6436
+
/// <summary>(Write-Only) Certificate keyfile type - .json, .p8 or .p12</summary>
// it to disk, do not pass it to a third party, and only pass it through a secure HTTPS
603
603
// encrypted transport.
604
604
//
605
-
// **NOTE**: Calls to this endpoint require [Embedding](https://cloud.google.com/looker/docs/r/looker-core-feature-embed) to be enabled. Usage of this endpoint is not authorized for Looker Core Standard and Looker Core Enterprise.
0 commit comments