Skip to content

Commit

Permalink
feat: support bearer token credentials request
Browse files Browse the repository at this point in the history
  • Loading branch information
yndu13 committed Jun 21, 2024
1 parent 7b51e4c commit 7618a9e
Show file tree
Hide file tree
Showing 23 changed files with 1,631 additions and 520 deletions.
217 changes: 151 additions & 66 deletions csharp/core/Client.cs

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions csharp/core/Models/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ public class Config : TeaModel {
[Validation(Required=false)]
public string SecurityToken { get; set; }

/// <summary>
/// bearer token
/// </summary>
[NameInMap("bearerToken")]
[Validation(Required=false)]
public string BearerToken { get; set; }

/// <summary>
/// http protocol
/// </summary>
Expand Down
4 changes: 2 additions & 2 deletions csharp/core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly : AssemblyVersion("0.1.8.0")]
[assembly : AssemblyFileVersion("0.1.8.0")]
[assembly : AssemblyVersion("0.1.9.0")]
[assembly : AssemblyFileVersion("0.1.9.0")]
Loading

0 comments on commit 7618a9e

Please sign in to comment.