Skip to content

Commit

Permalink
4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SupportSDM committed Aug 23, 2023
1 parent 1691a2b commit 7b66b59
Show file tree
Hide file tree
Showing 7 changed files with 759 additions and 405 deletions.
1 change: 1 addition & 0 deletions com/strongdm/api/PermissionLevel.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public final class PermissionLevel {
public static final String DATABASE_ADMIN = "database-admin";
public static final String TEAM_LEADER = "multi-team-leader";
public static final String USER = "user";
public static final String READ_ONLY_ADMIN = "read-only-admin";
public static final String RELAY = "relay";
public static final String ADMIN_TOKEN = "admin-token";
public static final String SCIM_TOKEN = "scim-token";
Expand Down
16 changes: 16 additions & 0 deletions com/strongdm/api/SQLServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@
package com.strongdm.api;

public class SQLServer implements Resource {
private boolean allowDeprecatedEncryption;
/**
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS
* 1.0.
*/
public boolean getAllowDeprecatedEncryption() {
return this.allowDeprecatedEncryption;
}
/**
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS
* 1.0.
*/
public void setAllowDeprecatedEncryption(boolean in) {
this.allowDeprecatedEncryption = in;
}

private String bindInterface;
/**
* The bind interface is the IP address to which the port override of a resource is bound (for
Expand Down
16 changes: 16 additions & 0 deletions com/strongdm/api/SQLServerAzureAD.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@
package com.strongdm.api;

public class SQLServerAzureAD implements Resource {
private boolean allowDeprecatedEncryption;
/**
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS
* 1.0.
*/
public boolean getAllowDeprecatedEncryption() {
return this.allowDeprecatedEncryption;
}
/**
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS
* 1.0.
*/
public void setAllowDeprecatedEncryption(boolean in) {
this.allowDeprecatedEncryption = in;
}

private String bindInterface;
/**
* The bind interface is the IP address to which the port override of a resource is bound (for
Expand Down
16 changes: 16 additions & 0 deletions com/strongdm/api/SQLServerKerberosAD.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@
package com.strongdm.api;

public class SQLServerKerberosAD implements Resource {
private boolean allowDeprecatedEncryption;
/**
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS
* 1.0.
*/
public boolean getAllowDeprecatedEncryption() {
return this.allowDeprecatedEncryption;
}
/**
* Whether to allow deprecated encryption protocols to be used for this resource. For example, TLS
* 1.0.
*/
public void setAllowDeprecatedEncryption(boolean in) {
this.allowDeprecatedEncryption = in;
}

private String bindInterface;
/**
* The bind interface is the IP address to which the port override of a resource is bound (for
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.3.3";
private static final String USER_AGENT = "strongdm-sdk-java/4.4.0";

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

0 comments on commit 7b66b59

Please sign in to comment.