@scaleway/sdk-dedibox 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +191 -0
- package/dist/index.gen.cjs +4 -0
- package/dist/index.gen.d.ts +5 -0
- package/dist/index.gen.js +4 -0
- package/dist/v1/api.gen.cjs +1439 -0
- package/dist/v1/api.gen.d.ts +550 -0
- package/dist/v1/api.gen.js +1439 -0
- package/dist/v1/content.gen.cjs +49 -0
- package/dist/v1/content.gen.d.ts +19 -0
- package/dist/v1/content.gen.js +49 -0
- package/dist/v1/index.gen.cjs +103 -0
- package/dist/v1/index.gen.d.ts +5 -0
- package/dist/v1/index.gen.js +103 -0
- package/dist/v1/marshalling.gen.cjs +1473 -0
- package/dist/v1/marshalling.gen.d.ts +82 -0
- package/dist/v1/marshalling.gen.js +1473 -0
- package/dist/v1/types.gen.d.ts +3020 -0
- package/dist/v1/validation-rules.gen.cjs +626 -0
- package/dist/v1/validation-rules.gen.d.ts +539 -0
- package/dist/v1/validation-rules.gen.js +626 -0
- package/package.json +51 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const BMC_ACCESS_TRANSIENT_STATUSES = [
|
|
4
|
+
"creating",
|
|
5
|
+
"deleting"
|
|
6
|
+
];
|
|
7
|
+
const I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES = ["updating"];
|
|
8
|
+
const RPN_GROUP_MEMBER_TRANSIENT_STATUSES = [
|
|
9
|
+
"creating",
|
|
10
|
+
"deleting"
|
|
11
|
+
];
|
|
12
|
+
const RPN_SAN_TRANSIENT_STATUSES = [
|
|
13
|
+
"creating",
|
|
14
|
+
"deleting"
|
|
15
|
+
];
|
|
16
|
+
const RPN_V2_GROUP_TRANSIENT_STATUSES = [
|
|
17
|
+
"creating",
|
|
18
|
+
"updating",
|
|
19
|
+
"deleting"
|
|
20
|
+
];
|
|
21
|
+
const RPN_V2_MEMBER_TRANSIENT_STATUSES = [
|
|
22
|
+
"creating",
|
|
23
|
+
"updating",
|
|
24
|
+
"deleting"
|
|
25
|
+
];
|
|
26
|
+
const SERVER_INSTALL_TRANSIENT_STATUSES = [
|
|
27
|
+
"booting",
|
|
28
|
+
"setting_up_raid",
|
|
29
|
+
"partitioning",
|
|
30
|
+
"formatting",
|
|
31
|
+
"installing",
|
|
32
|
+
"configuring",
|
|
33
|
+
"configuring_bootloader",
|
|
34
|
+
"rebooting"
|
|
35
|
+
];
|
|
36
|
+
const SERVER_TRANSIENT_STATUSES = [
|
|
37
|
+
"delivering",
|
|
38
|
+
"installing"
|
|
39
|
+
];
|
|
40
|
+
const SERVICE_PROVISIONING_TRANSIENT_STATUSES = ["delivering", "expiring"];
|
|
41
|
+
exports.BMC_ACCESS_TRANSIENT_STATUSES = BMC_ACCESS_TRANSIENT_STATUSES;
|
|
42
|
+
exports.I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES = I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES;
|
|
43
|
+
exports.RPN_GROUP_MEMBER_TRANSIENT_STATUSES = RPN_GROUP_MEMBER_TRANSIENT_STATUSES;
|
|
44
|
+
exports.RPN_SAN_TRANSIENT_STATUSES = RPN_SAN_TRANSIENT_STATUSES;
|
|
45
|
+
exports.RPN_V2_GROUP_TRANSIENT_STATUSES = RPN_V2_GROUP_TRANSIENT_STATUSES;
|
|
46
|
+
exports.RPN_V2_MEMBER_TRANSIENT_STATUSES = RPN_V2_MEMBER_TRANSIENT_STATUSES;
|
|
47
|
+
exports.SERVER_INSTALL_TRANSIENT_STATUSES = SERVER_INSTALL_TRANSIENT_STATUSES;
|
|
48
|
+
exports.SERVER_TRANSIENT_STATUSES = SERVER_TRANSIENT_STATUSES;
|
|
49
|
+
exports.SERVICE_PROVISIONING_TRANSIENT_STATUSES = SERVICE_PROVISIONING_TRANSIENT_STATUSES;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { BMCAccessStatus, IPv6BlockDelegationStatus, RpnGroupMemberStatus, RpnSanStatus, RpnV2GroupStatus, RpnV2MemberStatus, ServerInstallStatus, ServerStatus, ServiceProvisioningStatus } from './types.gen';
|
|
2
|
+
/** Lists transient statutes of the enum {@link BMCAccessStatus}. */
|
|
3
|
+
export declare const BMC_ACCESS_TRANSIENT_STATUSES: BMCAccessStatus[];
|
|
4
|
+
/** Lists transient statutes of the enum {@link IPv6BlockDelegationStatus}. */
|
|
5
|
+
export declare const I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES: IPv6BlockDelegationStatus[];
|
|
6
|
+
/** Lists transient statutes of the enum {@link RpnGroupMemberStatus}. */
|
|
7
|
+
export declare const RPN_GROUP_MEMBER_TRANSIENT_STATUSES: RpnGroupMemberStatus[];
|
|
8
|
+
/** Lists transient statutes of the enum {@link RpnSanStatus}. */
|
|
9
|
+
export declare const RPN_SAN_TRANSIENT_STATUSES: RpnSanStatus[];
|
|
10
|
+
/** Lists transient statutes of the enum {@link RpnV2GroupStatus}. */
|
|
11
|
+
export declare const RPN_V2_GROUP_TRANSIENT_STATUSES: RpnV2GroupStatus[];
|
|
12
|
+
/** Lists transient statutes of the enum {@link RpnV2MemberStatus}. */
|
|
13
|
+
export declare const RPN_V2_MEMBER_TRANSIENT_STATUSES: RpnV2MemberStatus[];
|
|
14
|
+
/** Lists transient statutes of the enum {@link ServerInstallStatus}. */
|
|
15
|
+
export declare const SERVER_INSTALL_TRANSIENT_STATUSES: ServerInstallStatus[];
|
|
16
|
+
/** Lists transient statutes of the enum {@link ServerStatus}. */
|
|
17
|
+
export declare const SERVER_TRANSIENT_STATUSES: ServerStatus[];
|
|
18
|
+
/** Lists transient statutes of the enum {@link ServiceProvisioningStatus}. */
|
|
19
|
+
export declare const SERVICE_PROVISIONING_TRANSIENT_STATUSES: ServiceProvisioningStatus[];
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
const BMC_ACCESS_TRANSIENT_STATUSES = [
|
|
2
|
+
"creating",
|
|
3
|
+
"deleting"
|
|
4
|
+
];
|
|
5
|
+
const I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES = ["updating"];
|
|
6
|
+
const RPN_GROUP_MEMBER_TRANSIENT_STATUSES = [
|
|
7
|
+
"creating",
|
|
8
|
+
"deleting"
|
|
9
|
+
];
|
|
10
|
+
const RPN_SAN_TRANSIENT_STATUSES = [
|
|
11
|
+
"creating",
|
|
12
|
+
"deleting"
|
|
13
|
+
];
|
|
14
|
+
const RPN_V2_GROUP_TRANSIENT_STATUSES = [
|
|
15
|
+
"creating",
|
|
16
|
+
"updating",
|
|
17
|
+
"deleting"
|
|
18
|
+
];
|
|
19
|
+
const RPN_V2_MEMBER_TRANSIENT_STATUSES = [
|
|
20
|
+
"creating",
|
|
21
|
+
"updating",
|
|
22
|
+
"deleting"
|
|
23
|
+
];
|
|
24
|
+
const SERVER_INSTALL_TRANSIENT_STATUSES = [
|
|
25
|
+
"booting",
|
|
26
|
+
"setting_up_raid",
|
|
27
|
+
"partitioning",
|
|
28
|
+
"formatting",
|
|
29
|
+
"installing",
|
|
30
|
+
"configuring",
|
|
31
|
+
"configuring_bootloader",
|
|
32
|
+
"rebooting"
|
|
33
|
+
];
|
|
34
|
+
const SERVER_TRANSIENT_STATUSES = [
|
|
35
|
+
"delivering",
|
|
36
|
+
"installing"
|
|
37
|
+
];
|
|
38
|
+
const SERVICE_PROVISIONING_TRANSIENT_STATUSES = ["delivering", "expiring"];
|
|
39
|
+
export {
|
|
40
|
+
BMC_ACCESS_TRANSIENT_STATUSES,
|
|
41
|
+
I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES,
|
|
42
|
+
RPN_GROUP_MEMBER_TRANSIENT_STATUSES,
|
|
43
|
+
RPN_SAN_TRANSIENT_STATUSES,
|
|
44
|
+
RPN_V2_GROUP_TRANSIENT_STATUSES,
|
|
45
|
+
RPN_V2_MEMBER_TRANSIENT_STATUSES,
|
|
46
|
+
SERVER_INSTALL_TRANSIENT_STATUSES,
|
|
47
|
+
SERVER_TRANSIENT_STATUSES,
|
|
48
|
+
SERVICE_PROVISIONING_TRANSIENT_STATUSES
|
|
49
|
+
};
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const api_gen = require("./api.gen.cjs");
|
|
4
|
+
const content_gen = require("./content.gen.cjs");
|
|
5
|
+
const marshalling_gen = require("./marshalling.gen.cjs");
|
|
6
|
+
const validationRules_gen = require("./validation-rules.gen.cjs");
|
|
7
|
+
exports.API = api_gen.API;
|
|
8
|
+
exports.BillingAPI = api_gen.BillingAPI;
|
|
9
|
+
exports.IPv6BlockAPI = api_gen.IPv6BlockAPI;
|
|
10
|
+
exports.RpnAPI = api_gen.RpnAPI;
|
|
11
|
+
exports.RpnSanAPI = api_gen.RpnSanAPI;
|
|
12
|
+
exports.RpnV1API = api_gen.RpnV1API;
|
|
13
|
+
exports.RpnV2API = api_gen.RpnV2API;
|
|
14
|
+
exports.BMC_ACCESS_TRANSIENT_STATUSES = content_gen.BMC_ACCESS_TRANSIENT_STATUSES;
|
|
15
|
+
exports.I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES = content_gen.I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES;
|
|
16
|
+
exports.RPN_GROUP_MEMBER_TRANSIENT_STATUSES = content_gen.RPN_GROUP_MEMBER_TRANSIENT_STATUSES;
|
|
17
|
+
exports.RPN_SAN_TRANSIENT_STATUSES = content_gen.RPN_SAN_TRANSIENT_STATUSES;
|
|
18
|
+
exports.RPN_V2_GROUP_TRANSIENT_STATUSES = content_gen.RPN_V2_GROUP_TRANSIENT_STATUSES;
|
|
19
|
+
exports.RPN_V2_MEMBER_TRANSIENT_STATUSES = content_gen.RPN_V2_MEMBER_TRANSIENT_STATUSES;
|
|
20
|
+
exports.SERVER_INSTALL_TRANSIENT_STATUSES = content_gen.SERVER_INSTALL_TRANSIENT_STATUSES;
|
|
21
|
+
exports.SERVER_TRANSIENT_STATUSES = content_gen.SERVER_TRANSIENT_STATUSES;
|
|
22
|
+
exports.SERVICE_PROVISIONING_TRANSIENT_STATUSES = content_gen.SERVICE_PROVISIONING_TRANSIENT_STATUSES;
|
|
23
|
+
exports.marshalAttachFailoverIPToMacAddressRequest = marshalling_gen.marshalAttachFailoverIPToMacAddressRequest;
|
|
24
|
+
exports.marshalAttachFailoverIPsRequest = marshalling_gen.marshalAttachFailoverIPsRequest;
|
|
25
|
+
exports.marshalCreateFailoverIPsRequest = marshalling_gen.marshalCreateFailoverIPsRequest;
|
|
26
|
+
exports.marshalCreateServerRequest = marshalling_gen.marshalCreateServerRequest;
|
|
27
|
+
exports.marshalDetachFailoverIPsRequest = marshalling_gen.marshalDetachFailoverIPsRequest;
|
|
28
|
+
exports.marshalIPv6BlockApiCreateIPv6BlockRequest = marshalling_gen.marshalIPv6BlockApiCreateIPv6BlockRequest;
|
|
29
|
+
exports.marshalIPv6BlockApiCreateIPv6BlockSubnetRequest = marshalling_gen.marshalIPv6BlockApiCreateIPv6BlockSubnetRequest;
|
|
30
|
+
exports.marshalIPv6BlockApiUpdateIPv6BlockRequest = marshalling_gen.marshalIPv6BlockApiUpdateIPv6BlockRequest;
|
|
31
|
+
exports.marshalInstallServerRequest = marshalling_gen.marshalInstallServerRequest;
|
|
32
|
+
exports.marshalRpnSanApiAddIpRequest = marshalling_gen.marshalRpnSanApiAddIpRequest;
|
|
33
|
+
exports.marshalRpnSanApiCreateRpnSanRequest = marshalling_gen.marshalRpnSanApiCreateRpnSanRequest;
|
|
34
|
+
exports.marshalRpnSanApiRemoveIpRequest = marshalling_gen.marshalRpnSanApiRemoveIpRequest;
|
|
35
|
+
exports.marshalRpnV1ApiAddRpnGroupMembersRequest = marshalling_gen.marshalRpnV1ApiAddRpnGroupMembersRequest;
|
|
36
|
+
exports.marshalRpnV1ApiCreateRpnGroupRequest = marshalling_gen.marshalRpnV1ApiCreateRpnGroupRequest;
|
|
37
|
+
exports.marshalRpnV1ApiDeleteRpnGroupMembersRequest = marshalling_gen.marshalRpnV1ApiDeleteRpnGroupMembersRequest;
|
|
38
|
+
exports.marshalRpnV1ApiLeaveRpnGroupRequest = marshalling_gen.marshalRpnV1ApiLeaveRpnGroupRequest;
|
|
39
|
+
exports.marshalRpnV1ApiRpnGroupInviteRequest = marshalling_gen.marshalRpnV1ApiRpnGroupInviteRequest;
|
|
40
|
+
exports.marshalRpnV1ApiUpdateRpnGroupNameRequest = marshalling_gen.marshalRpnV1ApiUpdateRpnGroupNameRequest;
|
|
41
|
+
exports.marshalRpnV2ApiAddRpnV2MembersRequest = marshalling_gen.marshalRpnV2ApiAddRpnV2MembersRequest;
|
|
42
|
+
exports.marshalRpnV2ApiCreateRpnV2GroupRequest = marshalling_gen.marshalRpnV2ApiCreateRpnV2GroupRequest;
|
|
43
|
+
exports.marshalRpnV2ApiDeleteRpnV2MembersRequest = marshalling_gen.marshalRpnV2ApiDeleteRpnV2MembersRequest;
|
|
44
|
+
exports.marshalRpnV2ApiEnableRpnV2GroupCompatibilityRequest = marshalling_gen.marshalRpnV2ApiEnableRpnV2GroupCompatibilityRequest;
|
|
45
|
+
exports.marshalRpnV2ApiUpdateRpnV2GroupNameRequest = marshalling_gen.marshalRpnV2ApiUpdateRpnV2GroupNameRequest;
|
|
46
|
+
exports.marshalRpnV2ApiUpdateRpnV2VlanForMembersRequest = marshalling_gen.marshalRpnV2ApiUpdateRpnV2VlanForMembersRequest;
|
|
47
|
+
exports.marshalStartBMCAccessRequest = marshalling_gen.marshalStartBMCAccessRequest;
|
|
48
|
+
exports.marshalStartRescueRequest = marshalling_gen.marshalStartRescueRequest;
|
|
49
|
+
exports.marshalSubscribeServerOptionRequest = marshalling_gen.marshalSubscribeServerOptionRequest;
|
|
50
|
+
exports.marshalSubscribeStorageOptionsRequest = marshalling_gen.marshalSubscribeStorageOptionsRequest;
|
|
51
|
+
exports.marshalUpdateRaidRequest = marshalling_gen.marshalUpdateRaidRequest;
|
|
52
|
+
exports.marshalUpdateReverseRequest = marshalling_gen.marshalUpdateReverseRequest;
|
|
53
|
+
exports.marshalUpdateServerBackupRequest = marshalling_gen.marshalUpdateServerBackupRequest;
|
|
54
|
+
exports.marshalUpdateServerRequest = marshalling_gen.marshalUpdateServerRequest;
|
|
55
|
+
exports.marshalUpdateServerTagsRequest = marshalling_gen.marshalUpdateServerTagsRequest;
|
|
56
|
+
exports.unmarshalBMCAccess = marshalling_gen.unmarshalBMCAccess;
|
|
57
|
+
exports.unmarshalBackup = marshalling_gen.unmarshalBackup;
|
|
58
|
+
exports.unmarshalCanOrderResponse = marshalling_gen.unmarshalCanOrderResponse;
|
|
59
|
+
exports.unmarshalCreateFailoverIPsResponse = marshalling_gen.unmarshalCreateFailoverIPsResponse;
|
|
60
|
+
exports.unmarshalFailoverIP = marshalling_gen.unmarshalFailoverIP;
|
|
61
|
+
exports.unmarshalGetIPv6BlockQuotasResponse = marshalling_gen.unmarshalGetIPv6BlockQuotasResponse;
|
|
62
|
+
exports.unmarshalGetRemainingQuotaResponse = marshalling_gen.unmarshalGetRemainingQuotaResponse;
|
|
63
|
+
exports.unmarshalGetRpnStatusResponse = marshalling_gen.unmarshalGetRpnStatusResponse;
|
|
64
|
+
exports.unmarshalIP = marshalling_gen.unmarshalIP;
|
|
65
|
+
exports.unmarshalIPv6Block = marshalling_gen.unmarshalIPv6Block;
|
|
66
|
+
exports.unmarshalInvoice = marshalling_gen.unmarshalInvoice;
|
|
67
|
+
exports.unmarshalListFailoverIPsResponse = marshalling_gen.unmarshalListFailoverIPsResponse;
|
|
68
|
+
exports.unmarshalListIPv6BlockSubnetsAvailableResponse = marshalling_gen.unmarshalListIPv6BlockSubnetsAvailableResponse;
|
|
69
|
+
exports.unmarshalListInvoicesResponse = marshalling_gen.unmarshalListInvoicesResponse;
|
|
70
|
+
exports.unmarshalListIpsResponse = marshalling_gen.unmarshalListIpsResponse;
|
|
71
|
+
exports.unmarshalListOSResponse = marshalling_gen.unmarshalListOSResponse;
|
|
72
|
+
exports.unmarshalListOffersResponse = marshalling_gen.unmarshalListOffersResponse;
|
|
73
|
+
exports.unmarshalListRefundsResponse = marshalling_gen.unmarshalListRefundsResponse;
|
|
74
|
+
exports.unmarshalListRpnCapableSanServersResponse = marshalling_gen.unmarshalListRpnCapableSanServersResponse;
|
|
75
|
+
exports.unmarshalListRpnCapableServersResponse = marshalling_gen.unmarshalListRpnCapableServersResponse;
|
|
76
|
+
exports.unmarshalListRpnGroupMembersResponse = marshalling_gen.unmarshalListRpnGroupMembersResponse;
|
|
77
|
+
exports.unmarshalListRpnGroupsResponse = marshalling_gen.unmarshalListRpnGroupsResponse;
|
|
78
|
+
exports.unmarshalListRpnInvitesResponse = marshalling_gen.unmarshalListRpnInvitesResponse;
|
|
79
|
+
exports.unmarshalListRpnSansResponse = marshalling_gen.unmarshalListRpnSansResponse;
|
|
80
|
+
exports.unmarshalListRpnServerCapabilitiesResponse = marshalling_gen.unmarshalListRpnServerCapabilitiesResponse;
|
|
81
|
+
exports.unmarshalListRpnV2CapableResourcesResponse = marshalling_gen.unmarshalListRpnV2CapableResourcesResponse;
|
|
82
|
+
exports.unmarshalListRpnV2GroupLogsResponse = marshalling_gen.unmarshalListRpnV2GroupLogsResponse;
|
|
83
|
+
exports.unmarshalListRpnV2GroupsResponse = marshalling_gen.unmarshalListRpnV2GroupsResponse;
|
|
84
|
+
exports.unmarshalListRpnV2MembersResponse = marshalling_gen.unmarshalListRpnV2MembersResponse;
|
|
85
|
+
exports.unmarshalListServerDisksResponse = marshalling_gen.unmarshalListServerDisksResponse;
|
|
86
|
+
exports.unmarshalListServerEventsResponse = marshalling_gen.unmarshalListServerEventsResponse;
|
|
87
|
+
exports.unmarshalListServersResponse = marshalling_gen.unmarshalListServersResponse;
|
|
88
|
+
exports.unmarshalListServicesResponse = marshalling_gen.unmarshalListServicesResponse;
|
|
89
|
+
exports.unmarshalListSubscribableServerOptionsResponse = marshalling_gen.unmarshalListSubscribableServerOptionsResponse;
|
|
90
|
+
exports.unmarshalOS = marshalling_gen.unmarshalOS;
|
|
91
|
+
exports.unmarshalOffer = marshalling_gen.unmarshalOffer;
|
|
92
|
+
exports.unmarshalRaid = marshalling_gen.unmarshalRaid;
|
|
93
|
+
exports.unmarshalRefund = marshalling_gen.unmarshalRefund;
|
|
94
|
+
exports.unmarshalRescue = marshalling_gen.unmarshalRescue;
|
|
95
|
+
exports.unmarshalRpnGroup = marshalling_gen.unmarshalRpnGroup;
|
|
96
|
+
exports.unmarshalRpnSan = marshalling_gen.unmarshalRpnSan;
|
|
97
|
+
exports.unmarshalRpnV2Group = marshalling_gen.unmarshalRpnV2Group;
|
|
98
|
+
exports.unmarshalServer = marshalling_gen.unmarshalServer;
|
|
99
|
+
exports.unmarshalServerDefaultPartitioning = marshalling_gen.unmarshalServerDefaultPartitioning;
|
|
100
|
+
exports.unmarshalServerInstall = marshalling_gen.unmarshalServerInstall;
|
|
101
|
+
exports.unmarshalService = marshalling_gen.unmarshalService;
|
|
102
|
+
exports.unmarshalSubscribeStorageOptionsResponse = marshalling_gen.unmarshalSubscribeStorageOptionsResponse;
|
|
103
|
+
exports.ValidationRules = validationRules_gen;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { API, BillingAPI, IPv6BlockAPI, RpnAPI, RpnSanAPI, RpnV1API, RpnV2API, } from './api.gen';
|
|
2
|
+
export * from './content.gen';
|
|
3
|
+
export * from './marshalling.gen';
|
|
4
|
+
export type { AttachFailoverIPToMacAddressRequest, AttachFailoverIPToMacAddressRequestMacType, AttachFailoverIPsRequest, BMCAccess, BMCAccessStatus, Backup, BackupStatus, BillingApiCanOrderRequest, BillingApiDownloadInvoiceRequest, BillingApiDownloadRefundRequest, BillingApiGetInvoiceRequest, BillingApiGetRefundRequest, BillingApiListInvoicesRequest, BillingApiListRefundsRequest, CPU, CanOrderResponse, CancelServerInstallRequest, CreateFailoverIPsRequest, CreateFailoverIPsResponse, CreateServerRequest, DeleteFailoverIPRequest, DeleteServerRequest, DeleteServiceRequest, DetachFailoverIPFromMacAddressRequest, DetachFailoverIPsRequest, Disk, FailoverBlock, FailoverBlockVersion, FailoverIP, FailoverIPInterfaceType, FailoverIPStatus, FailoverIPVersion, GetBMCAccessRequest, GetFailoverIPRequest, GetIPv6BlockQuotasResponse, GetIPv6BlockQuotasResponseQuota, GetOSRequest, GetOfferRequest, GetOrderedServiceRequest, GetRaidRequest, GetRemainingQuotaRequest, GetRemainingQuotaResponse, GetRescueRequest, GetRpnStatusResponse, GetRpnStatusResponseStatus, GetServerBackupRequest, GetServerDefaultPartitioningRequest, GetServerInstallRequest, GetServerRequest, GetServiceRequest, IP, IPSemantic, IPStatus, IPVersion, IPv6Block, IPv6BlockApiCreateIPv6BlockRequest, IPv6BlockApiCreateIPv6BlockSubnetRequest, IPv6BlockApiDeleteIPv6BlockRequest, IPv6BlockApiGetIPv6BlockQuotasRequest, IPv6BlockApiGetIPv6BlockRequest, IPv6BlockApiListIPv6BlockSubnetsAvailableRequest, IPv6BlockApiUpdateIPv6BlockRequest, IPv6BlockDelegationStatus, InstallPartition, InstallServerRequest, Invoice, InvoicePaymentMethod, InvoiceStatus, InvoiceSummary, ListFailoverIPsRequest, ListFailoverIPsRequestOrderBy, ListFailoverIPsResponse, ListIPv6BlockSubnetsAvailableResponse, ListIPv6BlockSubnetsAvailableResponseSubnet, ListInvoicesRequestOrderBy, ListInvoicesResponse, ListIpsResponse, ListOSRequest, ListOSRequestOrderBy, ListOSResponse, ListOffersRequest, ListOffersRequestOrderBy, ListOffersResponse, ListRefundsRequestOrderBy, ListRefundsResponse, ListRpnCapableSanServersRequestOrderBy, ListRpnCapableSanServersResponse, ListRpnCapableServersRequestOrderBy, ListRpnCapableServersResponse, ListRpnGroupMembersRequestOrderBy, ListRpnGroupMembersResponse, ListRpnGroupsRequestOrderBy, ListRpnGroupsResponse, ListRpnInvitesRequestOrderBy, ListRpnInvitesResponse, ListRpnSansRequestOrderBy, ListRpnSansResponse, ListRpnServerCapabilitiesRequestOrderBy, ListRpnServerCapabilitiesResponse, ListRpnV2CapableResourcesRequestOrderBy, ListRpnV2CapableResourcesResponse, ListRpnV2GroupLogsRequestOrderBy, ListRpnV2GroupLogsResponse, ListRpnV2GroupsRequestOrderBy, ListRpnV2GroupsResponse, ListRpnV2MembersRequestOrderBy, ListRpnV2MembersRequestType, ListRpnV2MembersResponse, ListServerDisksRequest, ListServerDisksRequestOrderBy, ListServerDisksResponse, ListServerEventsRequest, ListServerEventsRequestOrderBy, ListServerEventsResponse, ListServersRequest, ListServersRequestOrderBy, ListServersResponse, ListServicesRequest, ListServicesRequestOrderBy, ListServicesResponse, ListSubscribableServerOptionsRequest, ListSubscribableServerOptionsResponse, Log, LogAction, LogStatus, Memory, MemoryType, NetworkInterface, NetworkInterfaceInterfaceType, OS, OSArch, OSType, Offer, OfferAntiDosInfo, OfferAntiDosInfoType, OfferBackupInfo, OfferBandwidthInfo, OfferCatalog, OfferFailoverBlockInfo, OfferFailoverIpInfo, OfferLicenseInfo, OfferPaymentFrequency, OfferRPNInfo, OfferSANInfo, OfferSANInfoType, OfferServerInfo, OfferServerInfoStock, OfferServiceLevelInfo, OfferStorageInfo, Partition, PartitionFileSystem, PartitionType, PersistentMemory, Raid, RaidArray, RaidArrayRaidLevel, RaidController, RebootServerRequest, Refund, RefundMethod, RefundStatus, RefundSummary, Rescue, RescueProtocol, RpnApiGetRpnStatusRequest, RpnApiListRpnServerCapabilitiesRequest, RpnGroup, RpnGroupMember, RpnGroupMemberStatus, RpnGroupType, RpnSan, RpnSanApiAddIpRequest, RpnSanApiCreateRpnSanRequest, RpnSanApiDeleteRpnSanRequest, RpnSanApiGetRpnSanRequest, RpnSanApiListAvailableIpsRequest, RpnSanApiListIpsRequest, RpnSanApiListRpnSansRequest, RpnSanApiRemoveIpRequest, RpnSanIp, RpnSanIpRpnV2Group, RpnSanIpServer, RpnSanIpType, RpnSanServer, RpnSanStatus, RpnSanSummary, RpnServerCapability, RpnV1ApiAcceptRpnInviteRequest, RpnV1ApiAddRpnGroupMembersRequest, RpnV1ApiCreateRpnGroupRequest, RpnV1ApiDeleteRpnGroupMembersRequest, RpnV1ApiDeleteRpnGroupRequest, RpnV1ApiGetRpnGroupRequest, RpnV1ApiLeaveRpnGroupRequest, RpnV1ApiListRpnCapableSanServersRequest, RpnV1ApiListRpnCapableServersRequest, RpnV1ApiListRpnGroupMembersRequest, RpnV1ApiListRpnGroupsRequest, RpnV1ApiListRpnInvitesRequest, RpnV1ApiRefuseRpnInviteRequest, RpnV1ApiRpnGroupInviteRequest, RpnV1ApiUpdateRpnGroupNameRequest, RpnV2ApiAddRpnV2MembersRequest, RpnV2ApiCreateRpnV2GroupRequest, RpnV2ApiDeleteRpnV2GroupRequest, RpnV2ApiDeleteRpnV2MembersRequest, RpnV2ApiDisableRpnV2GroupCompatibilityRequest, RpnV2ApiEnableRpnV2GroupCompatibilityRequest, RpnV2ApiGetRpnV2GroupRequest, RpnV2ApiListRpnV2CapableResourcesRequest, RpnV2ApiListRpnV2GroupLogsRequest, RpnV2ApiListRpnV2GroupsRequest, RpnV2ApiListRpnV2MembersRequest, RpnV2ApiUpdateRpnV2GroupNameRequest, RpnV2ApiUpdateRpnV2VlanForMembersRequest, RpnV2Group, RpnV2GroupStatus, RpnV2GroupSubnet, RpnV2GroupType, RpnV2Member, RpnV2MemberStatus, Server, ServerDefaultPartitioning, ServerDisk, ServerDiskType, ServerEvent, ServerInstall, ServerInstallStatus, ServerLocation, ServerOption, ServerStatus, ServerSummary, Service, ServiceLevel, ServiceLevelLevel, ServiceProvisioningStatus, ServiceType, StartBMCAccessRequest, StartRescueRequest, StartServerRequest, StopBMCAccessRequest, StopRescueRequest, StopServerRequest, SubscribeServerOptionRequest, SubscribeStorageOptionsRequest, SubscribeStorageOptionsResponse, UpdatableRaidArray, UpdateRaidRequest, UpdateReverseRequest, UpdateServerBackupRequest, UpdateServerRequest, UpdateServerTagsRequest, } from './types.gen';
|
|
5
|
+
export * as ValidationRules from './validation-rules.gen';
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { API, BillingAPI, IPv6BlockAPI, RpnAPI, RpnSanAPI, RpnV1API, RpnV2API } from "./api.gen.js";
|
|
2
|
+
import { BMC_ACCESS_TRANSIENT_STATUSES, I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES, RPN_GROUP_MEMBER_TRANSIENT_STATUSES, RPN_SAN_TRANSIENT_STATUSES, RPN_V2_GROUP_TRANSIENT_STATUSES, RPN_V2_MEMBER_TRANSIENT_STATUSES, SERVER_INSTALL_TRANSIENT_STATUSES, SERVER_TRANSIENT_STATUSES, SERVICE_PROVISIONING_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
3
|
+
import { marshalAttachFailoverIPToMacAddressRequest, marshalAttachFailoverIPsRequest, marshalCreateFailoverIPsRequest, marshalCreateServerRequest, marshalDetachFailoverIPsRequest, marshalIPv6BlockApiCreateIPv6BlockRequest, marshalIPv6BlockApiCreateIPv6BlockSubnetRequest, marshalIPv6BlockApiUpdateIPv6BlockRequest, marshalInstallServerRequest, marshalRpnSanApiAddIpRequest, marshalRpnSanApiCreateRpnSanRequest, marshalRpnSanApiRemoveIpRequest, marshalRpnV1ApiAddRpnGroupMembersRequest, marshalRpnV1ApiCreateRpnGroupRequest, marshalRpnV1ApiDeleteRpnGroupMembersRequest, marshalRpnV1ApiLeaveRpnGroupRequest, marshalRpnV1ApiRpnGroupInviteRequest, marshalRpnV1ApiUpdateRpnGroupNameRequest, marshalRpnV2ApiAddRpnV2MembersRequest, marshalRpnV2ApiCreateRpnV2GroupRequest, marshalRpnV2ApiDeleteRpnV2MembersRequest, marshalRpnV2ApiEnableRpnV2GroupCompatibilityRequest, marshalRpnV2ApiUpdateRpnV2GroupNameRequest, marshalRpnV2ApiUpdateRpnV2VlanForMembersRequest, marshalStartBMCAccessRequest, marshalStartRescueRequest, marshalSubscribeServerOptionRequest, marshalSubscribeStorageOptionsRequest, marshalUpdateRaidRequest, marshalUpdateReverseRequest, marshalUpdateServerBackupRequest, marshalUpdateServerRequest, marshalUpdateServerTagsRequest, unmarshalBMCAccess, unmarshalBackup, unmarshalCanOrderResponse, unmarshalCreateFailoverIPsResponse, unmarshalFailoverIP, unmarshalGetIPv6BlockQuotasResponse, unmarshalGetRemainingQuotaResponse, unmarshalGetRpnStatusResponse, unmarshalIP, unmarshalIPv6Block, unmarshalInvoice, unmarshalListFailoverIPsResponse, unmarshalListIPv6BlockSubnetsAvailableResponse, unmarshalListInvoicesResponse, unmarshalListIpsResponse, unmarshalListOSResponse, unmarshalListOffersResponse, unmarshalListRefundsResponse, unmarshalListRpnCapableSanServersResponse, unmarshalListRpnCapableServersResponse, unmarshalListRpnGroupMembersResponse, unmarshalListRpnGroupsResponse, unmarshalListRpnInvitesResponse, unmarshalListRpnSansResponse, unmarshalListRpnServerCapabilitiesResponse, unmarshalListRpnV2CapableResourcesResponse, unmarshalListRpnV2GroupLogsResponse, unmarshalListRpnV2GroupsResponse, unmarshalListRpnV2MembersResponse, unmarshalListServerDisksResponse, unmarshalListServerEventsResponse, unmarshalListServersResponse, unmarshalListServicesResponse, unmarshalListSubscribableServerOptionsResponse, unmarshalOS, unmarshalOffer, unmarshalRaid, unmarshalRefund, unmarshalRescue, unmarshalRpnGroup, unmarshalRpnSan, unmarshalRpnV2Group, unmarshalServer, unmarshalServerDefaultPartitioning, unmarshalServerInstall, unmarshalService, unmarshalSubscribeStorageOptionsResponse } from "./marshalling.gen.js";
|
|
4
|
+
import * as validationRules_gen from "./validation-rules.gen.js";
|
|
5
|
+
export {
|
|
6
|
+
API,
|
|
7
|
+
BMC_ACCESS_TRANSIENT_STATUSES,
|
|
8
|
+
BillingAPI,
|
|
9
|
+
IPv6BlockAPI,
|
|
10
|
+
I_PV6_BLOCK_DELEGATION_TRANSIENT_STATUSES,
|
|
11
|
+
RPN_GROUP_MEMBER_TRANSIENT_STATUSES,
|
|
12
|
+
RPN_SAN_TRANSIENT_STATUSES,
|
|
13
|
+
RPN_V2_GROUP_TRANSIENT_STATUSES,
|
|
14
|
+
RPN_V2_MEMBER_TRANSIENT_STATUSES,
|
|
15
|
+
RpnAPI,
|
|
16
|
+
RpnSanAPI,
|
|
17
|
+
RpnV1API,
|
|
18
|
+
RpnV2API,
|
|
19
|
+
SERVER_INSTALL_TRANSIENT_STATUSES,
|
|
20
|
+
SERVER_TRANSIENT_STATUSES,
|
|
21
|
+
SERVICE_PROVISIONING_TRANSIENT_STATUSES,
|
|
22
|
+
validationRules_gen as ValidationRules,
|
|
23
|
+
marshalAttachFailoverIPToMacAddressRequest,
|
|
24
|
+
marshalAttachFailoverIPsRequest,
|
|
25
|
+
marshalCreateFailoverIPsRequest,
|
|
26
|
+
marshalCreateServerRequest,
|
|
27
|
+
marshalDetachFailoverIPsRequest,
|
|
28
|
+
marshalIPv6BlockApiCreateIPv6BlockRequest,
|
|
29
|
+
marshalIPv6BlockApiCreateIPv6BlockSubnetRequest,
|
|
30
|
+
marshalIPv6BlockApiUpdateIPv6BlockRequest,
|
|
31
|
+
marshalInstallServerRequest,
|
|
32
|
+
marshalRpnSanApiAddIpRequest,
|
|
33
|
+
marshalRpnSanApiCreateRpnSanRequest,
|
|
34
|
+
marshalRpnSanApiRemoveIpRequest,
|
|
35
|
+
marshalRpnV1ApiAddRpnGroupMembersRequest,
|
|
36
|
+
marshalRpnV1ApiCreateRpnGroupRequest,
|
|
37
|
+
marshalRpnV1ApiDeleteRpnGroupMembersRequest,
|
|
38
|
+
marshalRpnV1ApiLeaveRpnGroupRequest,
|
|
39
|
+
marshalRpnV1ApiRpnGroupInviteRequest,
|
|
40
|
+
marshalRpnV1ApiUpdateRpnGroupNameRequest,
|
|
41
|
+
marshalRpnV2ApiAddRpnV2MembersRequest,
|
|
42
|
+
marshalRpnV2ApiCreateRpnV2GroupRequest,
|
|
43
|
+
marshalRpnV2ApiDeleteRpnV2MembersRequest,
|
|
44
|
+
marshalRpnV2ApiEnableRpnV2GroupCompatibilityRequest,
|
|
45
|
+
marshalRpnV2ApiUpdateRpnV2GroupNameRequest,
|
|
46
|
+
marshalRpnV2ApiUpdateRpnV2VlanForMembersRequest,
|
|
47
|
+
marshalStartBMCAccessRequest,
|
|
48
|
+
marshalStartRescueRequest,
|
|
49
|
+
marshalSubscribeServerOptionRequest,
|
|
50
|
+
marshalSubscribeStorageOptionsRequest,
|
|
51
|
+
marshalUpdateRaidRequest,
|
|
52
|
+
marshalUpdateReverseRequest,
|
|
53
|
+
marshalUpdateServerBackupRequest,
|
|
54
|
+
marshalUpdateServerRequest,
|
|
55
|
+
marshalUpdateServerTagsRequest,
|
|
56
|
+
unmarshalBMCAccess,
|
|
57
|
+
unmarshalBackup,
|
|
58
|
+
unmarshalCanOrderResponse,
|
|
59
|
+
unmarshalCreateFailoverIPsResponse,
|
|
60
|
+
unmarshalFailoverIP,
|
|
61
|
+
unmarshalGetIPv6BlockQuotasResponse,
|
|
62
|
+
unmarshalGetRemainingQuotaResponse,
|
|
63
|
+
unmarshalGetRpnStatusResponse,
|
|
64
|
+
unmarshalIP,
|
|
65
|
+
unmarshalIPv6Block,
|
|
66
|
+
unmarshalInvoice,
|
|
67
|
+
unmarshalListFailoverIPsResponse,
|
|
68
|
+
unmarshalListIPv6BlockSubnetsAvailableResponse,
|
|
69
|
+
unmarshalListInvoicesResponse,
|
|
70
|
+
unmarshalListIpsResponse,
|
|
71
|
+
unmarshalListOSResponse,
|
|
72
|
+
unmarshalListOffersResponse,
|
|
73
|
+
unmarshalListRefundsResponse,
|
|
74
|
+
unmarshalListRpnCapableSanServersResponse,
|
|
75
|
+
unmarshalListRpnCapableServersResponse,
|
|
76
|
+
unmarshalListRpnGroupMembersResponse,
|
|
77
|
+
unmarshalListRpnGroupsResponse,
|
|
78
|
+
unmarshalListRpnInvitesResponse,
|
|
79
|
+
unmarshalListRpnSansResponse,
|
|
80
|
+
unmarshalListRpnServerCapabilitiesResponse,
|
|
81
|
+
unmarshalListRpnV2CapableResourcesResponse,
|
|
82
|
+
unmarshalListRpnV2GroupLogsResponse,
|
|
83
|
+
unmarshalListRpnV2GroupsResponse,
|
|
84
|
+
unmarshalListRpnV2MembersResponse,
|
|
85
|
+
unmarshalListServerDisksResponse,
|
|
86
|
+
unmarshalListServerEventsResponse,
|
|
87
|
+
unmarshalListServersResponse,
|
|
88
|
+
unmarshalListServicesResponse,
|
|
89
|
+
unmarshalListSubscribableServerOptionsResponse,
|
|
90
|
+
unmarshalOS,
|
|
91
|
+
unmarshalOffer,
|
|
92
|
+
unmarshalRaid,
|
|
93
|
+
unmarshalRefund,
|
|
94
|
+
unmarshalRescue,
|
|
95
|
+
unmarshalRpnGroup,
|
|
96
|
+
unmarshalRpnSan,
|
|
97
|
+
unmarshalRpnV2Group,
|
|
98
|
+
unmarshalServer,
|
|
99
|
+
unmarshalServerDefaultPartitioning,
|
|
100
|
+
unmarshalServerInstall,
|
|
101
|
+
unmarshalService,
|
|
102
|
+
unmarshalSubscribeStorageOptionsResponse
|
|
103
|
+
};
|