Skip to content

Commit

Permalink
12.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SupportSDM committed Jan 28, 2025
1 parent 9058f2b commit 73cf600
Show file tree
Hide file tree
Showing 5 changed files with 633 additions and 66 deletions.
14 changes: 14 additions & 0 deletions com/strongdm/api/QueryCapture.java
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,20 @@ public void setPod(String in) {
this.pod = in;
}

private List<String> privilegeGroups;
/**
* The additional impersonation groups, as granted by privilege levels, of a Kubernetes operation.
*/
public List<String> getPrivilegeGroups() {
return this.privilegeGroups;
}
/**
* The additional impersonation groups, as granted by privilege levels, of a Kubernetes operation.
*/
public void setPrivilegeGroups(List<String> in) {
this.privilegeGroups = in;
}

private byte[] requestBody;
/** The HTTP request body of a Kubernetes operation. */
public byte[] getRequestBody() {
Expand Down
2 changes: 1 addition & 1 deletion com/strongdm/api/SigningCallCredential.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class SigningCallCredential extends CallCredentials {
private final String apiAccessKey;
private final String signature;
private static final String API_VERSION = "2024-03-28";
private static final String USER_AGENT = "strongdm-sdk-java/12.8.0";
private static final String USER_AGENT = "strongdm-sdk-java/12.9.0";

protected SigningCallCredential(String apiAccessKey, String signature) {
this.apiAccessKey = apiAccessKey;
Expand Down
Loading

0 comments on commit 73cf600

Please sign in to comment.