@@ -48,6 +48,7 @@ public com.airbyte.api.models.operations.CreateSourceResponse createSource(com.a
4848 SerializedBody serializedRequestBody = com .airbyte .api .utils .Utils .serializeRequestBody (request , "request" , "json" );
4949 req .setBody (serializedRequestBody );
5050
51+ req .addHeader ("user-agent" , String .format ("speakeasy-sdk/%s %s %s" , this ._language , this ._sdkVersion , this ._genVersion ));
5152
5253 HTTPClient client = this ._securityClient ;
5354
@@ -87,6 +88,7 @@ public com.airbyte.api.models.operations.DeleteSourceResponse deleteSource(com.a
8788 req .setMethod ("DELETE" );
8889 req .setURL (url );
8990
91+ req .addHeader ("user-agent" , String .format ("speakeasy-sdk/%s %s %s" , this ._language , this ._sdkVersion , this ._genVersion ));
9092
9193 HTTPClient client = this ._securityClient ;
9294
@@ -118,6 +120,7 @@ public com.airbyte.api.models.operations.GetSourceResponse getSource(com.airbyte
118120 req .setMethod ("GET" );
119121 req .setURL (url );
120122
123+ req .addHeader ("user-agent" , String .format ("speakeasy-sdk/%s %s %s" , this ._language , this ._sdkVersion , this ._genVersion ));
121124
122125 HTTPClient client = this ._securityClient ;
123126
@@ -167,6 +170,7 @@ public com.airbyte.api.models.operations.InitiateOAuthResponse initiateOAuth(com
167170 }
168171 req .setBody (serializedRequestBody );
169172
173+ req .addHeader ("user-agent" , String .format ("speakeasy-sdk/%s %s %s" , this ._language , this ._sdkVersion , this ._genVersion ));
170174
171175 HTTPClient client = this ._securityClient ;
172176
@@ -198,6 +202,7 @@ public com.airbyte.api.models.operations.ListSourcesResponse listSources(com.air
198202 req .setMethod ("GET" );
199203 req .setURL (url );
200204
205+ req .addHeader ("user-agent" , String .format ("speakeasy-sdk/%s %s %s" , this ._language , this ._sdkVersion , this ._genVersion ));
201206 java .util .List <NameValuePair > queryParams = com .airbyte .api .utils .Utils .getQueryParams (com .airbyte .api .models .operations .ListSourcesRequest .class , request , null );
202207 if (queryParams != null ) {
203208 for (NameValuePair queryParam : queryParams ) {
0 commit comments