Skip to content

Commit f220e09

Browse files
committed
fix(client): fix
1 parent ed2e3fc commit f220e09

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

volcengine-java-sdk-core/src/main/java/com/volcengine/ApiClient.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,26 @@ public ApiClient setCustomBootstrapRegion(Set<String> customBootstrapRegion) {
590590
return this;
591591
}
592592

593+
/**
594+
* Get the use dual stack flag.
595+
*
596+
* @return use dual stack flag
597+
*/
598+
public Boolean getUseDualStack() {
599+
return this.useDualStack;
600+
}
601+
602+
/**
603+
* Set the use dual stack flag.
604+
*
605+
* @param useDualStack boolean
606+
* @return Api client
607+
*/
608+
public ApiClient setUseDualStack(boolean useDualStack) {
609+
this.useDualStack = useDualStack;
610+
return this;
611+
}
612+
593613
/**
594614
* Get the http proxy.
595615
*

0 commit comments

Comments
 (0)