Skip to content

Commit

Permalink
7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SupportSDM committed Mar 15, 2024
1 parent 40bea0c commit 2a18e5e
Show file tree
Hide file tree
Showing 7 changed files with 3,721 additions and 3,406 deletions.
4 changes: 2 additions & 2 deletions com/strongdm/api/SigningCallCredential.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
class SigningCallCredential extends CallCredentials {
private final String apiAccessKey;
private final String signature;
private static final String API_VERSION = "2021-08-23";
private static final String USER_AGENT = "strongdm-sdk-java/6.9.0";
private static final String API_VERSION = "2024-03-14";
private static final String USER_AGENT = "strongdm-sdk-java/7.0.0";

protected SigningCallCredential(String apiAccessKey, String signature) {
this.apiAccessKey = apiAccessKey;
Expand Down
8 changes: 4 additions & 4 deletions com/strongdm/api/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,21 +88,21 @@ public void setManagedBy(String in) {
}

private String permissionLevel;
/** PermissionLevel is a read only field for the user's permission level e.g. admin, DBA, user. */
/** PermissionLevel is the user's permission level e.g. admin, DBA, user. */
public String getPermissionLevel() {
return this.permissionLevel;
}
/** PermissionLevel is a read only field for the user's permission level e.g. admin, DBA, user. */
/** PermissionLevel is the user's permission level e.g. admin, DBA, user. */
public void setPermissionLevel(String in) {
this.permissionLevel = in;
}

private boolean suspended;
/** The User's suspended state. */
/** Suspended is a read only field for the User's suspended state. */
public boolean getSuspended() {
return this.suspended;
}
/** The User's suspended state. */
/** Suspended is a read only field for the User's suspended state. */
public void setSuspended(boolean in) {
this.suspended = in;
}
Expand Down
Loading

0 comments on commit 2a18e5e

Please sign in to comment.