-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: 🐝 Update SDK - 1 - Generate (#36)
* ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.293.0 * Update project file to version 0.8.0 --------- Co-authored-by: speakeasybot <[email protected]> Co-authored-by: GitHub Actions <[email protected]>
- Loading branch information
1 parent
56e5fb2
commit 9d019a4
Showing
14 changed files
with
611 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
Styra/Opa/OpenApi/Models/Requests/ExecuteDefaultPolicyWithInputRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost when | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
#nullable enable | ||
namespace Styra.Opa.OpenApi.Models.Requests | ||
{ | ||
using Styra.Opa.OpenApi.Models.Components; | ||
using Styra.Opa.OpenApi.Utils; | ||
|
||
public class ExecuteDefaultPolicyWithInputRequest | ||
{ | ||
|
||
/// <summary> | ||
/// The input document | ||
/// </summary> | ||
[SpeakeasyMetadata("request:mediaType=application/json")] | ||
public Input Input { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// If parameter is `true`, response will formatted for humans. | ||
/// </summary> | ||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=pretty")] | ||
public bool? Pretty { get; set; } | ||
|
||
/// <summary> | ||
/// Indicates the server should respond with a gzip encoded body. The server will send the compressed response only if its length is above `server.encoding.gzip.min_length` value. See the configuration section | ||
/// </summary> | ||
[SpeakeasyMetadata("header:style=simple,explode=false,name=Accept-Encoding")] | ||
public GzipAcceptEncoding? AcceptEncoding { get; set; } | ||
} | ||
} |
49 changes: 49 additions & 0 deletions
49
Styra/Opa/OpenApi/Models/Requests/ExecuteDefaultPolicyWithInputResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
|
||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost when | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
#nullable enable | ||
namespace Styra.Opa.OpenApi.Models.Requests | ||
{ | ||
using Styra.Opa.OpenApi.Models.Components; | ||
using Styra.Opa.OpenApi.Utils; | ||
using System.Collections.Generic; | ||
using System.Net.Http; | ||
using System; | ||
|
||
public class ExecuteDefaultPolicyWithInputResponse | ||
{ | ||
|
||
/// <summary> | ||
/// HTTP response content type for this operation | ||
/// </summary> | ||
public string? ContentType { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// HTTP response status code for this operation | ||
/// </summary> | ||
public int StatusCode { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// Raw HTTP response; suitable for custom response parsing | ||
/// </summary> | ||
public HttpResponseMessage RawResponse { get; set; } = default!; | ||
|
||
/// <summary> | ||
/// Success.<br/> | ||
/// | ||
/// <remarks> | ||
/// Evaluating the default policy has the same response behavior as a successful policy evaluation, but with only the result as the response.<br/> | ||
/// | ||
/// </remarks> | ||
/// </summary> | ||
public Result? Result { get; set; } | ||
|
||
public Dictionary<string, List<string>> Headers { get; set; } = default!; | ||
} | ||
} |
Oops, something went wrong.