Skip to content

Commit

Permalink
4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SupportSDM committed Sep 8, 2023
1 parent 44eb411 commit ed70695
Show file tree
Hide file tree
Showing 9 changed files with 2,424 additions and 2,402 deletions.
4 changes: 0 additions & 4 deletions com/strongdm/api/AWSConsole.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@

package com.strongdm.api;

/**
* AWSConsole is currently unstable, and its API may change, or it may be removed, without a major
* version bump.
*/
public class AWSConsole implements Resource {
private String bindInterface;
/**
Expand Down
4 changes: 0 additions & 4 deletions com/strongdm/api/AWSConsoleStaticKeyPair.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@

package com.strongdm.api;

/**
* AWSConsoleStaticKeyPair is currently unstable, and its API may change, or it may be removed,
* without a major version bump.
*/
public class AWSConsoleStaticKeyPair implements Resource {
private String accessKey;
/** The Access Key ID to authenticate with. */
Expand Down
6 changes: 5 additions & 1 deletion com/strongdm/api/Activities.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,11 @@ public ActivityGetResponse get(String id) throws RpcException {
}
return Plumbing.convertActivityGetResponseToPorcelain(plumbingResponse);
}
/** List gets a list of Activities matching a given set of criteria. */
/**
* List gets a list of Activities matching a given set of criteria. The 'before' and 'after'
* filters can be used to control the time range of the output activities. If not provided, one
* week of back of activities will be returned.
*/
public Iterable<Activity> list(String filter, Object... args) throws RpcException {
ActivitiesPlumbing.ActivityListRequest.Builder builder =
ActivitiesPlumbing.ActivityListRequest.newBuilder();
Expand Down
16 changes: 16 additions & 0 deletions com/strongdm/api/RDP.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,22 @@ public void setId(String in) {
this.id = 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 = "2021-08-23";
private static final String USER_AGENT = "strongdm-sdk-java/4.4.1";
private static final String USER_AGENT = "strongdm-sdk-java/4.5.0";

protected SigningCallCredential(String apiAccessKey, String signature) {
this.apiAccessKey = apiAccessKey;
Expand Down
4 changes: 0 additions & 4 deletions com/strongdm/api/Snowsight.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@

package com.strongdm.api;

/**
* Snowsight is currently unstable, and its API may change, or it may be removed, without a major
* version bump.
*/
public class Snowsight implements Resource {
private String bindInterface;
/**
Expand Down
12 changes: 12 additions & 0 deletions com/strongdm/api/plumbing/ActivitiesGrpc.java
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ public void get(com.strongdm.api.plumbing.ActivitiesPlumbing.ActivityGetRequest
/**
* <pre>
* List gets a list of Activities matching a given set of criteria.
* The 'before' and 'after' filters can be used to control the time
* range of the output activities. If not provided, one week of back
* of activities will be returned.
* </pre>
*/
public void list(com.strongdm.api.plumbing.ActivitiesPlumbing.ActivityListRequest request,
Expand Down Expand Up @@ -234,6 +237,9 @@ public void get(com.strongdm.api.plumbing.ActivitiesPlumbing.ActivityGetRequest
/**
* <pre>
* List gets a list of Activities matching a given set of criteria.
* The 'before' and 'after' filters can be used to control the time
* range of the output activities. If not provided, one week of back
* of activities will be returned.
* </pre>
*/
public void list(com.strongdm.api.plumbing.ActivitiesPlumbing.ActivityListRequest request,
Expand Down Expand Up @@ -275,6 +281,9 @@ public com.strongdm.api.plumbing.ActivitiesPlumbing.ActivityGetResponse get(com.
/**
* <pre>
* List gets a list of Activities matching a given set of criteria.
* The 'before' and 'after' filters can be used to control the time
* range of the output activities. If not provided, one week of back
* of activities will be returned.
* </pre>
*/
public com.strongdm.api.plumbing.ActivitiesPlumbing.ActivityListResponse list(com.strongdm.api.plumbing.ActivitiesPlumbing.ActivityListRequest request) {
Expand Down Expand Up @@ -316,6 +325,9 @@ public com.google.common.util.concurrent.ListenableFuture<com.strongdm.api.plumb
/**
* <pre>
* List gets a list of Activities matching a given set of criteria.
* The 'before' and 'after' filters can be used to control the time
* range of the output activities. If not provided, one week of back
* of activities will be returned.
* </pre>
*/
public com.google.common.util.concurrent.ListenableFuture<com.strongdm.api.plumbing.ActivitiesPlumbing.ActivityListResponse> list(
Expand Down
Loading

0 comments on commit ed70695

Please sign in to comment.