fix(core): update
This commit is contained in:
258
ts_openapi/api/actionsApi.ts
Normal file
258
ts_openapi/api/actionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
66
ts_openapi/api/apis.ts
Normal file
66
ts_openapi/api/apis.ts
Normal file
@ -0,0 +1,66 @@
|
||||
export * from './actionsApi';
|
||||
import { ActionsApi } from './actionsApi';
|
||||
export * from './certificateActionsApi';
|
||||
import { CertificateActionsApi } from './certificateActionsApi';
|
||||
export * from './certificatesApi';
|
||||
import { CertificatesApi } from './certificatesApi';
|
||||
export * from './datacentersApi';
|
||||
import { DatacentersApi } from './datacentersApi';
|
||||
export * from './firewallActionsApi';
|
||||
import { FirewallActionsApi } from './firewallActionsApi';
|
||||
export * from './firewallsApi';
|
||||
import { FirewallsApi } from './firewallsApi';
|
||||
export * from './floatingIPActionsApi';
|
||||
import { FloatingIPActionsApi } from './floatingIPActionsApi';
|
||||
export * from './floatingIPsApi';
|
||||
import { FloatingIPsApi } from './floatingIPsApi';
|
||||
export * from './iSOsApi';
|
||||
import { ISOsApi } from './iSOsApi';
|
||||
export * from './imageActionsApi';
|
||||
import { ImageActionsApi } from './imageActionsApi';
|
||||
export * from './imagesApi';
|
||||
import { ImagesApi } from './imagesApi';
|
||||
export * from './loadBalancerActionsApi';
|
||||
import { LoadBalancerActionsApi } from './loadBalancerActionsApi';
|
||||
export * from './loadBalancerTypesApi';
|
||||
import { LoadBalancerTypesApi } from './loadBalancerTypesApi';
|
||||
export * from './loadBalancersApi';
|
||||
import { LoadBalancersApi } from './loadBalancersApi';
|
||||
export * from './locationsApi';
|
||||
import { LocationsApi } from './locationsApi';
|
||||
export * from './networkActionsApi';
|
||||
import { NetworkActionsApi } from './networkActionsApi';
|
||||
export * from './networksApi';
|
||||
import { NetworksApi } from './networksApi';
|
||||
export * from './placementGroupsApi';
|
||||
import { PlacementGroupsApi } from './placementGroupsApi';
|
||||
export * from './pricingApi';
|
||||
import { PricingApi } from './pricingApi';
|
||||
export * from './primaryIPActionsApi';
|
||||
import { PrimaryIPActionsApi } from './primaryIPActionsApi';
|
||||
export * from './primaryIPsApi';
|
||||
import { PrimaryIPsApi } from './primaryIPsApi';
|
||||
export * from './sSHKeysApi';
|
||||
import { SSHKeysApi } from './sSHKeysApi';
|
||||
export * from './serverActionsApi';
|
||||
import { ServerActionsApi } from './serverActionsApi';
|
||||
export * from './serverTypesApi';
|
||||
import { ServerTypesApi } from './serverTypesApi';
|
||||
export * from './serversApi';
|
||||
import { ServersApi } from './serversApi';
|
||||
export * from './volumeActionsApi';
|
||||
import { VolumeActionsApi } from './volumeActionsApi';
|
||||
export * from './volumesApi';
|
||||
import { VolumesApi } from './volumesApi';
|
||||
import * as http from 'http';
|
||||
|
||||
export class HttpError extends Error {
|
||||
constructor (public response: http.IncomingMessage, public body: any, public statusCode?: number) {
|
||||
super('HTTP request failed');
|
||||
this.name = 'HttpError';
|
||||
}
|
||||
}
|
||||
|
||||
export { RequestFile } from '../model/models';
|
||||
|
||||
export const APIS = [ActionsApi, CertificateActionsApi, CertificatesApi, DatacentersApi, FirewallActionsApi, FirewallsApi, FloatingIPActionsApi, FloatingIPsApi, ISOsApi, ImageActionsApi, ImagesApi, LoadBalancerActionsApi, LoadBalancerTypesApi, LoadBalancersApi, LocationsApi, NetworkActionsApi, NetworksApi, PlacementGroupsApi, PricingApi, PrimaryIPActionsApi, PrimaryIPsApi, SSHKeysApi, ServerActionsApi, ServerTypesApi, ServersApi, VolumeActionsApi, VolumesApi];
|
501
ts_openapi/api/certificateActionsApi.ts
Normal file
501
ts_openapi/api/certificateActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
471
ts_openapi/api/certificatesApi.ts
Normal file
471
ts_openapi/api/certificatesApi.ts
Normal file
File diff suppressed because one or more lines are too long
253
ts_openapi/api/datacentersApi.ts
Normal file
253
ts_openapi/api/datacentersApi.ts
Normal file
File diff suppressed because one or more lines are too long
654
ts_openapi/api/firewallActionsApi.ts
Normal file
654
ts_openapi/api/firewallActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
466
ts_openapi/api/firewallsApi.ts
Normal file
466
ts_openapi/api/firewallsApi.ts
Normal file
File diff suppressed because one or more lines are too long
727
ts_openapi/api/floatingIPActionsApi.ts
Normal file
727
ts_openapi/api/floatingIPActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
466
ts_openapi/api/floatingIPsApi.ts
Normal file
466
ts_openapi/api/floatingIPsApi.ts
Normal file
File diff suppressed because one or more lines are too long
258
ts_openapi/api/iSOsApi.ts
Normal file
258
ts_openapi/api/iSOsApi.ts
Normal file
File diff suppressed because one or more lines are too long
504
ts_openapi/api/imageActionsApi.ts
Normal file
504
ts_openapi/api/imageActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
422
ts_openapi/api/imagesApi.ts
Normal file
422
ts_openapi/api/imagesApi.ts
Normal file
File diff suppressed because one or more lines are too long
1398
ts_openapi/api/loadBalancerActionsApi.ts
Normal file
1398
ts_openapi/api/loadBalancerActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
248
ts_openapi/api/loadBalancerTypesApi.ts
Normal file
248
ts_openapi/api/loadBalancerTypesApi.ts
Normal file
File diff suppressed because one or more lines are too long
574
ts_openapi/api/loadBalancersApi.ts
Normal file
574
ts_openapi/api/loadBalancersApi.ts
Normal file
File diff suppressed because one or more lines are too long
253
ts_openapi/api/locationsApi.ts
Normal file
253
ts_openapi/api/locationsApi.ts
Normal file
File diff suppressed because one or more lines are too long
878
ts_openapi/api/networkActionsApi.ts
Normal file
878
ts_openapi/api/networkActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
460
ts_openapi/api/networksApi.ts
Normal file
460
ts_openapi/api/networksApi.ts
Normal file
File diff suppressed because one or more lines are too long
471
ts_openapi/api/placementGroupsApi.ts
Normal file
471
ts_openapi/api/placementGroupsApi.ts
Normal file
File diff suppressed because one or more lines are too long
160
ts_openapi/api/pricingApi.ts
Normal file
160
ts_openapi/api/pricingApi.ts
Normal file
File diff suppressed because one or more lines are too long
555
ts_openapi/api/primaryIPActionsApi.ts
Normal file
555
ts_openapi/api/primaryIPActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
471
ts_openapi/api/primaryIPsApi.ts
Normal file
471
ts_openapi/api/primaryIPsApi.ts
Normal file
File diff suppressed because one or more lines are too long
470
ts_openapi/api/sSHKeysApi.ts
Normal file
470
ts_openapi/api/sSHKeysApi.ts
Normal file
File diff suppressed because one or more lines are too long
2122
ts_openapi/api/serverActionsApi.ts
Normal file
2122
ts_openapi/api/serverActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
248
ts_openapi/api/serverTypesApi.ts
Normal file
248
ts_openapi/api/serverTypesApi.ts
Normal file
File diff suppressed because one or more lines are too long
588
ts_openapi/api/serversApi.ts
Normal file
588
ts_openapi/api/serversApi.ts
Normal file
File diff suppressed because one or more lines are too long
726
ts_openapi/api/volumeActionsApi.ts
Normal file
726
ts_openapi/api/volumeActionsApi.ts
Normal file
File diff suppressed because one or more lines are too long
471
ts_openapi/api/volumesApi.ts
Normal file
471
ts_openapi/api/volumesApi.ts
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user