-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from kdubb/task/api_1.15
Update sys backend to include 1.15 options & add support for managing plugins
- Loading branch information
Showing
32 changed files
with
1,159 additions
and
37 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
14 changes: 14 additions & 0 deletions
14
model/src/main/java/io/quarkus/vault/runtime/client/dto/sys/VaultListAllPluginsData.java
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 @@ | ||
package io.quarkus.vault.runtime.client.dto.sys; | ||
|
||
import java.util.List; | ||
|
||
public class VaultListAllPluginsData { | ||
|
||
public List<String> auth; | ||
|
||
public List<String> secret; | ||
|
||
public List<String> database; | ||
public List<VaultPluginDetailsData> detailed; | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
model/src/main/java/io/quarkus/vault/runtime/client/dto/sys/VaultListAllPluginsResult.java
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,6 @@ | ||
package io.quarkus.vault.runtime.client.dto.sys; | ||
|
||
import io.quarkus.vault.runtime.client.dto.AbstractVaultDTO; | ||
|
||
public class VaultListAllPluginsResult extends AbstractVaultDTO<VaultListAllPluginsData, Object> { | ||
} |
9 changes: 9 additions & 0 deletions
9
model/src/main/java/io/quarkus/vault/runtime/client/dto/sys/VaultListPluginsData.java
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,9 @@ | ||
package io.quarkus.vault.runtime.client.dto.sys; | ||
|
||
import java.util.List; | ||
|
||
public class VaultListPluginsData { | ||
|
||
public List<String> keys; | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
model/src/main/java/io/quarkus/vault/runtime/client/dto/sys/VaultListPluginsResult.java
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,6 @@ | ||
package io.quarkus.vault.runtime.client.dto.sys; | ||
|
||
import io.quarkus.vault.runtime.client.dto.AbstractVaultDTO; | ||
|
||
public class VaultListPluginsResult extends AbstractVaultDTO<VaultListPluginsData, Object> { | ||
} |
Oops, something went wrong.