node-nlp
Version:
Library for NLU (Natural Language Understanding) done in Node.js
131 lines (123 loc) • 4.26 kB
text/typescript
/*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/
import * as msRest from "ms-rest-js";
import * as Models from "botframework-schema";
import * as Mappers from "../models/attachmentsMappers";
import * as Parameters from "../models/parameters";
import { ConnectorClientContext } from "../connectorClientContext";
/** Class representing a Attachments. */
export class Attachments {
private readonly client: ConnectorClientContext;
/**
* Create a Attachments.
* @param {ConnectorClientContext} client Reference to the service client.
*/
constructor(client: ConnectorClientContext) {
this.client = client;
}
/**
* Get AttachmentInfo structure describing the attachment views
* @summary GetAttachmentInfo
* @param attachmentId attachment id
* @param [options] The optional parameters
* @returns Promise<Models.AttachmentsGetAttachmentInfoResponse>
*/
getAttachmentInfo(attachmentId: string, options?: msRest.RequestOptionsBase): Promise<Models.AttachmentsGetAttachmentInfoResponse>;
/**
* @param attachmentId attachment id
* @param callback The callback
*/
getAttachmentInfo(attachmentId: string, callback: msRest.ServiceCallback<Models.AttachmentInfo>): void;
/**
* @param attachmentId attachment id
* @param options The optional parameters
* @param callback The callback
*/
getAttachmentInfo(attachmentId: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AttachmentInfo>): void;
getAttachmentInfo(attachmentId: string, options?: msRest.RequestOptionsBase, callback?: msRest.ServiceCallback<Models.AttachmentInfo>): Promise<Models.AttachmentsGetAttachmentInfoResponse> {
return this.client.sendOperationRequest(
{
attachmentId,
options
},
getAttachmentInfoOperationSpec,
callback) as Promise<Models.AttachmentsGetAttachmentInfoResponse>;
}
/**
* Get the named view as binary content
* @summary GetAttachment
* @param attachmentId attachment id
* @param viewId View id from attachmentInfo
* @param [options] The optional parameters
* @returns Promise<Models.AttachmentsGetAttachmentResponse>
*/
getAttachment(attachmentId: string, viewId: string, options?: msRest.RequestOptionsBase): Promise<Models.AttachmentsGetAttachmentResponse>;
/**
* @param attachmentId attachment id
* @param viewId View id from attachmentInfo
* @param callback The callback
*/
getAttachment(attachmentId: string, viewId: string, callback: msRest.ServiceCallback<void>): void;
/**
* @param attachmentId attachment id
* @param viewId View id from attachmentInfo
* @param options The optional parameters
* @param callback The callback
*/
getAttachment(attachmentId: string, viewId: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void;
getAttachment(attachmentId: string, viewId: string, options?: msRest.RequestOptionsBase, callback?: msRest.ServiceCallback<void>): Promise<Models.AttachmentsGetAttachmentResponse> {
return this.client.sendOperationRequest(
{
attachmentId,
viewId,
options
},
getAttachmentOperationSpec,
callback) as Promise<Models.AttachmentsGetAttachmentResponse>;
}
}
// Operation Specifications
const serializer = new msRest.Serializer(Mappers);
const getAttachmentInfoOperationSpec: msRest.OperationSpec = {
httpMethod: "GET",
path: "v3/attachments/{attachmentId}",
urlParameters: [
Parameters.attachmentId
],
responses: {
200: {
bodyMapper: Mappers.AttachmentInfo
},
default: {
bodyMapper: Mappers.ErrorResponse
}
},
serializer
};
const getAttachmentOperationSpec: msRest.OperationSpec = {
httpMethod: "GET",
path: "v3/attachments/{attachmentId}/views/{viewId}",
urlParameters: [
Parameters.attachmentId,
Parameters.viewId
],
responses: {
200: {
bodyMapper: {
serializedName: "parsedResponse",
type: {
name: "Stream"
}
}
},
301: {},
302: {},
default: {
bodyMapper: Mappers.ErrorResponse
}
},
serializer
};