Skip to content

Commit 4d50a90

Browse files
committed
17.5.0
1 parent 646e88a commit 4d50a90

4 files changed

Lines changed: 631 additions & 426 deletions

File tree

com/strongdm/api/SQLServerKerberosAD.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,16 @@ public void setOverrideDatabase(boolean in) {
190190
this.overrideDatabase = in;
191191
}
192192

193+
private String password;
194+
/** The password to authenticate with. */
195+
public String getPassword() {
196+
return this.password;
197+
}
198+
/** The password to authenticate with. */
199+
public void setPassword(String in) {
200+
this.password = in;
201+
}
202+
193203
private int port;
194204
/** The port to dial to initiate a connection from the egress node to this resource. */
195205
public int getPort() {

com/strongdm/api/SigningCallCredential.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class SigningCallCredential extends CallCredentials {
2323
private final String apiAccessKey;
2424
private final String signature;
2525
private static final String API_VERSION = "2025-04-14";
26-
private static final String USER_AGENT = "strongdm-sdk-java/17.4.0";
26+
private static final String USER_AGENT = "strongdm-sdk-java/17.5.0";
2727

2828
protected SigningCallCredential(String apiAccessKey, String signature) {
2929
this.apiAccessKey = apiAccessKey;

0 commit comments

Comments
 (0)