Skip to content

Commit 45d8509

Browse files
committed
17.1.0
1 parent b7f6406 commit 45d8509

4 files changed

Lines changed: 842 additions & 427 deletions

File tree

com/strongdm/api/SQLServerKerberosAD.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,32 @@ public void setId(String in) {
104104
this.id = in;
105105
}
106106

107+
private String identityAliasHealthcheckUsername;
108+
/**
109+
* The username to use for healthchecks, when clients otherwise connect with their own identity
110+
* alias username.
111+
*/
112+
public String getIdentityAliasHealthcheckUsername() {
113+
return this.identityAliasHealthcheckUsername;
114+
}
115+
/**
116+
* The username to use for healthchecks, when clients otherwise connect with their own identity
117+
* alias username.
118+
*/
119+
public void setIdentityAliasHealthcheckUsername(String in) {
120+
this.identityAliasHealthcheckUsername = in;
121+
}
122+
123+
private String identitySetId;
124+
/** The ID of the identity set to use for identity connections. */
125+
public String getIdentitySetId() {
126+
return this.identitySetId;
127+
}
128+
/** The ID of the identity set to use for identity connections. */
129+
public void setIdentitySetId(String in) {
130+
this.identitySetId = in;
131+
}
132+
107133
private String keytab;
108134
/**
109135
* The keytab file in base64 format containing an entry with the principal name (username@realm)

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.0.0";
26+
private static final String USER_AGENT = "strongdm-sdk-java/17.1.0";
2727

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

0 commit comments

Comments
 (0)