-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaddConnectionFromSourceToWarehouseV1Output.ts
48 lines (42 loc) · 1.77 KB
/
addConnectionFromSourceToWarehouseV1Output.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* Segment Public API
* The Segment Public API helps you manage your Segment Workspaces and its resources. You can use the API to perform CRUD (create, read, update, delete) operations at no extra charge. This includes working with resources such as Sources, Destinations, Warehouses, Tracking Plans, and the Segment Destinations and Sources Catalogs. All CRUD endpoints in the API follow REST conventions and use standard HTTP methods. Different URL endpoints represent different resources in a Workspace. See the next sections for more information on how to use the Segment Public API.
*
* The version of the OpenAPI document: 58.2.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { RequestFile } from './models';
/**
* Response indicating whether the connection was successful.
*/
export class AddConnectionFromSourceToWarehouseV1Output {
/**
* The status of the connection between the Source and Warehouse.
*/
'status': AddConnectionFromSourceToWarehouseV1Output.StatusEnum;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}> = [
{
name: 'status',
baseName: 'status',
type: 'AddConnectionFromSourceToWarehouseV1Output.StatusEnum',
},
];
static getAttributeTypeMap() {
return AddConnectionFromSourceToWarehouseV1Output.attributeTypeMap;
}
}
export namespace AddConnectionFromSourceToWarehouseV1Output {
export enum StatusEnum {
CONNECTED = <any>'CONNECTED',
NOT_CONNECTED = <any>'NOT_CONNECTED',
}
}