@@ -31,13 +31,6 @@ public Destinations(HTTPClient defaultClient, HTTPClient securityClient, String
3131 this ._genVersion = genVersion ;
3232 }
3333
34- /**
35- * Create a destination
36- * Creates a destination given a name, workspace id, and a json blob containing the configuration for the source.
37- * @param request the request object containing all of the parameters for the API call
38- * @return the response from the API call
39- * @throws Exception if the API call fails
40- */
4134 public com .airbyte .api .models .operations .CreateDestinationResponse createDestination (com .airbyte .api .models .shared .DestinationCreateRequest request ) throws Exception {
4235 String baseUrl = this ._serverUrl ;
4336 String url = com .airbyte .api .utils .Utils .generateURL (baseUrl , "/destinations" );
@@ -74,12 +67,6 @@ else if (httpRes.statusCode() == 400 || httpRes.statusCode() == 403 || httpRes.s
7467 return res ;
7568 }
7669
77- /**
78- * Delete a Destination
79- * @param request the request object containing all of the parameters for the API call
80- * @return the response from the API call
81- * @throws Exception if the API call fails
82- */
8370 public com .airbyte .api .models .operations .DeleteDestinationResponse deleteDestination (com .airbyte .api .models .operations .DeleteDestinationRequest request ) throws Exception {
8471 String baseUrl = this ._serverUrl ;
8572 String url = com .airbyte .api .utils .Utils .generateURL (com .airbyte .api .models .operations .DeleteDestinationRequest .class , baseUrl , "/destinations/{destinationId}" , request , null );
@@ -106,12 +93,6 @@ public com.airbyte.api.models.operations.DeleteDestinationResponse deleteDestina
10693 return res ;
10794 }
10895
109- /**
110- * Get Destination details
111- * @param request the request object containing all of the parameters for the API call
112- * @return the response from the API call
113- * @throws Exception if the API call fails
114- */
11596 public com .airbyte .api .models .operations .GetDestinationResponse getDestination (com .airbyte .api .models .operations .GetDestinationRequest request ) throws Exception {
11697 String baseUrl = this ._serverUrl ;
11798 String url = com .airbyte .api .utils .Utils .generateURL (com .airbyte .api .models .operations .GetDestinationRequest .class , baseUrl , "/destinations/{destinationId}" , request , null );
@@ -146,12 +127,6 @@ else if (httpRes.statusCode() == 403 || httpRes.statusCode() == 404) {
146127 return res ;
147128 }
148129
149- /**
150- * List destinations
151- * @param request the request object containing all of the parameters for the API call
152- * @return the response from the API call
153- * @throws Exception if the API call fails
154- */
155130 public com .airbyte .api .models .operations .ListDestinationsResponse listDestinations (com .airbyte .api .models .operations .ListDestinationsRequest request ) throws Exception {
156131 String baseUrl = this ._serverUrl ;
157132 String url = com .airbyte .api .utils .Utils .generateURL (baseUrl , "/destinations" );
0 commit comments