getEndpointsByIdConnectionsDescribeWithHttpInfo method
Get schema information for a connection Query parameters: include_fields: Whether to include field information (default: true) schemas: Optional comma-separated schemas to include tables: Optional comma-separated tables to include
Note: This method returns the HTTP Response.
Parameters:
Implementation
Future<Response> getEndpointsByIdConnectionsDescribeWithHttpInfo(String companyId, String connectionId,) async {
// ignore: prefer_const_declarations
final path = r'/companies/{company_id}/endpoints/../connections/{connection_id}/describe'
.replaceAll('{company_id}', companyId)
.replaceAll('{connection_id}', connectionId);
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}