Skip to content

Commit bf00188

Browse files
committed
14.23.0
1 parent 8097eb9 commit bf00188

File tree

6 files changed

+2010
-1695
lines changed

6 files changed

+2010
-1695
lines changed

com/strongdm/api/HTTPAuth.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,16 @@ public void setName(String in) {
124124
this.name = in;
125125
}
126126

127+
private int portOverride;
128+
/** The local port used by clients to connect to this resource. */
129+
public int getPortOverride() {
130+
return this.portOverride;
131+
}
132+
/** The local port used by clients to connect to this resource. */
133+
public void setPortOverride(int in) {
134+
this.portOverride = in;
135+
}
136+
127137
private String proxyClusterId;
128138
/** ID of the proxy cluster for this resource, if any. */
129139
public String getProxyClusterId() {

com/strongdm/api/HTTPBasicAuth.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,16 @@ public void setPassword(String in) {
124124
this.password = in;
125125
}
126126

127+
private int portOverride;
128+
/** The local port used by clients to connect to this resource. */
129+
public int getPortOverride() {
130+
return this.portOverride;
131+
}
132+
/** The local port used by clients to connect to this resource. */
133+
public void setPortOverride(int in) {
134+
this.portOverride = in;
135+
}
136+
127137
private String proxyClusterId;
128138
/** ID of the proxy cluster for this resource, if any. */
129139
public String getProxyClusterId() {

com/strongdm/api/HTTPNoAuth.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,16 @@ public void setName(String in) {
114114
this.name = in;
115115
}
116116

117+
private int portOverride;
118+
/** The local port used by clients to connect to this resource. */
119+
public int getPortOverride() {
120+
return this.portOverride;
121+
}
122+
/** The local port used by clients to connect to this resource. */
123+
public void setPortOverride(int in) {
124+
this.portOverride = in;
125+
}
126+
117127
private String proxyClusterId;
118128
/** ID of the proxy cluster for this resource, if any. */
119129
public String getProxyClusterId() {

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

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

0 commit comments

Comments
 (0)