@pidginhost/sdk 0.5.0 → 0.7.0
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/.openapi-generator/FILES +39 -0
- package/CHANGELOG.md +13 -0
- package/README.md +115 -2
- package/api.ts +9092 -3385
- package/dist/api.d.ts +2573 -62
- package/dist/api.js +8148 -3042
- package/dist/esm/api.d.ts +2573 -62
- package/dist/esm/api.js +8138 -3036
- package/docs/ApiCredential.md +32 -0
- package/docs/Bucket.md +40 -0
- package/docs/CloudApi.md +1312 -134
- package/docs/ClusterAdd.md +2 -0
- package/docs/ClusterDetail.md +4 -0
- package/docs/DnsSourceEnum.md +13 -0
- package/docs/DomainAdd.md +28 -0
- package/docs/EmailApi.md +2828 -0
- package/docs/EmailService.md +44 -0
- package/docs/FloatingIPAuthorization.md +27 -0
- package/docs/FloatingIPAuthorizeRequest.md +20 -0
- package/docs/FloatingIPv4.md +32 -0
- package/docs/FloatingIPv4AuthorizeResponse.md +20 -0
- package/docs/FloatingIPv4Create.md +20 -0
- package/docs/FloatingIPv4UnauthorizeResponse.md +20 -0
- package/docs/FloatingIPv6.md +32 -0
- package/docs/FloatingIPv6AuthorizeResponse.md +20 -0
- package/docs/FloatingIPv6Create.md +20 -0
- package/docs/FloatingIPv6UnauthorizeResponse.md +20 -0
- package/docs/InboundRoute.md +34 -0
- package/docs/KubeVersionEnum.md +4 -4
- package/docs/ModeEnum.md +11 -0
- package/docs/PaginatedApiCredentialList.md +26 -0
- package/docs/PaginatedEmailServiceList.md +26 -0
- package/docs/PaginatedFloatingIPAuthorizationList.md +26 -0
- package/docs/PaginatedFloatingIPv4List.md +26 -0
- package/docs/PaginatedFloatingIPv6List.md +26 -0
- package/docs/PaginatedInboundRouteList.md +26 -0
- package/docs/PaginatedSandboxAddressList.md +26 -0
- package/docs/PaginatedSendingDomainList.md +26 -0
- package/docs/PaginatedSmtpCredentialList.md +26 -0
- package/docs/PaginatedSuppressionEntryList.md +26 -0
- package/docs/PatchedClusterDetail.md +4 -0
- package/docs/PatchedEmailService.md +44 -0
- package/docs/PatchedInboundRoute.md +34 -0
- package/docs/PatchedSubscribe.md +20 -0
- package/docs/ReasonEnum.md +15 -0
- package/docs/SandboxAddress.md +26 -0
- package/docs/SendingDomain.md +42 -0
- package/docs/SendingDomainStatusEnum.md +17 -0
- package/docs/ServerAdd.md +2 -0
- package/docs/SmtpCredential.md +30 -0
- package/docs/Subscribe.md +20 -0
- package/docs/SuppressionEntry.md +28 -0
- package/docs/TierEnum.md +13 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -68,6 +68,15 @@ export interface Address {
|
|
|
68
68
|
'region_fk'?: number | null;
|
|
69
69
|
'locality_fk'?: number | null;
|
|
70
70
|
}
|
|
71
|
+
export interface ApiCredential {
|
|
72
|
+
'id': number;
|
|
73
|
+
'label': string;
|
|
74
|
+
'key_prefix': string;
|
|
75
|
+
'last_used_at': string | null;
|
|
76
|
+
'active': boolean;
|
|
77
|
+
'created_at': string;
|
|
78
|
+
'revoked_at': string | null;
|
|
79
|
+
}
|
|
71
80
|
export interface AttachIPv4 {
|
|
72
81
|
/**
|
|
73
82
|
* ID or slug
|
|
@@ -86,6 +95,19 @@ export interface AttachVolume {
|
|
|
86
95
|
*/
|
|
87
96
|
'vm': number;
|
|
88
97
|
}
|
|
98
|
+
export interface Bucket {
|
|
99
|
+
'id': number;
|
|
100
|
+
'name': string;
|
|
101
|
+
'full_name': string;
|
|
102
|
+
'quota_gb': number;
|
|
103
|
+
'used_bytes': number;
|
|
104
|
+
'object_count': number;
|
|
105
|
+
'public_read': boolean;
|
|
106
|
+
'status': StatusA57Enum;
|
|
107
|
+
'endpoint': string;
|
|
108
|
+
'region': string;
|
|
109
|
+
'created': string;
|
|
110
|
+
}
|
|
89
111
|
export interface CLISessionCreateResponse {
|
|
90
112
|
'session_id': string;
|
|
91
113
|
'verification_url': string;
|
|
@@ -154,6 +176,10 @@ export interface ClusterAdd {
|
|
|
154
176
|
'kube_version'?: KubeVersionEnum;
|
|
155
177
|
'features'?: Array<FeaturesEnum>;
|
|
156
178
|
'enable_gateway_api'?: boolean;
|
|
179
|
+
/**
|
|
180
|
+
* Enable IPv6 dual-stack for pods, services, and the cluster private network. Available only when the platform has K8S_DUAL_STACK_ENABLED. Cannot be changed after provisioning.
|
|
181
|
+
*/
|
|
182
|
+
'dual_stack'?: boolean;
|
|
157
183
|
'generation'?: string;
|
|
158
184
|
}
|
|
159
185
|
export interface ClusterAddResponse {
|
|
@@ -172,6 +198,8 @@ export interface ClusterDetail {
|
|
|
172
198
|
'features_ready': boolean;
|
|
173
199
|
'kubeconfig_valid_until': string;
|
|
174
200
|
'ipv4_address': string;
|
|
201
|
+
'ipv6_address': string;
|
|
202
|
+
'dual_stack': string;
|
|
175
203
|
'protected'?: boolean;
|
|
176
204
|
'talos_version': string;
|
|
177
205
|
'talos_upgrade_available': string;
|
|
@@ -732,6 +760,15 @@ export interface DisconnectVMResponse {
|
|
|
732
760
|
'status': string;
|
|
733
761
|
'message': string;
|
|
734
762
|
}
|
|
763
|
+
/**
|
|
764
|
+
* * `manual` - Manual * `freedns_internal` - FreeDNS (registered) * `freedns_external` - FreeDNS (external)
|
|
765
|
+
*/
|
|
766
|
+
export declare const DnsSourceEnum: {
|
|
767
|
+
readonly Manual: "manual";
|
|
768
|
+
readonly FreednsInternal: "freedns_internal";
|
|
769
|
+
readonly FreednsExternal: "freedns_external";
|
|
770
|
+
};
|
|
771
|
+
export type DnsSourceEnum = typeof DnsSourceEnum[keyof typeof DnsSourceEnum];
|
|
735
772
|
export interface Domain {
|
|
736
773
|
'id': number;
|
|
737
774
|
'domain': string;
|
|
@@ -755,6 +792,13 @@ export interface Domain {
|
|
|
755
792
|
'service_status': string;
|
|
756
793
|
'contacts': any;
|
|
757
794
|
}
|
|
795
|
+
export interface DomainAdd {
|
|
796
|
+
'name': string;
|
|
797
|
+
'dns_source': DnsSourceEnum;
|
|
798
|
+
'managed_domain'?: number | null;
|
|
799
|
+
'managed_external_domain'?: number | null;
|
|
800
|
+
'use_inbound'?: boolean;
|
|
801
|
+
}
|
|
758
802
|
export interface DomainCancelResponse {
|
|
759
803
|
'message': string;
|
|
760
804
|
'status': string;
|
|
@@ -799,6 +843,21 @@ export interface EmailHistory {
|
|
|
799
843
|
'address': string;
|
|
800
844
|
'read': boolean;
|
|
801
845
|
}
|
|
846
|
+
export interface EmailService {
|
|
847
|
+
'id': number;
|
|
848
|
+
'tier': string;
|
|
849
|
+
'status': StatusA57Enum;
|
|
850
|
+
'sandbox_mode': boolean;
|
|
851
|
+
'auto_suspended': boolean;
|
|
852
|
+
'auto_suspend_reason': string;
|
|
853
|
+
'msgs_sent_24h': number;
|
|
854
|
+
'msgs_sent_30d': number;
|
|
855
|
+
'bounce_rate_pct': string;
|
|
856
|
+
'complaint_rate_pct': string;
|
|
857
|
+
'dedicated_ip_addon': boolean;
|
|
858
|
+
'quota_monthly': string;
|
|
859
|
+
'price_monthly_eur': string;
|
|
860
|
+
}
|
|
802
861
|
export interface FeatureUpgradeRequest {
|
|
803
862
|
/**
|
|
804
863
|
* Name of the feature to upgrade (e.g. cert-manager)
|
|
@@ -877,6 +936,54 @@ export declare const FirewallRulesSetStatusEnum: {
|
|
|
877
936
|
readonly Pending: "pending";
|
|
878
937
|
};
|
|
879
938
|
export type FirewallRulesSetStatusEnum = typeof FirewallRulesSetStatusEnum[keyof typeof FirewallRulesSetStatusEnum];
|
|
939
|
+
/**
|
|
940
|
+
* Read-only authorization row for either v4 or v6 (shape is identical).
|
|
941
|
+
*/
|
|
942
|
+
export interface FloatingIPAuthorization {
|
|
943
|
+
'id': number;
|
|
944
|
+
'server_id': number;
|
|
945
|
+
'server_hostname': string;
|
|
946
|
+
'created_at': string;
|
|
947
|
+
}
|
|
948
|
+
export interface FloatingIPAuthorizeRequest {
|
|
949
|
+
'server_id': number;
|
|
950
|
+
}
|
|
951
|
+
export interface FloatingIPv4 {
|
|
952
|
+
'id': number;
|
|
953
|
+
'address': string;
|
|
954
|
+
'gateway': string;
|
|
955
|
+
'prefix': number;
|
|
956
|
+
'label'?: string;
|
|
957
|
+
'authorized_vm_count': number;
|
|
958
|
+
'created_at': string;
|
|
959
|
+
}
|
|
960
|
+
export interface FloatingIPv4AuthorizeResponse {
|
|
961
|
+
'authorized': boolean;
|
|
962
|
+
}
|
|
963
|
+
export interface FloatingIPv4Create {
|
|
964
|
+
'label'?: string;
|
|
965
|
+
}
|
|
966
|
+
export interface FloatingIPv4UnauthorizeResponse {
|
|
967
|
+
'unauthorized': boolean;
|
|
968
|
+
}
|
|
969
|
+
export interface FloatingIPv6 {
|
|
970
|
+
'id': number;
|
|
971
|
+
'address': string;
|
|
972
|
+
'gateway': string;
|
|
973
|
+
'prefix': number;
|
|
974
|
+
'label'?: string;
|
|
975
|
+
'authorized_vm_count': number;
|
|
976
|
+
'created_at': string;
|
|
977
|
+
}
|
|
978
|
+
export interface FloatingIPv6AuthorizeResponse {
|
|
979
|
+
'authorized': boolean;
|
|
980
|
+
}
|
|
981
|
+
export interface FloatingIPv6Create {
|
|
982
|
+
'label'?: string;
|
|
983
|
+
}
|
|
984
|
+
export interface FloatingIPv6UnauthorizeResponse {
|
|
985
|
+
'unauthorized': boolean;
|
|
986
|
+
}
|
|
880
987
|
export interface FreeDNSDomain {
|
|
881
988
|
'domain': string;
|
|
882
989
|
'active': boolean;
|
|
@@ -987,6 +1094,16 @@ export interface HostingService {
|
|
|
987
1094
|
'node_url': string;
|
|
988
1095
|
'username': string;
|
|
989
1096
|
}
|
|
1097
|
+
export interface InboundRoute {
|
|
1098
|
+
'id': number;
|
|
1099
|
+
'domain': number;
|
|
1100
|
+
'pattern': string;
|
|
1101
|
+
'mode': ModeEnum;
|
|
1102
|
+
'webhook_url'?: string;
|
|
1103
|
+
'forward_to'?: string;
|
|
1104
|
+
'active'?: boolean;
|
|
1105
|
+
'created_at': string;
|
|
1106
|
+
}
|
|
990
1107
|
export interface InvoiceDetail {
|
|
991
1108
|
'id': number;
|
|
992
1109
|
'number_proforma': string;
|
|
@@ -1022,12 +1139,12 @@ export interface KubeUpgradeResponse {
|
|
|
1022
1139
|
'status': string;
|
|
1023
1140
|
}
|
|
1024
1141
|
/**
|
|
1025
|
-
* * `1.33.
|
|
1142
|
+
* * `1.33.11` - 1.33.11 * `1.34.7` - 1.34.7 * `1.35.4` - 1.35.4
|
|
1026
1143
|
*/
|
|
1027
1144
|
export declare const KubeVersionEnum: {
|
|
1028
|
-
readonly
|
|
1029
|
-
readonly
|
|
1030
|
-
readonly
|
|
1145
|
+
readonly _13311: "1.33.11";
|
|
1146
|
+
readonly _1347: "1.34.7";
|
|
1147
|
+
readonly _1354: "1.35.4";
|
|
1031
1148
|
};
|
|
1032
1149
|
export type KubeVersionEnum = typeof KubeVersionEnum[keyof typeof KubeVersionEnum];
|
|
1033
1150
|
export interface LBFirewallRule {
|
|
@@ -1085,6 +1202,14 @@ export interface LowBalanceSettings {
|
|
|
1085
1202
|
'threshold_amount'?: string | null;
|
|
1086
1203
|
'threshold_days'?: number | null;
|
|
1087
1204
|
}
|
|
1205
|
+
/**
|
|
1206
|
+
* * `webhook` - HTTP webhook * `forward` - Forward
|
|
1207
|
+
*/
|
|
1208
|
+
export declare const ModeEnum: {
|
|
1209
|
+
readonly Webhook: "webhook";
|
|
1210
|
+
readonly Forward: "forward";
|
|
1211
|
+
};
|
|
1212
|
+
export type ModeEnum = typeof ModeEnum[keyof typeof ModeEnum];
|
|
1088
1213
|
export interface NameserversUpdate {
|
|
1089
1214
|
/**
|
|
1090
1215
|
* List of 2-5 nameserver hostnames
|
|
@@ -1148,6 +1273,12 @@ export interface PaginatedAPITokenListList {
|
|
|
1148
1273
|
'previous'?: string | null;
|
|
1149
1274
|
'results': Array<APITokenList>;
|
|
1150
1275
|
}
|
|
1276
|
+
export interface PaginatedApiCredentialList {
|
|
1277
|
+
'count': number;
|
|
1278
|
+
'next'?: string | null;
|
|
1279
|
+
'previous'?: string | null;
|
|
1280
|
+
'results': Array<ApiCredential>;
|
|
1281
|
+
}
|
|
1151
1282
|
export interface PaginatedClusterDetailList {
|
|
1152
1283
|
'count': number;
|
|
1153
1284
|
'next'?: string | null;
|
|
@@ -1196,6 +1327,30 @@ export interface PaginatedEmailHistoryList {
|
|
|
1196
1327
|
'previous'?: string | null;
|
|
1197
1328
|
'results': Array<EmailHistory>;
|
|
1198
1329
|
}
|
|
1330
|
+
export interface PaginatedEmailServiceList {
|
|
1331
|
+
'count': number;
|
|
1332
|
+
'next'?: string | null;
|
|
1333
|
+
'previous'?: string | null;
|
|
1334
|
+
'results': Array<EmailService>;
|
|
1335
|
+
}
|
|
1336
|
+
export interface PaginatedFloatingIPAuthorizationList {
|
|
1337
|
+
'count': number;
|
|
1338
|
+
'next'?: string | null;
|
|
1339
|
+
'previous'?: string | null;
|
|
1340
|
+
'results': Array<FloatingIPAuthorization>;
|
|
1341
|
+
}
|
|
1342
|
+
export interface PaginatedFloatingIPv4List {
|
|
1343
|
+
'count': number;
|
|
1344
|
+
'next'?: string | null;
|
|
1345
|
+
'previous'?: string | null;
|
|
1346
|
+
'results': Array<FloatingIPv4>;
|
|
1347
|
+
}
|
|
1348
|
+
export interface PaginatedFloatingIPv6List {
|
|
1349
|
+
'count': number;
|
|
1350
|
+
'next'?: string | null;
|
|
1351
|
+
'previous'?: string | null;
|
|
1352
|
+
'results': Array<FloatingIPv6>;
|
|
1353
|
+
}
|
|
1199
1354
|
export interface PaginatedFundsLogList {
|
|
1200
1355
|
'count': number;
|
|
1201
1356
|
'next'?: string | null;
|
|
@@ -1208,6 +1363,12 @@ export interface PaginatedHostingServiceList {
|
|
|
1208
1363
|
'previous'?: string | null;
|
|
1209
1364
|
'results': Array<HostingService>;
|
|
1210
1365
|
}
|
|
1366
|
+
export interface PaginatedInboundRouteList {
|
|
1367
|
+
'count': number;
|
|
1368
|
+
'next'?: string | null;
|
|
1369
|
+
'previous'?: string | null;
|
|
1370
|
+
'results': Array<InboundRoute>;
|
|
1371
|
+
}
|
|
1211
1372
|
export interface PaginatedInvoiceListList {
|
|
1212
1373
|
'count': number;
|
|
1213
1374
|
'next'?: string | null;
|
|
@@ -1262,6 +1423,18 @@ export interface PaginatedSSHKeyList {
|
|
|
1262
1423
|
'previous'?: string | null;
|
|
1263
1424
|
'results': Array<SSHKey>;
|
|
1264
1425
|
}
|
|
1426
|
+
export interface PaginatedSandboxAddressList {
|
|
1427
|
+
'count': number;
|
|
1428
|
+
'next'?: string | null;
|
|
1429
|
+
'previous'?: string | null;
|
|
1430
|
+
'results': Array<SandboxAddress>;
|
|
1431
|
+
}
|
|
1432
|
+
export interface PaginatedSendingDomainList {
|
|
1433
|
+
'count': number;
|
|
1434
|
+
'next'?: string | null;
|
|
1435
|
+
'previous'?: string | null;
|
|
1436
|
+
'results': Array<SendingDomain>;
|
|
1437
|
+
}
|
|
1265
1438
|
export interface PaginatedServerList {
|
|
1266
1439
|
'count': number;
|
|
1267
1440
|
'next'?: string | null;
|
|
@@ -1280,6 +1453,12 @@ export interface PaginatedServiceListList {
|
|
|
1280
1453
|
'previous'?: string | null;
|
|
1281
1454
|
'results': Array<ServiceList>;
|
|
1282
1455
|
}
|
|
1456
|
+
export interface PaginatedSmtpCredentialList {
|
|
1457
|
+
'count': number;
|
|
1458
|
+
'next'?: string | null;
|
|
1459
|
+
'previous'?: string | null;
|
|
1460
|
+
'results': Array<SmtpCredential>;
|
|
1461
|
+
}
|
|
1283
1462
|
export interface PaginatedSnapshotList {
|
|
1284
1463
|
'count': number;
|
|
1285
1464
|
'next'?: string | null;
|
|
@@ -1298,6 +1477,12 @@ export interface PaginatedSubscriptionList {
|
|
|
1298
1477
|
'previous'?: string | null;
|
|
1299
1478
|
'results': Array<Subscription>;
|
|
1300
1479
|
}
|
|
1480
|
+
export interface PaginatedSuppressionEntryList {
|
|
1481
|
+
'count': number;
|
|
1482
|
+
'next'?: string | null;
|
|
1483
|
+
'previous'?: string | null;
|
|
1484
|
+
'results': Array<SuppressionEntry>;
|
|
1485
|
+
}
|
|
1301
1486
|
export interface PaginatedTLDList {
|
|
1302
1487
|
'count': number;
|
|
1303
1488
|
'next'?: string | null;
|
|
@@ -1323,6 +1508,8 @@ export interface PatchedClusterDetail {
|
|
|
1323
1508
|
'features_ready'?: boolean;
|
|
1324
1509
|
'kubeconfig_valid_until'?: string;
|
|
1325
1510
|
'ipv4_address'?: string;
|
|
1511
|
+
'ipv6_address'?: string;
|
|
1512
|
+
'dual_stack'?: string;
|
|
1326
1513
|
'protected'?: boolean;
|
|
1327
1514
|
'talos_version'?: string;
|
|
1328
1515
|
'talos_upgrade_available'?: string;
|
|
@@ -1380,6 +1567,21 @@ export interface PatchedDomainRegistrant {
|
|
|
1380
1567
|
'cif_cnp'?: string | null;
|
|
1381
1568
|
'reg_com'?: string | null;
|
|
1382
1569
|
}
|
|
1570
|
+
export interface PatchedEmailService {
|
|
1571
|
+
'id'?: number;
|
|
1572
|
+
'tier'?: string;
|
|
1573
|
+
'status'?: StatusA57Enum;
|
|
1574
|
+
'sandbox_mode'?: boolean;
|
|
1575
|
+
'auto_suspended'?: boolean;
|
|
1576
|
+
'auto_suspend_reason'?: string;
|
|
1577
|
+
'msgs_sent_24h'?: number;
|
|
1578
|
+
'msgs_sent_30d'?: number;
|
|
1579
|
+
'bounce_rate_pct'?: string;
|
|
1580
|
+
'complaint_rate_pct'?: string;
|
|
1581
|
+
'dedicated_ip_addon'?: boolean;
|
|
1582
|
+
'quota_monthly'?: string;
|
|
1583
|
+
'price_monthly_eur'?: string;
|
|
1584
|
+
}
|
|
1383
1585
|
export interface PatchedFirewallRule {
|
|
1384
1586
|
'id'?: number;
|
|
1385
1587
|
'direction'?: FirewallRuleDirectionEnum;
|
|
@@ -1452,6 +1654,16 @@ export interface PatchedHTTPRoute {
|
|
|
1452
1654
|
'created'?: string;
|
|
1453
1655
|
'updated'?: string;
|
|
1454
1656
|
}
|
|
1657
|
+
export interface PatchedInboundRoute {
|
|
1658
|
+
'id'?: number;
|
|
1659
|
+
'domain'?: number;
|
|
1660
|
+
'pattern'?: string;
|
|
1661
|
+
'mode'?: ModeEnum;
|
|
1662
|
+
'webhook_url'?: string;
|
|
1663
|
+
'forward_to'?: string;
|
|
1664
|
+
'active'?: boolean;
|
|
1665
|
+
'created_at'?: string;
|
|
1666
|
+
}
|
|
1455
1667
|
export interface PatchedLBFirewallRule {
|
|
1456
1668
|
'id'?: number;
|
|
1457
1669
|
'direction'?: LBFirewallRuleDirectionEnum;
|
|
@@ -1550,6 +1762,9 @@ export interface PatchedServerDetail {
|
|
|
1550
1762
|
*/
|
|
1551
1763
|
'ha_enabled'?: boolean;
|
|
1552
1764
|
}
|
|
1765
|
+
export interface PatchedSubscribe {
|
|
1766
|
+
'tier'?: TierEnum;
|
|
1767
|
+
}
|
|
1553
1768
|
/**
|
|
1554
1769
|
* Serializer for TCPRoute resources with port validation.
|
|
1555
1770
|
*/
|
|
@@ -1733,6 +1948,16 @@ export interface PublicInterface {
|
|
|
1733
1948
|
export interface RDNSUpdateResponse {
|
|
1734
1949
|
'message': string;
|
|
1735
1950
|
}
|
|
1951
|
+
/**
|
|
1952
|
+
* * `hard_bounce` - Hard bounce * `complaint` - Complaint * `manual` - Manual * `unsubscribe` - Unsubscribe
|
|
1953
|
+
*/
|
|
1954
|
+
export declare const ReasonEnum: {
|
|
1955
|
+
readonly HardBounce: "hard_bounce";
|
|
1956
|
+
readonly Complaint: "complaint";
|
|
1957
|
+
readonly Manual: "manual";
|
|
1958
|
+
readonly Unsubscribe: "unsubscribe";
|
|
1959
|
+
};
|
|
1960
|
+
export type ReasonEnum = typeof ReasonEnum[keyof typeof ReasonEnum];
|
|
1736
1961
|
export interface Reinstall {
|
|
1737
1962
|
'os_id': number;
|
|
1738
1963
|
}
|
|
@@ -1784,6 +2009,12 @@ export interface SSHKey {
|
|
|
1784
2009
|
'fingerprint': string;
|
|
1785
2010
|
'key': string;
|
|
1786
2011
|
}
|
|
2012
|
+
export interface SandboxAddress {
|
|
2013
|
+
'id': number;
|
|
2014
|
+
'address': string;
|
|
2015
|
+
'verified_at': string | null;
|
|
2016
|
+
'created_at': string;
|
|
2017
|
+
}
|
|
1787
2018
|
/**
|
|
1788
2019
|
* * `read_only` - Read only * `read_write` - Read & Write
|
|
1789
2020
|
*/
|
|
@@ -1792,6 +2023,31 @@ export declare const ScopeEnum: {
|
|
|
1792
2023
|
readonly ReadWrite: "read_write";
|
|
1793
2024
|
};
|
|
1794
2025
|
export type ScopeEnum = typeof ScopeEnum[keyof typeof ScopeEnum];
|
|
2026
|
+
export interface SendingDomain {
|
|
2027
|
+
'id': number;
|
|
2028
|
+
'name': string;
|
|
2029
|
+
'status': SendingDomainStatusEnum;
|
|
2030
|
+
'dns_source': DnsSourceEnum;
|
|
2031
|
+
'use_inbound': boolean;
|
|
2032
|
+
'dkim_selector': string;
|
|
2033
|
+
'dkim_record': string;
|
|
2034
|
+
'spf_record': string;
|
|
2035
|
+
'dmarc_record': string;
|
|
2036
|
+
'verified_at': string | null;
|
|
2037
|
+
'last_check_at': string | null;
|
|
2038
|
+
'last_check_errors': any;
|
|
2039
|
+
}
|
|
2040
|
+
/**
|
|
2041
|
+
* * `pending` - Pending * `verifying` - Verifying * `verified` - Verified * `failed` - Failed * `suspended` - Suspended
|
|
2042
|
+
*/
|
|
2043
|
+
export declare const SendingDomainStatusEnum: {
|
|
2044
|
+
readonly Pending: "pending";
|
|
2045
|
+
readonly Verifying: "verifying";
|
|
2046
|
+
readonly Verified: "verified";
|
|
2047
|
+
readonly Failed: "failed";
|
|
2048
|
+
readonly Suspended: "suspended";
|
|
2049
|
+
};
|
|
2050
|
+
export type SendingDomainStatusEnum = typeof SendingDomainStatusEnum[keyof typeof SendingDomainStatusEnum];
|
|
1795
2051
|
export interface Server {
|
|
1796
2052
|
'id': number;
|
|
1797
2053
|
'hostname'?: string;
|
|
@@ -1835,6 +2091,10 @@ export interface ServerAdd {
|
|
|
1835
2091
|
* ID or fingerprint
|
|
1836
2092
|
*/
|
|
1837
2093
|
'ssh_pub_key_id'?: string;
|
|
2094
|
+
/**
|
|
2095
|
+
* Optional startup script. Must be an executable script with a shebang. Stored in cleartext.
|
|
2096
|
+
*/
|
|
2097
|
+
'user_data'?: string;
|
|
1838
2098
|
/**
|
|
1839
2099
|
* ID or slug
|
|
1840
2100
|
*/
|
|
@@ -1955,6 +2215,14 @@ export interface ServiceList {
|
|
|
1955
2215
|
'auto_payment': string;
|
|
1956
2216
|
'company': string;
|
|
1957
2217
|
}
|
|
2218
|
+
export interface SmtpCredential {
|
|
2219
|
+
'id': number;
|
|
2220
|
+
'label': string;
|
|
2221
|
+
'username': string;
|
|
2222
|
+
'active': boolean;
|
|
2223
|
+
'created_at': string;
|
|
2224
|
+
'revoked_at': string | null;
|
|
2225
|
+
}
|
|
1958
2226
|
export interface Snapshot {
|
|
1959
2227
|
'name': string;
|
|
1960
2228
|
'description'?: string;
|
|
@@ -2056,6 +2324,9 @@ export interface StorageProduct {
|
|
|
2056
2324
|
'min_size': string;
|
|
2057
2325
|
'max_size': string;
|
|
2058
2326
|
}
|
|
2327
|
+
export interface Subscribe {
|
|
2328
|
+
'tier': TierEnum;
|
|
2329
|
+
}
|
|
2059
2330
|
export interface Subscription {
|
|
2060
2331
|
'id': number;
|
|
2061
2332
|
'status': SubscriptionStatusEnum;
|
|
@@ -2076,6 +2347,13 @@ export declare const SubscriptionStatusEnum: {
|
|
|
2076
2347
|
readonly Cancelled: "cancelled";
|
|
2077
2348
|
};
|
|
2078
2349
|
export type SubscriptionStatusEnum = typeof SubscriptionStatusEnum[keyof typeof SubscriptionStatusEnum];
|
|
2350
|
+
export interface SuppressionEntry {
|
|
2351
|
+
'id': number;
|
|
2352
|
+
'address': string;
|
|
2353
|
+
'reason': ReasonEnum;
|
|
2354
|
+
'detail': string;
|
|
2355
|
+
'created_at': string;
|
|
2356
|
+
}
|
|
2079
2357
|
/**
|
|
2080
2358
|
* Serializer for TCPRoute resources with port validation.
|
|
2081
2359
|
*/
|
|
@@ -2188,6 +2466,15 @@ export interface TicketReply {
|
|
|
2188
2466
|
export interface TicketReplyResponse {
|
|
2189
2467
|
'message': string;
|
|
2190
2468
|
}
|
|
2469
|
+
/**
|
|
2470
|
+
* * `starter` - Starter * `pro` - Pro * `business` - Business
|
|
2471
|
+
*/
|
|
2472
|
+
export declare const TierEnum: {
|
|
2473
|
+
readonly Starter: "starter";
|
|
2474
|
+
readonly Pro: "pro";
|
|
2475
|
+
readonly Business: "business";
|
|
2476
|
+
};
|
|
2477
|
+
export type TierEnum = typeof TierEnum[keyof typeof TierEnum];
|
|
2191
2478
|
export interface ToggleAutoPaymentResponse {
|
|
2192
2479
|
'message': string;
|
|
2193
2480
|
'auto_payment': boolean;
|
|
@@ -3425,6 +3712,65 @@ export declare class BillingApi extends BaseAPI {
|
|
|
3425
3712
|
* CloudApi - axios parameter creator
|
|
3426
3713
|
*/
|
|
3427
3714
|
export declare const CloudApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3715
|
+
/**
|
|
3716
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
3717
|
+
* @param {Bucket} [bucket]
|
|
3718
|
+
* @param {*} [options] Override http request option.
|
|
3719
|
+
* @throws {RequiredError}
|
|
3720
|
+
*/
|
|
3721
|
+
cloudBucketsCreate: (bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3722
|
+
/**
|
|
3723
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
3724
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
3725
|
+
* @param {Bucket} [bucket]
|
|
3726
|
+
* @param {*} [options] Override http request option.
|
|
3727
|
+
* @throws {RequiredError}
|
|
3728
|
+
*/
|
|
3729
|
+
cloudBucketsCredentialsRevealCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3730
|
+
/**
|
|
3731
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
3732
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
3733
|
+
* @param {Bucket} [bucket]
|
|
3734
|
+
* @param {*} [options] Override http request option.
|
|
3735
|
+
* @throws {RequiredError}
|
|
3736
|
+
*/
|
|
3737
|
+
cloudBucketsCredentialsRotateCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3738
|
+
/**
|
|
3739
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
3740
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
3741
|
+
* @param {*} [options] Override http request option.
|
|
3742
|
+
* @throws {RequiredError}
|
|
3743
|
+
*/
|
|
3744
|
+
cloudBucketsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3745
|
+
/**
|
|
3746
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
3747
|
+
* @param {*} [options] Override http request option.
|
|
3748
|
+
* @throws {RequiredError}
|
|
3749
|
+
*/
|
|
3750
|
+
cloudBucketsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3751
|
+
/**
|
|
3752
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
3753
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
3754
|
+
* @param {Bucket} [bucket]
|
|
3755
|
+
* @param {*} [options] Override http request option.
|
|
3756
|
+
* @throws {RequiredError}
|
|
3757
|
+
*/
|
|
3758
|
+
cloudBucketsResizeCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3759
|
+
/**
|
|
3760
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
3761
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
3762
|
+
* @param {*} [options] Override http request option.
|
|
3763
|
+
* @throws {RequiredError}
|
|
3764
|
+
*/
|
|
3765
|
+
cloudBucketsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3766
|
+
/**
|
|
3767
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
3768
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
3769
|
+
* @param {Bucket} [bucket]
|
|
3770
|
+
* @param {*} [options] Override http request option.
|
|
3771
|
+
* @throws {RequiredError}
|
|
3772
|
+
*/
|
|
3773
|
+
cloudBucketsVisibilityCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3428
3774
|
/**
|
|
3429
3775
|
* Require complete user profile for provisioning (create) API actions.
|
|
3430
3776
|
* @param {FirewallRulesSet} firewallRulesSet
|
|
@@ -3517,6 +3863,110 @@ export declare const CloudApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3517
3863
|
* @throws {RequiredError}
|
|
3518
3864
|
*/
|
|
3519
3865
|
cloudFirewallRulesSetUpdate: (id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3866
|
+
/**
|
|
3867
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
3868
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
3869
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
3870
|
+
* @param {*} [options] Override http request option.
|
|
3871
|
+
* @throws {RequiredError}
|
|
3872
|
+
*/
|
|
3873
|
+
cloudFloatingIpv4AuthorizationsList: (id: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3874
|
+
/**
|
|
3875
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
3876
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
3877
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
3878
|
+
* @param {*} [options] Override http request option.
|
|
3879
|
+
* @throws {RequiredError}
|
|
3880
|
+
*/
|
|
3881
|
+
cloudFloatingIpv4AuthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3882
|
+
/**
|
|
3883
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
3884
|
+
* @param {FloatingIPv4Create} [floatingIPv4Create]
|
|
3885
|
+
* @param {*} [options] Override http request option.
|
|
3886
|
+
* @throws {RequiredError}
|
|
3887
|
+
*/
|
|
3888
|
+
cloudFloatingIpv4Create: (floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3889
|
+
/**
|
|
3890
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
3891
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
3892
|
+
* @param {*} [options] Override http request option.
|
|
3893
|
+
* @throws {RequiredError}
|
|
3894
|
+
*/
|
|
3895
|
+
cloudFloatingIpv4Destroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3896
|
+
/**
|
|
3897
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
3898
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
3899
|
+
* @param {*} [options] Override http request option.
|
|
3900
|
+
* @throws {RequiredError}
|
|
3901
|
+
*/
|
|
3902
|
+
cloudFloatingIpv4List: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3903
|
+
/**
|
|
3904
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
3905
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
3906
|
+
* @param {*} [options] Override http request option.
|
|
3907
|
+
* @throws {RequiredError}
|
|
3908
|
+
*/
|
|
3909
|
+
cloudFloatingIpv4Retrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3910
|
+
/**
|
|
3911
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
3912
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
3913
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
3914
|
+
* @param {*} [options] Override http request option.
|
|
3915
|
+
* @throws {RequiredError}
|
|
3916
|
+
*/
|
|
3917
|
+
cloudFloatingIpv4UnauthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3918
|
+
/**
|
|
3919
|
+
* Manage floating IPv6 addresses.
|
|
3920
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
3921
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
3922
|
+
* @param {*} [options] Override http request option.
|
|
3923
|
+
* @throws {RequiredError}
|
|
3924
|
+
*/
|
|
3925
|
+
cloudFloatingIpv6AuthorizationsList: (id: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3926
|
+
/**
|
|
3927
|
+
* Manage floating IPv6 addresses.
|
|
3928
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
3929
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
3930
|
+
* @param {*} [options] Override http request option.
|
|
3931
|
+
* @throws {RequiredError}
|
|
3932
|
+
*/
|
|
3933
|
+
cloudFloatingIpv6AuthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3934
|
+
/**
|
|
3935
|
+
* Manage floating IPv6 addresses.
|
|
3936
|
+
* @param {FloatingIPv6Create} [floatingIPv6Create]
|
|
3937
|
+
* @param {*} [options] Override http request option.
|
|
3938
|
+
* @throws {RequiredError}
|
|
3939
|
+
*/
|
|
3940
|
+
cloudFloatingIpv6Create: (floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3941
|
+
/**
|
|
3942
|
+
* Manage floating IPv6 addresses.
|
|
3943
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
3944
|
+
* @param {*} [options] Override http request option.
|
|
3945
|
+
* @throws {RequiredError}
|
|
3946
|
+
*/
|
|
3947
|
+
cloudFloatingIpv6Destroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3948
|
+
/**
|
|
3949
|
+
* Manage floating IPv6 addresses.
|
|
3950
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
3951
|
+
* @param {*} [options] Override http request option.
|
|
3952
|
+
* @throws {RequiredError}
|
|
3953
|
+
*/
|
|
3954
|
+
cloudFloatingIpv6List: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3955
|
+
/**
|
|
3956
|
+
* Manage floating IPv6 addresses.
|
|
3957
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
3958
|
+
* @param {*} [options] Override http request option.
|
|
3959
|
+
* @throws {RequiredError}
|
|
3960
|
+
*/
|
|
3961
|
+
cloudFloatingIpv6Retrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3962
|
+
/**
|
|
3963
|
+
* Manage floating IPv6 addresses.
|
|
3964
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
3965
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
3966
|
+
* @param {*} [options] Override http request option.
|
|
3967
|
+
* @throws {RequiredError}
|
|
3968
|
+
*/
|
|
3969
|
+
cloudFloatingIpv6UnauthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3520
3970
|
/**
|
|
3521
3971
|
*
|
|
3522
3972
|
* @summary List hardware generations
|
|
@@ -4042,96 +4492,259 @@ export declare const CloudApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4042
4492
|
export declare const CloudApiFp: (configuration?: Configuration) => {
|
|
4043
4493
|
/**
|
|
4044
4494
|
* Require complete user profile for provisioning (create) API actions.
|
|
4045
|
-
* @param {
|
|
4495
|
+
* @param {Bucket} [bucket]
|
|
4046
4496
|
* @param {*} [options] Override http request option.
|
|
4047
4497
|
* @throws {RequiredError}
|
|
4048
4498
|
*/
|
|
4049
|
-
|
|
4499
|
+
cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
|
|
4050
4500
|
/**
|
|
4051
4501
|
* Require complete user profile for provisioning (create) API actions.
|
|
4052
|
-
* @param {number} id A unique integer value identifying this
|
|
4502
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
4503
|
+
* @param {Bucket} [bucket]
|
|
4053
4504
|
* @param {*} [options] Override http request option.
|
|
4054
4505
|
* @throws {RequiredError}
|
|
4055
4506
|
*/
|
|
4056
|
-
|
|
4507
|
+
cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
|
|
4057
4508
|
/**
|
|
4058
4509
|
* Require complete user profile for provisioning (create) API actions.
|
|
4510
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
4511
|
+
* @param {Bucket} [bucket]
|
|
4059
4512
|
* @param {*} [options] Override http request option.
|
|
4060
4513
|
* @throws {RequiredError}
|
|
4061
4514
|
*/
|
|
4062
|
-
|
|
4515
|
+
cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
|
|
4063
4516
|
/**
|
|
4064
4517
|
* Require complete user profile for provisioning (create) API actions.
|
|
4065
|
-
* @param {number} id A unique integer value identifying this
|
|
4066
|
-
* @param {PatchedFirewallRulesSet} [patchedFirewallRulesSet]
|
|
4518
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
4067
4519
|
* @param {*} [options] Override http request option.
|
|
4068
4520
|
* @throws {RequiredError}
|
|
4069
4521
|
*/
|
|
4070
|
-
|
|
4522
|
+
cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4071
4523
|
/**
|
|
4072
4524
|
* Require complete user profile for provisioning (create) API actions.
|
|
4073
|
-
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
4074
4525
|
* @param {*} [options] Override http request option.
|
|
4075
4526
|
* @throws {RequiredError}
|
|
4076
4527
|
*/
|
|
4077
|
-
|
|
4528
|
+
cloudBucketsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Bucket>>>;
|
|
4078
4529
|
/**
|
|
4079
4530
|
* Require complete user profile for provisioning (create) API actions.
|
|
4080
|
-
* @param {
|
|
4081
|
-
* @param {
|
|
4531
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
4532
|
+
* @param {Bucket} [bucket]
|
|
4082
4533
|
* @param {*} [options] Override http request option.
|
|
4083
4534
|
* @throws {RequiredError}
|
|
4084
4535
|
*/
|
|
4085
|
-
|
|
4536
|
+
cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
|
|
4086
4537
|
/**
|
|
4087
4538
|
* Require complete user profile for provisioning (create) API actions.
|
|
4088
|
-
* @param {
|
|
4089
|
-
* @param {string} rulesSetId
|
|
4539
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
4090
4540
|
* @param {*} [options] Override http request option.
|
|
4091
4541
|
* @throws {RequiredError}
|
|
4092
4542
|
*/
|
|
4093
|
-
|
|
4543
|
+
cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
|
|
4094
4544
|
/**
|
|
4095
4545
|
* Require complete user profile for provisioning (create) API actions.
|
|
4096
|
-
* @param {
|
|
4546
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
4547
|
+
* @param {Bucket} [bucket]
|
|
4097
4548
|
* @param {*} [options] Override http request option.
|
|
4098
4549
|
* @throws {RequiredError}
|
|
4099
4550
|
*/
|
|
4100
|
-
|
|
4551
|
+
cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
|
|
4101
4552
|
/**
|
|
4102
4553
|
* Require complete user profile for provisioning (create) API actions.
|
|
4103
|
-
* @param {
|
|
4104
|
-
* @param {string} rulesSetId
|
|
4105
|
-
* @param {PatchedFirewallRule} [patchedFirewallRule]
|
|
4554
|
+
* @param {FirewallRulesSet} firewallRulesSet
|
|
4106
4555
|
* @param {*} [options] Override http request option.
|
|
4107
4556
|
* @throws {RequiredError}
|
|
4108
4557
|
*/
|
|
4109
|
-
|
|
4558
|
+
cloudFirewallRulesSetCreate(firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
|
|
4110
4559
|
/**
|
|
4111
4560
|
* Require complete user profile for provisioning (create) API actions.
|
|
4112
|
-
* @param {
|
|
4113
|
-
* @param {string} rulesSetId
|
|
4561
|
+
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
4114
4562
|
* @param {*} [options] Override http request option.
|
|
4115
4563
|
* @throws {RequiredError}
|
|
4116
4564
|
*/
|
|
4117
|
-
|
|
4565
|
+
cloudFirewallRulesSetDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4118
4566
|
/**
|
|
4119
4567
|
* Require complete user profile for provisioning (create) API actions.
|
|
4120
|
-
* @param {string} ruleId
|
|
4121
|
-
* @param {string} rulesSetId
|
|
4122
|
-
* @param {FirewallRule} firewallRule
|
|
4123
4568
|
* @param {*} [options] Override http request option.
|
|
4124
4569
|
* @throws {RequiredError}
|
|
4125
4570
|
*/
|
|
4126
|
-
|
|
4571
|
+
cloudFirewallRulesSetList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FirewallRulesSet>>>;
|
|
4127
4572
|
/**
|
|
4128
4573
|
* Require complete user profile for provisioning (create) API actions.
|
|
4129
4574
|
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
4130
|
-
* @param {
|
|
4575
|
+
* @param {PatchedFirewallRulesSet} [patchedFirewallRulesSet]
|
|
4576
|
+
* @param {*} [options] Override http request option.
|
|
4577
|
+
* @throws {RequiredError}
|
|
4578
|
+
*/
|
|
4579
|
+
cloudFirewallRulesSetPartialUpdate(id: number, patchedFirewallRulesSet?: PatchedFirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
|
|
4580
|
+
/**
|
|
4581
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
4582
|
+
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
4583
|
+
* @param {*} [options] Override http request option.
|
|
4584
|
+
* @throws {RequiredError}
|
|
4585
|
+
*/
|
|
4586
|
+
cloudFirewallRulesSetRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
|
|
4587
|
+
/**
|
|
4588
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
4589
|
+
* @param {string} rulesSetId
|
|
4590
|
+
* @param {FirewallRule} firewallRule
|
|
4591
|
+
* @param {*} [options] Override http request option.
|
|
4592
|
+
* @throws {RequiredError}
|
|
4593
|
+
*/
|
|
4594
|
+
cloudFirewallRulesSetRulesCreate(rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
|
|
4595
|
+
/**
|
|
4596
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
4597
|
+
* @param {string} ruleId
|
|
4598
|
+
* @param {string} rulesSetId
|
|
4599
|
+
* @param {*} [options] Override http request option.
|
|
4600
|
+
* @throws {RequiredError}
|
|
4601
|
+
*/
|
|
4602
|
+
cloudFirewallRulesSetRulesDestroy(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4603
|
+
/**
|
|
4604
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
4605
|
+
* @param {string} rulesSetId
|
|
4606
|
+
* @param {*} [options] Override http request option.
|
|
4607
|
+
* @throws {RequiredError}
|
|
4608
|
+
*/
|
|
4609
|
+
cloudFirewallRulesSetRulesList(rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FirewallRule>>>;
|
|
4610
|
+
/**
|
|
4611
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
4612
|
+
* @param {string} ruleId
|
|
4613
|
+
* @param {string} rulesSetId
|
|
4614
|
+
* @param {PatchedFirewallRule} [patchedFirewallRule]
|
|
4615
|
+
* @param {*} [options] Override http request option.
|
|
4616
|
+
* @throws {RequiredError}
|
|
4617
|
+
*/
|
|
4618
|
+
cloudFirewallRulesSetRulesPartialUpdate(ruleId: string, rulesSetId: string, patchedFirewallRule?: PatchedFirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
|
|
4619
|
+
/**
|
|
4620
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
4621
|
+
* @param {string} ruleId
|
|
4622
|
+
* @param {string} rulesSetId
|
|
4623
|
+
* @param {*} [options] Override http request option.
|
|
4624
|
+
* @throws {RequiredError}
|
|
4625
|
+
*/
|
|
4626
|
+
cloudFirewallRulesSetRulesRetrieve(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
|
|
4627
|
+
/**
|
|
4628
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
4629
|
+
* @param {string} ruleId
|
|
4630
|
+
* @param {string} rulesSetId
|
|
4631
|
+
* @param {FirewallRule} firewallRule
|
|
4632
|
+
* @param {*} [options] Override http request option.
|
|
4633
|
+
* @throws {RequiredError}
|
|
4634
|
+
*/
|
|
4635
|
+
cloudFirewallRulesSetRulesUpdate(ruleId: string, rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
|
|
4636
|
+
/**
|
|
4637
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
4638
|
+
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
4639
|
+
* @param {FirewallRulesSet} firewallRulesSet
|
|
4131
4640
|
* @param {*} [options] Override http request option.
|
|
4132
4641
|
* @throws {RequiredError}
|
|
4133
4642
|
*/
|
|
4134
4643
|
cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
|
|
4644
|
+
/**
|
|
4645
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
4646
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
4647
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
4648
|
+
* @param {*} [options] Override http request option.
|
|
4649
|
+
* @throws {RequiredError}
|
|
4650
|
+
*/
|
|
4651
|
+
cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPAuthorizationList>>;
|
|
4652
|
+
/**
|
|
4653
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
4654
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
4655
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
4656
|
+
* @param {*} [options] Override http request option.
|
|
4657
|
+
* @throws {RequiredError}
|
|
4658
|
+
*/
|
|
4659
|
+
cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4AuthorizeResponse>>;
|
|
4660
|
+
/**
|
|
4661
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
4662
|
+
* @param {FloatingIPv4Create} [floatingIPv4Create]
|
|
4663
|
+
* @param {*} [options] Override http request option.
|
|
4664
|
+
* @throws {RequiredError}
|
|
4665
|
+
*/
|
|
4666
|
+
cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4>>;
|
|
4667
|
+
/**
|
|
4668
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
4669
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
4670
|
+
* @param {*} [options] Override http request option.
|
|
4671
|
+
* @throws {RequiredError}
|
|
4672
|
+
*/
|
|
4673
|
+
cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4674
|
+
/**
|
|
4675
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
4676
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
4677
|
+
* @param {*} [options] Override http request option.
|
|
4678
|
+
* @throws {RequiredError}
|
|
4679
|
+
*/
|
|
4680
|
+
cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPv4List>>;
|
|
4681
|
+
/**
|
|
4682
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
4683
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
4684
|
+
* @param {*} [options] Override http request option.
|
|
4685
|
+
* @throws {RequiredError}
|
|
4686
|
+
*/
|
|
4687
|
+
cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4>>;
|
|
4688
|
+
/**
|
|
4689
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
4690
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
4691
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
4692
|
+
* @param {*} [options] Override http request option.
|
|
4693
|
+
* @throws {RequiredError}
|
|
4694
|
+
*/
|
|
4695
|
+
cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4UnauthorizeResponse>>;
|
|
4696
|
+
/**
|
|
4697
|
+
* Manage floating IPv6 addresses.
|
|
4698
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
4699
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
4700
|
+
* @param {*} [options] Override http request option.
|
|
4701
|
+
* @throws {RequiredError}
|
|
4702
|
+
*/
|
|
4703
|
+
cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPAuthorizationList>>;
|
|
4704
|
+
/**
|
|
4705
|
+
* Manage floating IPv6 addresses.
|
|
4706
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
4707
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
4708
|
+
* @param {*} [options] Override http request option.
|
|
4709
|
+
* @throws {RequiredError}
|
|
4710
|
+
*/
|
|
4711
|
+
cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6AuthorizeResponse>>;
|
|
4712
|
+
/**
|
|
4713
|
+
* Manage floating IPv6 addresses.
|
|
4714
|
+
* @param {FloatingIPv6Create} [floatingIPv6Create]
|
|
4715
|
+
* @param {*} [options] Override http request option.
|
|
4716
|
+
* @throws {RequiredError}
|
|
4717
|
+
*/
|
|
4718
|
+
cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6>>;
|
|
4719
|
+
/**
|
|
4720
|
+
* Manage floating IPv6 addresses.
|
|
4721
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
4722
|
+
* @param {*} [options] Override http request option.
|
|
4723
|
+
* @throws {RequiredError}
|
|
4724
|
+
*/
|
|
4725
|
+
cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4726
|
+
/**
|
|
4727
|
+
* Manage floating IPv6 addresses.
|
|
4728
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
4729
|
+
* @param {*} [options] Override http request option.
|
|
4730
|
+
* @throws {RequiredError}
|
|
4731
|
+
*/
|
|
4732
|
+
cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPv6List>>;
|
|
4733
|
+
/**
|
|
4734
|
+
* Manage floating IPv6 addresses.
|
|
4735
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
4736
|
+
* @param {*} [options] Override http request option.
|
|
4737
|
+
* @throws {RequiredError}
|
|
4738
|
+
*/
|
|
4739
|
+
cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6>>;
|
|
4740
|
+
/**
|
|
4741
|
+
* Manage floating IPv6 addresses.
|
|
4742
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
4743
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
4744
|
+
* @param {*} [options] Override http request option.
|
|
4745
|
+
* @throws {RequiredError}
|
|
4746
|
+
*/
|
|
4747
|
+
cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6UnauthorizeResponse>>;
|
|
4135
4748
|
/**
|
|
4136
4749
|
*
|
|
4137
4750
|
* @summary List hardware generations
|
|
@@ -4655,6 +5268,65 @@ export declare const CloudApiFp: (configuration?: Configuration) => {
|
|
|
4655
5268
|
* CloudApi - factory interface
|
|
4656
5269
|
*/
|
|
4657
5270
|
export declare const CloudApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5271
|
+
/**
|
|
5272
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
5273
|
+
* @param {Bucket} [bucket]
|
|
5274
|
+
* @param {*} [options] Override http request option.
|
|
5275
|
+
* @throws {RequiredError}
|
|
5276
|
+
*/
|
|
5277
|
+
cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
|
|
5278
|
+
/**
|
|
5279
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
5280
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
5281
|
+
* @param {Bucket} [bucket]
|
|
5282
|
+
* @param {*} [options] Override http request option.
|
|
5283
|
+
* @throws {RequiredError}
|
|
5284
|
+
*/
|
|
5285
|
+
cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
|
|
5286
|
+
/**
|
|
5287
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
5288
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
5289
|
+
* @param {Bucket} [bucket]
|
|
5290
|
+
* @param {*} [options] Override http request option.
|
|
5291
|
+
* @throws {RequiredError}
|
|
5292
|
+
*/
|
|
5293
|
+
cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
|
|
5294
|
+
/**
|
|
5295
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
5296
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
5297
|
+
* @param {*} [options] Override http request option.
|
|
5298
|
+
* @throws {RequiredError}
|
|
5299
|
+
*/
|
|
5300
|
+
cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5301
|
+
/**
|
|
5302
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
5303
|
+
* @param {*} [options] Override http request option.
|
|
5304
|
+
* @throws {RequiredError}
|
|
5305
|
+
*/
|
|
5306
|
+
cloudBucketsList(options?: RawAxiosRequestConfig): AxiosPromise<Array<Bucket>>;
|
|
5307
|
+
/**
|
|
5308
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
5309
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
5310
|
+
* @param {Bucket} [bucket]
|
|
5311
|
+
* @param {*} [options] Override http request option.
|
|
5312
|
+
* @throws {RequiredError}
|
|
5313
|
+
*/
|
|
5314
|
+
cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
|
|
5315
|
+
/**
|
|
5316
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
5317
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
5318
|
+
* @param {*} [options] Override http request option.
|
|
5319
|
+
* @throws {RequiredError}
|
|
5320
|
+
*/
|
|
5321
|
+
cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
|
|
5322
|
+
/**
|
|
5323
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
5324
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
5325
|
+
* @param {Bucket} [bucket]
|
|
5326
|
+
* @param {*} [options] Override http request option.
|
|
5327
|
+
* @throws {RequiredError}
|
|
5328
|
+
*/
|
|
5329
|
+
cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
|
|
4658
5330
|
/**
|
|
4659
5331
|
* Require complete user profile for provisioning (create) API actions.
|
|
4660
5332
|
* @param {FirewallRulesSet} firewallRulesSet
|
|
@@ -4747,6 +5419,110 @@ export declare const CloudApiFactory: (configuration?: Configuration, basePath?:
|
|
|
4747
5419
|
* @throws {RequiredError}
|
|
4748
5420
|
*/
|
|
4749
5421
|
cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): AxiosPromise<FirewallRulesSet>;
|
|
5422
|
+
/**
|
|
5423
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
5424
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
5425
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
5426
|
+
* @param {*} [options] Override http request option.
|
|
5427
|
+
* @throws {RequiredError}
|
|
5428
|
+
*/
|
|
5429
|
+
cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPAuthorizationList>;
|
|
5430
|
+
/**
|
|
5431
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
5432
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
5433
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
5434
|
+
* @param {*} [options] Override http request option.
|
|
5435
|
+
* @throws {RequiredError}
|
|
5436
|
+
*/
|
|
5437
|
+
cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4AuthorizeResponse>;
|
|
5438
|
+
/**
|
|
5439
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
5440
|
+
* @param {FloatingIPv4Create} [floatingIPv4Create]
|
|
5441
|
+
* @param {*} [options] Override http request option.
|
|
5442
|
+
* @throws {RequiredError}
|
|
5443
|
+
*/
|
|
5444
|
+
cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4>;
|
|
5445
|
+
/**
|
|
5446
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
5447
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
5448
|
+
* @param {*} [options] Override http request option.
|
|
5449
|
+
* @throws {RequiredError}
|
|
5450
|
+
*/
|
|
5451
|
+
cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5452
|
+
/**
|
|
5453
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
5454
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
5455
|
+
* @param {*} [options] Override http request option.
|
|
5456
|
+
* @throws {RequiredError}
|
|
5457
|
+
*/
|
|
5458
|
+
cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPv4List>;
|
|
5459
|
+
/**
|
|
5460
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
5461
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
5462
|
+
* @param {*} [options] Override http request option.
|
|
5463
|
+
* @throws {RequiredError}
|
|
5464
|
+
*/
|
|
5465
|
+
cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4>;
|
|
5466
|
+
/**
|
|
5467
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
5468
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
5469
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
5470
|
+
* @param {*} [options] Override http request option.
|
|
5471
|
+
* @throws {RequiredError}
|
|
5472
|
+
*/
|
|
5473
|
+
cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4UnauthorizeResponse>;
|
|
5474
|
+
/**
|
|
5475
|
+
* Manage floating IPv6 addresses.
|
|
5476
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
5477
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
5478
|
+
* @param {*} [options] Override http request option.
|
|
5479
|
+
* @throws {RequiredError}
|
|
5480
|
+
*/
|
|
5481
|
+
cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPAuthorizationList>;
|
|
5482
|
+
/**
|
|
5483
|
+
* Manage floating IPv6 addresses.
|
|
5484
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
5485
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
5486
|
+
* @param {*} [options] Override http request option.
|
|
5487
|
+
* @throws {RequiredError}
|
|
5488
|
+
*/
|
|
5489
|
+
cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6AuthorizeResponse>;
|
|
5490
|
+
/**
|
|
5491
|
+
* Manage floating IPv6 addresses.
|
|
5492
|
+
* @param {FloatingIPv6Create} [floatingIPv6Create]
|
|
5493
|
+
* @param {*} [options] Override http request option.
|
|
5494
|
+
* @throws {RequiredError}
|
|
5495
|
+
*/
|
|
5496
|
+
cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6>;
|
|
5497
|
+
/**
|
|
5498
|
+
* Manage floating IPv6 addresses.
|
|
5499
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
5500
|
+
* @param {*} [options] Override http request option.
|
|
5501
|
+
* @throws {RequiredError}
|
|
5502
|
+
*/
|
|
5503
|
+
cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
5504
|
+
/**
|
|
5505
|
+
* Manage floating IPv6 addresses.
|
|
5506
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
5507
|
+
* @param {*} [options] Override http request option.
|
|
5508
|
+
* @throws {RequiredError}
|
|
5509
|
+
*/
|
|
5510
|
+
cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPv6List>;
|
|
5511
|
+
/**
|
|
5512
|
+
* Manage floating IPv6 addresses.
|
|
5513
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
5514
|
+
* @param {*} [options] Override http request option.
|
|
5515
|
+
* @throws {RequiredError}
|
|
5516
|
+
*/
|
|
5517
|
+
cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6>;
|
|
5518
|
+
/**
|
|
5519
|
+
* Manage floating IPv6 addresses.
|
|
5520
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
5521
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
5522
|
+
* @param {*} [options] Override http request option.
|
|
5523
|
+
* @throws {RequiredError}
|
|
5524
|
+
*/
|
|
5525
|
+
cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6UnauthorizeResponse>;
|
|
4750
5526
|
/**
|
|
4751
5527
|
*
|
|
4752
5528
|
* @summary List hardware generations
|
|
@@ -5272,84 +6048,143 @@ export declare const CloudApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5272
6048
|
export declare class CloudApi extends BaseAPI {
|
|
5273
6049
|
/**
|
|
5274
6050
|
* Require complete user profile for provisioning (create) API actions.
|
|
5275
|
-
* @param {
|
|
6051
|
+
* @param {Bucket} [bucket]
|
|
5276
6052
|
* @param {*} [options] Override http request option.
|
|
5277
6053
|
* @throws {RequiredError}
|
|
5278
6054
|
*/
|
|
5279
|
-
|
|
6055
|
+
cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
|
|
5280
6056
|
/**
|
|
5281
6057
|
* Require complete user profile for provisioning (create) API actions.
|
|
5282
|
-
* @param {number} id A unique integer value identifying this
|
|
6058
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
6059
|
+
* @param {Bucket} [bucket]
|
|
5283
6060
|
* @param {*} [options] Override http request option.
|
|
5284
6061
|
* @throws {RequiredError}
|
|
5285
6062
|
*/
|
|
5286
|
-
|
|
6063
|
+
cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
|
|
5287
6064
|
/**
|
|
5288
6065
|
* Require complete user profile for provisioning (create) API actions.
|
|
6066
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
6067
|
+
* @param {Bucket} [bucket]
|
|
5289
6068
|
* @param {*} [options] Override http request option.
|
|
5290
6069
|
* @throws {RequiredError}
|
|
5291
6070
|
*/
|
|
5292
|
-
|
|
6071
|
+
cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
|
|
5293
6072
|
/**
|
|
5294
6073
|
* Require complete user profile for provisioning (create) API actions.
|
|
5295
|
-
* @param {number} id A unique integer value identifying this
|
|
5296
|
-
* @param {PatchedFirewallRulesSet} [patchedFirewallRulesSet]
|
|
6074
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
5297
6075
|
* @param {*} [options] Override http request option.
|
|
5298
6076
|
* @throws {RequiredError}
|
|
5299
6077
|
*/
|
|
5300
|
-
|
|
6078
|
+
cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
5301
6079
|
/**
|
|
5302
6080
|
* Require complete user profile for provisioning (create) API actions.
|
|
5303
|
-
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
5304
6081
|
* @param {*} [options] Override http request option.
|
|
5305
6082
|
* @throws {RequiredError}
|
|
5306
6083
|
*/
|
|
5307
|
-
|
|
6084
|
+
cloudBucketsList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket[], any, {}>>;
|
|
5308
6085
|
/**
|
|
5309
6086
|
* Require complete user profile for provisioning (create) API actions.
|
|
5310
|
-
* @param {
|
|
5311
|
-
* @param {
|
|
6087
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
6088
|
+
* @param {Bucket} [bucket]
|
|
5312
6089
|
* @param {*} [options] Override http request option.
|
|
5313
6090
|
* @throws {RequiredError}
|
|
5314
6091
|
*/
|
|
5315
|
-
|
|
6092
|
+
cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
|
|
5316
6093
|
/**
|
|
5317
6094
|
* Require complete user profile for provisioning (create) API actions.
|
|
5318
|
-
* @param {
|
|
5319
|
-
* @param {string} rulesSetId
|
|
6095
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
5320
6096
|
* @param {*} [options] Override http request option.
|
|
5321
6097
|
* @throws {RequiredError}
|
|
5322
6098
|
*/
|
|
5323
|
-
|
|
6099
|
+
cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
|
|
5324
6100
|
/**
|
|
5325
6101
|
* Require complete user profile for provisioning (create) API actions.
|
|
5326
|
-
* @param {
|
|
6102
|
+
* @param {number} id A unique integer value identifying this S3 bucket.
|
|
6103
|
+
* @param {Bucket} [bucket]
|
|
5327
6104
|
* @param {*} [options] Override http request option.
|
|
5328
6105
|
* @throws {RequiredError}
|
|
5329
6106
|
*/
|
|
5330
|
-
|
|
6107
|
+
cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
|
|
5331
6108
|
/**
|
|
5332
6109
|
* Require complete user profile for provisioning (create) API actions.
|
|
5333
|
-
* @param {
|
|
5334
|
-
* @param {string} rulesSetId
|
|
5335
|
-
* @param {PatchedFirewallRule} [patchedFirewallRule]
|
|
6110
|
+
* @param {FirewallRulesSet} firewallRulesSet
|
|
5336
6111
|
* @param {*} [options] Override http request option.
|
|
5337
6112
|
* @throws {RequiredError}
|
|
5338
6113
|
*/
|
|
5339
|
-
|
|
6114
|
+
cloudFirewallRulesSetCreate(firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
|
|
5340
6115
|
/**
|
|
5341
6116
|
* Require complete user profile for provisioning (create) API actions.
|
|
5342
|
-
* @param {
|
|
5343
|
-
* @param {string} rulesSetId
|
|
6117
|
+
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
5344
6118
|
* @param {*} [options] Override http request option.
|
|
5345
6119
|
* @throws {RequiredError}
|
|
5346
6120
|
*/
|
|
5347
|
-
|
|
6121
|
+
cloudFirewallRulesSetDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
5348
6122
|
/**
|
|
5349
6123
|
* Require complete user profile for provisioning (create) API actions.
|
|
5350
|
-
* @param {
|
|
5351
|
-
* @
|
|
5352
|
-
|
|
6124
|
+
* @param {*} [options] Override http request option.
|
|
6125
|
+
* @throws {RequiredError}
|
|
6126
|
+
*/
|
|
6127
|
+
cloudFirewallRulesSetList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet[], any, {}>>;
|
|
6128
|
+
/**
|
|
6129
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
6130
|
+
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
6131
|
+
* @param {PatchedFirewallRulesSet} [patchedFirewallRulesSet]
|
|
6132
|
+
* @param {*} [options] Override http request option.
|
|
6133
|
+
* @throws {RequiredError}
|
|
6134
|
+
*/
|
|
6135
|
+
cloudFirewallRulesSetPartialUpdate(id: number, patchedFirewallRulesSet?: PatchedFirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
|
|
6136
|
+
/**
|
|
6137
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
6138
|
+
* @param {number} id A unique integer value identifying this firewall rules set.
|
|
6139
|
+
* @param {*} [options] Override http request option.
|
|
6140
|
+
* @throws {RequiredError}
|
|
6141
|
+
*/
|
|
6142
|
+
cloudFirewallRulesSetRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
|
|
6143
|
+
/**
|
|
6144
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
6145
|
+
* @param {string} rulesSetId
|
|
6146
|
+
* @param {FirewallRule} firewallRule
|
|
6147
|
+
* @param {*} [options] Override http request option.
|
|
6148
|
+
* @throws {RequiredError}
|
|
6149
|
+
*/
|
|
6150
|
+
cloudFirewallRulesSetRulesCreate(rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
|
|
6151
|
+
/**
|
|
6152
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
6153
|
+
* @param {string} ruleId
|
|
6154
|
+
* @param {string} rulesSetId
|
|
6155
|
+
* @param {*} [options] Override http request option.
|
|
6156
|
+
* @throws {RequiredError}
|
|
6157
|
+
*/
|
|
6158
|
+
cloudFirewallRulesSetRulesDestroy(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
6159
|
+
/**
|
|
6160
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
6161
|
+
* @param {string} rulesSetId
|
|
6162
|
+
* @param {*} [options] Override http request option.
|
|
6163
|
+
* @throws {RequiredError}
|
|
6164
|
+
*/
|
|
6165
|
+
cloudFirewallRulesSetRulesList(rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule[], any, {}>>;
|
|
6166
|
+
/**
|
|
6167
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
6168
|
+
* @param {string} ruleId
|
|
6169
|
+
* @param {string} rulesSetId
|
|
6170
|
+
* @param {PatchedFirewallRule} [patchedFirewallRule]
|
|
6171
|
+
* @param {*} [options] Override http request option.
|
|
6172
|
+
* @throws {RequiredError}
|
|
6173
|
+
*/
|
|
6174
|
+
cloudFirewallRulesSetRulesPartialUpdate(ruleId: string, rulesSetId: string, patchedFirewallRule?: PatchedFirewallRule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
|
|
6175
|
+
/**
|
|
6176
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
6177
|
+
* @param {string} ruleId
|
|
6178
|
+
* @param {string} rulesSetId
|
|
6179
|
+
* @param {*} [options] Override http request option.
|
|
6180
|
+
* @throws {RequiredError}
|
|
6181
|
+
*/
|
|
6182
|
+
cloudFirewallRulesSetRulesRetrieve(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
|
|
6183
|
+
/**
|
|
6184
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
6185
|
+
* @param {string} ruleId
|
|
6186
|
+
* @param {string} rulesSetId
|
|
6187
|
+
* @param {FirewallRule} firewallRule
|
|
5353
6188
|
* @param {*} [options] Override http request option.
|
|
5354
6189
|
* @throws {RequiredError}
|
|
5355
6190
|
*/
|
|
@@ -5362,6 +6197,110 @@ export declare class CloudApi extends BaseAPI {
|
|
|
5362
6197
|
* @throws {RequiredError}
|
|
5363
6198
|
*/
|
|
5364
6199
|
cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
|
|
6200
|
+
/**
|
|
6201
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
6202
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
6203
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
6204
|
+
* @param {*} [options] Override http request option.
|
|
6205
|
+
* @throws {RequiredError}
|
|
6206
|
+
*/
|
|
6207
|
+
cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPAuthorizationList, any, {}>>;
|
|
6208
|
+
/**
|
|
6209
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
6210
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
6211
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
6212
|
+
* @param {*} [options] Override http request option.
|
|
6213
|
+
* @throws {RequiredError}
|
|
6214
|
+
*/
|
|
6215
|
+
cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4AuthorizeResponse, any, {}>>;
|
|
6216
|
+
/**
|
|
6217
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
6218
|
+
* @param {FloatingIPv4Create} [floatingIPv4Create]
|
|
6219
|
+
* @param {*} [options] Override http request option.
|
|
6220
|
+
* @throws {RequiredError}
|
|
6221
|
+
*/
|
|
6222
|
+
cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4, any, {}>>;
|
|
6223
|
+
/**
|
|
6224
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
6225
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
6226
|
+
* @param {*} [options] Override http request option.
|
|
6227
|
+
* @throws {RequiredError}
|
|
6228
|
+
*/
|
|
6229
|
+
cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
6230
|
+
/**
|
|
6231
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
6232
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
6233
|
+
* @param {*} [options] Override http request option.
|
|
6234
|
+
* @throws {RequiredError}
|
|
6235
|
+
*/
|
|
6236
|
+
cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPv4List, any, {}>>;
|
|
6237
|
+
/**
|
|
6238
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
6239
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
6240
|
+
* @param {*} [options] Override http request option.
|
|
6241
|
+
* @throws {RequiredError}
|
|
6242
|
+
*/
|
|
6243
|
+
cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4, any, {}>>;
|
|
6244
|
+
/**
|
|
6245
|
+
* Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
|
|
6246
|
+
* @param {number} id A unique integer value identifying this floating IPv4.
|
|
6247
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
6248
|
+
* @param {*} [options] Override http request option.
|
|
6249
|
+
* @throws {RequiredError}
|
|
6250
|
+
*/
|
|
6251
|
+
cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4UnauthorizeResponse, any, {}>>;
|
|
6252
|
+
/**
|
|
6253
|
+
* Manage floating IPv6 addresses.
|
|
6254
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
6255
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
6256
|
+
* @param {*} [options] Override http request option.
|
|
6257
|
+
* @throws {RequiredError}
|
|
6258
|
+
*/
|
|
6259
|
+
cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPAuthorizationList, any, {}>>;
|
|
6260
|
+
/**
|
|
6261
|
+
* Manage floating IPv6 addresses.
|
|
6262
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
6263
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
6264
|
+
* @param {*} [options] Override http request option.
|
|
6265
|
+
* @throws {RequiredError}
|
|
6266
|
+
*/
|
|
6267
|
+
cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6AuthorizeResponse, any, {}>>;
|
|
6268
|
+
/**
|
|
6269
|
+
* Manage floating IPv6 addresses.
|
|
6270
|
+
* @param {FloatingIPv6Create} [floatingIPv6Create]
|
|
6271
|
+
* @param {*} [options] Override http request option.
|
|
6272
|
+
* @throws {RequiredError}
|
|
6273
|
+
*/
|
|
6274
|
+
cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6, any, {}>>;
|
|
6275
|
+
/**
|
|
6276
|
+
* Manage floating IPv6 addresses.
|
|
6277
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
6278
|
+
* @param {*} [options] Override http request option.
|
|
6279
|
+
* @throws {RequiredError}
|
|
6280
|
+
*/
|
|
6281
|
+
cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
6282
|
+
/**
|
|
6283
|
+
* Manage floating IPv6 addresses.
|
|
6284
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
6285
|
+
* @param {*} [options] Override http request option.
|
|
6286
|
+
* @throws {RequiredError}
|
|
6287
|
+
*/
|
|
6288
|
+
cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPv6List, any, {}>>;
|
|
6289
|
+
/**
|
|
6290
|
+
* Manage floating IPv6 addresses.
|
|
6291
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
6292
|
+
* @param {*} [options] Override http request option.
|
|
6293
|
+
* @throws {RequiredError}
|
|
6294
|
+
*/
|
|
6295
|
+
cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6, any, {}>>;
|
|
6296
|
+
/**
|
|
6297
|
+
* Manage floating IPv6 addresses.
|
|
6298
|
+
* @param {number} id A unique integer value identifying this floating IPv6.
|
|
6299
|
+
* @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
|
|
6300
|
+
* @param {*} [options] Override http request option.
|
|
6301
|
+
* @throws {RequiredError}
|
|
6302
|
+
*/
|
|
6303
|
+
cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6UnauthorizeResponse, any, {}>>;
|
|
5365
6304
|
/**
|
|
5366
6305
|
*
|
|
5367
6306
|
* @summary List hardware generations
|
|
@@ -6633,6 +7572,1578 @@ export declare class DomainApi extends BaseAPI {
|
|
|
6633
7572
|
*/
|
|
6634
7573
|
domainTldRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TLD, any, {}>>;
|
|
6635
7574
|
}
|
|
7575
|
+
/**
|
|
7576
|
+
* EmailApi - axios parameter creator
|
|
7577
|
+
*/
|
|
7578
|
+
export declare const EmailApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
7579
|
+
/**
|
|
7580
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7581
|
+
* @param {ApiCredential} [apiCredential]
|
|
7582
|
+
* @param {*} [options] Override http request option.
|
|
7583
|
+
* @throws {RequiredError}
|
|
7584
|
+
*/
|
|
7585
|
+
emailApiCredentialsCreate: (apiCredential?: ApiCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7586
|
+
/**
|
|
7587
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7588
|
+
* @param {number} id A unique integer value identifying this api credential.
|
|
7589
|
+
* @param {*} [options] Override http request option.
|
|
7590
|
+
* @throws {RequiredError}
|
|
7591
|
+
*/
|
|
7592
|
+
emailApiCredentialsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7593
|
+
/**
|
|
7594
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7595
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7596
|
+
* @param {*} [options] Override http request option.
|
|
7597
|
+
* @throws {RequiredError}
|
|
7598
|
+
*/
|
|
7599
|
+
emailApiCredentialsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7600
|
+
/**
|
|
7601
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7602
|
+
* @param {number} id A unique integer value identifying this api credential.
|
|
7603
|
+
* @param {*} [options] Override http request option.
|
|
7604
|
+
* @throws {RequiredError}
|
|
7605
|
+
*/
|
|
7606
|
+
emailApiCredentialsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7607
|
+
/**
|
|
7608
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7609
|
+
* @param {DomainAdd} domainAdd
|
|
7610
|
+
* @param {*} [options] Override http request option.
|
|
7611
|
+
* @throws {RequiredError}
|
|
7612
|
+
*/
|
|
7613
|
+
emailDomainsCreate: (domainAdd: DomainAdd, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7614
|
+
/**
|
|
7615
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7616
|
+
* @param {number} domainPk
|
|
7617
|
+
* @param {InboundRoute} inboundRoute
|
|
7618
|
+
* @param {*} [options] Override http request option.
|
|
7619
|
+
* @throws {RequiredError}
|
|
7620
|
+
*/
|
|
7621
|
+
emailDomainsInboundRoutesCreate: (domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7622
|
+
/**
|
|
7623
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7624
|
+
* @param {number} domainPk
|
|
7625
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7626
|
+
* @param {*} [options] Override http request option.
|
|
7627
|
+
* @throws {RequiredError}
|
|
7628
|
+
*/
|
|
7629
|
+
emailDomainsInboundRoutesList: (domainPk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7630
|
+
/**
|
|
7631
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7632
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7633
|
+
* @param {*} [options] Override http request option.
|
|
7634
|
+
* @throws {RequiredError}
|
|
7635
|
+
*/
|
|
7636
|
+
emailDomainsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7637
|
+
/**
|
|
7638
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7639
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
7640
|
+
* @param {*} [options] Override http request option.
|
|
7641
|
+
* @throws {RequiredError}
|
|
7642
|
+
*/
|
|
7643
|
+
emailDomainsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7644
|
+
/**
|
|
7645
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7646
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
7647
|
+
* @param {SendingDomain} [sendingDomain]
|
|
7648
|
+
* @param {*} [options] Override http request option.
|
|
7649
|
+
* @throws {RequiredError}
|
|
7650
|
+
*/
|
|
7651
|
+
emailDomainsRotateDkimCreate: (id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7652
|
+
/**
|
|
7653
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7654
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
7655
|
+
* @param {SendingDomain} [sendingDomain]
|
|
7656
|
+
* @param {*} [options] Override http request option.
|
|
7657
|
+
* @throws {RequiredError}
|
|
7658
|
+
*/
|
|
7659
|
+
emailDomainsToggleInboundCreate: (id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7660
|
+
/**
|
|
7661
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7662
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
7663
|
+
* @param {SendingDomain} [sendingDomain]
|
|
7664
|
+
* @param {*} [options] Override http request option.
|
|
7665
|
+
* @throws {RequiredError}
|
|
7666
|
+
*/
|
|
7667
|
+
emailDomainsVerifyCreate: (id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7668
|
+
/**
|
|
7669
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7670
|
+
* @param {InboundRoute} inboundRoute
|
|
7671
|
+
* @param {*} [options] Override http request option.
|
|
7672
|
+
* @throws {RequiredError}
|
|
7673
|
+
*/
|
|
7674
|
+
emailInboundRoutesCreate: (inboundRoute: InboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7675
|
+
/**
|
|
7676
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7677
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
7678
|
+
* @param {*} [options] Override http request option.
|
|
7679
|
+
* @throws {RequiredError}
|
|
7680
|
+
*/
|
|
7681
|
+
emailInboundRoutesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7682
|
+
/**
|
|
7683
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7684
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7685
|
+
* @param {*} [options] Override http request option.
|
|
7686
|
+
* @throws {RequiredError}
|
|
7687
|
+
*/
|
|
7688
|
+
emailInboundRoutesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7689
|
+
/**
|
|
7690
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7691
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
7692
|
+
* @param {PatchedInboundRoute} [patchedInboundRoute]
|
|
7693
|
+
* @param {*} [options] Override http request option.
|
|
7694
|
+
* @throws {RequiredError}
|
|
7695
|
+
*/
|
|
7696
|
+
emailInboundRoutesPartialUpdate: (id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7697
|
+
/**
|
|
7698
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7699
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
7700
|
+
* @param {*} [options] Override http request option.
|
|
7701
|
+
* @throws {RequiredError}
|
|
7702
|
+
*/
|
|
7703
|
+
emailInboundRoutesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7704
|
+
/**
|
|
7705
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7706
|
+
* @param {string} messageId
|
|
7707
|
+
* @param {*} [options] Override http request option.
|
|
7708
|
+
* @throws {RequiredError}
|
|
7709
|
+
*/
|
|
7710
|
+
emailMessagesRetrieve: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7711
|
+
/**
|
|
7712
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7713
|
+
* @param {SandboxAddress} sandboxAddress
|
|
7714
|
+
* @param {*} [options] Override http request option.
|
|
7715
|
+
* @throws {RequiredError}
|
|
7716
|
+
*/
|
|
7717
|
+
emailSandboxAddressesCreate: (sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7718
|
+
/**
|
|
7719
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7720
|
+
* @param {number} id A unique integer value identifying this sandbox verified address.
|
|
7721
|
+
* @param {*} [options] Override http request option.
|
|
7722
|
+
* @throws {RequiredError}
|
|
7723
|
+
*/
|
|
7724
|
+
emailSandboxAddressesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7725
|
+
/**
|
|
7726
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7727
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7728
|
+
* @param {*} [options] Override http request option.
|
|
7729
|
+
* @throws {RequiredError}
|
|
7730
|
+
*/
|
|
7731
|
+
emailSandboxAddressesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7732
|
+
/**
|
|
7733
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7734
|
+
* @param {number} id A unique integer value identifying this sandbox verified address.
|
|
7735
|
+
* @param {*} [options] Override http request option.
|
|
7736
|
+
* @throws {RequiredError}
|
|
7737
|
+
*/
|
|
7738
|
+
emailSandboxAddressesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7739
|
+
/**
|
|
7740
|
+
*
|
|
7741
|
+
* @param {*} [options] Override http request option.
|
|
7742
|
+
* @throws {RequiredError}
|
|
7743
|
+
*/
|
|
7744
|
+
emailSendCreate: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7745
|
+
/**
|
|
7746
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7747
|
+
* @param {number} servicePk
|
|
7748
|
+
* @param {ApiCredential} [apiCredential]
|
|
7749
|
+
* @param {*} [options] Override http request option.
|
|
7750
|
+
* @throws {RequiredError}
|
|
7751
|
+
*/
|
|
7752
|
+
emailServicesApiCredentialsCreate: (servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7753
|
+
/**
|
|
7754
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7755
|
+
* @param {number} servicePk
|
|
7756
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7757
|
+
* @param {*} [options] Override http request option.
|
|
7758
|
+
* @throws {RequiredError}
|
|
7759
|
+
*/
|
|
7760
|
+
emailServicesApiCredentialsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7761
|
+
/**
|
|
7762
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7763
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
7764
|
+
* @param {*} [options] Override http request option.
|
|
7765
|
+
* @throws {RequiredError}
|
|
7766
|
+
*/
|
|
7767
|
+
emailServicesCancelCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7768
|
+
/**
|
|
7769
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7770
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
7771
|
+
* @param {PatchedSubscribe} [patchedSubscribe]
|
|
7772
|
+
* @param {*} [options] Override http request option.
|
|
7773
|
+
* @throws {RequiredError}
|
|
7774
|
+
*/
|
|
7775
|
+
emailServicesChangeTierPartialUpdate: (id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7776
|
+
/**
|
|
7777
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7778
|
+
* @param {Subscribe} subscribe
|
|
7779
|
+
* @param {*} [options] Override http request option.
|
|
7780
|
+
* @throws {RequiredError}
|
|
7781
|
+
*/
|
|
7782
|
+
emailServicesCreate: (subscribe: Subscribe, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7783
|
+
/**
|
|
7784
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7785
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
7786
|
+
* @param {*} [options] Override http request option.
|
|
7787
|
+
* @throws {RequiredError}
|
|
7788
|
+
*/
|
|
7789
|
+
emailServicesDedicatedIpCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7790
|
+
/**
|
|
7791
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7792
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
7793
|
+
* @param {*} [options] Override http request option.
|
|
7794
|
+
* @throws {RequiredError}
|
|
7795
|
+
*/
|
|
7796
|
+
emailServicesDedicatedIpDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7797
|
+
/**
|
|
7798
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7799
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
7800
|
+
* @param {*} [options] Override http request option.
|
|
7801
|
+
* @throws {RequiredError}
|
|
7802
|
+
*/
|
|
7803
|
+
emailServicesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7804
|
+
/**
|
|
7805
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7806
|
+
* @param {number} servicePk
|
|
7807
|
+
* @param {DomainAdd} domainAdd
|
|
7808
|
+
* @param {*} [options] Override http request option.
|
|
7809
|
+
* @throws {RequiredError}
|
|
7810
|
+
*/
|
|
7811
|
+
emailServicesDomainsCreate: (servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7812
|
+
/**
|
|
7813
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7814
|
+
* @param {number} servicePk
|
|
7815
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7816
|
+
* @param {*} [options] Override http request option.
|
|
7817
|
+
* @throws {RequiredError}
|
|
7818
|
+
*/
|
|
7819
|
+
emailServicesDomainsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7820
|
+
/**
|
|
7821
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7822
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7823
|
+
* @param {*} [options] Override http request option.
|
|
7824
|
+
* @throws {RequiredError}
|
|
7825
|
+
*/
|
|
7826
|
+
emailServicesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7827
|
+
/**
|
|
7828
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7829
|
+
* @param {number} servicePk
|
|
7830
|
+
* @param {*} [options] Override http request option.
|
|
7831
|
+
* @throws {RequiredError}
|
|
7832
|
+
*/
|
|
7833
|
+
emailServicesMessagesRetrieve: (servicePk: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7834
|
+
/**
|
|
7835
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7836
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
7837
|
+
* @param {PatchedEmailService} [patchedEmailService]
|
|
7838
|
+
* @param {*} [options] Override http request option.
|
|
7839
|
+
* @throws {RequiredError}
|
|
7840
|
+
*/
|
|
7841
|
+
emailServicesPartialUpdate: (id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7842
|
+
/**
|
|
7843
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7844
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
7845
|
+
* @param {*} [options] Override http request option.
|
|
7846
|
+
* @throws {RequiredError}
|
|
7847
|
+
*/
|
|
7848
|
+
emailServicesRestoreCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7849
|
+
/**
|
|
7850
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7851
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
7852
|
+
* @param {*} [options] Override http request option.
|
|
7853
|
+
* @throws {RequiredError}
|
|
7854
|
+
*/
|
|
7855
|
+
emailServicesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7856
|
+
/**
|
|
7857
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7858
|
+
* @param {number} servicePk
|
|
7859
|
+
* @param {SandboxAddress} sandboxAddress
|
|
7860
|
+
* @param {*} [options] Override http request option.
|
|
7861
|
+
* @throws {RequiredError}
|
|
7862
|
+
*/
|
|
7863
|
+
emailServicesSandboxAddressesCreate: (servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7864
|
+
/**
|
|
7865
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7866
|
+
* @param {number} servicePk
|
|
7867
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7868
|
+
* @param {*} [options] Override http request option.
|
|
7869
|
+
* @throws {RequiredError}
|
|
7870
|
+
*/
|
|
7871
|
+
emailServicesSandboxAddressesList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7872
|
+
/**
|
|
7873
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7874
|
+
* @param {number} servicePk
|
|
7875
|
+
* @param {SmtpCredential} [smtpCredential]
|
|
7876
|
+
* @param {*} [options] Override http request option.
|
|
7877
|
+
* @throws {RequiredError}
|
|
7878
|
+
*/
|
|
7879
|
+
emailServicesSmtpCredentialsCreate: (servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7880
|
+
/**
|
|
7881
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7882
|
+
* @param {number} servicePk
|
|
7883
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7884
|
+
* @param {*} [options] Override http request option.
|
|
7885
|
+
* @throws {RequiredError}
|
|
7886
|
+
*/
|
|
7887
|
+
emailServicesSmtpCredentialsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7888
|
+
/**
|
|
7889
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7890
|
+
* @param {number} servicePk
|
|
7891
|
+
* @param {*} [options] Override http request option.
|
|
7892
|
+
* @throws {RequiredError}
|
|
7893
|
+
*/
|
|
7894
|
+
emailServicesStatsRetrieve: (servicePk: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7895
|
+
/**
|
|
7896
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7897
|
+
* @param {number} servicePk
|
|
7898
|
+
* @param {SuppressionEntry} [suppressionEntry]
|
|
7899
|
+
* @param {*} [options] Override http request option.
|
|
7900
|
+
* @throws {RequiredError}
|
|
7901
|
+
*/
|
|
7902
|
+
emailServicesSuppressionsCreate: (servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7903
|
+
/**
|
|
7904
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7905
|
+
* @param {number} servicePk
|
|
7906
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7907
|
+
* @param {*} [options] Override http request option.
|
|
7908
|
+
* @throws {RequiredError}
|
|
7909
|
+
*/
|
|
7910
|
+
emailServicesSuppressionsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7911
|
+
/**
|
|
7912
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7913
|
+
* @param {SmtpCredential} [smtpCredential]
|
|
7914
|
+
* @param {*} [options] Override http request option.
|
|
7915
|
+
* @throws {RequiredError}
|
|
7916
|
+
*/
|
|
7917
|
+
emailSmtpCredentialsCreate: (smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7918
|
+
/**
|
|
7919
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7920
|
+
* @param {number} id A unique integer value identifying this smtp credential.
|
|
7921
|
+
* @param {*} [options] Override http request option.
|
|
7922
|
+
* @throws {RequiredError}
|
|
7923
|
+
*/
|
|
7924
|
+
emailSmtpCredentialsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7925
|
+
/**
|
|
7926
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7927
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7928
|
+
* @param {*} [options] Override http request option.
|
|
7929
|
+
* @throws {RequiredError}
|
|
7930
|
+
*/
|
|
7931
|
+
emailSmtpCredentialsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7932
|
+
/**
|
|
7933
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7934
|
+
* @param {number} id A unique integer value identifying this smtp credential.
|
|
7935
|
+
* @param {*} [options] Override http request option.
|
|
7936
|
+
* @throws {RequiredError}
|
|
7937
|
+
*/
|
|
7938
|
+
emailSmtpCredentialsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7939
|
+
/**
|
|
7940
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7941
|
+
* @param {SuppressionEntry} [suppressionEntry]
|
|
7942
|
+
* @param {*} [options] Override http request option.
|
|
7943
|
+
* @throws {RequiredError}
|
|
7944
|
+
*/
|
|
7945
|
+
emailSuppressionsCreate: (suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7946
|
+
/**
|
|
7947
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7948
|
+
* @param {number} id A unique integer value identifying this suppression entry.
|
|
7949
|
+
* @param {*} [options] Override http request option.
|
|
7950
|
+
* @throws {RequiredError}
|
|
7951
|
+
*/
|
|
7952
|
+
emailSuppressionsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7953
|
+
/**
|
|
7954
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7955
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7956
|
+
* @param {*} [options] Override http request option.
|
|
7957
|
+
* @throws {RequiredError}
|
|
7958
|
+
*/
|
|
7959
|
+
emailSuppressionsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7960
|
+
/**
|
|
7961
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7962
|
+
* @param {number} id A unique integer value identifying this suppression entry.
|
|
7963
|
+
* @param {*} [options] Override http request option.
|
|
7964
|
+
* @throws {RequiredError}
|
|
7965
|
+
*/
|
|
7966
|
+
emailSuppressionsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7967
|
+
};
|
|
7968
|
+
/**
|
|
7969
|
+
* EmailApi - functional programming interface
|
|
7970
|
+
*/
|
|
7971
|
+
export declare const EmailApiFp: (configuration?: Configuration) => {
|
|
7972
|
+
/**
|
|
7973
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7974
|
+
* @param {ApiCredential} [apiCredential]
|
|
7975
|
+
* @param {*} [options] Override http request option.
|
|
7976
|
+
* @throws {RequiredError}
|
|
7977
|
+
*/
|
|
7978
|
+
emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
|
|
7979
|
+
/**
|
|
7980
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7981
|
+
* @param {number} id A unique integer value identifying this api credential.
|
|
7982
|
+
* @param {*} [options] Override http request option.
|
|
7983
|
+
* @throws {RequiredError}
|
|
7984
|
+
*/
|
|
7985
|
+
emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
7986
|
+
/**
|
|
7987
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7988
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
7989
|
+
* @param {*} [options] Override http request option.
|
|
7990
|
+
* @throws {RequiredError}
|
|
7991
|
+
*/
|
|
7992
|
+
emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedApiCredentialList>>;
|
|
7993
|
+
/**
|
|
7994
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
7995
|
+
* @param {number} id A unique integer value identifying this api credential.
|
|
7996
|
+
* @param {*} [options] Override http request option.
|
|
7997
|
+
* @throws {RequiredError}
|
|
7998
|
+
*/
|
|
7999
|
+
emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
|
|
8000
|
+
/**
|
|
8001
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8002
|
+
* @param {DomainAdd} domainAdd
|
|
8003
|
+
* @param {*} [options] Override http request option.
|
|
8004
|
+
* @throws {RequiredError}
|
|
8005
|
+
*/
|
|
8006
|
+
emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
|
|
8007
|
+
/**
|
|
8008
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8009
|
+
* @param {number} domainPk
|
|
8010
|
+
* @param {InboundRoute} inboundRoute
|
|
8011
|
+
* @param {*} [options] Override http request option.
|
|
8012
|
+
* @throws {RequiredError}
|
|
8013
|
+
*/
|
|
8014
|
+
emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
|
|
8015
|
+
/**
|
|
8016
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8017
|
+
* @param {number} domainPk
|
|
8018
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8019
|
+
* @param {*} [options] Override http request option.
|
|
8020
|
+
* @throws {RequiredError}
|
|
8021
|
+
*/
|
|
8022
|
+
emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInboundRouteList>>;
|
|
8023
|
+
/**
|
|
8024
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8025
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8026
|
+
* @param {*} [options] Override http request option.
|
|
8027
|
+
* @throws {RequiredError}
|
|
8028
|
+
*/
|
|
8029
|
+
emailDomainsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSendingDomainList>>;
|
|
8030
|
+
/**
|
|
8031
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8032
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8033
|
+
* @param {*} [options] Override http request option.
|
|
8034
|
+
* @throws {RequiredError}
|
|
8035
|
+
*/
|
|
8036
|
+
emailDomainsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
|
|
8037
|
+
/**
|
|
8038
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8039
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8040
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8041
|
+
* @param {*} [options] Override http request option.
|
|
8042
|
+
* @throws {RequiredError}
|
|
8043
|
+
*/
|
|
8044
|
+
emailDomainsRotateDkimCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
|
|
8045
|
+
/**
|
|
8046
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8047
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8048
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8049
|
+
* @param {*} [options] Override http request option.
|
|
8050
|
+
* @throws {RequiredError}
|
|
8051
|
+
*/
|
|
8052
|
+
emailDomainsToggleInboundCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
|
|
8053
|
+
/**
|
|
8054
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8055
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8056
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8057
|
+
* @param {*} [options] Override http request option.
|
|
8058
|
+
* @throws {RequiredError}
|
|
8059
|
+
*/
|
|
8060
|
+
emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
|
|
8061
|
+
/**
|
|
8062
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8063
|
+
* @param {InboundRoute} inboundRoute
|
|
8064
|
+
* @param {*} [options] Override http request option.
|
|
8065
|
+
* @throws {RequiredError}
|
|
8066
|
+
*/
|
|
8067
|
+
emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
|
|
8068
|
+
/**
|
|
8069
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8070
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8071
|
+
* @param {*} [options] Override http request option.
|
|
8072
|
+
* @throws {RequiredError}
|
|
8073
|
+
*/
|
|
8074
|
+
emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8075
|
+
/**
|
|
8076
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8077
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8078
|
+
* @param {*} [options] Override http request option.
|
|
8079
|
+
* @throws {RequiredError}
|
|
8080
|
+
*/
|
|
8081
|
+
emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInboundRouteList>>;
|
|
8082
|
+
/**
|
|
8083
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8084
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8085
|
+
* @param {PatchedInboundRoute} [patchedInboundRoute]
|
|
8086
|
+
* @param {*} [options] Override http request option.
|
|
8087
|
+
* @throws {RequiredError}
|
|
8088
|
+
*/
|
|
8089
|
+
emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
|
|
8090
|
+
/**
|
|
8091
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8092
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8093
|
+
* @param {*} [options] Override http request option.
|
|
8094
|
+
* @throws {RequiredError}
|
|
8095
|
+
*/
|
|
8096
|
+
emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
|
|
8097
|
+
/**
|
|
8098
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8099
|
+
* @param {string} messageId
|
|
8100
|
+
* @param {*} [options] Override http request option.
|
|
8101
|
+
* @throws {RequiredError}
|
|
8102
|
+
*/
|
|
8103
|
+
emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8104
|
+
/**
|
|
8105
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8106
|
+
* @param {SandboxAddress} sandboxAddress
|
|
8107
|
+
* @param {*} [options] Override http request option.
|
|
8108
|
+
* @throws {RequiredError}
|
|
8109
|
+
*/
|
|
8110
|
+
emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
|
|
8111
|
+
/**
|
|
8112
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8113
|
+
* @param {number} id A unique integer value identifying this sandbox verified address.
|
|
8114
|
+
* @param {*} [options] Override http request option.
|
|
8115
|
+
* @throws {RequiredError}
|
|
8116
|
+
*/
|
|
8117
|
+
emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8118
|
+
/**
|
|
8119
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8120
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8121
|
+
* @param {*} [options] Override http request option.
|
|
8122
|
+
* @throws {RequiredError}
|
|
8123
|
+
*/
|
|
8124
|
+
emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSandboxAddressList>>;
|
|
8125
|
+
/**
|
|
8126
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8127
|
+
* @param {number} id A unique integer value identifying this sandbox verified address.
|
|
8128
|
+
* @param {*} [options] Override http request option.
|
|
8129
|
+
* @throws {RequiredError}
|
|
8130
|
+
*/
|
|
8131
|
+
emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
|
|
8132
|
+
/**
|
|
8133
|
+
*
|
|
8134
|
+
* @param {*} [options] Override http request option.
|
|
8135
|
+
* @throws {RequiredError}
|
|
8136
|
+
*/
|
|
8137
|
+
emailSendCreate(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8138
|
+
/**
|
|
8139
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8140
|
+
* @param {number} servicePk
|
|
8141
|
+
* @param {ApiCredential} [apiCredential]
|
|
8142
|
+
* @param {*} [options] Override http request option.
|
|
8143
|
+
* @throws {RequiredError}
|
|
8144
|
+
*/
|
|
8145
|
+
emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
|
|
8146
|
+
/**
|
|
8147
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8148
|
+
* @param {number} servicePk
|
|
8149
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8150
|
+
* @param {*} [options] Override http request option.
|
|
8151
|
+
* @throws {RequiredError}
|
|
8152
|
+
*/
|
|
8153
|
+
emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedApiCredentialList>>;
|
|
8154
|
+
/**
|
|
8155
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8156
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8157
|
+
* @param {*} [options] Override http request option.
|
|
8158
|
+
* @throws {RequiredError}
|
|
8159
|
+
*/
|
|
8160
|
+
emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
|
|
8161
|
+
/**
|
|
8162
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8163
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8164
|
+
* @param {PatchedSubscribe} [patchedSubscribe]
|
|
8165
|
+
* @param {*} [options] Override http request option.
|
|
8166
|
+
* @throws {RequiredError}
|
|
8167
|
+
*/
|
|
8168
|
+
emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
|
|
8169
|
+
/**
|
|
8170
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8171
|
+
* @param {Subscribe} subscribe
|
|
8172
|
+
* @param {*} [options] Override http request option.
|
|
8173
|
+
* @throws {RequiredError}
|
|
8174
|
+
*/
|
|
8175
|
+
emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
|
|
8176
|
+
/**
|
|
8177
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8178
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8179
|
+
* @param {*} [options] Override http request option.
|
|
8180
|
+
* @throws {RequiredError}
|
|
8181
|
+
*/
|
|
8182
|
+
emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
|
|
8183
|
+
/**
|
|
8184
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8185
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8186
|
+
* @param {*} [options] Override http request option.
|
|
8187
|
+
* @throws {RequiredError}
|
|
8188
|
+
*/
|
|
8189
|
+
emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8190
|
+
/**
|
|
8191
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8192
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8193
|
+
* @param {*} [options] Override http request option.
|
|
8194
|
+
* @throws {RequiredError}
|
|
8195
|
+
*/
|
|
8196
|
+
emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8197
|
+
/**
|
|
8198
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8199
|
+
* @param {number} servicePk
|
|
8200
|
+
* @param {DomainAdd} domainAdd
|
|
8201
|
+
* @param {*} [options] Override http request option.
|
|
8202
|
+
* @throws {RequiredError}
|
|
8203
|
+
*/
|
|
8204
|
+
emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
|
|
8205
|
+
/**
|
|
8206
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8207
|
+
* @param {number} servicePk
|
|
8208
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8209
|
+
* @param {*} [options] Override http request option.
|
|
8210
|
+
* @throws {RequiredError}
|
|
8211
|
+
*/
|
|
8212
|
+
emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSendingDomainList>>;
|
|
8213
|
+
/**
|
|
8214
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8215
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8216
|
+
* @param {*} [options] Override http request option.
|
|
8217
|
+
* @throws {RequiredError}
|
|
8218
|
+
*/
|
|
8219
|
+
emailServicesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedEmailServiceList>>;
|
|
8220
|
+
/**
|
|
8221
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8222
|
+
* @param {number} servicePk
|
|
8223
|
+
* @param {*} [options] Override http request option.
|
|
8224
|
+
* @throws {RequiredError}
|
|
8225
|
+
*/
|
|
8226
|
+
emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8227
|
+
/**
|
|
8228
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8229
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8230
|
+
* @param {PatchedEmailService} [patchedEmailService]
|
|
8231
|
+
* @param {*} [options] Override http request option.
|
|
8232
|
+
* @throws {RequiredError}
|
|
8233
|
+
*/
|
|
8234
|
+
emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
|
|
8235
|
+
/**
|
|
8236
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8237
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8238
|
+
* @param {*} [options] Override http request option.
|
|
8239
|
+
* @throws {RequiredError}
|
|
8240
|
+
*/
|
|
8241
|
+
emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
|
|
8242
|
+
/**
|
|
8243
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8244
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8245
|
+
* @param {*} [options] Override http request option.
|
|
8246
|
+
* @throws {RequiredError}
|
|
8247
|
+
*/
|
|
8248
|
+
emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
|
|
8249
|
+
/**
|
|
8250
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8251
|
+
* @param {number} servicePk
|
|
8252
|
+
* @param {SandboxAddress} sandboxAddress
|
|
8253
|
+
* @param {*} [options] Override http request option.
|
|
8254
|
+
* @throws {RequiredError}
|
|
8255
|
+
*/
|
|
8256
|
+
emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
|
|
8257
|
+
/**
|
|
8258
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8259
|
+
* @param {number} servicePk
|
|
8260
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8261
|
+
* @param {*} [options] Override http request option.
|
|
8262
|
+
* @throws {RequiredError}
|
|
8263
|
+
*/
|
|
8264
|
+
emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSandboxAddressList>>;
|
|
8265
|
+
/**
|
|
8266
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8267
|
+
* @param {number} servicePk
|
|
8268
|
+
* @param {SmtpCredential} [smtpCredential]
|
|
8269
|
+
* @param {*} [options] Override http request option.
|
|
8270
|
+
* @throws {RequiredError}
|
|
8271
|
+
*/
|
|
8272
|
+
emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
|
|
8273
|
+
/**
|
|
8274
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8275
|
+
* @param {number} servicePk
|
|
8276
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8277
|
+
* @param {*} [options] Override http request option.
|
|
8278
|
+
* @throws {RequiredError}
|
|
8279
|
+
*/
|
|
8280
|
+
emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSmtpCredentialList>>;
|
|
8281
|
+
/**
|
|
8282
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8283
|
+
* @param {number} servicePk
|
|
8284
|
+
* @param {*} [options] Override http request option.
|
|
8285
|
+
* @throws {RequiredError}
|
|
8286
|
+
*/
|
|
8287
|
+
emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8288
|
+
/**
|
|
8289
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8290
|
+
* @param {number} servicePk
|
|
8291
|
+
* @param {SuppressionEntry} [suppressionEntry]
|
|
8292
|
+
* @param {*} [options] Override http request option.
|
|
8293
|
+
* @throws {RequiredError}
|
|
8294
|
+
*/
|
|
8295
|
+
emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
|
|
8296
|
+
/**
|
|
8297
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8298
|
+
* @param {number} servicePk
|
|
8299
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8300
|
+
* @param {*} [options] Override http request option.
|
|
8301
|
+
* @throws {RequiredError}
|
|
8302
|
+
*/
|
|
8303
|
+
emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSuppressionEntryList>>;
|
|
8304
|
+
/**
|
|
8305
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8306
|
+
* @param {SmtpCredential} [smtpCredential]
|
|
8307
|
+
* @param {*} [options] Override http request option.
|
|
8308
|
+
* @throws {RequiredError}
|
|
8309
|
+
*/
|
|
8310
|
+
emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
|
|
8311
|
+
/**
|
|
8312
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8313
|
+
* @param {number} id A unique integer value identifying this smtp credential.
|
|
8314
|
+
* @param {*} [options] Override http request option.
|
|
8315
|
+
* @throws {RequiredError}
|
|
8316
|
+
*/
|
|
8317
|
+
emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8318
|
+
/**
|
|
8319
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8320
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8321
|
+
* @param {*} [options] Override http request option.
|
|
8322
|
+
* @throws {RequiredError}
|
|
8323
|
+
*/
|
|
8324
|
+
emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSmtpCredentialList>>;
|
|
8325
|
+
/**
|
|
8326
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8327
|
+
* @param {number} id A unique integer value identifying this smtp credential.
|
|
8328
|
+
* @param {*} [options] Override http request option.
|
|
8329
|
+
* @throws {RequiredError}
|
|
8330
|
+
*/
|
|
8331
|
+
emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
|
|
8332
|
+
/**
|
|
8333
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8334
|
+
* @param {SuppressionEntry} [suppressionEntry]
|
|
8335
|
+
* @param {*} [options] Override http request option.
|
|
8336
|
+
* @throws {RequiredError}
|
|
8337
|
+
*/
|
|
8338
|
+
emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
|
|
8339
|
+
/**
|
|
8340
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8341
|
+
* @param {number} id A unique integer value identifying this suppression entry.
|
|
8342
|
+
* @param {*} [options] Override http request option.
|
|
8343
|
+
* @throws {RequiredError}
|
|
8344
|
+
*/
|
|
8345
|
+
emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
8346
|
+
/**
|
|
8347
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8348
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8349
|
+
* @param {*} [options] Override http request option.
|
|
8350
|
+
* @throws {RequiredError}
|
|
8351
|
+
*/
|
|
8352
|
+
emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSuppressionEntryList>>;
|
|
8353
|
+
/**
|
|
8354
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8355
|
+
* @param {number} id A unique integer value identifying this suppression entry.
|
|
8356
|
+
* @param {*} [options] Override http request option.
|
|
8357
|
+
* @throws {RequiredError}
|
|
8358
|
+
*/
|
|
8359
|
+
emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
|
|
8360
|
+
};
|
|
8361
|
+
/**
|
|
8362
|
+
* EmailApi - factory interface
|
|
8363
|
+
*/
|
|
8364
|
+
export declare const EmailApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8365
|
+
/**
|
|
8366
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8367
|
+
* @param {ApiCredential} [apiCredential]
|
|
8368
|
+
* @param {*} [options] Override http request option.
|
|
8369
|
+
* @throws {RequiredError}
|
|
8370
|
+
*/
|
|
8371
|
+
emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
|
|
8372
|
+
/**
|
|
8373
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8374
|
+
* @param {number} id A unique integer value identifying this api credential.
|
|
8375
|
+
* @param {*} [options] Override http request option.
|
|
8376
|
+
* @throws {RequiredError}
|
|
8377
|
+
*/
|
|
8378
|
+
emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8379
|
+
/**
|
|
8380
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8381
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8382
|
+
* @param {*} [options] Override http request option.
|
|
8383
|
+
* @throws {RequiredError}
|
|
8384
|
+
*/
|
|
8385
|
+
emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedApiCredentialList>;
|
|
8386
|
+
/**
|
|
8387
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8388
|
+
* @param {number} id A unique integer value identifying this api credential.
|
|
8389
|
+
* @param {*} [options] Override http request option.
|
|
8390
|
+
* @throws {RequiredError}
|
|
8391
|
+
*/
|
|
8392
|
+
emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
|
|
8393
|
+
/**
|
|
8394
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8395
|
+
* @param {DomainAdd} domainAdd
|
|
8396
|
+
* @param {*} [options] Override http request option.
|
|
8397
|
+
* @throws {RequiredError}
|
|
8398
|
+
*/
|
|
8399
|
+
emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
|
|
8400
|
+
/**
|
|
8401
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8402
|
+
* @param {number} domainPk
|
|
8403
|
+
* @param {InboundRoute} inboundRoute
|
|
8404
|
+
* @param {*} [options] Override http request option.
|
|
8405
|
+
* @throws {RequiredError}
|
|
8406
|
+
*/
|
|
8407
|
+
emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
|
|
8408
|
+
/**
|
|
8409
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8410
|
+
* @param {number} domainPk
|
|
8411
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8412
|
+
* @param {*} [options] Override http request option.
|
|
8413
|
+
* @throws {RequiredError}
|
|
8414
|
+
*/
|
|
8415
|
+
emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedInboundRouteList>;
|
|
8416
|
+
/**
|
|
8417
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8418
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8419
|
+
* @param {*} [options] Override http request option.
|
|
8420
|
+
* @throws {RequiredError}
|
|
8421
|
+
*/
|
|
8422
|
+
emailDomainsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSendingDomainList>;
|
|
8423
|
+
/**
|
|
8424
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8425
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8426
|
+
* @param {*} [options] Override http request option.
|
|
8427
|
+
* @throws {RequiredError}
|
|
8428
|
+
*/
|
|
8429
|
+
emailDomainsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
|
|
8430
|
+
/**
|
|
8431
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8432
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8433
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8434
|
+
* @param {*} [options] Override http request option.
|
|
8435
|
+
* @throws {RequiredError}
|
|
8436
|
+
*/
|
|
8437
|
+
emailDomainsRotateDkimCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
|
|
8438
|
+
/**
|
|
8439
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8440
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8441
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8442
|
+
* @param {*} [options] Override http request option.
|
|
8443
|
+
* @throws {RequiredError}
|
|
8444
|
+
*/
|
|
8445
|
+
emailDomainsToggleInboundCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
|
|
8446
|
+
/**
|
|
8447
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8448
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8449
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8450
|
+
* @param {*} [options] Override http request option.
|
|
8451
|
+
* @throws {RequiredError}
|
|
8452
|
+
*/
|
|
8453
|
+
emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
|
|
8454
|
+
/**
|
|
8455
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8456
|
+
* @param {InboundRoute} inboundRoute
|
|
8457
|
+
* @param {*} [options] Override http request option.
|
|
8458
|
+
* @throws {RequiredError}
|
|
8459
|
+
*/
|
|
8460
|
+
emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
|
|
8461
|
+
/**
|
|
8462
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8463
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8464
|
+
* @param {*} [options] Override http request option.
|
|
8465
|
+
* @throws {RequiredError}
|
|
8466
|
+
*/
|
|
8467
|
+
emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8468
|
+
/**
|
|
8469
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8470
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8471
|
+
* @param {*} [options] Override http request option.
|
|
8472
|
+
* @throws {RequiredError}
|
|
8473
|
+
*/
|
|
8474
|
+
emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedInboundRouteList>;
|
|
8475
|
+
/**
|
|
8476
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8477
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8478
|
+
* @param {PatchedInboundRoute} [patchedInboundRoute]
|
|
8479
|
+
* @param {*} [options] Override http request option.
|
|
8480
|
+
* @throws {RequiredError}
|
|
8481
|
+
*/
|
|
8482
|
+
emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
|
|
8483
|
+
/**
|
|
8484
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8485
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8486
|
+
* @param {*} [options] Override http request option.
|
|
8487
|
+
* @throws {RequiredError}
|
|
8488
|
+
*/
|
|
8489
|
+
emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
|
|
8490
|
+
/**
|
|
8491
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8492
|
+
* @param {string} messageId
|
|
8493
|
+
* @param {*} [options] Override http request option.
|
|
8494
|
+
* @throws {RequiredError}
|
|
8495
|
+
*/
|
|
8496
|
+
emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8497
|
+
/**
|
|
8498
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8499
|
+
* @param {SandboxAddress} sandboxAddress
|
|
8500
|
+
* @param {*} [options] Override http request option.
|
|
8501
|
+
* @throws {RequiredError}
|
|
8502
|
+
*/
|
|
8503
|
+
emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
|
|
8504
|
+
/**
|
|
8505
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8506
|
+
* @param {number} id A unique integer value identifying this sandbox verified address.
|
|
8507
|
+
* @param {*} [options] Override http request option.
|
|
8508
|
+
* @throws {RequiredError}
|
|
8509
|
+
*/
|
|
8510
|
+
emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8511
|
+
/**
|
|
8512
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8513
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8514
|
+
* @param {*} [options] Override http request option.
|
|
8515
|
+
* @throws {RequiredError}
|
|
8516
|
+
*/
|
|
8517
|
+
emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSandboxAddressList>;
|
|
8518
|
+
/**
|
|
8519
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8520
|
+
* @param {number} id A unique integer value identifying this sandbox verified address.
|
|
8521
|
+
* @param {*} [options] Override http request option.
|
|
8522
|
+
* @throws {RequiredError}
|
|
8523
|
+
*/
|
|
8524
|
+
emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
|
|
8525
|
+
/**
|
|
8526
|
+
*
|
|
8527
|
+
* @param {*} [options] Override http request option.
|
|
8528
|
+
* @throws {RequiredError}
|
|
8529
|
+
*/
|
|
8530
|
+
emailSendCreate(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8531
|
+
/**
|
|
8532
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8533
|
+
* @param {number} servicePk
|
|
8534
|
+
* @param {ApiCredential} [apiCredential]
|
|
8535
|
+
* @param {*} [options] Override http request option.
|
|
8536
|
+
* @throws {RequiredError}
|
|
8537
|
+
*/
|
|
8538
|
+
emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
|
|
8539
|
+
/**
|
|
8540
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8541
|
+
* @param {number} servicePk
|
|
8542
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8543
|
+
* @param {*} [options] Override http request option.
|
|
8544
|
+
* @throws {RequiredError}
|
|
8545
|
+
*/
|
|
8546
|
+
emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedApiCredentialList>;
|
|
8547
|
+
/**
|
|
8548
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8549
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8550
|
+
* @param {*} [options] Override http request option.
|
|
8551
|
+
* @throws {RequiredError}
|
|
8552
|
+
*/
|
|
8553
|
+
emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
|
|
8554
|
+
/**
|
|
8555
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8556
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8557
|
+
* @param {PatchedSubscribe} [patchedSubscribe]
|
|
8558
|
+
* @param {*} [options] Override http request option.
|
|
8559
|
+
* @throws {RequiredError}
|
|
8560
|
+
*/
|
|
8561
|
+
emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
|
|
8562
|
+
/**
|
|
8563
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8564
|
+
* @param {Subscribe} subscribe
|
|
8565
|
+
* @param {*} [options] Override http request option.
|
|
8566
|
+
* @throws {RequiredError}
|
|
8567
|
+
*/
|
|
8568
|
+
emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
|
|
8569
|
+
/**
|
|
8570
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8571
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8572
|
+
* @param {*} [options] Override http request option.
|
|
8573
|
+
* @throws {RequiredError}
|
|
8574
|
+
*/
|
|
8575
|
+
emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
|
|
8576
|
+
/**
|
|
8577
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8578
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8579
|
+
* @param {*} [options] Override http request option.
|
|
8580
|
+
* @throws {RequiredError}
|
|
8581
|
+
*/
|
|
8582
|
+
emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8583
|
+
/**
|
|
8584
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8585
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8586
|
+
* @param {*} [options] Override http request option.
|
|
8587
|
+
* @throws {RequiredError}
|
|
8588
|
+
*/
|
|
8589
|
+
emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8590
|
+
/**
|
|
8591
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8592
|
+
* @param {number} servicePk
|
|
8593
|
+
* @param {DomainAdd} domainAdd
|
|
8594
|
+
* @param {*} [options] Override http request option.
|
|
8595
|
+
* @throws {RequiredError}
|
|
8596
|
+
*/
|
|
8597
|
+
emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
|
|
8598
|
+
/**
|
|
8599
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8600
|
+
* @param {number} servicePk
|
|
8601
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8602
|
+
* @param {*} [options] Override http request option.
|
|
8603
|
+
* @throws {RequiredError}
|
|
8604
|
+
*/
|
|
8605
|
+
emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSendingDomainList>;
|
|
8606
|
+
/**
|
|
8607
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8608
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8609
|
+
* @param {*} [options] Override http request option.
|
|
8610
|
+
* @throws {RequiredError}
|
|
8611
|
+
*/
|
|
8612
|
+
emailServicesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedEmailServiceList>;
|
|
8613
|
+
/**
|
|
8614
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8615
|
+
* @param {number} servicePk
|
|
8616
|
+
* @param {*} [options] Override http request option.
|
|
8617
|
+
* @throws {RequiredError}
|
|
8618
|
+
*/
|
|
8619
|
+
emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8620
|
+
/**
|
|
8621
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8622
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8623
|
+
* @param {PatchedEmailService} [patchedEmailService]
|
|
8624
|
+
* @param {*} [options] Override http request option.
|
|
8625
|
+
* @throws {RequiredError}
|
|
8626
|
+
*/
|
|
8627
|
+
emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
|
|
8628
|
+
/**
|
|
8629
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8630
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8631
|
+
* @param {*} [options] Override http request option.
|
|
8632
|
+
* @throws {RequiredError}
|
|
8633
|
+
*/
|
|
8634
|
+
emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
|
|
8635
|
+
/**
|
|
8636
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8637
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8638
|
+
* @param {*} [options] Override http request option.
|
|
8639
|
+
* @throws {RequiredError}
|
|
8640
|
+
*/
|
|
8641
|
+
emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
|
|
8642
|
+
/**
|
|
8643
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8644
|
+
* @param {number} servicePk
|
|
8645
|
+
* @param {SandboxAddress} sandboxAddress
|
|
8646
|
+
* @param {*} [options] Override http request option.
|
|
8647
|
+
* @throws {RequiredError}
|
|
8648
|
+
*/
|
|
8649
|
+
emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
|
|
8650
|
+
/**
|
|
8651
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8652
|
+
* @param {number} servicePk
|
|
8653
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8654
|
+
* @param {*} [options] Override http request option.
|
|
8655
|
+
* @throws {RequiredError}
|
|
8656
|
+
*/
|
|
8657
|
+
emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSandboxAddressList>;
|
|
8658
|
+
/**
|
|
8659
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8660
|
+
* @param {number} servicePk
|
|
8661
|
+
* @param {SmtpCredential} [smtpCredential]
|
|
8662
|
+
* @param {*} [options] Override http request option.
|
|
8663
|
+
* @throws {RequiredError}
|
|
8664
|
+
*/
|
|
8665
|
+
emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
|
|
8666
|
+
/**
|
|
8667
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8668
|
+
* @param {number} servicePk
|
|
8669
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8670
|
+
* @param {*} [options] Override http request option.
|
|
8671
|
+
* @throws {RequiredError}
|
|
8672
|
+
*/
|
|
8673
|
+
emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSmtpCredentialList>;
|
|
8674
|
+
/**
|
|
8675
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8676
|
+
* @param {number} servicePk
|
|
8677
|
+
* @param {*} [options] Override http request option.
|
|
8678
|
+
* @throws {RequiredError}
|
|
8679
|
+
*/
|
|
8680
|
+
emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8681
|
+
/**
|
|
8682
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8683
|
+
* @param {number} servicePk
|
|
8684
|
+
* @param {SuppressionEntry} [suppressionEntry]
|
|
8685
|
+
* @param {*} [options] Override http request option.
|
|
8686
|
+
* @throws {RequiredError}
|
|
8687
|
+
*/
|
|
8688
|
+
emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
|
|
8689
|
+
/**
|
|
8690
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8691
|
+
* @param {number} servicePk
|
|
8692
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8693
|
+
* @param {*} [options] Override http request option.
|
|
8694
|
+
* @throws {RequiredError}
|
|
8695
|
+
*/
|
|
8696
|
+
emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSuppressionEntryList>;
|
|
8697
|
+
/**
|
|
8698
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8699
|
+
* @param {SmtpCredential} [smtpCredential]
|
|
8700
|
+
* @param {*} [options] Override http request option.
|
|
8701
|
+
* @throws {RequiredError}
|
|
8702
|
+
*/
|
|
8703
|
+
emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
|
|
8704
|
+
/**
|
|
8705
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8706
|
+
* @param {number} id A unique integer value identifying this smtp credential.
|
|
8707
|
+
* @param {*} [options] Override http request option.
|
|
8708
|
+
* @throws {RequiredError}
|
|
8709
|
+
*/
|
|
8710
|
+
emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8711
|
+
/**
|
|
8712
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8713
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8714
|
+
* @param {*} [options] Override http request option.
|
|
8715
|
+
* @throws {RequiredError}
|
|
8716
|
+
*/
|
|
8717
|
+
emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSmtpCredentialList>;
|
|
8718
|
+
/**
|
|
8719
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8720
|
+
* @param {number} id A unique integer value identifying this smtp credential.
|
|
8721
|
+
* @param {*} [options] Override http request option.
|
|
8722
|
+
* @throws {RequiredError}
|
|
8723
|
+
*/
|
|
8724
|
+
emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
|
|
8725
|
+
/**
|
|
8726
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8727
|
+
* @param {SuppressionEntry} [suppressionEntry]
|
|
8728
|
+
* @param {*} [options] Override http request option.
|
|
8729
|
+
* @throws {RequiredError}
|
|
8730
|
+
*/
|
|
8731
|
+
emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
|
|
8732
|
+
/**
|
|
8733
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8734
|
+
* @param {number} id A unique integer value identifying this suppression entry.
|
|
8735
|
+
* @param {*} [options] Override http request option.
|
|
8736
|
+
* @throws {RequiredError}
|
|
8737
|
+
*/
|
|
8738
|
+
emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
8739
|
+
/**
|
|
8740
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8741
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8742
|
+
* @param {*} [options] Override http request option.
|
|
8743
|
+
* @throws {RequiredError}
|
|
8744
|
+
*/
|
|
8745
|
+
emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSuppressionEntryList>;
|
|
8746
|
+
/**
|
|
8747
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8748
|
+
* @param {number} id A unique integer value identifying this suppression entry.
|
|
8749
|
+
* @param {*} [options] Override http request option.
|
|
8750
|
+
* @throws {RequiredError}
|
|
8751
|
+
*/
|
|
8752
|
+
emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
|
|
8753
|
+
};
|
|
8754
|
+
/**
|
|
8755
|
+
* EmailApi - object-oriented interface
|
|
8756
|
+
*/
|
|
8757
|
+
export declare class EmailApi extends BaseAPI {
|
|
8758
|
+
/**
|
|
8759
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8760
|
+
* @param {ApiCredential} [apiCredential]
|
|
8761
|
+
* @param {*} [options] Override http request option.
|
|
8762
|
+
* @throws {RequiredError}
|
|
8763
|
+
*/
|
|
8764
|
+
emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
|
|
8765
|
+
/**
|
|
8766
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8767
|
+
* @param {number} id A unique integer value identifying this api credential.
|
|
8768
|
+
* @param {*} [options] Override http request option.
|
|
8769
|
+
* @throws {RequiredError}
|
|
8770
|
+
*/
|
|
8771
|
+
emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8772
|
+
/**
|
|
8773
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8774
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8775
|
+
* @param {*} [options] Override http request option.
|
|
8776
|
+
* @throws {RequiredError}
|
|
8777
|
+
*/
|
|
8778
|
+
emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedApiCredentialList, any, {}>>;
|
|
8779
|
+
/**
|
|
8780
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8781
|
+
* @param {number} id A unique integer value identifying this api credential.
|
|
8782
|
+
* @param {*} [options] Override http request option.
|
|
8783
|
+
* @throws {RequiredError}
|
|
8784
|
+
*/
|
|
8785
|
+
emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
|
|
8786
|
+
/**
|
|
8787
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8788
|
+
* @param {DomainAdd} domainAdd
|
|
8789
|
+
* @param {*} [options] Override http request option.
|
|
8790
|
+
* @throws {RequiredError}
|
|
8791
|
+
*/
|
|
8792
|
+
emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
|
|
8793
|
+
/**
|
|
8794
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8795
|
+
* @param {number} domainPk
|
|
8796
|
+
* @param {InboundRoute} inboundRoute
|
|
8797
|
+
* @param {*} [options] Override http request option.
|
|
8798
|
+
* @throws {RequiredError}
|
|
8799
|
+
*/
|
|
8800
|
+
emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
|
|
8801
|
+
/**
|
|
8802
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8803
|
+
* @param {number} domainPk
|
|
8804
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8805
|
+
* @param {*} [options] Override http request option.
|
|
8806
|
+
* @throws {RequiredError}
|
|
8807
|
+
*/
|
|
8808
|
+
emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInboundRouteList, any, {}>>;
|
|
8809
|
+
/**
|
|
8810
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8811
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8812
|
+
* @param {*} [options] Override http request option.
|
|
8813
|
+
* @throws {RequiredError}
|
|
8814
|
+
*/
|
|
8815
|
+
emailDomainsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSendingDomainList, any, {}>>;
|
|
8816
|
+
/**
|
|
8817
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8818
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8819
|
+
* @param {*} [options] Override http request option.
|
|
8820
|
+
* @throws {RequiredError}
|
|
8821
|
+
*/
|
|
8822
|
+
emailDomainsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
|
|
8823
|
+
/**
|
|
8824
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8825
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8826
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8827
|
+
* @param {*} [options] Override http request option.
|
|
8828
|
+
* @throws {RequiredError}
|
|
8829
|
+
*/
|
|
8830
|
+
emailDomainsRotateDkimCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
|
|
8831
|
+
/**
|
|
8832
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8833
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8834
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8835
|
+
* @param {*} [options] Override http request option.
|
|
8836
|
+
* @throws {RequiredError}
|
|
8837
|
+
*/
|
|
8838
|
+
emailDomainsToggleInboundCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
|
|
8839
|
+
/**
|
|
8840
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8841
|
+
* @param {number} id A unique integer value identifying this sending domain.
|
|
8842
|
+
* @param {SendingDomain} [sendingDomain]
|
|
8843
|
+
* @param {*} [options] Override http request option.
|
|
8844
|
+
* @throws {RequiredError}
|
|
8845
|
+
*/
|
|
8846
|
+
emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
|
|
8847
|
+
/**
|
|
8848
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8849
|
+
* @param {InboundRoute} inboundRoute
|
|
8850
|
+
* @param {*} [options] Override http request option.
|
|
8851
|
+
* @throws {RequiredError}
|
|
8852
|
+
*/
|
|
8853
|
+
emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
|
|
8854
|
+
/**
|
|
8855
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8856
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8857
|
+
* @param {*} [options] Override http request option.
|
|
8858
|
+
* @throws {RequiredError}
|
|
8859
|
+
*/
|
|
8860
|
+
emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8861
|
+
/**
|
|
8862
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8863
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8864
|
+
* @param {*} [options] Override http request option.
|
|
8865
|
+
* @throws {RequiredError}
|
|
8866
|
+
*/
|
|
8867
|
+
emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInboundRouteList, any, {}>>;
|
|
8868
|
+
/**
|
|
8869
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8870
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8871
|
+
* @param {PatchedInboundRoute} [patchedInboundRoute]
|
|
8872
|
+
* @param {*} [options] Override http request option.
|
|
8873
|
+
* @throws {RequiredError}
|
|
8874
|
+
*/
|
|
8875
|
+
emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
|
|
8876
|
+
/**
|
|
8877
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8878
|
+
* @param {number} id A unique integer value identifying this inbound route.
|
|
8879
|
+
* @param {*} [options] Override http request option.
|
|
8880
|
+
* @throws {RequiredError}
|
|
8881
|
+
*/
|
|
8882
|
+
emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
|
|
8883
|
+
/**
|
|
8884
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8885
|
+
* @param {string} messageId
|
|
8886
|
+
* @param {*} [options] Override http request option.
|
|
8887
|
+
* @throws {RequiredError}
|
|
8888
|
+
*/
|
|
8889
|
+
emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8890
|
+
/**
|
|
8891
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8892
|
+
* @param {SandboxAddress} sandboxAddress
|
|
8893
|
+
* @param {*} [options] Override http request option.
|
|
8894
|
+
* @throws {RequiredError}
|
|
8895
|
+
*/
|
|
8896
|
+
emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
|
|
8897
|
+
/**
|
|
8898
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8899
|
+
* @param {number} id A unique integer value identifying this sandbox verified address.
|
|
8900
|
+
* @param {*} [options] Override http request option.
|
|
8901
|
+
* @throws {RequiredError}
|
|
8902
|
+
*/
|
|
8903
|
+
emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8904
|
+
/**
|
|
8905
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8906
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8907
|
+
* @param {*} [options] Override http request option.
|
|
8908
|
+
* @throws {RequiredError}
|
|
8909
|
+
*/
|
|
8910
|
+
emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSandboxAddressList, any, {}>>;
|
|
8911
|
+
/**
|
|
8912
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8913
|
+
* @param {number} id A unique integer value identifying this sandbox verified address.
|
|
8914
|
+
* @param {*} [options] Override http request option.
|
|
8915
|
+
* @throws {RequiredError}
|
|
8916
|
+
*/
|
|
8917
|
+
emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
|
|
8918
|
+
/**
|
|
8919
|
+
*
|
|
8920
|
+
* @param {*} [options] Override http request option.
|
|
8921
|
+
* @throws {RequiredError}
|
|
8922
|
+
*/
|
|
8923
|
+
emailSendCreate(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8924
|
+
/**
|
|
8925
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8926
|
+
* @param {number} servicePk
|
|
8927
|
+
* @param {ApiCredential} [apiCredential]
|
|
8928
|
+
* @param {*} [options] Override http request option.
|
|
8929
|
+
* @throws {RequiredError}
|
|
8930
|
+
*/
|
|
8931
|
+
emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
|
|
8932
|
+
/**
|
|
8933
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8934
|
+
* @param {number} servicePk
|
|
8935
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8936
|
+
* @param {*} [options] Override http request option.
|
|
8937
|
+
* @throws {RequiredError}
|
|
8938
|
+
*/
|
|
8939
|
+
emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedApiCredentialList, any, {}>>;
|
|
8940
|
+
/**
|
|
8941
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8942
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8943
|
+
* @param {*} [options] Override http request option.
|
|
8944
|
+
* @throws {RequiredError}
|
|
8945
|
+
*/
|
|
8946
|
+
emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
|
|
8947
|
+
/**
|
|
8948
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8949
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8950
|
+
* @param {PatchedSubscribe} [patchedSubscribe]
|
|
8951
|
+
* @param {*} [options] Override http request option.
|
|
8952
|
+
* @throws {RequiredError}
|
|
8953
|
+
*/
|
|
8954
|
+
emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
|
|
8955
|
+
/**
|
|
8956
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8957
|
+
* @param {Subscribe} subscribe
|
|
8958
|
+
* @param {*} [options] Override http request option.
|
|
8959
|
+
* @throws {RequiredError}
|
|
8960
|
+
*/
|
|
8961
|
+
emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
|
|
8962
|
+
/**
|
|
8963
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8964
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8965
|
+
* @param {*} [options] Override http request option.
|
|
8966
|
+
* @throws {RequiredError}
|
|
8967
|
+
*/
|
|
8968
|
+
emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
|
|
8969
|
+
/**
|
|
8970
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8971
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8972
|
+
* @param {*} [options] Override http request option.
|
|
8973
|
+
* @throws {RequiredError}
|
|
8974
|
+
*/
|
|
8975
|
+
emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8976
|
+
/**
|
|
8977
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8978
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
8979
|
+
* @param {*} [options] Override http request option.
|
|
8980
|
+
* @throws {RequiredError}
|
|
8981
|
+
*/
|
|
8982
|
+
emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
8983
|
+
/**
|
|
8984
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8985
|
+
* @param {number} servicePk
|
|
8986
|
+
* @param {DomainAdd} domainAdd
|
|
8987
|
+
* @param {*} [options] Override http request option.
|
|
8988
|
+
* @throws {RequiredError}
|
|
8989
|
+
*/
|
|
8990
|
+
emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
|
|
8991
|
+
/**
|
|
8992
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
8993
|
+
* @param {number} servicePk
|
|
8994
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
8995
|
+
* @param {*} [options] Override http request option.
|
|
8996
|
+
* @throws {RequiredError}
|
|
8997
|
+
*/
|
|
8998
|
+
emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSendingDomainList, any, {}>>;
|
|
8999
|
+
/**
|
|
9000
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9001
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
9002
|
+
* @param {*} [options] Override http request option.
|
|
9003
|
+
* @throws {RequiredError}
|
|
9004
|
+
*/
|
|
9005
|
+
emailServicesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEmailServiceList, any, {}>>;
|
|
9006
|
+
/**
|
|
9007
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9008
|
+
* @param {number} servicePk
|
|
9009
|
+
* @param {*} [options] Override http request option.
|
|
9010
|
+
* @throws {RequiredError}
|
|
9011
|
+
*/
|
|
9012
|
+
emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9013
|
+
/**
|
|
9014
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9015
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
9016
|
+
* @param {PatchedEmailService} [patchedEmailService]
|
|
9017
|
+
* @param {*} [options] Override http request option.
|
|
9018
|
+
* @throws {RequiredError}
|
|
9019
|
+
*/
|
|
9020
|
+
emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
|
|
9021
|
+
/**
|
|
9022
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9023
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
9024
|
+
* @param {*} [options] Override http request option.
|
|
9025
|
+
* @throws {RequiredError}
|
|
9026
|
+
*/
|
|
9027
|
+
emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
|
|
9028
|
+
/**
|
|
9029
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9030
|
+
* @param {number} id A unique integer value identifying this email service.
|
|
9031
|
+
* @param {*} [options] Override http request option.
|
|
9032
|
+
* @throws {RequiredError}
|
|
9033
|
+
*/
|
|
9034
|
+
emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
|
|
9035
|
+
/**
|
|
9036
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9037
|
+
* @param {number} servicePk
|
|
9038
|
+
* @param {SandboxAddress} sandboxAddress
|
|
9039
|
+
* @param {*} [options] Override http request option.
|
|
9040
|
+
* @throws {RequiredError}
|
|
9041
|
+
*/
|
|
9042
|
+
emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
|
|
9043
|
+
/**
|
|
9044
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9045
|
+
* @param {number} servicePk
|
|
9046
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
9047
|
+
* @param {*} [options] Override http request option.
|
|
9048
|
+
* @throws {RequiredError}
|
|
9049
|
+
*/
|
|
9050
|
+
emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSandboxAddressList, any, {}>>;
|
|
9051
|
+
/**
|
|
9052
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9053
|
+
* @param {number} servicePk
|
|
9054
|
+
* @param {SmtpCredential} [smtpCredential]
|
|
9055
|
+
* @param {*} [options] Override http request option.
|
|
9056
|
+
* @throws {RequiredError}
|
|
9057
|
+
*/
|
|
9058
|
+
emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
|
|
9059
|
+
/**
|
|
9060
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9061
|
+
* @param {number} servicePk
|
|
9062
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
9063
|
+
* @param {*} [options] Override http request option.
|
|
9064
|
+
* @throws {RequiredError}
|
|
9065
|
+
*/
|
|
9066
|
+
emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSmtpCredentialList, any, {}>>;
|
|
9067
|
+
/**
|
|
9068
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9069
|
+
* @param {number} servicePk
|
|
9070
|
+
* @param {*} [options] Override http request option.
|
|
9071
|
+
* @throws {RequiredError}
|
|
9072
|
+
*/
|
|
9073
|
+
emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9074
|
+
/**
|
|
9075
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9076
|
+
* @param {number} servicePk
|
|
9077
|
+
* @param {SuppressionEntry} [suppressionEntry]
|
|
9078
|
+
* @param {*} [options] Override http request option.
|
|
9079
|
+
* @throws {RequiredError}
|
|
9080
|
+
*/
|
|
9081
|
+
emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
|
|
9082
|
+
/**
|
|
9083
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9084
|
+
* @param {number} servicePk
|
|
9085
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
9086
|
+
* @param {*} [options] Override http request option.
|
|
9087
|
+
* @throws {RequiredError}
|
|
9088
|
+
*/
|
|
9089
|
+
emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSuppressionEntryList, any, {}>>;
|
|
9090
|
+
/**
|
|
9091
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9092
|
+
* @param {SmtpCredential} [smtpCredential]
|
|
9093
|
+
* @param {*} [options] Override http request option.
|
|
9094
|
+
* @throws {RequiredError}
|
|
9095
|
+
*/
|
|
9096
|
+
emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
|
|
9097
|
+
/**
|
|
9098
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9099
|
+
* @param {number} id A unique integer value identifying this smtp credential.
|
|
9100
|
+
* @param {*} [options] Override http request option.
|
|
9101
|
+
* @throws {RequiredError}
|
|
9102
|
+
*/
|
|
9103
|
+
emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9104
|
+
/**
|
|
9105
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9106
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
9107
|
+
* @param {*} [options] Override http request option.
|
|
9108
|
+
* @throws {RequiredError}
|
|
9109
|
+
*/
|
|
9110
|
+
emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSmtpCredentialList, any, {}>>;
|
|
9111
|
+
/**
|
|
9112
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9113
|
+
* @param {number} id A unique integer value identifying this smtp credential.
|
|
9114
|
+
* @param {*} [options] Override http request option.
|
|
9115
|
+
* @throws {RequiredError}
|
|
9116
|
+
*/
|
|
9117
|
+
emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
|
|
9118
|
+
/**
|
|
9119
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9120
|
+
* @param {SuppressionEntry} [suppressionEntry]
|
|
9121
|
+
* @param {*} [options] Override http request option.
|
|
9122
|
+
* @throws {RequiredError}
|
|
9123
|
+
*/
|
|
9124
|
+
emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
|
|
9125
|
+
/**
|
|
9126
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9127
|
+
* @param {number} id A unique integer value identifying this suppression entry.
|
|
9128
|
+
* @param {*} [options] Override http request option.
|
|
9129
|
+
* @throws {RequiredError}
|
|
9130
|
+
*/
|
|
9131
|
+
emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
9132
|
+
/**
|
|
9133
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9134
|
+
* @param {number} [page] A page number within the paginated result set.
|
|
9135
|
+
* @param {*} [options] Override http request option.
|
|
9136
|
+
* @throws {RequiredError}
|
|
9137
|
+
*/
|
|
9138
|
+
emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSuppressionEntryList, any, {}>>;
|
|
9139
|
+
/**
|
|
9140
|
+
* Require complete user profile for provisioning (create) API actions.
|
|
9141
|
+
* @param {number} id A unique integer value identifying this suppression entry.
|
|
9142
|
+
* @param {*} [options] Override http request option.
|
|
9143
|
+
* @throws {RequiredError}
|
|
9144
|
+
*/
|
|
9145
|
+
emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
|
|
9146
|
+
}
|
|
6636
9147
|
/**
|
|
6637
9148
|
* FreednsApi - axios parameter creator
|
|
6638
9149
|
*/
|