-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf22078
commit bc7bd82
Showing
11 changed files
with
77 additions
and
11 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 was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
33 changes: 33 additions & 0 deletions
33
src/Keycloak.AuthServices.Sdk.Kiota/Keycloak.AuthServices.Sdk.Kiota.csproj
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,33 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<RootNamespace>Keycloak.AuthServices.Sdk.Kiota</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Label="Package"> | ||
<Product>Keycloak.AuthServices.Sdk.Kiota</Product> | ||
<Description>Keycloak HTTP Admin API SDK</Description> | ||
<PackageTags>Keycloak;SDK;HttpClient;KeycloakAdminAPI</PackageTags> | ||
<MinVerSkip>true</MinVerSkip> | ||
<Version>24.0.1</Version> | ||
</PropertyGroup> | ||
|
||
|
||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Keycloak.AuthServices.Common\Keycloak.AuthServices.Common.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Http"/> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" /> | ||
<PackageReference Include="Microsoft.Kiota.Abstractions" /> | ||
<PackageReference Include="Microsoft.Kiota.Authentication.Azure" /> | ||
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" /> | ||
<PackageReference Include="Microsoft.Kiota.Serialization.Form" /> | ||
<PackageReference Include="Microsoft.Kiota.Serialization.Json" /> | ||
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" /> | ||
<PackageReference Include="Microsoft.Kiota.Serialization.Text" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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,14 @@ | ||
# Keycloak.AuthServices.Sdk.Kiota | ||
|
||
## Generate Client | ||
|
||
```bash | ||
export KEYCLOAK_API_VERSION=24.0.1 | ||
kiota generate -l CSharp \ | ||
--log-level trace \ | ||
--output ./ \ | ||
--namespace-name Keycloak.AuthServices.Sdk.Kiota.Admin \ | ||
--class-name KeycloakAdminApiClient \ | ||
--exclude-backward-compatible \ | ||
--openapi https://www.keycloak.org/docs-api/$KEYCLOAK_API_VERSION/rest-api/openapi.json | ||
``` |
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
6 changes: 0 additions & 6 deletions
6
tests/Keycloak.AuthServices.IntegrationTests/Keycloak.AuthServices.IntegrationTests.csproj
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