Skip to content

Commit

Permalink
11.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SupportSDM committed Dec 18, 2024
1 parent a3dec22 commit 910907d
Show file tree
Hide file tree
Showing 5 changed files with 751 additions and 637 deletions.
2 changes: 2 additions & 0 deletions com/strongdm/api/ActivityVerb.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ public final class ActivityVerb {
public static final String WORKFLOW_NAME_UPDATED = "workflow name updated";
public static final String WORKFLOW_DESCRIPTION_UPDATED = "workflow description updated";
public static final String WORKFLOW_REQUIRES_REASON_UPDATED = "workflow requires reason updated";
public static final String WORKFLOW_SETTINGS_UPDATED = "workflow settings updated";
public static final String WORKFLOW_ACCESS_RULES_UPDATED = "workflow access rules updated";
public static final String WORKFLOW_ACCESS_RULES_DELETED = "workflow access rules deleted";
public static final String WORKFLOW_ACCESS_RULES_CREATED = "workflow access rules created";
Expand Down Expand Up @@ -257,5 +258,6 @@ public final class ActivityVerb {
public static final String MANAGED_SECRET_UPDATED = "managed secret updated";
public static final String MANAGED_SECRET_EXPIRATION_TIME_UPDATED =
"managed secret expiration time updated";
public static final String MANAGED_SECRET_CONFIG_UPDATED = "managed secret config updated";
public static final String MANAGED_SECRET_DELETED = "managed secret deleted";
}
16 changes: 16 additions & 0 deletions com/strongdm/api/RDPCert.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,22 @@ public void setIdentitySetId(String in) {
this.identitySetId = in;
}

private boolean lockRequired;
/**
* When set, require a resource lock to access the resource to ensure it can only be used by one
* user at a time.
*/
public boolean getLockRequired() {
return this.lockRequired;
}
/**
* When set, require a resource lock to access the resource to ensure it can only be used by one
* user at a time.
*/
public void setLockRequired(boolean in) {
this.lockRequired = in;
}

private String name;
/** Unique human-readable name of the Resource. */
public String getName() {
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/11.20.0";
private static final String USER_AGENT = "strongdm-sdk-java/11.21.0";

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

0 comments on commit 910907d

Please sign in to comment.