@pidginhost/sdk 0.6.0 → 0.8.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.
Files changed (50) hide show
  1. package/.openapi-generator/FILES +39 -0
  2. package/CHANGELOG.md +7 -0
  3. package/README.md +115 -2
  4. package/api.ts +9095 -3388
  5. package/dist/api.d.ts +2569 -62
  6. package/dist/api.js +8153 -3040
  7. package/dist/esm/api.d.ts +2569 -62
  8. package/dist/esm/api.js +8135 -3026
  9. package/docs/ApiCredential.md +32 -0
  10. package/docs/Bucket.md +40 -0
  11. package/docs/CloudApi.md +1315 -134
  12. package/docs/DnsSourceEnum.md +13 -0
  13. package/docs/DomainAdd.md +28 -0
  14. package/docs/EmailApi.md +2828 -0
  15. package/docs/EmailService.md +44 -0
  16. package/docs/FloatingIPAuthorization.md +27 -0
  17. package/docs/FloatingIPAuthorizeRequest.md +20 -0
  18. package/docs/FloatingIPv4.md +32 -0
  19. package/docs/FloatingIPv4AuthorizeResponse.md +20 -0
  20. package/docs/FloatingIPv4Create.md +20 -0
  21. package/docs/FloatingIPv4UnauthorizeResponse.md +20 -0
  22. package/docs/FloatingIPv6.md +32 -0
  23. package/docs/FloatingIPv6AuthorizeResponse.md +20 -0
  24. package/docs/FloatingIPv6Create.md +20 -0
  25. package/docs/FloatingIPv6UnauthorizeResponse.md +20 -0
  26. package/docs/InboundRoute.md +34 -0
  27. package/docs/ModeEnum.md +11 -0
  28. package/docs/PaginatedApiCredentialList.md +26 -0
  29. package/docs/PaginatedEmailServiceList.md +26 -0
  30. package/docs/PaginatedFloatingIPAuthorizationList.md +26 -0
  31. package/docs/PaginatedFloatingIPv4List.md +26 -0
  32. package/docs/PaginatedFloatingIPv6List.md +26 -0
  33. package/docs/PaginatedInboundRouteList.md +26 -0
  34. package/docs/PaginatedSandboxAddressList.md +26 -0
  35. package/docs/PaginatedSendingDomainList.md +26 -0
  36. package/docs/PaginatedSmtpCredentialList.md +26 -0
  37. package/docs/PaginatedSuppressionEntryList.md +26 -0
  38. package/docs/PatchedEmailService.md +44 -0
  39. package/docs/PatchedInboundRoute.md +34 -0
  40. package/docs/PatchedSubscribe.md +20 -0
  41. package/docs/ReasonEnum.md +15 -0
  42. package/docs/SandboxAddress.md +26 -0
  43. package/docs/SendingDomain.md +42 -0
  44. package/docs/SendingDomainStatusEnum.md +17 -0
  45. package/docs/ServerProduct.md +8 -0
  46. package/docs/SmtpCredential.md +30 -0
  47. package/docs/Subscribe.md +20 -0
  48. package/docs/SuppressionEntry.md +28 -0
  49. package/docs/TierEnum.md +13 -0
  50. 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;
@@ -738,6 +760,15 @@ export interface DisconnectVMResponse {
738
760
  'status': string;
739
761
  'message': string;
740
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];
741
772
  export interface Domain {
742
773
  'id': number;
743
774
  'domain': string;
@@ -761,6 +792,13 @@ export interface Domain {
761
792
  'service_status': string;
762
793
  'contacts': any;
763
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
+ }
764
802
  export interface DomainCancelResponse {
765
803
  'message': string;
766
804
  'status': string;
@@ -805,6 +843,21 @@ export interface EmailHistory {
805
843
  'address': string;
806
844
  'read': boolean;
807
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
+ }
808
861
  export interface FeatureUpgradeRequest {
809
862
  /**
810
863
  * Name of the feature to upgrade (e.g. cert-manager)
@@ -883,6 +936,54 @@ export declare const FirewallRulesSetStatusEnum: {
883
936
  readonly Pending: "pending";
884
937
  };
885
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
+ }
886
987
  export interface FreeDNSDomain {
887
988
  'domain': string;
888
989
  'active': boolean;
@@ -993,6 +1094,16 @@ export interface HostingService {
993
1094
  'node_url': string;
994
1095
  'username': string;
995
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
+ }
996
1107
  export interface InvoiceDetail {
997
1108
  'id': number;
998
1109
  'number_proforma': string;
@@ -1091,6 +1202,14 @@ export interface LowBalanceSettings {
1091
1202
  'threshold_amount'?: string | null;
1092
1203
  'threshold_days'?: number | null;
1093
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];
1094
1213
  export interface NameserversUpdate {
1095
1214
  /**
1096
1215
  * List of 2-5 nameserver hostnames
@@ -1154,6 +1273,12 @@ export interface PaginatedAPITokenListList {
1154
1273
  'previous'?: string | null;
1155
1274
  'results': Array<APITokenList>;
1156
1275
  }
1276
+ export interface PaginatedApiCredentialList {
1277
+ 'count': number;
1278
+ 'next'?: string | null;
1279
+ 'previous'?: string | null;
1280
+ 'results': Array<ApiCredential>;
1281
+ }
1157
1282
  export interface PaginatedClusterDetailList {
1158
1283
  'count': number;
1159
1284
  'next'?: string | null;
@@ -1202,6 +1327,30 @@ export interface PaginatedEmailHistoryList {
1202
1327
  'previous'?: string | null;
1203
1328
  'results': Array<EmailHistory>;
1204
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
+ }
1205
1354
  export interface PaginatedFundsLogList {
1206
1355
  'count': number;
1207
1356
  'next'?: string | null;
@@ -1214,6 +1363,12 @@ export interface PaginatedHostingServiceList {
1214
1363
  'previous'?: string | null;
1215
1364
  'results': Array<HostingService>;
1216
1365
  }
1366
+ export interface PaginatedInboundRouteList {
1367
+ 'count': number;
1368
+ 'next'?: string | null;
1369
+ 'previous'?: string | null;
1370
+ 'results': Array<InboundRoute>;
1371
+ }
1217
1372
  export interface PaginatedInvoiceListList {
1218
1373
  'count': number;
1219
1374
  'next'?: string | null;
@@ -1268,6 +1423,18 @@ export interface PaginatedSSHKeyList {
1268
1423
  'previous'?: string | null;
1269
1424
  'results': Array<SSHKey>;
1270
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
+ }
1271
1438
  export interface PaginatedServerList {
1272
1439
  'count': number;
1273
1440
  'next'?: string | null;
@@ -1286,6 +1453,12 @@ export interface PaginatedServiceListList {
1286
1453
  'previous'?: string | null;
1287
1454
  'results': Array<ServiceList>;
1288
1455
  }
1456
+ export interface PaginatedSmtpCredentialList {
1457
+ 'count': number;
1458
+ 'next'?: string | null;
1459
+ 'previous'?: string | null;
1460
+ 'results': Array<SmtpCredential>;
1461
+ }
1289
1462
  export interface PaginatedSnapshotList {
1290
1463
  'count': number;
1291
1464
  'next'?: string | null;
@@ -1304,6 +1477,12 @@ export interface PaginatedSubscriptionList {
1304
1477
  'previous'?: string | null;
1305
1478
  'results': Array<Subscription>;
1306
1479
  }
1480
+ export interface PaginatedSuppressionEntryList {
1481
+ 'count': number;
1482
+ 'next'?: string | null;
1483
+ 'previous'?: string | null;
1484
+ 'results': Array<SuppressionEntry>;
1485
+ }
1307
1486
  export interface PaginatedTLDList {
1308
1487
  'count': number;
1309
1488
  'next'?: string | null;
@@ -1388,6 +1567,21 @@ export interface PatchedDomainRegistrant {
1388
1567
  'cif_cnp'?: string | null;
1389
1568
  'reg_com'?: string | null;
1390
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
+ }
1391
1585
  export interface PatchedFirewallRule {
1392
1586
  'id'?: number;
1393
1587
  'direction'?: FirewallRuleDirectionEnum;
@@ -1460,6 +1654,16 @@ export interface PatchedHTTPRoute {
1460
1654
  'created'?: string;
1461
1655
  'updated'?: string;
1462
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
+ }
1463
1667
  export interface PatchedLBFirewallRule {
1464
1668
  'id'?: number;
1465
1669
  'direction'?: LBFirewallRuleDirectionEnum;
@@ -1558,6 +1762,9 @@ export interface PatchedServerDetail {
1558
1762
  */
1559
1763
  'ha_enabled'?: boolean;
1560
1764
  }
1765
+ export interface PatchedSubscribe {
1766
+ 'tier'?: TierEnum;
1767
+ }
1561
1768
  /**
1562
1769
  * Serializer for TCPRoute resources with port validation.
1563
1770
  */
@@ -1741,6 +1948,16 @@ export interface PublicInterface {
1741
1948
  export interface RDNSUpdateResponse {
1742
1949
  'message': string;
1743
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];
1744
1961
  export interface Reinstall {
1745
1962
  'os_id': number;
1746
1963
  }
@@ -1792,6 +2009,12 @@ export interface SSHKey {
1792
2009
  'fingerprint': string;
1793
2010
  'key': string;
1794
2011
  }
2012
+ export interface SandboxAddress {
2013
+ 'id': number;
2014
+ 'address': string;
2015
+ 'verified_at': string | null;
2016
+ 'created_at': string;
2017
+ }
1795
2018
  /**
1796
2019
  * * `read_only` - Read only * `read_write` - Read & Write
1797
2020
  */
@@ -1800,6 +2023,31 @@ export declare const ScopeEnum: {
1800
2023
  readonly ReadWrite: "read_write";
1801
2024
  };
1802
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];
1803
2051
  export interface Server {
1804
2052
  'id': number;
1805
2053
  'hostname'?: string;
@@ -1916,6 +2164,10 @@ export interface ServerProduct {
1916
2164
  'id': number;
1917
2165
  'slug': string;
1918
2166
  'name': string;
2167
+ 'cpus': number;
2168
+ 'memory': number;
2169
+ 'disk_size': number;
2170
+ 'traffic': number;
1919
2171
  }
1920
2172
  export interface ServerProductUpgrade {
1921
2173
  /**
@@ -1967,6 +2219,14 @@ export interface ServiceList {
1967
2219
  'auto_payment': string;
1968
2220
  'company': string;
1969
2221
  }
2222
+ export interface SmtpCredential {
2223
+ 'id': number;
2224
+ 'label': string;
2225
+ 'username': string;
2226
+ 'active': boolean;
2227
+ 'created_at': string;
2228
+ 'revoked_at': string | null;
2229
+ }
1970
2230
  export interface Snapshot {
1971
2231
  'name': string;
1972
2232
  'description'?: string;
@@ -2068,6 +2328,9 @@ export interface StorageProduct {
2068
2328
  'min_size': string;
2069
2329
  'max_size': string;
2070
2330
  }
2331
+ export interface Subscribe {
2332
+ 'tier': TierEnum;
2333
+ }
2071
2334
  export interface Subscription {
2072
2335
  'id': number;
2073
2336
  'status': SubscriptionStatusEnum;
@@ -2088,6 +2351,13 @@ export declare const SubscriptionStatusEnum: {
2088
2351
  readonly Cancelled: "cancelled";
2089
2352
  };
2090
2353
  export type SubscriptionStatusEnum = typeof SubscriptionStatusEnum[keyof typeof SubscriptionStatusEnum];
2354
+ export interface SuppressionEntry {
2355
+ 'id': number;
2356
+ 'address': string;
2357
+ 'reason': ReasonEnum;
2358
+ 'detail': string;
2359
+ 'created_at': string;
2360
+ }
2091
2361
  /**
2092
2362
  * Serializer for TCPRoute resources with port validation.
2093
2363
  */
@@ -2200,6 +2470,15 @@ export interface TicketReply {
2200
2470
  export interface TicketReplyResponse {
2201
2471
  'message': string;
2202
2472
  }
2473
+ /**
2474
+ * * `starter` - Starter * `pro` - Pro * `business` - Business
2475
+ */
2476
+ export declare const TierEnum: {
2477
+ readonly Starter: "starter";
2478
+ readonly Pro: "pro";
2479
+ readonly Business: "business";
2480
+ };
2481
+ export type TierEnum = typeof TierEnum[keyof typeof TierEnum];
2203
2482
  export interface ToggleAutoPaymentResponse {
2204
2483
  'message': string;
2205
2484
  'auto_payment': boolean;
@@ -3437,6 +3716,65 @@ export declare class BillingApi extends BaseAPI {
3437
3716
  * CloudApi - axios parameter creator
3438
3717
  */
3439
3718
  export declare const CloudApiAxiosParamCreator: (configuration?: Configuration) => {
3719
+ /**
3720
+ * Require complete user profile for provisioning (create) API actions.
3721
+ * @param {Bucket} [bucket]
3722
+ * @param {*} [options] Override http request option.
3723
+ * @throws {RequiredError}
3724
+ */
3725
+ cloudBucketsCreate: (bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3726
+ /**
3727
+ * Require complete user profile for provisioning (create) API actions.
3728
+ * @param {number} id A unique integer value identifying this S3 bucket.
3729
+ * @param {Bucket} [bucket]
3730
+ * @param {*} [options] Override http request option.
3731
+ * @throws {RequiredError}
3732
+ */
3733
+ cloudBucketsCredentialsRevealCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3734
+ /**
3735
+ * Require complete user profile for provisioning (create) API actions.
3736
+ * @param {number} id A unique integer value identifying this S3 bucket.
3737
+ * @param {Bucket} [bucket]
3738
+ * @param {*} [options] Override http request option.
3739
+ * @throws {RequiredError}
3740
+ */
3741
+ cloudBucketsCredentialsRotateCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3742
+ /**
3743
+ * Require complete user profile for provisioning (create) API actions.
3744
+ * @param {number} id A unique integer value identifying this S3 bucket.
3745
+ * @param {*} [options] Override http request option.
3746
+ * @throws {RequiredError}
3747
+ */
3748
+ cloudBucketsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3749
+ /**
3750
+ * Require complete user profile for provisioning (create) API actions.
3751
+ * @param {*} [options] Override http request option.
3752
+ * @throws {RequiredError}
3753
+ */
3754
+ cloudBucketsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3755
+ /**
3756
+ * Require complete user profile for provisioning (create) API actions.
3757
+ * @param {number} id A unique integer value identifying this S3 bucket.
3758
+ * @param {Bucket} [bucket]
3759
+ * @param {*} [options] Override http request option.
3760
+ * @throws {RequiredError}
3761
+ */
3762
+ cloudBucketsResizeCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3763
+ /**
3764
+ * Require complete user profile for provisioning (create) API actions.
3765
+ * @param {number} id A unique integer value identifying this S3 bucket.
3766
+ * @param {*} [options] Override http request option.
3767
+ * @throws {RequiredError}
3768
+ */
3769
+ cloudBucketsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3770
+ /**
3771
+ * Require complete user profile for provisioning (create) API actions.
3772
+ * @param {number} id A unique integer value identifying this S3 bucket.
3773
+ * @param {Bucket} [bucket]
3774
+ * @param {*} [options] Override http request option.
3775
+ * @throws {RequiredError}
3776
+ */
3777
+ cloudBucketsVisibilityCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3440
3778
  /**
3441
3779
  * Require complete user profile for provisioning (create) API actions.
3442
3780
  * @param {FirewallRulesSet} firewallRulesSet
@@ -3529,6 +3867,110 @@ export declare const CloudApiAxiosParamCreator: (configuration?: Configuration)
3529
3867
  * @throws {RequiredError}
3530
3868
  */
3531
3869
  cloudFirewallRulesSetUpdate: (id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3870
+ /**
3871
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3872
+ * @param {number} id A unique integer value identifying this floating IPv4.
3873
+ * @param {number} [page] A page number within the paginated result set.
3874
+ * @param {*} [options] Override http request option.
3875
+ * @throws {RequiredError}
3876
+ */
3877
+ cloudFloatingIpv4AuthorizationsList: (id: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3878
+ /**
3879
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3880
+ * @param {number} id A unique integer value identifying this floating IPv4.
3881
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
3882
+ * @param {*} [options] Override http request option.
3883
+ * @throws {RequiredError}
3884
+ */
3885
+ cloudFloatingIpv4AuthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3886
+ /**
3887
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3888
+ * @param {FloatingIPv4Create} [floatingIPv4Create]
3889
+ * @param {*} [options] Override http request option.
3890
+ * @throws {RequiredError}
3891
+ */
3892
+ cloudFloatingIpv4Create: (floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3893
+ /**
3894
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3895
+ * @param {number} id A unique integer value identifying this floating IPv4.
3896
+ * @param {*} [options] Override http request option.
3897
+ * @throws {RequiredError}
3898
+ */
3899
+ cloudFloatingIpv4Destroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3900
+ /**
3901
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3902
+ * @param {number} [page] A page number within the paginated result set.
3903
+ * @param {*} [options] Override http request option.
3904
+ * @throws {RequiredError}
3905
+ */
3906
+ cloudFloatingIpv4List: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3907
+ /**
3908
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3909
+ * @param {number} id A unique integer value identifying this floating IPv4.
3910
+ * @param {*} [options] Override http request option.
3911
+ * @throws {RequiredError}
3912
+ */
3913
+ cloudFloatingIpv4Retrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3914
+ /**
3915
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3916
+ * @param {number} id A unique integer value identifying this floating IPv4.
3917
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
3918
+ * @param {*} [options] Override http request option.
3919
+ * @throws {RequiredError}
3920
+ */
3921
+ cloudFloatingIpv4UnauthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3922
+ /**
3923
+ * Manage floating IPv6 addresses.
3924
+ * @param {number} id A unique integer value identifying this floating IPv6.
3925
+ * @param {number} [page] A page number within the paginated result set.
3926
+ * @param {*} [options] Override http request option.
3927
+ * @throws {RequiredError}
3928
+ */
3929
+ cloudFloatingIpv6AuthorizationsList: (id: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3930
+ /**
3931
+ * Manage floating IPv6 addresses.
3932
+ * @param {number} id A unique integer value identifying this floating IPv6.
3933
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
3934
+ * @param {*} [options] Override http request option.
3935
+ * @throws {RequiredError}
3936
+ */
3937
+ cloudFloatingIpv6AuthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3938
+ /**
3939
+ * Manage floating IPv6 addresses.
3940
+ * @param {FloatingIPv6Create} [floatingIPv6Create]
3941
+ * @param {*} [options] Override http request option.
3942
+ * @throws {RequiredError}
3943
+ */
3944
+ cloudFloatingIpv6Create: (floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3945
+ /**
3946
+ * Manage floating IPv6 addresses.
3947
+ * @param {number} id A unique integer value identifying this floating IPv6.
3948
+ * @param {*} [options] Override http request option.
3949
+ * @throws {RequiredError}
3950
+ */
3951
+ cloudFloatingIpv6Destroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3952
+ /**
3953
+ * Manage floating IPv6 addresses.
3954
+ * @param {number} [page] A page number within the paginated result set.
3955
+ * @param {*} [options] Override http request option.
3956
+ * @throws {RequiredError}
3957
+ */
3958
+ cloudFloatingIpv6List: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3959
+ /**
3960
+ * Manage floating IPv6 addresses.
3961
+ * @param {number} id A unique integer value identifying this floating IPv6.
3962
+ * @param {*} [options] Override http request option.
3963
+ * @throws {RequiredError}
3964
+ */
3965
+ cloudFloatingIpv6Retrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3966
+ /**
3967
+ * Manage floating IPv6 addresses.
3968
+ * @param {number} id A unique integer value identifying this floating IPv6.
3969
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
3970
+ * @param {*} [options] Override http request option.
3971
+ * @throws {RequiredError}
3972
+ */
3973
+ cloudFloatingIpv6UnauthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3532
3974
  /**
3533
3975
  *
3534
3976
  * @summary List hardware generations
@@ -3727,11 +4169,12 @@ export declare const CloudApiAxiosParamCreator: (configuration?: Configuration)
3727
4169
  cloudServerPackagesByGenerationRetrieve: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3728
4170
  /**
3729
4171
  * List of available server products
4172
+ * @param {string} [generation] Filter packages available on the given hardware generation (slug). Excludes free-tier-only packages when the generation is not free-tier eligible.
3730
4173
  * @param {number} [page] A page number within the paginated result set.
3731
4174
  * @param {*} [options] Override http request option.
3732
4175
  * @throws {RequiredError}
3733
4176
  */
3734
- cloudServerPackagesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4177
+ cloudServerPackagesList: (generation?: string, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3735
4178
  /**
3736
4179
  * List of available server products
3737
4180
  * @param {number} id A unique integer value identifying this metered product.
@@ -4054,96 +4497,259 @@ export declare const CloudApiAxiosParamCreator: (configuration?: Configuration)
4054
4497
  export declare const CloudApiFp: (configuration?: Configuration) => {
4055
4498
  /**
4056
4499
  * Require complete user profile for provisioning (create) API actions.
4057
- * @param {FirewallRulesSet} firewallRulesSet
4500
+ * @param {Bucket} [bucket]
4058
4501
  * @param {*} [options] Override http request option.
4059
4502
  * @throws {RequiredError}
4060
4503
  */
4061
- cloudFirewallRulesSetCreate(firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4504
+ cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4062
4505
  /**
4063
4506
  * Require complete user profile for provisioning (create) API actions.
4064
- * @param {number} id A unique integer value identifying this firewall rules set.
4507
+ * @param {number} id A unique integer value identifying this S3 bucket.
4508
+ * @param {Bucket} [bucket]
4065
4509
  * @param {*} [options] Override http request option.
4066
4510
  * @throws {RequiredError}
4067
4511
  */
4068
- cloudFirewallRulesSetDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4512
+ cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4069
4513
  /**
4070
4514
  * Require complete user profile for provisioning (create) API actions.
4515
+ * @param {number} id A unique integer value identifying this S3 bucket.
4516
+ * @param {Bucket} [bucket]
4071
4517
  * @param {*} [options] Override http request option.
4072
4518
  * @throws {RequiredError}
4073
4519
  */
4074
- cloudFirewallRulesSetList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FirewallRulesSet>>>;
4520
+ cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4075
4521
  /**
4076
4522
  * Require complete user profile for provisioning (create) API actions.
4077
- * @param {number} id A unique integer value identifying this firewall rules set.
4078
- * @param {PatchedFirewallRulesSet} [patchedFirewallRulesSet]
4523
+ * @param {number} id A unique integer value identifying this S3 bucket.
4079
4524
  * @param {*} [options] Override http request option.
4080
4525
  * @throws {RequiredError}
4081
4526
  */
4082
- cloudFirewallRulesSetPartialUpdate(id: number, patchedFirewallRulesSet?: PatchedFirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4527
+ cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4083
4528
  /**
4084
4529
  * Require complete user profile for provisioning (create) API actions.
4085
- * @param {number} id A unique integer value identifying this firewall rules set.
4086
4530
  * @param {*} [options] Override http request option.
4087
4531
  * @throws {RequiredError}
4088
4532
  */
4089
- cloudFirewallRulesSetRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4533
+ cloudBucketsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Bucket>>>;
4090
4534
  /**
4091
4535
  * Require complete user profile for provisioning (create) API actions.
4092
- * @param {string} rulesSetId
4093
- * @param {FirewallRule} firewallRule
4536
+ * @param {number} id A unique integer value identifying this S3 bucket.
4537
+ * @param {Bucket} [bucket]
4094
4538
  * @param {*} [options] Override http request option.
4095
4539
  * @throws {RequiredError}
4096
4540
  */
4097
- cloudFirewallRulesSetRulesCreate(rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
4541
+ cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4098
4542
  /**
4099
4543
  * Require complete user profile for provisioning (create) API actions.
4100
- * @param {string} ruleId
4101
- * @param {string} rulesSetId
4544
+ * @param {number} id A unique integer value identifying this S3 bucket.
4102
4545
  * @param {*} [options] Override http request option.
4103
4546
  * @throws {RequiredError}
4104
4547
  */
4105
- cloudFirewallRulesSetRulesDestroy(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4548
+ cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4106
4549
  /**
4107
4550
  * Require complete user profile for provisioning (create) API actions.
4108
- * @param {string} rulesSetId
4551
+ * @param {number} id A unique integer value identifying this S3 bucket.
4552
+ * @param {Bucket} [bucket]
4109
4553
  * @param {*} [options] Override http request option.
4110
4554
  * @throws {RequiredError}
4111
4555
  */
4112
- cloudFirewallRulesSetRulesList(rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FirewallRule>>>;
4556
+ cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4113
4557
  /**
4114
4558
  * Require complete user profile for provisioning (create) API actions.
4115
- * @param {string} ruleId
4116
- * @param {string} rulesSetId
4117
- * @param {PatchedFirewallRule} [patchedFirewallRule]
4559
+ * @param {FirewallRulesSet} firewallRulesSet
4118
4560
  * @param {*} [options] Override http request option.
4119
4561
  * @throws {RequiredError}
4120
4562
  */
4121
- cloudFirewallRulesSetRulesPartialUpdate(ruleId: string, rulesSetId: string, patchedFirewallRule?: PatchedFirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
4563
+ cloudFirewallRulesSetCreate(firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4122
4564
  /**
4123
4565
  * Require complete user profile for provisioning (create) API actions.
4124
- * @param {string} ruleId
4125
- * @param {string} rulesSetId
4566
+ * @param {number} id A unique integer value identifying this firewall rules set.
4126
4567
  * @param {*} [options] Override http request option.
4127
4568
  * @throws {RequiredError}
4128
4569
  */
4129
- cloudFirewallRulesSetRulesRetrieve(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
4570
+ cloudFirewallRulesSetDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4130
4571
  /**
4131
4572
  * Require complete user profile for provisioning (create) API actions.
4132
- * @param {string} ruleId
4133
- * @param {string} rulesSetId
4134
- * @param {FirewallRule} firewallRule
4135
4573
  * @param {*} [options] Override http request option.
4136
4574
  * @throws {RequiredError}
4137
4575
  */
4138
- cloudFirewallRulesSetRulesUpdate(ruleId: string, rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
4576
+ cloudFirewallRulesSetList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FirewallRulesSet>>>;
4139
4577
  /**
4140
4578
  * Require complete user profile for provisioning (create) API actions.
4141
4579
  * @param {number} id A unique integer value identifying this firewall rules set.
4142
- * @param {FirewallRulesSet} firewallRulesSet
4580
+ * @param {PatchedFirewallRulesSet} [patchedFirewallRulesSet]
4143
4581
  * @param {*} [options] Override http request option.
4144
4582
  * @throws {RequiredError}
4145
4583
  */
4146
- cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4584
+ cloudFirewallRulesSetPartialUpdate(id: number, patchedFirewallRulesSet?: PatchedFirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4585
+ /**
4586
+ * Require complete user profile for provisioning (create) API actions.
4587
+ * @param {number} id A unique integer value identifying this firewall rules set.
4588
+ * @param {*} [options] Override http request option.
4589
+ * @throws {RequiredError}
4590
+ */
4591
+ cloudFirewallRulesSetRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4592
+ /**
4593
+ * Require complete user profile for provisioning (create) API actions.
4594
+ * @param {string} rulesSetId
4595
+ * @param {FirewallRule} firewallRule
4596
+ * @param {*} [options] Override http request option.
4597
+ * @throws {RequiredError}
4598
+ */
4599
+ cloudFirewallRulesSetRulesCreate(rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
4600
+ /**
4601
+ * Require complete user profile for provisioning (create) API actions.
4602
+ * @param {string} ruleId
4603
+ * @param {string} rulesSetId
4604
+ * @param {*} [options] Override http request option.
4605
+ * @throws {RequiredError}
4606
+ */
4607
+ cloudFirewallRulesSetRulesDestroy(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4608
+ /**
4609
+ * Require complete user profile for provisioning (create) API actions.
4610
+ * @param {string} rulesSetId
4611
+ * @param {*} [options] Override http request option.
4612
+ * @throws {RequiredError}
4613
+ */
4614
+ cloudFirewallRulesSetRulesList(rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<FirewallRule>>>;
4615
+ /**
4616
+ * Require complete user profile for provisioning (create) API actions.
4617
+ * @param {string} ruleId
4618
+ * @param {string} rulesSetId
4619
+ * @param {PatchedFirewallRule} [patchedFirewallRule]
4620
+ * @param {*} [options] Override http request option.
4621
+ * @throws {RequiredError}
4622
+ */
4623
+ cloudFirewallRulesSetRulesPartialUpdate(ruleId: string, rulesSetId: string, patchedFirewallRule?: PatchedFirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
4624
+ /**
4625
+ * Require complete user profile for provisioning (create) API actions.
4626
+ * @param {string} ruleId
4627
+ * @param {string} rulesSetId
4628
+ * @param {*} [options] Override http request option.
4629
+ * @throws {RequiredError}
4630
+ */
4631
+ cloudFirewallRulesSetRulesRetrieve(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
4632
+ /**
4633
+ * Require complete user profile for provisioning (create) API actions.
4634
+ * @param {string} ruleId
4635
+ * @param {string} rulesSetId
4636
+ * @param {FirewallRule} firewallRule
4637
+ * @param {*} [options] Override http request option.
4638
+ * @throws {RequiredError}
4639
+ */
4640
+ cloudFirewallRulesSetRulesUpdate(ruleId: string, rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRule>>;
4641
+ /**
4642
+ * Require complete user profile for provisioning (create) API actions.
4643
+ * @param {number} id A unique integer value identifying this firewall rules set.
4644
+ * @param {FirewallRulesSet} firewallRulesSet
4645
+ * @param {*} [options] Override http request option.
4646
+ * @throws {RequiredError}
4647
+ */
4648
+ cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4649
+ /**
4650
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4651
+ * @param {number} id A unique integer value identifying this floating IPv4.
4652
+ * @param {number} [page] A page number within the paginated result set.
4653
+ * @param {*} [options] Override http request option.
4654
+ * @throws {RequiredError}
4655
+ */
4656
+ cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPAuthorizationList>>;
4657
+ /**
4658
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4659
+ * @param {number} id A unique integer value identifying this floating IPv4.
4660
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
4661
+ * @param {*} [options] Override http request option.
4662
+ * @throws {RequiredError}
4663
+ */
4664
+ cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4AuthorizeResponse>>;
4665
+ /**
4666
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4667
+ * @param {FloatingIPv4Create} [floatingIPv4Create]
4668
+ * @param {*} [options] Override http request option.
4669
+ * @throws {RequiredError}
4670
+ */
4671
+ cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4>>;
4672
+ /**
4673
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4674
+ * @param {number} id A unique integer value identifying this floating IPv4.
4675
+ * @param {*} [options] Override http request option.
4676
+ * @throws {RequiredError}
4677
+ */
4678
+ cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4679
+ /**
4680
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4681
+ * @param {number} [page] A page number within the paginated result set.
4682
+ * @param {*} [options] Override http request option.
4683
+ * @throws {RequiredError}
4684
+ */
4685
+ cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPv4List>>;
4686
+ /**
4687
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4688
+ * @param {number} id A unique integer value identifying this floating IPv4.
4689
+ * @param {*} [options] Override http request option.
4690
+ * @throws {RequiredError}
4691
+ */
4692
+ cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4>>;
4693
+ /**
4694
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4695
+ * @param {number} id A unique integer value identifying this floating IPv4.
4696
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
4697
+ * @param {*} [options] Override http request option.
4698
+ * @throws {RequiredError}
4699
+ */
4700
+ cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4UnauthorizeResponse>>;
4701
+ /**
4702
+ * Manage floating IPv6 addresses.
4703
+ * @param {number} id A unique integer value identifying this floating IPv6.
4704
+ * @param {number} [page] A page number within the paginated result set.
4705
+ * @param {*} [options] Override http request option.
4706
+ * @throws {RequiredError}
4707
+ */
4708
+ cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPAuthorizationList>>;
4709
+ /**
4710
+ * Manage floating IPv6 addresses.
4711
+ * @param {number} id A unique integer value identifying this floating IPv6.
4712
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
4713
+ * @param {*} [options] Override http request option.
4714
+ * @throws {RequiredError}
4715
+ */
4716
+ cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6AuthorizeResponse>>;
4717
+ /**
4718
+ * Manage floating IPv6 addresses.
4719
+ * @param {FloatingIPv6Create} [floatingIPv6Create]
4720
+ * @param {*} [options] Override http request option.
4721
+ * @throws {RequiredError}
4722
+ */
4723
+ cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6>>;
4724
+ /**
4725
+ * Manage floating IPv6 addresses.
4726
+ * @param {number} id A unique integer value identifying this floating IPv6.
4727
+ * @param {*} [options] Override http request option.
4728
+ * @throws {RequiredError}
4729
+ */
4730
+ cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4731
+ /**
4732
+ * Manage floating IPv6 addresses.
4733
+ * @param {number} [page] A page number within the paginated result set.
4734
+ * @param {*} [options] Override http request option.
4735
+ * @throws {RequiredError}
4736
+ */
4737
+ cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPv6List>>;
4738
+ /**
4739
+ * Manage floating IPv6 addresses.
4740
+ * @param {number} id A unique integer value identifying this floating IPv6.
4741
+ * @param {*} [options] Override http request option.
4742
+ * @throws {RequiredError}
4743
+ */
4744
+ cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6>>;
4745
+ /**
4746
+ * Manage floating IPv6 addresses.
4747
+ * @param {number} id A unique integer value identifying this floating IPv6.
4748
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
4749
+ * @param {*} [options] Override http request option.
4750
+ * @throws {RequiredError}
4751
+ */
4752
+ cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6UnauthorizeResponse>>;
4147
4753
  /**
4148
4754
  *
4149
4755
  * @summary List hardware generations
@@ -4342,11 +4948,12 @@ export declare const CloudApiFp: (configuration?: Configuration) => {
4342
4948
  cloudServerPackagesByGenerationRetrieve(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServerProduct>>;
4343
4949
  /**
4344
4950
  * List of available server products
4951
+ * @param {string} [generation] Filter packages available on the given hardware generation (slug). Excludes free-tier-only packages when the generation is not free-tier eligible.
4345
4952
  * @param {number} [page] A page number within the paginated result set.
4346
4953
  * @param {*} [options] Override http request option.
4347
4954
  * @throws {RequiredError}
4348
4955
  */
4349
- cloudServerPackagesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedServerProductList>>;
4956
+ cloudServerPackagesList(generation?: string, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedServerProductList>>;
4350
4957
  /**
4351
4958
  * List of available server products
4352
4959
  * @param {number} id A unique integer value identifying this metered product.
@@ -4667,6 +5274,65 @@ export declare const CloudApiFp: (configuration?: Configuration) => {
4667
5274
  * CloudApi - factory interface
4668
5275
  */
4669
5276
  export declare const CloudApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5277
+ /**
5278
+ * Require complete user profile for provisioning (create) API actions.
5279
+ * @param {Bucket} [bucket]
5280
+ * @param {*} [options] Override http request option.
5281
+ * @throws {RequiredError}
5282
+ */
5283
+ cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5284
+ /**
5285
+ * Require complete user profile for provisioning (create) API actions.
5286
+ * @param {number} id A unique integer value identifying this S3 bucket.
5287
+ * @param {Bucket} [bucket]
5288
+ * @param {*} [options] Override http request option.
5289
+ * @throws {RequiredError}
5290
+ */
5291
+ cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5292
+ /**
5293
+ * Require complete user profile for provisioning (create) API actions.
5294
+ * @param {number} id A unique integer value identifying this S3 bucket.
5295
+ * @param {Bucket} [bucket]
5296
+ * @param {*} [options] Override http request option.
5297
+ * @throws {RequiredError}
5298
+ */
5299
+ cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5300
+ /**
5301
+ * Require complete user profile for provisioning (create) API actions.
5302
+ * @param {number} id A unique integer value identifying this S3 bucket.
5303
+ * @param {*} [options] Override http request option.
5304
+ * @throws {RequiredError}
5305
+ */
5306
+ cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5307
+ /**
5308
+ * Require complete user profile for provisioning (create) API actions.
5309
+ * @param {*} [options] Override http request option.
5310
+ * @throws {RequiredError}
5311
+ */
5312
+ cloudBucketsList(options?: RawAxiosRequestConfig): AxiosPromise<Array<Bucket>>;
5313
+ /**
5314
+ * Require complete user profile for provisioning (create) API actions.
5315
+ * @param {number} id A unique integer value identifying this S3 bucket.
5316
+ * @param {Bucket} [bucket]
5317
+ * @param {*} [options] Override http request option.
5318
+ * @throws {RequiredError}
5319
+ */
5320
+ cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5321
+ /**
5322
+ * Require complete user profile for provisioning (create) API actions.
5323
+ * @param {number} id A unique integer value identifying this S3 bucket.
5324
+ * @param {*} [options] Override http request option.
5325
+ * @throws {RequiredError}
5326
+ */
5327
+ cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5328
+ /**
5329
+ * Require complete user profile for provisioning (create) API actions.
5330
+ * @param {number} id A unique integer value identifying this S3 bucket.
5331
+ * @param {Bucket} [bucket]
5332
+ * @param {*} [options] Override http request option.
5333
+ * @throws {RequiredError}
5334
+ */
5335
+ cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
4670
5336
  /**
4671
5337
  * Require complete user profile for provisioning (create) API actions.
4672
5338
  * @param {FirewallRulesSet} firewallRulesSet
@@ -4759,6 +5425,110 @@ export declare const CloudApiFactory: (configuration?: Configuration, basePath?:
4759
5425
  * @throws {RequiredError}
4760
5426
  */
4761
5427
  cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): AxiosPromise<FirewallRulesSet>;
5428
+ /**
5429
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5430
+ * @param {number} id A unique integer value identifying this floating IPv4.
5431
+ * @param {number} [page] A page number within the paginated result set.
5432
+ * @param {*} [options] Override http request option.
5433
+ * @throws {RequiredError}
5434
+ */
5435
+ cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPAuthorizationList>;
5436
+ /**
5437
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5438
+ * @param {number} id A unique integer value identifying this floating IPv4.
5439
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5440
+ * @param {*} [options] Override http request option.
5441
+ * @throws {RequiredError}
5442
+ */
5443
+ cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4AuthorizeResponse>;
5444
+ /**
5445
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5446
+ * @param {FloatingIPv4Create} [floatingIPv4Create]
5447
+ * @param {*} [options] Override http request option.
5448
+ * @throws {RequiredError}
5449
+ */
5450
+ cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4>;
5451
+ /**
5452
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5453
+ * @param {number} id A unique integer value identifying this floating IPv4.
5454
+ * @param {*} [options] Override http request option.
5455
+ * @throws {RequiredError}
5456
+ */
5457
+ cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5458
+ /**
5459
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5460
+ * @param {number} [page] A page number within the paginated result set.
5461
+ * @param {*} [options] Override http request option.
5462
+ * @throws {RequiredError}
5463
+ */
5464
+ cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPv4List>;
5465
+ /**
5466
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5467
+ * @param {number} id A unique integer value identifying this floating IPv4.
5468
+ * @param {*} [options] Override http request option.
5469
+ * @throws {RequiredError}
5470
+ */
5471
+ cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4>;
5472
+ /**
5473
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5474
+ * @param {number} id A unique integer value identifying this floating IPv4.
5475
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5476
+ * @param {*} [options] Override http request option.
5477
+ * @throws {RequiredError}
5478
+ */
5479
+ cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4UnauthorizeResponse>;
5480
+ /**
5481
+ * Manage floating IPv6 addresses.
5482
+ * @param {number} id A unique integer value identifying this floating IPv6.
5483
+ * @param {number} [page] A page number within the paginated result set.
5484
+ * @param {*} [options] Override http request option.
5485
+ * @throws {RequiredError}
5486
+ */
5487
+ cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPAuthorizationList>;
5488
+ /**
5489
+ * Manage floating IPv6 addresses.
5490
+ * @param {number} id A unique integer value identifying this floating IPv6.
5491
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5492
+ * @param {*} [options] Override http request option.
5493
+ * @throws {RequiredError}
5494
+ */
5495
+ cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6AuthorizeResponse>;
5496
+ /**
5497
+ * Manage floating IPv6 addresses.
5498
+ * @param {FloatingIPv6Create} [floatingIPv6Create]
5499
+ * @param {*} [options] Override http request option.
5500
+ * @throws {RequiredError}
5501
+ */
5502
+ cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6>;
5503
+ /**
5504
+ * Manage floating IPv6 addresses.
5505
+ * @param {number} id A unique integer value identifying this floating IPv6.
5506
+ * @param {*} [options] Override http request option.
5507
+ * @throws {RequiredError}
5508
+ */
5509
+ cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5510
+ /**
5511
+ * Manage floating IPv6 addresses.
5512
+ * @param {number} [page] A page number within the paginated result set.
5513
+ * @param {*} [options] Override http request option.
5514
+ * @throws {RequiredError}
5515
+ */
5516
+ cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPv6List>;
5517
+ /**
5518
+ * Manage floating IPv6 addresses.
5519
+ * @param {number} id A unique integer value identifying this floating IPv6.
5520
+ * @param {*} [options] Override http request option.
5521
+ * @throws {RequiredError}
5522
+ */
5523
+ cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6>;
5524
+ /**
5525
+ * Manage floating IPv6 addresses.
5526
+ * @param {number} id A unique integer value identifying this floating IPv6.
5527
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5528
+ * @param {*} [options] Override http request option.
5529
+ * @throws {RequiredError}
5530
+ */
5531
+ cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6UnauthorizeResponse>;
4762
5532
  /**
4763
5533
  *
4764
5534
  * @summary List hardware generations
@@ -4957,11 +5727,12 @@ export declare const CloudApiFactory: (configuration?: Configuration, basePath?:
4957
5727
  cloudServerPackagesByGenerationRetrieve(options?: RawAxiosRequestConfig): AxiosPromise<ServerProduct>;
4958
5728
  /**
4959
5729
  * List of available server products
5730
+ * @param {string} [generation] Filter packages available on the given hardware generation (slug). Excludes free-tier-only packages when the generation is not free-tier eligible.
4960
5731
  * @param {number} [page] A page number within the paginated result set.
4961
5732
  * @param {*} [options] Override http request option.
4962
5733
  * @throws {RequiredError}
4963
5734
  */
4964
- cloudServerPackagesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedServerProductList>;
5735
+ cloudServerPackagesList(generation?: string, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedServerProductList>;
4965
5736
  /**
4966
5737
  * List of available server products
4967
5738
  * @param {number} id A unique integer value identifying this metered product.
@@ -5284,83 +6055,142 @@ export declare const CloudApiFactory: (configuration?: Configuration, basePath?:
5284
6055
  export declare class CloudApi extends BaseAPI {
5285
6056
  /**
5286
6057
  * Require complete user profile for provisioning (create) API actions.
5287
- * @param {FirewallRulesSet} firewallRulesSet
6058
+ * @param {Bucket} [bucket]
5288
6059
  * @param {*} [options] Override http request option.
5289
6060
  * @throws {RequiredError}
5290
6061
  */
5291
- cloudFirewallRulesSetCreate(firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
6062
+ cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
5292
6063
  /**
5293
6064
  * Require complete user profile for provisioning (create) API actions.
5294
- * @param {number} id A unique integer value identifying this firewall rules set.
6065
+ * @param {number} id A unique integer value identifying this S3 bucket.
6066
+ * @param {Bucket} [bucket]
5295
6067
  * @param {*} [options] Override http request option.
5296
6068
  * @throws {RequiredError}
5297
6069
  */
5298
- cloudFirewallRulesSetDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6070
+ cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
5299
6071
  /**
5300
6072
  * Require complete user profile for provisioning (create) API actions.
6073
+ * @param {number} id A unique integer value identifying this S3 bucket.
6074
+ * @param {Bucket} [bucket]
5301
6075
  * @param {*} [options] Override http request option.
5302
6076
  * @throws {RequiredError}
5303
6077
  */
5304
- cloudFirewallRulesSetList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet[], any, {}>>;
6078
+ cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
5305
6079
  /**
5306
6080
  * Require complete user profile for provisioning (create) API actions.
5307
- * @param {number} id A unique integer value identifying this firewall rules set.
5308
- * @param {PatchedFirewallRulesSet} [patchedFirewallRulesSet]
6081
+ * @param {number} id A unique integer value identifying this S3 bucket.
5309
6082
  * @param {*} [options] Override http request option.
5310
6083
  * @throws {RequiredError}
5311
6084
  */
5312
- cloudFirewallRulesSetPartialUpdate(id: number, patchedFirewallRulesSet?: PatchedFirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
6085
+ cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5313
6086
  /**
5314
6087
  * Require complete user profile for provisioning (create) API actions.
5315
- * @param {number} id A unique integer value identifying this firewall rules set.
5316
6088
  * @param {*} [options] Override http request option.
5317
6089
  * @throws {RequiredError}
5318
6090
  */
5319
- cloudFirewallRulesSetRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
6091
+ cloudBucketsList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket[], any, {}>>;
5320
6092
  /**
5321
6093
  * Require complete user profile for provisioning (create) API actions.
5322
- * @param {string} rulesSetId
5323
- * @param {FirewallRule} firewallRule
6094
+ * @param {number} id A unique integer value identifying this S3 bucket.
6095
+ * @param {Bucket} [bucket]
5324
6096
  * @param {*} [options] Override http request option.
5325
6097
  * @throws {RequiredError}
5326
6098
  */
5327
- cloudFirewallRulesSetRulesCreate(rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
6099
+ cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
5328
6100
  /**
5329
6101
  * Require complete user profile for provisioning (create) API actions.
5330
- * @param {string} ruleId
5331
- * @param {string} rulesSetId
6102
+ * @param {number} id A unique integer value identifying this S3 bucket.
5332
6103
  * @param {*} [options] Override http request option.
5333
6104
  * @throws {RequiredError}
5334
6105
  */
5335
- cloudFirewallRulesSetRulesDestroy(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6106
+ cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
5336
6107
  /**
5337
6108
  * Require complete user profile for provisioning (create) API actions.
5338
- * @param {string} rulesSetId
6109
+ * @param {number} id A unique integer value identifying this S3 bucket.
6110
+ * @param {Bucket} [bucket]
5339
6111
  * @param {*} [options] Override http request option.
5340
6112
  * @throws {RequiredError}
5341
6113
  */
5342
- cloudFirewallRulesSetRulesList(rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule[], any, {}>>;
6114
+ cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
5343
6115
  /**
5344
6116
  * Require complete user profile for provisioning (create) API actions.
5345
- * @param {string} ruleId
5346
- * @param {string} rulesSetId
5347
- * @param {PatchedFirewallRule} [patchedFirewallRule]
6117
+ * @param {FirewallRulesSet} firewallRulesSet
5348
6118
  * @param {*} [options] Override http request option.
5349
6119
  * @throws {RequiredError}
5350
6120
  */
5351
- cloudFirewallRulesSetRulesPartialUpdate(ruleId: string, rulesSetId: string, patchedFirewallRule?: PatchedFirewallRule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
6121
+ cloudFirewallRulesSetCreate(firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
5352
6122
  /**
5353
6123
  * Require complete user profile for provisioning (create) API actions.
5354
- * @param {string} ruleId
5355
- * @param {string} rulesSetId
6124
+ * @param {number} id A unique integer value identifying this firewall rules set.
5356
6125
  * @param {*} [options] Override http request option.
5357
6126
  * @throws {RequiredError}
5358
6127
  */
5359
- cloudFirewallRulesSetRulesRetrieve(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
6128
+ cloudFirewallRulesSetDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5360
6129
  /**
5361
6130
  * Require complete user profile for provisioning (create) API actions.
5362
- * @param {string} ruleId
5363
- * @param {string} rulesSetId
6131
+ * @param {*} [options] Override http request option.
6132
+ * @throws {RequiredError}
6133
+ */
6134
+ cloudFirewallRulesSetList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet[], any, {}>>;
6135
+ /**
6136
+ * Require complete user profile for provisioning (create) API actions.
6137
+ * @param {number} id A unique integer value identifying this firewall rules set.
6138
+ * @param {PatchedFirewallRulesSet} [patchedFirewallRulesSet]
6139
+ * @param {*} [options] Override http request option.
6140
+ * @throws {RequiredError}
6141
+ */
6142
+ cloudFirewallRulesSetPartialUpdate(id: number, patchedFirewallRulesSet?: PatchedFirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
6143
+ /**
6144
+ * Require complete user profile for provisioning (create) API actions.
6145
+ * @param {number} id A unique integer value identifying this firewall rules set.
6146
+ * @param {*} [options] Override http request option.
6147
+ * @throws {RequiredError}
6148
+ */
6149
+ cloudFirewallRulesSetRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
6150
+ /**
6151
+ * Require complete user profile for provisioning (create) API actions.
6152
+ * @param {string} rulesSetId
6153
+ * @param {FirewallRule} firewallRule
6154
+ * @param {*} [options] Override http request option.
6155
+ * @throws {RequiredError}
6156
+ */
6157
+ cloudFirewallRulesSetRulesCreate(rulesSetId: string, firewallRule: FirewallRule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
6158
+ /**
6159
+ * Require complete user profile for provisioning (create) API actions.
6160
+ * @param {string} ruleId
6161
+ * @param {string} rulesSetId
6162
+ * @param {*} [options] Override http request option.
6163
+ * @throws {RequiredError}
6164
+ */
6165
+ cloudFirewallRulesSetRulesDestroy(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6166
+ /**
6167
+ * Require complete user profile for provisioning (create) API actions.
6168
+ * @param {string} rulesSetId
6169
+ * @param {*} [options] Override http request option.
6170
+ * @throws {RequiredError}
6171
+ */
6172
+ cloudFirewallRulesSetRulesList(rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule[], any, {}>>;
6173
+ /**
6174
+ * Require complete user profile for provisioning (create) API actions.
6175
+ * @param {string} ruleId
6176
+ * @param {string} rulesSetId
6177
+ * @param {PatchedFirewallRule} [patchedFirewallRule]
6178
+ * @param {*} [options] Override http request option.
6179
+ * @throws {RequiredError}
6180
+ */
6181
+ cloudFirewallRulesSetRulesPartialUpdate(ruleId: string, rulesSetId: string, patchedFirewallRule?: PatchedFirewallRule, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
6182
+ /**
6183
+ * Require complete user profile for provisioning (create) API actions.
6184
+ * @param {string} ruleId
6185
+ * @param {string} rulesSetId
6186
+ * @param {*} [options] Override http request option.
6187
+ * @throws {RequiredError}
6188
+ */
6189
+ cloudFirewallRulesSetRulesRetrieve(ruleId: string, rulesSetId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRule, any, {}>>;
6190
+ /**
6191
+ * Require complete user profile for provisioning (create) API actions.
6192
+ * @param {string} ruleId
6193
+ * @param {string} rulesSetId
5364
6194
  * @param {FirewallRule} firewallRule
5365
6195
  * @param {*} [options] Override http request option.
5366
6196
  * @throws {RequiredError}
@@ -5374,6 +6204,110 @@ export declare class CloudApi extends BaseAPI {
5374
6204
  * @throws {RequiredError}
5375
6205
  */
5376
6206
  cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
6207
+ /**
6208
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6209
+ * @param {number} id A unique integer value identifying this floating IPv4.
6210
+ * @param {number} [page] A page number within the paginated result set.
6211
+ * @param {*} [options] Override http request option.
6212
+ * @throws {RequiredError}
6213
+ */
6214
+ cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPAuthorizationList, any, {}>>;
6215
+ /**
6216
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6217
+ * @param {number} id A unique integer value identifying this floating IPv4.
6218
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
6219
+ * @param {*} [options] Override http request option.
6220
+ * @throws {RequiredError}
6221
+ */
6222
+ cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4AuthorizeResponse, 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 {FloatingIPv4Create} [floatingIPv4Create]
6226
+ * @param {*} [options] Override http request option.
6227
+ * @throws {RequiredError}
6228
+ */
6229
+ cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4, 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} id A unique integer value identifying this floating IPv4.
6233
+ * @param {*} [options] Override http request option.
6234
+ * @throws {RequiredError}
6235
+ */
6236
+ cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, 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} [page] A page number within the paginated result set.
6240
+ * @param {*} [options] Override http request option.
6241
+ * @throws {RequiredError}
6242
+ */
6243
+ cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPv4List, 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 {*} [options] Override http request option.
6248
+ * @throws {RequiredError}
6249
+ */
6250
+ cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4, any, {}>>;
6251
+ /**
6252
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6253
+ * @param {number} id A unique integer value identifying this floating IPv4.
6254
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
6255
+ * @param {*} [options] Override http request option.
6256
+ * @throws {RequiredError}
6257
+ */
6258
+ cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4UnauthorizeResponse, any, {}>>;
6259
+ /**
6260
+ * Manage floating IPv6 addresses.
6261
+ * @param {number} id A unique integer value identifying this floating IPv6.
6262
+ * @param {number} [page] A page number within the paginated result set.
6263
+ * @param {*} [options] Override http request option.
6264
+ * @throws {RequiredError}
6265
+ */
6266
+ cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPAuthorizationList, any, {}>>;
6267
+ /**
6268
+ * Manage floating IPv6 addresses.
6269
+ * @param {number} id A unique integer value identifying this floating IPv6.
6270
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
6271
+ * @param {*} [options] Override http request option.
6272
+ * @throws {RequiredError}
6273
+ */
6274
+ cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6AuthorizeResponse, any, {}>>;
6275
+ /**
6276
+ * Manage floating IPv6 addresses.
6277
+ * @param {FloatingIPv6Create} [floatingIPv6Create]
6278
+ * @param {*} [options] Override http request option.
6279
+ * @throws {RequiredError}
6280
+ */
6281
+ cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6, any, {}>>;
6282
+ /**
6283
+ * Manage floating IPv6 addresses.
6284
+ * @param {number} id A unique integer value identifying this floating IPv6.
6285
+ * @param {*} [options] Override http request option.
6286
+ * @throws {RequiredError}
6287
+ */
6288
+ cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6289
+ /**
6290
+ * Manage floating IPv6 addresses.
6291
+ * @param {number} [page] A page number within the paginated result set.
6292
+ * @param {*} [options] Override http request option.
6293
+ * @throws {RequiredError}
6294
+ */
6295
+ cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPv6List, any, {}>>;
6296
+ /**
6297
+ * Manage floating IPv6 addresses.
6298
+ * @param {number} id A unique integer value identifying this floating IPv6.
6299
+ * @param {*} [options] Override http request option.
6300
+ * @throws {RequiredError}
6301
+ */
6302
+ cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6, any, {}>>;
6303
+ /**
6304
+ * Manage floating IPv6 addresses.
6305
+ * @param {number} id A unique integer value identifying this floating IPv6.
6306
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
6307
+ * @param {*} [options] Override http request option.
6308
+ * @throws {RequiredError}
6309
+ */
6310
+ cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6UnauthorizeResponse, any, {}>>;
5377
6311
  /**
5378
6312
  *
5379
6313
  * @summary List hardware generations
@@ -5572,11 +6506,12 @@ export declare class CloudApi extends BaseAPI {
5572
6506
  cloudServerPackagesByGenerationRetrieve(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServerProduct, any, {}>>;
5573
6507
  /**
5574
6508
  * List of available server products
6509
+ * @param {string} [generation] Filter packages available on the given hardware generation (slug). Excludes free-tier-only packages when the generation is not free-tier eligible.
5575
6510
  * @param {number} [page] A page number within the paginated result set.
5576
6511
  * @param {*} [options] Override http request option.
5577
6512
  * @throws {RequiredError}
5578
6513
  */
5579
- cloudServerPackagesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedServerProductList, any, {}>>;
6514
+ cloudServerPackagesList(generation?: string, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedServerProductList, any, {}>>;
5580
6515
  /**
5581
6516
  * List of available server products
5582
6517
  * @param {number} id A unique integer value identifying this metered product.
@@ -6645,6 +7580,1578 @@ export declare class DomainApi extends BaseAPI {
6645
7580
  */
6646
7581
  domainTldRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TLD, any, {}>>;
6647
7582
  }
7583
+ /**
7584
+ * EmailApi - axios parameter creator
7585
+ */
7586
+ export declare const EmailApiAxiosParamCreator: (configuration?: Configuration) => {
7587
+ /**
7588
+ * Require complete user profile for provisioning (create) API actions.
7589
+ * @param {ApiCredential} [apiCredential]
7590
+ * @param {*} [options] Override http request option.
7591
+ * @throws {RequiredError}
7592
+ */
7593
+ emailApiCredentialsCreate: (apiCredential?: ApiCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7594
+ /**
7595
+ * Require complete user profile for provisioning (create) API actions.
7596
+ * @param {number} id A unique integer value identifying this api credential.
7597
+ * @param {*} [options] Override http request option.
7598
+ * @throws {RequiredError}
7599
+ */
7600
+ emailApiCredentialsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7601
+ /**
7602
+ * Require complete user profile for provisioning (create) API actions.
7603
+ * @param {number} [page] A page number within the paginated result set.
7604
+ * @param {*} [options] Override http request option.
7605
+ * @throws {RequiredError}
7606
+ */
7607
+ emailApiCredentialsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7608
+ /**
7609
+ * Require complete user profile for provisioning (create) API actions.
7610
+ * @param {number} id A unique integer value identifying this api credential.
7611
+ * @param {*} [options] Override http request option.
7612
+ * @throws {RequiredError}
7613
+ */
7614
+ emailApiCredentialsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7615
+ /**
7616
+ * Require complete user profile for provisioning (create) API actions.
7617
+ * @param {DomainAdd} domainAdd
7618
+ * @param {*} [options] Override http request option.
7619
+ * @throws {RequiredError}
7620
+ */
7621
+ emailDomainsCreate: (domainAdd: DomainAdd, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7622
+ /**
7623
+ * Require complete user profile for provisioning (create) API actions.
7624
+ * @param {number} domainPk
7625
+ * @param {InboundRoute} inboundRoute
7626
+ * @param {*} [options] Override http request option.
7627
+ * @throws {RequiredError}
7628
+ */
7629
+ emailDomainsInboundRoutesCreate: (domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7630
+ /**
7631
+ * Require complete user profile for provisioning (create) API actions.
7632
+ * @param {number} domainPk
7633
+ * @param {number} [page] A page number within the paginated result set.
7634
+ * @param {*} [options] Override http request option.
7635
+ * @throws {RequiredError}
7636
+ */
7637
+ emailDomainsInboundRoutesList: (domainPk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7638
+ /**
7639
+ * Require complete user profile for provisioning (create) API actions.
7640
+ * @param {number} [page] A page number within the paginated result set.
7641
+ * @param {*} [options] Override http request option.
7642
+ * @throws {RequiredError}
7643
+ */
7644
+ emailDomainsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7645
+ /**
7646
+ * Require complete user profile for provisioning (create) API actions.
7647
+ * @param {number} id A unique integer value identifying this sending domain.
7648
+ * @param {*} [options] Override http request option.
7649
+ * @throws {RequiredError}
7650
+ */
7651
+ emailDomainsRetrieve: (id: number, 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
+ emailDomainsRotateDkimCreate: (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
+ emailDomainsToggleInboundCreate: (id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7668
+ /**
7669
+ * Require complete user profile for provisioning (create) API actions.
7670
+ * @param {number} id A unique integer value identifying this sending domain.
7671
+ * @param {SendingDomain} [sendingDomain]
7672
+ * @param {*} [options] Override http request option.
7673
+ * @throws {RequiredError}
7674
+ */
7675
+ emailDomainsVerifyCreate: (id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7676
+ /**
7677
+ * Require complete user profile for provisioning (create) API actions.
7678
+ * @param {InboundRoute} inboundRoute
7679
+ * @param {*} [options] Override http request option.
7680
+ * @throws {RequiredError}
7681
+ */
7682
+ emailInboundRoutesCreate: (inboundRoute: InboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7683
+ /**
7684
+ * Require complete user profile for provisioning (create) API actions.
7685
+ * @param {number} id A unique integer value identifying this inbound route.
7686
+ * @param {*} [options] Override http request option.
7687
+ * @throws {RequiredError}
7688
+ */
7689
+ emailInboundRoutesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7690
+ /**
7691
+ * Require complete user profile for provisioning (create) API actions.
7692
+ * @param {number} [page] A page number within the paginated result set.
7693
+ * @param {*} [options] Override http request option.
7694
+ * @throws {RequiredError}
7695
+ */
7696
+ emailInboundRoutesList: (page?: number, 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 {PatchedInboundRoute} [patchedInboundRoute]
7701
+ * @param {*} [options] Override http request option.
7702
+ * @throws {RequiredError}
7703
+ */
7704
+ emailInboundRoutesPartialUpdate: (id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7705
+ /**
7706
+ * Require complete user profile for provisioning (create) API actions.
7707
+ * @param {number} id A unique integer value identifying this inbound route.
7708
+ * @param {*} [options] Override http request option.
7709
+ * @throws {RequiredError}
7710
+ */
7711
+ emailInboundRoutesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7712
+ /**
7713
+ * Require complete user profile for provisioning (create) API actions.
7714
+ * @param {string} messageId
7715
+ * @param {*} [options] Override http request option.
7716
+ * @throws {RequiredError}
7717
+ */
7718
+ emailMessagesRetrieve: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7719
+ /**
7720
+ * Require complete user profile for provisioning (create) API actions.
7721
+ * @param {SandboxAddress} sandboxAddress
7722
+ * @param {*} [options] Override http request option.
7723
+ * @throws {RequiredError}
7724
+ */
7725
+ emailSandboxAddressesCreate: (sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7726
+ /**
7727
+ * Require complete user profile for provisioning (create) API actions.
7728
+ * @param {number} id A unique integer value identifying this sandbox verified address.
7729
+ * @param {*} [options] Override http request option.
7730
+ * @throws {RequiredError}
7731
+ */
7732
+ emailSandboxAddressesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7733
+ /**
7734
+ * Require complete user profile for provisioning (create) API actions.
7735
+ * @param {number} [page] A page number within the paginated result set.
7736
+ * @param {*} [options] Override http request option.
7737
+ * @throws {RequiredError}
7738
+ */
7739
+ emailSandboxAddressesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7740
+ /**
7741
+ * Require complete user profile for provisioning (create) API actions.
7742
+ * @param {number} id A unique integer value identifying this sandbox verified address.
7743
+ * @param {*} [options] Override http request option.
7744
+ * @throws {RequiredError}
7745
+ */
7746
+ emailSandboxAddressesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7747
+ /**
7748
+ *
7749
+ * @param {*} [options] Override http request option.
7750
+ * @throws {RequiredError}
7751
+ */
7752
+ emailSendCreate: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7753
+ /**
7754
+ * Require complete user profile for provisioning (create) API actions.
7755
+ * @param {number} servicePk
7756
+ * @param {ApiCredential} [apiCredential]
7757
+ * @param {*} [options] Override http request option.
7758
+ * @throws {RequiredError}
7759
+ */
7760
+ emailServicesApiCredentialsCreate: (servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7761
+ /**
7762
+ * Require complete user profile for provisioning (create) API actions.
7763
+ * @param {number} servicePk
7764
+ * @param {number} [page] A page number within the paginated result set.
7765
+ * @param {*} [options] Override http request option.
7766
+ * @throws {RequiredError}
7767
+ */
7768
+ emailServicesApiCredentialsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7769
+ /**
7770
+ * Require complete user profile for provisioning (create) API actions.
7771
+ * @param {number} id A unique integer value identifying this email service.
7772
+ * @param {*} [options] Override http request option.
7773
+ * @throws {RequiredError}
7774
+ */
7775
+ emailServicesCancelCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7776
+ /**
7777
+ * Require complete user profile for provisioning (create) API actions.
7778
+ * @param {number} id A unique integer value identifying this email service.
7779
+ * @param {PatchedSubscribe} [patchedSubscribe]
7780
+ * @param {*} [options] Override http request option.
7781
+ * @throws {RequiredError}
7782
+ */
7783
+ emailServicesChangeTierPartialUpdate: (id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7784
+ /**
7785
+ * Require complete user profile for provisioning (create) API actions.
7786
+ * @param {Subscribe} subscribe
7787
+ * @param {*} [options] Override http request option.
7788
+ * @throws {RequiredError}
7789
+ */
7790
+ emailServicesCreate: (subscribe: Subscribe, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7791
+ /**
7792
+ * Require complete user profile for provisioning (create) API actions.
7793
+ * @param {number} id A unique integer value identifying this email service.
7794
+ * @param {*} [options] Override http request option.
7795
+ * @throws {RequiredError}
7796
+ */
7797
+ emailServicesDedicatedIpCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7798
+ /**
7799
+ * Require complete user profile for provisioning (create) API actions.
7800
+ * @param {number} id A unique integer value identifying this email service.
7801
+ * @param {*} [options] Override http request option.
7802
+ * @throws {RequiredError}
7803
+ */
7804
+ emailServicesDedicatedIpDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7805
+ /**
7806
+ * Require complete user profile for provisioning (create) API actions.
7807
+ * @param {number} id A unique integer value identifying this email service.
7808
+ * @param {*} [options] Override http request option.
7809
+ * @throws {RequiredError}
7810
+ */
7811
+ emailServicesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7812
+ /**
7813
+ * Require complete user profile for provisioning (create) API actions.
7814
+ * @param {number} servicePk
7815
+ * @param {DomainAdd} domainAdd
7816
+ * @param {*} [options] Override http request option.
7817
+ * @throws {RequiredError}
7818
+ */
7819
+ emailServicesDomainsCreate: (servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7820
+ /**
7821
+ * Require complete user profile for provisioning (create) API actions.
7822
+ * @param {number} servicePk
7823
+ * @param {number} [page] A page number within the paginated result set.
7824
+ * @param {*} [options] Override http request option.
7825
+ * @throws {RequiredError}
7826
+ */
7827
+ emailServicesDomainsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7828
+ /**
7829
+ * Require complete user profile for provisioning (create) API actions.
7830
+ * @param {number} [page] A page number within the paginated result set.
7831
+ * @param {*} [options] Override http request option.
7832
+ * @throws {RequiredError}
7833
+ */
7834
+ emailServicesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7835
+ /**
7836
+ * Require complete user profile for provisioning (create) API actions.
7837
+ * @param {number} servicePk
7838
+ * @param {*} [options] Override http request option.
7839
+ * @throws {RequiredError}
7840
+ */
7841
+ emailServicesMessagesRetrieve: (servicePk: number, 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 {PatchedEmailService} [patchedEmailService]
7846
+ * @param {*} [options] Override http request option.
7847
+ * @throws {RequiredError}
7848
+ */
7849
+ emailServicesPartialUpdate: (id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7850
+ /**
7851
+ * Require complete user profile for provisioning (create) API actions.
7852
+ * @param {number} id A unique integer value identifying this email service.
7853
+ * @param {*} [options] Override http request option.
7854
+ * @throws {RequiredError}
7855
+ */
7856
+ emailServicesRestoreCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7857
+ /**
7858
+ * Require complete user profile for provisioning (create) API actions.
7859
+ * @param {number} id A unique integer value identifying this email service.
7860
+ * @param {*} [options] Override http request option.
7861
+ * @throws {RequiredError}
7862
+ */
7863
+ emailServicesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7864
+ /**
7865
+ * Require complete user profile for provisioning (create) API actions.
7866
+ * @param {number} servicePk
7867
+ * @param {SandboxAddress} sandboxAddress
7868
+ * @param {*} [options] Override http request option.
7869
+ * @throws {RequiredError}
7870
+ */
7871
+ emailServicesSandboxAddressesCreate: (servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7872
+ /**
7873
+ * Require complete user profile for provisioning (create) API actions.
7874
+ * @param {number} servicePk
7875
+ * @param {number} [page] A page number within the paginated result set.
7876
+ * @param {*} [options] Override http request option.
7877
+ * @throws {RequiredError}
7878
+ */
7879
+ emailServicesSandboxAddressesList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7880
+ /**
7881
+ * Require complete user profile for provisioning (create) API actions.
7882
+ * @param {number} servicePk
7883
+ * @param {SmtpCredential} [smtpCredential]
7884
+ * @param {*} [options] Override http request option.
7885
+ * @throws {RequiredError}
7886
+ */
7887
+ emailServicesSmtpCredentialsCreate: (servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7888
+ /**
7889
+ * Require complete user profile for provisioning (create) API actions.
7890
+ * @param {number} servicePk
7891
+ * @param {number} [page] A page number within the paginated result set.
7892
+ * @param {*} [options] Override http request option.
7893
+ * @throws {RequiredError}
7894
+ */
7895
+ emailServicesSmtpCredentialsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7896
+ /**
7897
+ * Require complete user profile for provisioning (create) API actions.
7898
+ * @param {number} servicePk
7899
+ * @param {*} [options] Override http request option.
7900
+ * @throws {RequiredError}
7901
+ */
7902
+ emailServicesStatsRetrieve: (servicePk: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7903
+ /**
7904
+ * Require complete user profile for provisioning (create) API actions.
7905
+ * @param {number} servicePk
7906
+ * @param {SuppressionEntry} [suppressionEntry]
7907
+ * @param {*} [options] Override http request option.
7908
+ * @throws {RequiredError}
7909
+ */
7910
+ emailServicesSuppressionsCreate: (servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7911
+ /**
7912
+ * Require complete user profile for provisioning (create) API actions.
7913
+ * @param {number} servicePk
7914
+ * @param {number} [page] A page number within the paginated result set.
7915
+ * @param {*} [options] Override http request option.
7916
+ * @throws {RequiredError}
7917
+ */
7918
+ emailServicesSuppressionsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7919
+ /**
7920
+ * Require complete user profile for provisioning (create) API actions.
7921
+ * @param {SmtpCredential} [smtpCredential]
7922
+ * @param {*} [options] Override http request option.
7923
+ * @throws {RequiredError}
7924
+ */
7925
+ emailSmtpCredentialsCreate: (smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7926
+ /**
7927
+ * Require complete user profile for provisioning (create) API actions.
7928
+ * @param {number} id A unique integer value identifying this smtp credential.
7929
+ * @param {*} [options] Override http request option.
7930
+ * @throws {RequiredError}
7931
+ */
7932
+ emailSmtpCredentialsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7933
+ /**
7934
+ * Require complete user profile for provisioning (create) API actions.
7935
+ * @param {number} [page] A page number within the paginated result set.
7936
+ * @param {*} [options] Override http request option.
7937
+ * @throws {RequiredError}
7938
+ */
7939
+ emailSmtpCredentialsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7940
+ /**
7941
+ * Require complete user profile for provisioning (create) API actions.
7942
+ * @param {number} id A unique integer value identifying this smtp credential.
7943
+ * @param {*} [options] Override http request option.
7944
+ * @throws {RequiredError}
7945
+ */
7946
+ emailSmtpCredentialsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7947
+ /**
7948
+ * Require complete user profile for provisioning (create) API actions.
7949
+ * @param {SuppressionEntry} [suppressionEntry]
7950
+ * @param {*} [options] Override http request option.
7951
+ * @throws {RequiredError}
7952
+ */
7953
+ emailSuppressionsCreate: (suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7954
+ /**
7955
+ * Require complete user profile for provisioning (create) API actions.
7956
+ * @param {number} id A unique integer value identifying this suppression entry.
7957
+ * @param {*} [options] Override http request option.
7958
+ * @throws {RequiredError}
7959
+ */
7960
+ emailSuppressionsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7961
+ /**
7962
+ * Require complete user profile for provisioning (create) API actions.
7963
+ * @param {number} [page] A page number within the paginated result set.
7964
+ * @param {*} [options] Override http request option.
7965
+ * @throws {RequiredError}
7966
+ */
7967
+ emailSuppressionsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7968
+ /**
7969
+ * Require complete user profile for provisioning (create) API actions.
7970
+ * @param {number} id A unique integer value identifying this suppression entry.
7971
+ * @param {*} [options] Override http request option.
7972
+ * @throws {RequiredError}
7973
+ */
7974
+ emailSuppressionsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7975
+ };
7976
+ /**
7977
+ * EmailApi - functional programming interface
7978
+ */
7979
+ export declare const EmailApiFp: (configuration?: Configuration) => {
7980
+ /**
7981
+ * Require complete user profile for provisioning (create) API actions.
7982
+ * @param {ApiCredential} [apiCredential]
7983
+ * @param {*} [options] Override http request option.
7984
+ * @throws {RequiredError}
7985
+ */
7986
+ emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
7987
+ /**
7988
+ * Require complete user profile for provisioning (create) API actions.
7989
+ * @param {number} id A unique integer value identifying this api credential.
7990
+ * @param {*} [options] Override http request option.
7991
+ * @throws {RequiredError}
7992
+ */
7993
+ emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7994
+ /**
7995
+ * Require complete user profile for provisioning (create) API actions.
7996
+ * @param {number} [page] A page number within the paginated result set.
7997
+ * @param {*} [options] Override http request option.
7998
+ * @throws {RequiredError}
7999
+ */
8000
+ emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedApiCredentialList>>;
8001
+ /**
8002
+ * Require complete user profile for provisioning (create) API actions.
8003
+ * @param {number} id A unique integer value identifying this api credential.
8004
+ * @param {*} [options] Override http request option.
8005
+ * @throws {RequiredError}
8006
+ */
8007
+ emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
8008
+ /**
8009
+ * Require complete user profile for provisioning (create) API actions.
8010
+ * @param {DomainAdd} domainAdd
8011
+ * @param {*} [options] Override http request option.
8012
+ * @throws {RequiredError}
8013
+ */
8014
+ emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8015
+ /**
8016
+ * Require complete user profile for provisioning (create) API actions.
8017
+ * @param {number} domainPk
8018
+ * @param {InboundRoute} inboundRoute
8019
+ * @param {*} [options] Override http request option.
8020
+ * @throws {RequiredError}
8021
+ */
8022
+ emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
8023
+ /**
8024
+ * Require complete user profile for provisioning (create) API actions.
8025
+ * @param {number} domainPk
8026
+ * @param {number} [page] A page number within the paginated result set.
8027
+ * @param {*} [options] Override http request option.
8028
+ * @throws {RequiredError}
8029
+ */
8030
+ emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInboundRouteList>>;
8031
+ /**
8032
+ * Require complete user profile for provisioning (create) API actions.
8033
+ * @param {number} [page] A page number within the paginated result set.
8034
+ * @param {*} [options] Override http request option.
8035
+ * @throws {RequiredError}
8036
+ */
8037
+ emailDomainsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSendingDomainList>>;
8038
+ /**
8039
+ * Require complete user profile for provisioning (create) API actions.
8040
+ * @param {number} id A unique integer value identifying this sending domain.
8041
+ * @param {*} [options] Override http request option.
8042
+ * @throws {RequiredError}
8043
+ */
8044
+ emailDomainsRetrieve(id: number, 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
+ emailDomainsRotateDkimCreate(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
+ emailDomainsToggleInboundCreate(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 {number} id A unique integer value identifying this sending domain.
8064
+ * @param {SendingDomain} [sendingDomain]
8065
+ * @param {*} [options] Override http request option.
8066
+ * @throws {RequiredError}
8067
+ */
8068
+ emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8069
+ /**
8070
+ * Require complete user profile for provisioning (create) API actions.
8071
+ * @param {InboundRoute} inboundRoute
8072
+ * @param {*} [options] Override http request option.
8073
+ * @throws {RequiredError}
8074
+ */
8075
+ emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
8076
+ /**
8077
+ * Require complete user profile for provisioning (create) API actions.
8078
+ * @param {number} id A unique integer value identifying this inbound route.
8079
+ * @param {*} [options] Override http request option.
8080
+ * @throws {RequiredError}
8081
+ */
8082
+ emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8083
+ /**
8084
+ * Require complete user profile for provisioning (create) API actions.
8085
+ * @param {number} [page] A page number within the paginated result set.
8086
+ * @param {*} [options] Override http request option.
8087
+ * @throws {RequiredError}
8088
+ */
8089
+ emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInboundRouteList>>;
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 {PatchedInboundRoute} [patchedInboundRoute]
8094
+ * @param {*} [options] Override http request option.
8095
+ * @throws {RequiredError}
8096
+ */
8097
+ emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
8098
+ /**
8099
+ * Require complete user profile for provisioning (create) API actions.
8100
+ * @param {number} id A unique integer value identifying this inbound route.
8101
+ * @param {*} [options] Override http request option.
8102
+ * @throws {RequiredError}
8103
+ */
8104
+ emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
8105
+ /**
8106
+ * Require complete user profile for provisioning (create) API actions.
8107
+ * @param {string} messageId
8108
+ * @param {*} [options] Override http request option.
8109
+ * @throws {RequiredError}
8110
+ */
8111
+ emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8112
+ /**
8113
+ * Require complete user profile for provisioning (create) API actions.
8114
+ * @param {SandboxAddress} sandboxAddress
8115
+ * @param {*} [options] Override http request option.
8116
+ * @throws {RequiredError}
8117
+ */
8118
+ emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
8119
+ /**
8120
+ * Require complete user profile for provisioning (create) API actions.
8121
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8122
+ * @param {*} [options] Override http request option.
8123
+ * @throws {RequiredError}
8124
+ */
8125
+ emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8126
+ /**
8127
+ * Require complete user profile for provisioning (create) API actions.
8128
+ * @param {number} [page] A page number within the paginated result set.
8129
+ * @param {*} [options] Override http request option.
8130
+ * @throws {RequiredError}
8131
+ */
8132
+ emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSandboxAddressList>>;
8133
+ /**
8134
+ * Require complete user profile for provisioning (create) API actions.
8135
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8136
+ * @param {*} [options] Override http request option.
8137
+ * @throws {RequiredError}
8138
+ */
8139
+ emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
8140
+ /**
8141
+ *
8142
+ * @param {*} [options] Override http request option.
8143
+ * @throws {RequiredError}
8144
+ */
8145
+ emailSendCreate(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8146
+ /**
8147
+ * Require complete user profile for provisioning (create) API actions.
8148
+ * @param {number} servicePk
8149
+ * @param {ApiCredential} [apiCredential]
8150
+ * @param {*} [options] Override http request option.
8151
+ * @throws {RequiredError}
8152
+ */
8153
+ emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
8154
+ /**
8155
+ * Require complete user profile for provisioning (create) API actions.
8156
+ * @param {number} servicePk
8157
+ * @param {number} [page] A page number within the paginated result set.
8158
+ * @param {*} [options] Override http request option.
8159
+ * @throws {RequiredError}
8160
+ */
8161
+ emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedApiCredentialList>>;
8162
+ /**
8163
+ * Require complete user profile for provisioning (create) API actions.
8164
+ * @param {number} id A unique integer value identifying this email service.
8165
+ * @param {*} [options] Override http request option.
8166
+ * @throws {RequiredError}
8167
+ */
8168
+ emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8169
+ /**
8170
+ * Require complete user profile for provisioning (create) API actions.
8171
+ * @param {number} id A unique integer value identifying this email service.
8172
+ * @param {PatchedSubscribe} [patchedSubscribe]
8173
+ * @param {*} [options] Override http request option.
8174
+ * @throws {RequiredError}
8175
+ */
8176
+ emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8177
+ /**
8178
+ * Require complete user profile for provisioning (create) API actions.
8179
+ * @param {Subscribe} subscribe
8180
+ * @param {*} [options] Override http request option.
8181
+ * @throws {RequiredError}
8182
+ */
8183
+ emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8184
+ /**
8185
+ * Require complete user profile for provisioning (create) API actions.
8186
+ * @param {number} id A unique integer value identifying this email service.
8187
+ * @param {*} [options] Override http request option.
8188
+ * @throws {RequiredError}
8189
+ */
8190
+ emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8191
+ /**
8192
+ * Require complete user profile for provisioning (create) API actions.
8193
+ * @param {number} id A unique integer value identifying this email service.
8194
+ * @param {*} [options] Override http request option.
8195
+ * @throws {RequiredError}
8196
+ */
8197
+ emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8198
+ /**
8199
+ * Require complete user profile for provisioning (create) API actions.
8200
+ * @param {number} id A unique integer value identifying this email service.
8201
+ * @param {*} [options] Override http request option.
8202
+ * @throws {RequiredError}
8203
+ */
8204
+ emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8205
+ /**
8206
+ * Require complete user profile for provisioning (create) API actions.
8207
+ * @param {number} servicePk
8208
+ * @param {DomainAdd} domainAdd
8209
+ * @param {*} [options] Override http request option.
8210
+ * @throws {RequiredError}
8211
+ */
8212
+ emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8213
+ /**
8214
+ * Require complete user profile for provisioning (create) API actions.
8215
+ * @param {number} servicePk
8216
+ * @param {number} [page] A page number within the paginated result set.
8217
+ * @param {*} [options] Override http request option.
8218
+ * @throws {RequiredError}
8219
+ */
8220
+ emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSendingDomainList>>;
8221
+ /**
8222
+ * Require complete user profile for provisioning (create) API actions.
8223
+ * @param {number} [page] A page number within the paginated result set.
8224
+ * @param {*} [options] Override http request option.
8225
+ * @throws {RequiredError}
8226
+ */
8227
+ emailServicesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedEmailServiceList>>;
8228
+ /**
8229
+ * Require complete user profile for provisioning (create) API actions.
8230
+ * @param {number} servicePk
8231
+ * @param {*} [options] Override http request option.
8232
+ * @throws {RequiredError}
8233
+ */
8234
+ emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
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 {PatchedEmailService} [patchedEmailService]
8239
+ * @param {*} [options] Override http request option.
8240
+ * @throws {RequiredError}
8241
+ */
8242
+ emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8243
+ /**
8244
+ * Require complete user profile for provisioning (create) API actions.
8245
+ * @param {number} id A unique integer value identifying this email service.
8246
+ * @param {*} [options] Override http request option.
8247
+ * @throws {RequiredError}
8248
+ */
8249
+ emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8250
+ /**
8251
+ * Require complete user profile for provisioning (create) API actions.
8252
+ * @param {number} id A unique integer value identifying this email service.
8253
+ * @param {*} [options] Override http request option.
8254
+ * @throws {RequiredError}
8255
+ */
8256
+ emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8257
+ /**
8258
+ * Require complete user profile for provisioning (create) API actions.
8259
+ * @param {number} servicePk
8260
+ * @param {SandboxAddress} sandboxAddress
8261
+ * @param {*} [options] Override http request option.
8262
+ * @throws {RequiredError}
8263
+ */
8264
+ emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
8265
+ /**
8266
+ * Require complete user profile for provisioning (create) API actions.
8267
+ * @param {number} servicePk
8268
+ * @param {number} [page] A page number within the paginated result set.
8269
+ * @param {*} [options] Override http request option.
8270
+ * @throws {RequiredError}
8271
+ */
8272
+ emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSandboxAddressList>>;
8273
+ /**
8274
+ * Require complete user profile for provisioning (create) API actions.
8275
+ * @param {number} servicePk
8276
+ * @param {SmtpCredential} [smtpCredential]
8277
+ * @param {*} [options] Override http request option.
8278
+ * @throws {RequiredError}
8279
+ */
8280
+ emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
8281
+ /**
8282
+ * Require complete user profile for provisioning (create) API actions.
8283
+ * @param {number} servicePk
8284
+ * @param {number} [page] A page number within the paginated result set.
8285
+ * @param {*} [options] Override http request option.
8286
+ * @throws {RequiredError}
8287
+ */
8288
+ emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSmtpCredentialList>>;
8289
+ /**
8290
+ * Require complete user profile for provisioning (create) API actions.
8291
+ * @param {number} servicePk
8292
+ * @param {*} [options] Override http request option.
8293
+ * @throws {RequiredError}
8294
+ */
8295
+ emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8296
+ /**
8297
+ * Require complete user profile for provisioning (create) API actions.
8298
+ * @param {number} servicePk
8299
+ * @param {SuppressionEntry} [suppressionEntry]
8300
+ * @param {*} [options] Override http request option.
8301
+ * @throws {RequiredError}
8302
+ */
8303
+ emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
8304
+ /**
8305
+ * Require complete user profile for provisioning (create) API actions.
8306
+ * @param {number} servicePk
8307
+ * @param {number} [page] A page number within the paginated result set.
8308
+ * @param {*} [options] Override http request option.
8309
+ * @throws {RequiredError}
8310
+ */
8311
+ emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSuppressionEntryList>>;
8312
+ /**
8313
+ * Require complete user profile for provisioning (create) API actions.
8314
+ * @param {SmtpCredential} [smtpCredential]
8315
+ * @param {*} [options] Override http request option.
8316
+ * @throws {RequiredError}
8317
+ */
8318
+ emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
8319
+ /**
8320
+ * Require complete user profile for provisioning (create) API actions.
8321
+ * @param {number} id A unique integer value identifying this smtp credential.
8322
+ * @param {*} [options] Override http request option.
8323
+ * @throws {RequiredError}
8324
+ */
8325
+ emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8326
+ /**
8327
+ * Require complete user profile for provisioning (create) API actions.
8328
+ * @param {number} [page] A page number within the paginated result set.
8329
+ * @param {*} [options] Override http request option.
8330
+ * @throws {RequiredError}
8331
+ */
8332
+ emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSmtpCredentialList>>;
8333
+ /**
8334
+ * Require complete user profile for provisioning (create) API actions.
8335
+ * @param {number} id A unique integer value identifying this smtp credential.
8336
+ * @param {*} [options] Override http request option.
8337
+ * @throws {RequiredError}
8338
+ */
8339
+ emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
8340
+ /**
8341
+ * Require complete user profile for provisioning (create) API actions.
8342
+ * @param {SuppressionEntry} [suppressionEntry]
8343
+ * @param {*} [options] Override http request option.
8344
+ * @throws {RequiredError}
8345
+ */
8346
+ emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
8347
+ /**
8348
+ * Require complete user profile for provisioning (create) API actions.
8349
+ * @param {number} id A unique integer value identifying this suppression entry.
8350
+ * @param {*} [options] Override http request option.
8351
+ * @throws {RequiredError}
8352
+ */
8353
+ emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8354
+ /**
8355
+ * Require complete user profile for provisioning (create) API actions.
8356
+ * @param {number} [page] A page number within the paginated result set.
8357
+ * @param {*} [options] Override http request option.
8358
+ * @throws {RequiredError}
8359
+ */
8360
+ emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSuppressionEntryList>>;
8361
+ /**
8362
+ * Require complete user profile for provisioning (create) API actions.
8363
+ * @param {number} id A unique integer value identifying this suppression entry.
8364
+ * @param {*} [options] Override http request option.
8365
+ * @throws {RequiredError}
8366
+ */
8367
+ emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
8368
+ };
8369
+ /**
8370
+ * EmailApi - factory interface
8371
+ */
8372
+ export declare const EmailApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8373
+ /**
8374
+ * Require complete user profile for provisioning (create) API actions.
8375
+ * @param {ApiCredential} [apiCredential]
8376
+ * @param {*} [options] Override http request option.
8377
+ * @throws {RequiredError}
8378
+ */
8379
+ emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
8380
+ /**
8381
+ * Require complete user profile for provisioning (create) API actions.
8382
+ * @param {number} id A unique integer value identifying this api credential.
8383
+ * @param {*} [options] Override http request option.
8384
+ * @throws {RequiredError}
8385
+ */
8386
+ emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8387
+ /**
8388
+ * Require complete user profile for provisioning (create) API actions.
8389
+ * @param {number} [page] A page number within the paginated result set.
8390
+ * @param {*} [options] Override http request option.
8391
+ * @throws {RequiredError}
8392
+ */
8393
+ emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedApiCredentialList>;
8394
+ /**
8395
+ * Require complete user profile for provisioning (create) API actions.
8396
+ * @param {number} id A unique integer value identifying this api credential.
8397
+ * @param {*} [options] Override http request option.
8398
+ * @throws {RequiredError}
8399
+ */
8400
+ emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
8401
+ /**
8402
+ * Require complete user profile for provisioning (create) API actions.
8403
+ * @param {DomainAdd} domainAdd
8404
+ * @param {*} [options] Override http request option.
8405
+ * @throws {RequiredError}
8406
+ */
8407
+ emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8408
+ /**
8409
+ * Require complete user profile for provisioning (create) API actions.
8410
+ * @param {number} domainPk
8411
+ * @param {InboundRoute} inboundRoute
8412
+ * @param {*} [options] Override http request option.
8413
+ * @throws {RequiredError}
8414
+ */
8415
+ emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
8416
+ /**
8417
+ * Require complete user profile for provisioning (create) API actions.
8418
+ * @param {number} domainPk
8419
+ * @param {number} [page] A page number within the paginated result set.
8420
+ * @param {*} [options] Override http request option.
8421
+ * @throws {RequiredError}
8422
+ */
8423
+ emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedInboundRouteList>;
8424
+ /**
8425
+ * Require complete user profile for provisioning (create) API actions.
8426
+ * @param {number} [page] A page number within the paginated result set.
8427
+ * @param {*} [options] Override http request option.
8428
+ * @throws {RequiredError}
8429
+ */
8430
+ emailDomainsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSendingDomainList>;
8431
+ /**
8432
+ * Require complete user profile for provisioning (create) API actions.
8433
+ * @param {number} id A unique integer value identifying this sending domain.
8434
+ * @param {*} [options] Override http request option.
8435
+ * @throws {RequiredError}
8436
+ */
8437
+ emailDomainsRetrieve(id: number, 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
+ emailDomainsRotateDkimCreate(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
+ emailDomainsToggleInboundCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8454
+ /**
8455
+ * Require complete user profile for provisioning (create) API actions.
8456
+ * @param {number} id A unique integer value identifying this sending domain.
8457
+ * @param {SendingDomain} [sendingDomain]
8458
+ * @param {*} [options] Override http request option.
8459
+ * @throws {RequiredError}
8460
+ */
8461
+ emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8462
+ /**
8463
+ * Require complete user profile for provisioning (create) API actions.
8464
+ * @param {InboundRoute} inboundRoute
8465
+ * @param {*} [options] Override http request option.
8466
+ * @throws {RequiredError}
8467
+ */
8468
+ emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
8469
+ /**
8470
+ * Require complete user profile for provisioning (create) API actions.
8471
+ * @param {number} id A unique integer value identifying this inbound route.
8472
+ * @param {*} [options] Override http request option.
8473
+ * @throws {RequiredError}
8474
+ */
8475
+ emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8476
+ /**
8477
+ * Require complete user profile for provisioning (create) API actions.
8478
+ * @param {number} [page] A page number within the paginated result set.
8479
+ * @param {*} [options] Override http request option.
8480
+ * @throws {RequiredError}
8481
+ */
8482
+ emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedInboundRouteList>;
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 {PatchedInboundRoute} [patchedInboundRoute]
8487
+ * @param {*} [options] Override http request option.
8488
+ * @throws {RequiredError}
8489
+ */
8490
+ emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
8491
+ /**
8492
+ * Require complete user profile for provisioning (create) API actions.
8493
+ * @param {number} id A unique integer value identifying this inbound route.
8494
+ * @param {*} [options] Override http request option.
8495
+ * @throws {RequiredError}
8496
+ */
8497
+ emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
8498
+ /**
8499
+ * Require complete user profile for provisioning (create) API actions.
8500
+ * @param {string} messageId
8501
+ * @param {*} [options] Override http request option.
8502
+ * @throws {RequiredError}
8503
+ */
8504
+ emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8505
+ /**
8506
+ * Require complete user profile for provisioning (create) API actions.
8507
+ * @param {SandboxAddress} sandboxAddress
8508
+ * @param {*} [options] Override http request option.
8509
+ * @throws {RequiredError}
8510
+ */
8511
+ emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
8512
+ /**
8513
+ * Require complete user profile for provisioning (create) API actions.
8514
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8515
+ * @param {*} [options] Override http request option.
8516
+ * @throws {RequiredError}
8517
+ */
8518
+ emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8519
+ /**
8520
+ * Require complete user profile for provisioning (create) API actions.
8521
+ * @param {number} [page] A page number within the paginated result set.
8522
+ * @param {*} [options] Override http request option.
8523
+ * @throws {RequiredError}
8524
+ */
8525
+ emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSandboxAddressList>;
8526
+ /**
8527
+ * Require complete user profile for provisioning (create) API actions.
8528
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8529
+ * @param {*} [options] Override http request option.
8530
+ * @throws {RequiredError}
8531
+ */
8532
+ emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
8533
+ /**
8534
+ *
8535
+ * @param {*} [options] Override http request option.
8536
+ * @throws {RequiredError}
8537
+ */
8538
+ emailSendCreate(options?: RawAxiosRequestConfig): AxiosPromise<void>;
8539
+ /**
8540
+ * Require complete user profile for provisioning (create) API actions.
8541
+ * @param {number} servicePk
8542
+ * @param {ApiCredential} [apiCredential]
8543
+ * @param {*} [options] Override http request option.
8544
+ * @throws {RequiredError}
8545
+ */
8546
+ emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
8547
+ /**
8548
+ * Require complete user profile for provisioning (create) API actions.
8549
+ * @param {number} servicePk
8550
+ * @param {number} [page] A page number within the paginated result set.
8551
+ * @param {*} [options] Override http request option.
8552
+ * @throws {RequiredError}
8553
+ */
8554
+ emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedApiCredentialList>;
8555
+ /**
8556
+ * Require complete user profile for provisioning (create) API actions.
8557
+ * @param {number} id A unique integer value identifying this email service.
8558
+ * @param {*} [options] Override http request option.
8559
+ * @throws {RequiredError}
8560
+ */
8561
+ emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8562
+ /**
8563
+ * Require complete user profile for provisioning (create) API actions.
8564
+ * @param {number} id A unique integer value identifying this email service.
8565
+ * @param {PatchedSubscribe} [patchedSubscribe]
8566
+ * @param {*} [options] Override http request option.
8567
+ * @throws {RequiredError}
8568
+ */
8569
+ emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8570
+ /**
8571
+ * Require complete user profile for provisioning (create) API actions.
8572
+ * @param {Subscribe} subscribe
8573
+ * @param {*} [options] Override http request option.
8574
+ * @throws {RequiredError}
8575
+ */
8576
+ emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8577
+ /**
8578
+ * Require complete user profile for provisioning (create) API actions.
8579
+ * @param {number} id A unique integer value identifying this email service.
8580
+ * @param {*} [options] Override http request option.
8581
+ * @throws {RequiredError}
8582
+ */
8583
+ emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8584
+ /**
8585
+ * Require complete user profile for provisioning (create) API actions.
8586
+ * @param {number} id A unique integer value identifying this email service.
8587
+ * @param {*} [options] Override http request option.
8588
+ * @throws {RequiredError}
8589
+ */
8590
+ emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8591
+ /**
8592
+ * Require complete user profile for provisioning (create) API actions.
8593
+ * @param {number} id A unique integer value identifying this email service.
8594
+ * @param {*} [options] Override http request option.
8595
+ * @throws {RequiredError}
8596
+ */
8597
+ emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8598
+ /**
8599
+ * Require complete user profile for provisioning (create) API actions.
8600
+ * @param {number} servicePk
8601
+ * @param {DomainAdd} domainAdd
8602
+ * @param {*} [options] Override http request option.
8603
+ * @throws {RequiredError}
8604
+ */
8605
+ emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8606
+ /**
8607
+ * Require complete user profile for provisioning (create) API actions.
8608
+ * @param {number} servicePk
8609
+ * @param {number} [page] A page number within the paginated result set.
8610
+ * @param {*} [options] Override http request option.
8611
+ * @throws {RequiredError}
8612
+ */
8613
+ emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSendingDomainList>;
8614
+ /**
8615
+ * Require complete user profile for provisioning (create) API actions.
8616
+ * @param {number} [page] A page number within the paginated result set.
8617
+ * @param {*} [options] Override http request option.
8618
+ * @throws {RequiredError}
8619
+ */
8620
+ emailServicesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedEmailServiceList>;
8621
+ /**
8622
+ * Require complete user profile for provisioning (create) API actions.
8623
+ * @param {number} servicePk
8624
+ * @param {*} [options] Override http request option.
8625
+ * @throws {RequiredError}
8626
+ */
8627
+ emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
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 {PatchedEmailService} [patchedEmailService]
8632
+ * @param {*} [options] Override http request option.
8633
+ * @throws {RequiredError}
8634
+ */
8635
+ emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8636
+ /**
8637
+ * Require complete user profile for provisioning (create) API actions.
8638
+ * @param {number} id A unique integer value identifying this email service.
8639
+ * @param {*} [options] Override http request option.
8640
+ * @throws {RequiredError}
8641
+ */
8642
+ emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8643
+ /**
8644
+ * Require complete user profile for provisioning (create) API actions.
8645
+ * @param {number} id A unique integer value identifying this email service.
8646
+ * @param {*} [options] Override http request option.
8647
+ * @throws {RequiredError}
8648
+ */
8649
+ emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8650
+ /**
8651
+ * Require complete user profile for provisioning (create) API actions.
8652
+ * @param {number} servicePk
8653
+ * @param {SandboxAddress} sandboxAddress
8654
+ * @param {*} [options] Override http request option.
8655
+ * @throws {RequiredError}
8656
+ */
8657
+ emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
8658
+ /**
8659
+ * Require complete user profile for provisioning (create) API actions.
8660
+ * @param {number} servicePk
8661
+ * @param {number} [page] A page number within the paginated result set.
8662
+ * @param {*} [options] Override http request option.
8663
+ * @throws {RequiredError}
8664
+ */
8665
+ emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSandboxAddressList>;
8666
+ /**
8667
+ * Require complete user profile for provisioning (create) API actions.
8668
+ * @param {number} servicePk
8669
+ * @param {SmtpCredential} [smtpCredential]
8670
+ * @param {*} [options] Override http request option.
8671
+ * @throws {RequiredError}
8672
+ */
8673
+ emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
8674
+ /**
8675
+ * Require complete user profile for provisioning (create) API actions.
8676
+ * @param {number} servicePk
8677
+ * @param {number} [page] A page number within the paginated result set.
8678
+ * @param {*} [options] Override http request option.
8679
+ * @throws {RequiredError}
8680
+ */
8681
+ emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSmtpCredentialList>;
8682
+ /**
8683
+ * Require complete user profile for provisioning (create) API actions.
8684
+ * @param {number} servicePk
8685
+ * @param {*} [options] Override http request option.
8686
+ * @throws {RequiredError}
8687
+ */
8688
+ emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8689
+ /**
8690
+ * Require complete user profile for provisioning (create) API actions.
8691
+ * @param {number} servicePk
8692
+ * @param {SuppressionEntry} [suppressionEntry]
8693
+ * @param {*} [options] Override http request option.
8694
+ * @throws {RequiredError}
8695
+ */
8696
+ emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
8697
+ /**
8698
+ * Require complete user profile for provisioning (create) API actions.
8699
+ * @param {number} servicePk
8700
+ * @param {number} [page] A page number within the paginated result set.
8701
+ * @param {*} [options] Override http request option.
8702
+ * @throws {RequiredError}
8703
+ */
8704
+ emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSuppressionEntryList>;
8705
+ /**
8706
+ * Require complete user profile for provisioning (create) API actions.
8707
+ * @param {SmtpCredential} [smtpCredential]
8708
+ * @param {*} [options] Override http request option.
8709
+ * @throws {RequiredError}
8710
+ */
8711
+ emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
8712
+ /**
8713
+ * Require complete user profile for provisioning (create) API actions.
8714
+ * @param {number} id A unique integer value identifying this smtp credential.
8715
+ * @param {*} [options] Override http request option.
8716
+ * @throws {RequiredError}
8717
+ */
8718
+ emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8719
+ /**
8720
+ * Require complete user profile for provisioning (create) API actions.
8721
+ * @param {number} [page] A page number within the paginated result set.
8722
+ * @param {*} [options] Override http request option.
8723
+ * @throws {RequiredError}
8724
+ */
8725
+ emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSmtpCredentialList>;
8726
+ /**
8727
+ * Require complete user profile for provisioning (create) API actions.
8728
+ * @param {number} id A unique integer value identifying this smtp credential.
8729
+ * @param {*} [options] Override http request option.
8730
+ * @throws {RequiredError}
8731
+ */
8732
+ emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
8733
+ /**
8734
+ * Require complete user profile for provisioning (create) API actions.
8735
+ * @param {SuppressionEntry} [suppressionEntry]
8736
+ * @param {*} [options] Override http request option.
8737
+ * @throws {RequiredError}
8738
+ */
8739
+ emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
8740
+ /**
8741
+ * Require complete user profile for provisioning (create) API actions.
8742
+ * @param {number} id A unique integer value identifying this suppression entry.
8743
+ * @param {*} [options] Override http request option.
8744
+ * @throws {RequiredError}
8745
+ */
8746
+ emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8747
+ /**
8748
+ * Require complete user profile for provisioning (create) API actions.
8749
+ * @param {number} [page] A page number within the paginated result set.
8750
+ * @param {*} [options] Override http request option.
8751
+ * @throws {RequiredError}
8752
+ */
8753
+ emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSuppressionEntryList>;
8754
+ /**
8755
+ * Require complete user profile for provisioning (create) API actions.
8756
+ * @param {number} id A unique integer value identifying this suppression entry.
8757
+ * @param {*} [options] Override http request option.
8758
+ * @throws {RequiredError}
8759
+ */
8760
+ emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
8761
+ };
8762
+ /**
8763
+ * EmailApi - object-oriented interface
8764
+ */
8765
+ export declare class EmailApi extends BaseAPI {
8766
+ /**
8767
+ * Require complete user profile for provisioning (create) API actions.
8768
+ * @param {ApiCredential} [apiCredential]
8769
+ * @param {*} [options] Override http request option.
8770
+ * @throws {RequiredError}
8771
+ */
8772
+ emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
8773
+ /**
8774
+ * Require complete user profile for provisioning (create) API actions.
8775
+ * @param {number} id A unique integer value identifying this api credential.
8776
+ * @param {*} [options] Override http request option.
8777
+ * @throws {RequiredError}
8778
+ */
8779
+ emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8780
+ /**
8781
+ * Require complete user profile for provisioning (create) API actions.
8782
+ * @param {number} [page] A page number within the paginated result set.
8783
+ * @param {*} [options] Override http request option.
8784
+ * @throws {RequiredError}
8785
+ */
8786
+ emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedApiCredentialList, any, {}>>;
8787
+ /**
8788
+ * Require complete user profile for provisioning (create) API actions.
8789
+ * @param {number} id A unique integer value identifying this api credential.
8790
+ * @param {*} [options] Override http request option.
8791
+ * @throws {RequiredError}
8792
+ */
8793
+ emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
8794
+ /**
8795
+ * Require complete user profile for provisioning (create) API actions.
8796
+ * @param {DomainAdd} domainAdd
8797
+ * @param {*} [options] Override http request option.
8798
+ * @throws {RequiredError}
8799
+ */
8800
+ emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8801
+ /**
8802
+ * Require complete user profile for provisioning (create) API actions.
8803
+ * @param {number} domainPk
8804
+ * @param {InboundRoute} inboundRoute
8805
+ * @param {*} [options] Override http request option.
8806
+ * @throws {RequiredError}
8807
+ */
8808
+ emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
8809
+ /**
8810
+ * Require complete user profile for provisioning (create) API actions.
8811
+ * @param {number} domainPk
8812
+ * @param {number} [page] A page number within the paginated result set.
8813
+ * @param {*} [options] Override http request option.
8814
+ * @throws {RequiredError}
8815
+ */
8816
+ emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInboundRouteList, any, {}>>;
8817
+ /**
8818
+ * Require complete user profile for provisioning (create) API actions.
8819
+ * @param {number} [page] A page number within the paginated result set.
8820
+ * @param {*} [options] Override http request option.
8821
+ * @throws {RequiredError}
8822
+ */
8823
+ emailDomainsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSendingDomainList, any, {}>>;
8824
+ /**
8825
+ * Require complete user profile for provisioning (create) API actions.
8826
+ * @param {number} id A unique integer value identifying this sending domain.
8827
+ * @param {*} [options] Override http request option.
8828
+ * @throws {RequiredError}
8829
+ */
8830
+ emailDomainsRetrieve(id: number, 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
+ emailDomainsRotateDkimCreate(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
+ emailDomainsToggleInboundCreate(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 {number} id A unique integer value identifying this sending domain.
8850
+ * @param {SendingDomain} [sendingDomain]
8851
+ * @param {*} [options] Override http request option.
8852
+ * @throws {RequiredError}
8853
+ */
8854
+ emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8855
+ /**
8856
+ * Require complete user profile for provisioning (create) API actions.
8857
+ * @param {InboundRoute} inboundRoute
8858
+ * @param {*} [options] Override http request option.
8859
+ * @throws {RequiredError}
8860
+ */
8861
+ emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
8862
+ /**
8863
+ * Require complete user profile for provisioning (create) API actions.
8864
+ * @param {number} id A unique integer value identifying this inbound route.
8865
+ * @param {*} [options] Override http request option.
8866
+ * @throws {RequiredError}
8867
+ */
8868
+ emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8869
+ /**
8870
+ * Require complete user profile for provisioning (create) API actions.
8871
+ * @param {number} [page] A page number within the paginated result set.
8872
+ * @param {*} [options] Override http request option.
8873
+ * @throws {RequiredError}
8874
+ */
8875
+ emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInboundRouteList, 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 {PatchedInboundRoute} [patchedInboundRoute]
8880
+ * @param {*} [options] Override http request option.
8881
+ * @throws {RequiredError}
8882
+ */
8883
+ emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
8884
+ /**
8885
+ * Require complete user profile for provisioning (create) API actions.
8886
+ * @param {number} id A unique integer value identifying this inbound route.
8887
+ * @param {*} [options] Override http request option.
8888
+ * @throws {RequiredError}
8889
+ */
8890
+ emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
8891
+ /**
8892
+ * Require complete user profile for provisioning (create) API actions.
8893
+ * @param {string} messageId
8894
+ * @param {*} [options] Override http request option.
8895
+ * @throws {RequiredError}
8896
+ */
8897
+ emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8898
+ /**
8899
+ * Require complete user profile for provisioning (create) API actions.
8900
+ * @param {SandboxAddress} sandboxAddress
8901
+ * @param {*} [options] Override http request option.
8902
+ * @throws {RequiredError}
8903
+ */
8904
+ emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
8905
+ /**
8906
+ * Require complete user profile for provisioning (create) API actions.
8907
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8908
+ * @param {*} [options] Override http request option.
8909
+ * @throws {RequiredError}
8910
+ */
8911
+ emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8912
+ /**
8913
+ * Require complete user profile for provisioning (create) API actions.
8914
+ * @param {number} [page] A page number within the paginated result set.
8915
+ * @param {*} [options] Override http request option.
8916
+ * @throws {RequiredError}
8917
+ */
8918
+ emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSandboxAddressList, any, {}>>;
8919
+ /**
8920
+ * Require complete user profile for provisioning (create) API actions.
8921
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8922
+ * @param {*} [options] Override http request option.
8923
+ * @throws {RequiredError}
8924
+ */
8925
+ emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
8926
+ /**
8927
+ *
8928
+ * @param {*} [options] Override http request option.
8929
+ * @throws {RequiredError}
8930
+ */
8931
+ emailSendCreate(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8932
+ /**
8933
+ * Require complete user profile for provisioning (create) API actions.
8934
+ * @param {number} servicePk
8935
+ * @param {ApiCredential} [apiCredential]
8936
+ * @param {*} [options] Override http request option.
8937
+ * @throws {RequiredError}
8938
+ */
8939
+ emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
8940
+ /**
8941
+ * Require complete user profile for provisioning (create) API actions.
8942
+ * @param {number} servicePk
8943
+ * @param {number} [page] A page number within the paginated result set.
8944
+ * @param {*} [options] Override http request option.
8945
+ * @throws {RequiredError}
8946
+ */
8947
+ emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedApiCredentialList, any, {}>>;
8948
+ /**
8949
+ * Require complete user profile for provisioning (create) API actions.
8950
+ * @param {number} id A unique integer value identifying this email service.
8951
+ * @param {*} [options] Override http request option.
8952
+ * @throws {RequiredError}
8953
+ */
8954
+ emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
8955
+ /**
8956
+ * Require complete user profile for provisioning (create) API actions.
8957
+ * @param {number} id A unique integer value identifying this email service.
8958
+ * @param {PatchedSubscribe} [patchedSubscribe]
8959
+ * @param {*} [options] Override http request option.
8960
+ * @throws {RequiredError}
8961
+ */
8962
+ emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
8963
+ /**
8964
+ * Require complete user profile for provisioning (create) API actions.
8965
+ * @param {Subscribe} subscribe
8966
+ * @param {*} [options] Override http request option.
8967
+ * @throws {RequiredError}
8968
+ */
8969
+ emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
8970
+ /**
8971
+ * Require complete user profile for provisioning (create) API actions.
8972
+ * @param {number} id A unique integer value identifying this email service.
8973
+ * @param {*} [options] Override http request option.
8974
+ * @throws {RequiredError}
8975
+ */
8976
+ emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
8977
+ /**
8978
+ * Require complete user profile for provisioning (create) API actions.
8979
+ * @param {number} id A unique integer value identifying this email service.
8980
+ * @param {*} [options] Override http request option.
8981
+ * @throws {RequiredError}
8982
+ */
8983
+ emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8984
+ /**
8985
+ * Require complete user profile for provisioning (create) API actions.
8986
+ * @param {number} id A unique integer value identifying this email service.
8987
+ * @param {*} [options] Override http request option.
8988
+ * @throws {RequiredError}
8989
+ */
8990
+ emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8991
+ /**
8992
+ * Require complete user profile for provisioning (create) API actions.
8993
+ * @param {number} servicePk
8994
+ * @param {DomainAdd} domainAdd
8995
+ * @param {*} [options] Override http request option.
8996
+ * @throws {RequiredError}
8997
+ */
8998
+ emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8999
+ /**
9000
+ * Require complete user profile for provisioning (create) API actions.
9001
+ * @param {number} servicePk
9002
+ * @param {number} [page] A page number within the paginated result set.
9003
+ * @param {*} [options] Override http request option.
9004
+ * @throws {RequiredError}
9005
+ */
9006
+ emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSendingDomainList, any, {}>>;
9007
+ /**
9008
+ * Require complete user profile for provisioning (create) API actions.
9009
+ * @param {number} [page] A page number within the paginated result set.
9010
+ * @param {*} [options] Override http request option.
9011
+ * @throws {RequiredError}
9012
+ */
9013
+ emailServicesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEmailServiceList, any, {}>>;
9014
+ /**
9015
+ * Require complete user profile for provisioning (create) API actions.
9016
+ * @param {number} servicePk
9017
+ * @param {*} [options] Override http request option.
9018
+ * @throws {RequiredError}
9019
+ */
9020
+ emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, 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 {PatchedEmailService} [patchedEmailService]
9025
+ * @param {*} [options] Override http request option.
9026
+ * @throws {RequiredError}
9027
+ */
9028
+ emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
9029
+ /**
9030
+ * Require complete user profile for provisioning (create) API actions.
9031
+ * @param {number} id A unique integer value identifying this email service.
9032
+ * @param {*} [options] Override http request option.
9033
+ * @throws {RequiredError}
9034
+ */
9035
+ emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
9036
+ /**
9037
+ * Require complete user profile for provisioning (create) API actions.
9038
+ * @param {number} id A unique integer value identifying this email service.
9039
+ * @param {*} [options] Override http request option.
9040
+ * @throws {RequiredError}
9041
+ */
9042
+ emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
9043
+ /**
9044
+ * Require complete user profile for provisioning (create) API actions.
9045
+ * @param {number} servicePk
9046
+ * @param {SandboxAddress} sandboxAddress
9047
+ * @param {*} [options] Override http request option.
9048
+ * @throws {RequiredError}
9049
+ */
9050
+ emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
9051
+ /**
9052
+ * Require complete user profile for provisioning (create) API actions.
9053
+ * @param {number} servicePk
9054
+ * @param {number} [page] A page number within the paginated result set.
9055
+ * @param {*} [options] Override http request option.
9056
+ * @throws {RequiredError}
9057
+ */
9058
+ emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSandboxAddressList, any, {}>>;
9059
+ /**
9060
+ * Require complete user profile for provisioning (create) API actions.
9061
+ * @param {number} servicePk
9062
+ * @param {SmtpCredential} [smtpCredential]
9063
+ * @param {*} [options] Override http request option.
9064
+ * @throws {RequiredError}
9065
+ */
9066
+ emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
9067
+ /**
9068
+ * Require complete user profile for provisioning (create) API actions.
9069
+ * @param {number} servicePk
9070
+ * @param {number} [page] A page number within the paginated result set.
9071
+ * @param {*} [options] Override http request option.
9072
+ * @throws {RequiredError}
9073
+ */
9074
+ emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSmtpCredentialList, any, {}>>;
9075
+ /**
9076
+ * Require complete user profile for provisioning (create) API actions.
9077
+ * @param {number} servicePk
9078
+ * @param {*} [options] Override http request option.
9079
+ * @throws {RequiredError}
9080
+ */
9081
+ emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9082
+ /**
9083
+ * Require complete user profile for provisioning (create) API actions.
9084
+ * @param {number} servicePk
9085
+ * @param {SuppressionEntry} [suppressionEntry]
9086
+ * @param {*} [options] Override http request option.
9087
+ * @throws {RequiredError}
9088
+ */
9089
+ emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
9090
+ /**
9091
+ * Require complete user profile for provisioning (create) API actions.
9092
+ * @param {number} servicePk
9093
+ * @param {number} [page] A page number within the paginated result set.
9094
+ * @param {*} [options] Override http request option.
9095
+ * @throws {RequiredError}
9096
+ */
9097
+ emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSuppressionEntryList, any, {}>>;
9098
+ /**
9099
+ * Require complete user profile for provisioning (create) API actions.
9100
+ * @param {SmtpCredential} [smtpCredential]
9101
+ * @param {*} [options] Override http request option.
9102
+ * @throws {RequiredError}
9103
+ */
9104
+ emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
9105
+ /**
9106
+ * Require complete user profile for provisioning (create) API actions.
9107
+ * @param {number} id A unique integer value identifying this smtp credential.
9108
+ * @param {*} [options] Override http request option.
9109
+ * @throws {RequiredError}
9110
+ */
9111
+ emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9112
+ /**
9113
+ * Require complete user profile for provisioning (create) API actions.
9114
+ * @param {number} [page] A page number within the paginated result set.
9115
+ * @param {*} [options] Override http request option.
9116
+ * @throws {RequiredError}
9117
+ */
9118
+ emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSmtpCredentialList, any, {}>>;
9119
+ /**
9120
+ * Require complete user profile for provisioning (create) API actions.
9121
+ * @param {number} id A unique integer value identifying this smtp credential.
9122
+ * @param {*} [options] Override http request option.
9123
+ * @throws {RequiredError}
9124
+ */
9125
+ emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
9126
+ /**
9127
+ * Require complete user profile for provisioning (create) API actions.
9128
+ * @param {SuppressionEntry} [suppressionEntry]
9129
+ * @param {*} [options] Override http request option.
9130
+ * @throws {RequiredError}
9131
+ */
9132
+ emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
9133
+ /**
9134
+ * Require complete user profile for provisioning (create) API actions.
9135
+ * @param {number} id A unique integer value identifying this suppression entry.
9136
+ * @param {*} [options] Override http request option.
9137
+ * @throws {RequiredError}
9138
+ */
9139
+ emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9140
+ /**
9141
+ * Require complete user profile for provisioning (create) API actions.
9142
+ * @param {number} [page] A page number within the paginated result set.
9143
+ * @param {*} [options] Override http request option.
9144
+ * @throws {RequiredError}
9145
+ */
9146
+ emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSuppressionEntryList, any, {}>>;
9147
+ /**
9148
+ * Require complete user profile for provisioning (create) API actions.
9149
+ * @param {number} id A unique integer value identifying this suppression entry.
9150
+ * @param {*} [options] Override http request option.
9151
+ * @throws {RequiredError}
9152
+ */
9153
+ emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
9154
+ }
6648
9155
  /**
6649
9156
  * FreednsApi - axios parameter creator
6650
9157
  */