@@ -499,7 +499,7 @@ AgentEngineOperation processResponseForPrivateCreate(
499499 return JsonSerializable .fromJsonNode (responseNode , AgentEngineOperation .class );
500500 }
501501
502- AgentEngineOperation privateCreate (CreateAgentEngineConfig config ) {
502+ public AgentEngineOperation privateCreate (CreateAgentEngineConfig config ) {
503503 BuiltRequest builtRequest = buildRequestForPrivateCreate (config );
504504
505505 try (ApiResponse response =
@@ -574,7 +574,7 @@ DeleteAgentEngineOperation processResponseForPrivateDelete(
574574 return JsonSerializable .fromJsonNode (responseNode , DeleteAgentEngineOperation .class );
575575 }
576576
577- DeleteAgentEngineOperation privateDelete (
577+ public DeleteAgentEngineOperation privateDelete (
578578 String name , boolean force , DeleteAgentEngineConfig config ) {
579579 BuiltRequest builtRequest = buildRequestForPrivateDelete (name , force , config );
580580
@@ -645,7 +645,7 @@ ReasoningEngine processResponseForPrivateGet(ApiResponse response, GetAgentEngin
645645 return JsonSerializable .fromJsonNode (responseNode , ReasoningEngine .class );
646646 }
647647
648- ReasoningEngine privateGet (String name , GetAgentEngineConfig config ) {
648+ public ReasoningEngine privateGet (String name , GetAgentEngineConfig config ) {
649649 BuiltRequest builtRequest = buildRequestForPrivateGet (name , config );
650650
651651 try (ApiResponse response =
@@ -713,7 +713,7 @@ ListReasoningEnginesResponse processResponseForPrivateList(
713713 return JsonSerializable .fromJsonNode (responseNode , ListReasoningEnginesResponse .class );
714714 }
715715
716- ListReasoningEnginesResponse privateList (ListAgentEngineConfig config ) {
716+ public ListReasoningEnginesResponse privateList (ListAgentEngineConfig config ) {
717717 BuiltRequest builtRequest = buildRequestForPrivateList (config );
718718
719719 try (ApiResponse response =
@@ -785,7 +785,7 @@ AgentEngineOperation processResponseForPrivateGetAgentOperation(
785785 return JsonSerializable .fromJsonNode (responseNode , AgentEngineOperation .class );
786786 }
787787
788- AgentEngineOperation privateGetAgentOperation (
788+ public AgentEngineOperation privateGetAgentOperation (
789789 String operationName , GetAgentEngineOperationConfig config ) {
790790 BuiltRequest builtRequest = buildRequestForPrivateGetAgentOperation (operationName , config );
791791
@@ -857,7 +857,7 @@ QueryReasoningEngineResponse processResponseForPrivateQuery(
857857 return JsonSerializable .fromJsonNode (responseNode , QueryReasoningEngineResponse .class );
858858 }
859859
860- QueryReasoningEngineResponse privateQuery (String name , QueryAgentEngineConfig config ) {
860+ public QueryReasoningEngineResponse privateQuery (String name , QueryAgentEngineConfig config ) {
861861 BuiltRequest builtRequest = buildRequestForPrivateQuery (name , config );
862862
863863 try (ApiResponse response =
@@ -928,7 +928,7 @@ AgentEngineOperation processResponseForPrivateUpdate(
928928 return JsonSerializable .fromJsonNode (responseNode , AgentEngineOperation .class );
929929 }
930930
931- AgentEngineOperation privateUpdate (String name , UpdateAgentEngineConfig config ) {
931+ public AgentEngineOperation privateUpdate (String name , UpdateAgentEngineConfig config ) {
932932 BuiltRequest builtRequest = buildRequestForPrivateUpdate (name , config );
933933
934934 try (ApiResponse response =
0 commit comments