@pidginhost/sdk 0.6.0 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) 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 +9078 -3383
  5. package/dist/api.d.ts +2549 -50
  6. package/dist/api.js +8144 -3038
  7. package/dist/esm/api.d.ts +2549 -50
  8. package/dist/esm/api.js +8134 -3032
  9. package/docs/ApiCredential.md +32 -0
  10. package/docs/Bucket.md +40 -0
  11. package/docs/CloudApi.md +1312 -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/SmtpCredential.md +30 -0
  46. package/docs/Subscribe.md +20 -0
  47. package/docs/SuppressionEntry.md +28 -0
  48. package/docs/TierEnum.md +13 -0
  49. 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;
@@ -1967,6 +2215,14 @@ export interface ServiceList {
1967
2215
  'auto_payment': string;
1968
2216
  'company': string;
1969
2217
  }
2218
+ export interface SmtpCredential {
2219
+ 'id': number;
2220
+ 'label': string;
2221
+ 'username': string;
2222
+ 'active': boolean;
2223
+ 'created_at': string;
2224
+ 'revoked_at': string | null;
2225
+ }
1970
2226
  export interface Snapshot {
1971
2227
  'name': string;
1972
2228
  'description'?: string;
@@ -2068,6 +2324,9 @@ export interface StorageProduct {
2068
2324
  'min_size': string;
2069
2325
  'max_size': string;
2070
2326
  }
2327
+ export interface Subscribe {
2328
+ 'tier': TierEnum;
2329
+ }
2071
2330
  export interface Subscription {
2072
2331
  'id': number;
2073
2332
  'status': SubscriptionStatusEnum;
@@ -2088,6 +2347,13 @@ export declare const SubscriptionStatusEnum: {
2088
2347
  readonly Cancelled: "cancelled";
2089
2348
  };
2090
2349
  export type SubscriptionStatusEnum = typeof SubscriptionStatusEnum[keyof typeof SubscriptionStatusEnum];
2350
+ export interface SuppressionEntry {
2351
+ 'id': number;
2352
+ 'address': string;
2353
+ 'reason': ReasonEnum;
2354
+ 'detail': string;
2355
+ 'created_at': string;
2356
+ }
2091
2357
  /**
2092
2358
  * Serializer for TCPRoute resources with port validation.
2093
2359
  */
@@ -2200,6 +2466,15 @@ export interface TicketReply {
2200
2466
  export interface TicketReplyResponse {
2201
2467
  'message': string;
2202
2468
  }
2469
+ /**
2470
+ * * `starter` - Starter * `pro` - Pro * `business` - Business
2471
+ */
2472
+ export declare const TierEnum: {
2473
+ readonly Starter: "starter";
2474
+ readonly Pro: "pro";
2475
+ readonly Business: "business";
2476
+ };
2477
+ export type TierEnum = typeof TierEnum[keyof typeof TierEnum];
2203
2478
  export interface ToggleAutoPaymentResponse {
2204
2479
  'message': string;
2205
2480
  'auto_payment': boolean;
@@ -3437,6 +3712,65 @@ export declare class BillingApi extends BaseAPI {
3437
3712
  * CloudApi - axios parameter creator
3438
3713
  */
3439
3714
  export declare const CloudApiAxiosParamCreator: (configuration?: Configuration) => {
3715
+ /**
3716
+ * Require complete user profile for provisioning (create) API actions.
3717
+ * @param {Bucket} [bucket]
3718
+ * @param {*} [options] Override http request option.
3719
+ * @throws {RequiredError}
3720
+ */
3721
+ cloudBucketsCreate: (bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3722
+ /**
3723
+ * Require complete user profile for provisioning (create) API actions.
3724
+ * @param {number} id A unique integer value identifying this S3 bucket.
3725
+ * @param {Bucket} [bucket]
3726
+ * @param {*} [options] Override http request option.
3727
+ * @throws {RequiredError}
3728
+ */
3729
+ cloudBucketsCredentialsRevealCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3730
+ /**
3731
+ * Require complete user profile for provisioning (create) API actions.
3732
+ * @param {number} id A unique integer value identifying this S3 bucket.
3733
+ * @param {Bucket} [bucket]
3734
+ * @param {*} [options] Override http request option.
3735
+ * @throws {RequiredError}
3736
+ */
3737
+ cloudBucketsCredentialsRotateCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3738
+ /**
3739
+ * Require complete user profile for provisioning (create) API actions.
3740
+ * @param {number} id A unique integer value identifying this S3 bucket.
3741
+ * @param {*} [options] Override http request option.
3742
+ * @throws {RequiredError}
3743
+ */
3744
+ cloudBucketsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3745
+ /**
3746
+ * Require complete user profile for provisioning (create) API actions.
3747
+ * @param {*} [options] Override http request option.
3748
+ * @throws {RequiredError}
3749
+ */
3750
+ cloudBucketsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3751
+ /**
3752
+ * Require complete user profile for provisioning (create) API actions.
3753
+ * @param {number} id A unique integer value identifying this S3 bucket.
3754
+ * @param {Bucket} [bucket]
3755
+ * @param {*} [options] Override http request option.
3756
+ * @throws {RequiredError}
3757
+ */
3758
+ cloudBucketsResizeCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3759
+ /**
3760
+ * Require complete user profile for provisioning (create) API actions.
3761
+ * @param {number} id A unique integer value identifying this S3 bucket.
3762
+ * @param {*} [options] Override http request option.
3763
+ * @throws {RequiredError}
3764
+ */
3765
+ cloudBucketsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3766
+ /**
3767
+ * Require complete user profile for provisioning (create) API actions.
3768
+ * @param {number} id A unique integer value identifying this S3 bucket.
3769
+ * @param {Bucket} [bucket]
3770
+ * @param {*} [options] Override http request option.
3771
+ * @throws {RequiredError}
3772
+ */
3773
+ cloudBucketsVisibilityCreate: (id: number, bucket?: Bucket, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3440
3774
  /**
3441
3775
  * Require complete user profile for provisioning (create) API actions.
3442
3776
  * @param {FirewallRulesSet} firewallRulesSet
@@ -3529,6 +3863,110 @@ export declare const CloudApiAxiosParamCreator: (configuration?: Configuration)
3529
3863
  * @throws {RequiredError}
3530
3864
  */
3531
3865
  cloudFirewallRulesSetUpdate: (id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3866
+ /**
3867
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3868
+ * @param {number} id A unique integer value identifying this floating IPv4.
3869
+ * @param {number} [page] A page number within the paginated result set.
3870
+ * @param {*} [options] Override http request option.
3871
+ * @throws {RequiredError}
3872
+ */
3873
+ cloudFloatingIpv4AuthorizationsList: (id: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3874
+ /**
3875
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3876
+ * @param {number} id A unique integer value identifying this floating IPv4.
3877
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
3878
+ * @param {*} [options] Override http request option.
3879
+ * @throws {RequiredError}
3880
+ */
3881
+ cloudFloatingIpv4AuthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3882
+ /**
3883
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3884
+ * @param {FloatingIPv4Create} [floatingIPv4Create]
3885
+ * @param {*} [options] Override http request option.
3886
+ * @throws {RequiredError}
3887
+ */
3888
+ cloudFloatingIpv4Create: (floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3889
+ /**
3890
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3891
+ * @param {number} id A unique integer value identifying this floating IPv4.
3892
+ * @param {*} [options] Override http request option.
3893
+ * @throws {RequiredError}
3894
+ */
3895
+ cloudFloatingIpv4Destroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3896
+ /**
3897
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3898
+ * @param {number} [page] A page number within the paginated result set.
3899
+ * @param {*} [options] Override http request option.
3900
+ * @throws {RequiredError}
3901
+ */
3902
+ cloudFloatingIpv4List: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3903
+ /**
3904
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3905
+ * @param {number} id A unique integer value identifying this floating IPv4.
3906
+ * @param {*} [options] Override http request option.
3907
+ * @throws {RequiredError}
3908
+ */
3909
+ cloudFloatingIpv4Retrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3910
+ /**
3911
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
3912
+ * @param {number} id A unique integer value identifying this floating IPv4.
3913
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
3914
+ * @param {*} [options] Override http request option.
3915
+ * @throws {RequiredError}
3916
+ */
3917
+ cloudFloatingIpv4UnauthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3918
+ /**
3919
+ * Manage floating IPv6 addresses.
3920
+ * @param {number} id A unique integer value identifying this floating IPv6.
3921
+ * @param {number} [page] A page number within the paginated result set.
3922
+ * @param {*} [options] Override http request option.
3923
+ * @throws {RequiredError}
3924
+ */
3925
+ cloudFloatingIpv6AuthorizationsList: (id: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3926
+ /**
3927
+ * Manage floating IPv6 addresses.
3928
+ * @param {number} id A unique integer value identifying this floating IPv6.
3929
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
3930
+ * @param {*} [options] Override http request option.
3931
+ * @throws {RequiredError}
3932
+ */
3933
+ cloudFloatingIpv6AuthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3934
+ /**
3935
+ * Manage floating IPv6 addresses.
3936
+ * @param {FloatingIPv6Create} [floatingIPv6Create]
3937
+ * @param {*} [options] Override http request option.
3938
+ * @throws {RequiredError}
3939
+ */
3940
+ cloudFloatingIpv6Create: (floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3941
+ /**
3942
+ * Manage floating IPv6 addresses.
3943
+ * @param {number} id A unique integer value identifying this floating IPv6.
3944
+ * @param {*} [options] Override http request option.
3945
+ * @throws {RequiredError}
3946
+ */
3947
+ cloudFloatingIpv6Destroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3948
+ /**
3949
+ * Manage floating IPv6 addresses.
3950
+ * @param {number} [page] A page number within the paginated result set.
3951
+ * @param {*} [options] Override http request option.
3952
+ * @throws {RequiredError}
3953
+ */
3954
+ cloudFloatingIpv6List: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3955
+ /**
3956
+ * Manage floating IPv6 addresses.
3957
+ * @param {number} id A unique integer value identifying this floating IPv6.
3958
+ * @param {*} [options] Override http request option.
3959
+ * @throws {RequiredError}
3960
+ */
3961
+ cloudFloatingIpv6Retrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3962
+ /**
3963
+ * Manage floating IPv6 addresses.
3964
+ * @param {number} id A unique integer value identifying this floating IPv6.
3965
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
3966
+ * @param {*} [options] Override http request option.
3967
+ * @throws {RequiredError}
3968
+ */
3969
+ cloudFloatingIpv6UnauthorizeCreate: (id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3532
3970
  /**
3533
3971
  *
3534
3972
  * @summary List hardware generations
@@ -4052,6 +4490,65 @@ export declare const CloudApiAxiosParamCreator: (configuration?: Configuration)
4052
4490
  * CloudApi - functional programming interface
4053
4491
  */
4054
4492
  export declare const CloudApiFp: (configuration?: Configuration) => {
4493
+ /**
4494
+ * Require complete user profile for provisioning (create) API actions.
4495
+ * @param {Bucket} [bucket]
4496
+ * @param {*} [options] Override http request option.
4497
+ * @throws {RequiredError}
4498
+ */
4499
+ cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4500
+ /**
4501
+ * Require complete user profile for provisioning (create) API actions.
4502
+ * @param {number} id A unique integer value identifying this S3 bucket.
4503
+ * @param {Bucket} [bucket]
4504
+ * @param {*} [options] Override http request option.
4505
+ * @throws {RequiredError}
4506
+ */
4507
+ cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4508
+ /**
4509
+ * Require complete user profile for provisioning (create) API actions.
4510
+ * @param {number} id A unique integer value identifying this S3 bucket.
4511
+ * @param {Bucket} [bucket]
4512
+ * @param {*} [options] Override http request option.
4513
+ * @throws {RequiredError}
4514
+ */
4515
+ cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4516
+ /**
4517
+ * Require complete user profile for provisioning (create) API actions.
4518
+ * @param {number} id A unique integer value identifying this S3 bucket.
4519
+ * @param {*} [options] Override http request option.
4520
+ * @throws {RequiredError}
4521
+ */
4522
+ cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4523
+ /**
4524
+ * Require complete user profile for provisioning (create) API actions.
4525
+ * @param {*} [options] Override http request option.
4526
+ * @throws {RequiredError}
4527
+ */
4528
+ cloudBucketsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Bucket>>>;
4529
+ /**
4530
+ * Require complete user profile for provisioning (create) API actions.
4531
+ * @param {number} id A unique integer value identifying this S3 bucket.
4532
+ * @param {Bucket} [bucket]
4533
+ * @param {*} [options] Override http request option.
4534
+ * @throws {RequiredError}
4535
+ */
4536
+ cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4537
+ /**
4538
+ * Require complete user profile for provisioning (create) API actions.
4539
+ * @param {number} id A unique integer value identifying this S3 bucket.
4540
+ * @param {*} [options] Override http request option.
4541
+ * @throws {RequiredError}
4542
+ */
4543
+ cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4544
+ /**
4545
+ * Require complete user profile for provisioning (create) API actions.
4546
+ * @param {number} id A unique integer value identifying this S3 bucket.
4547
+ * @param {Bucket} [bucket]
4548
+ * @param {*} [options] Override http request option.
4549
+ * @throws {RequiredError}
4550
+ */
4551
+ cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Bucket>>;
4055
4552
  /**
4056
4553
  * Require complete user profile for provisioning (create) API actions.
4057
4554
  * @param {FirewallRulesSet} firewallRulesSet
@@ -4144,6 +4641,110 @@ export declare const CloudApiFp: (configuration?: Configuration) => {
4144
4641
  * @throws {RequiredError}
4145
4642
  */
4146
4643
  cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FirewallRulesSet>>;
4644
+ /**
4645
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4646
+ * @param {number} id A unique integer value identifying this floating IPv4.
4647
+ * @param {number} [page] A page number within the paginated result set.
4648
+ * @param {*} [options] Override http request option.
4649
+ * @throws {RequiredError}
4650
+ */
4651
+ cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPAuthorizationList>>;
4652
+ /**
4653
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4654
+ * @param {number} id A unique integer value identifying this floating IPv4.
4655
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
4656
+ * @param {*} [options] Override http request option.
4657
+ * @throws {RequiredError}
4658
+ */
4659
+ cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4AuthorizeResponse>>;
4660
+ /**
4661
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4662
+ * @param {FloatingIPv4Create} [floatingIPv4Create]
4663
+ * @param {*} [options] Override http request option.
4664
+ * @throws {RequiredError}
4665
+ */
4666
+ cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4>>;
4667
+ /**
4668
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4669
+ * @param {number} id A unique integer value identifying this floating IPv4.
4670
+ * @param {*} [options] Override http request option.
4671
+ * @throws {RequiredError}
4672
+ */
4673
+ cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4674
+ /**
4675
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4676
+ * @param {number} [page] A page number within the paginated result set.
4677
+ * @param {*} [options] Override http request option.
4678
+ * @throws {RequiredError}
4679
+ */
4680
+ cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPv4List>>;
4681
+ /**
4682
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4683
+ * @param {number} id A unique integer value identifying this floating IPv4.
4684
+ * @param {*} [options] Override http request option.
4685
+ * @throws {RequiredError}
4686
+ */
4687
+ cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4>>;
4688
+ /**
4689
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
4690
+ * @param {number} id A unique integer value identifying this floating IPv4.
4691
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
4692
+ * @param {*} [options] Override http request option.
4693
+ * @throws {RequiredError}
4694
+ */
4695
+ cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv4UnauthorizeResponse>>;
4696
+ /**
4697
+ * Manage floating IPv6 addresses.
4698
+ * @param {number} id A unique integer value identifying this floating IPv6.
4699
+ * @param {number} [page] A page number within the paginated result set.
4700
+ * @param {*} [options] Override http request option.
4701
+ * @throws {RequiredError}
4702
+ */
4703
+ cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPAuthorizationList>>;
4704
+ /**
4705
+ * Manage floating IPv6 addresses.
4706
+ * @param {number} id A unique integer value identifying this floating IPv6.
4707
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
4708
+ * @param {*} [options] Override http request option.
4709
+ * @throws {RequiredError}
4710
+ */
4711
+ cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6AuthorizeResponse>>;
4712
+ /**
4713
+ * Manage floating IPv6 addresses.
4714
+ * @param {FloatingIPv6Create} [floatingIPv6Create]
4715
+ * @param {*} [options] Override http request option.
4716
+ * @throws {RequiredError}
4717
+ */
4718
+ cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6>>;
4719
+ /**
4720
+ * Manage floating IPv6 addresses.
4721
+ * @param {number} id A unique integer value identifying this floating IPv6.
4722
+ * @param {*} [options] Override http request option.
4723
+ * @throws {RequiredError}
4724
+ */
4725
+ cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4726
+ /**
4727
+ * Manage floating IPv6 addresses.
4728
+ * @param {number} [page] A page number within the paginated result set.
4729
+ * @param {*} [options] Override http request option.
4730
+ * @throws {RequiredError}
4731
+ */
4732
+ cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedFloatingIPv6List>>;
4733
+ /**
4734
+ * Manage floating IPv6 addresses.
4735
+ * @param {number} id A unique integer value identifying this floating IPv6.
4736
+ * @param {*} [options] Override http request option.
4737
+ * @throws {RequiredError}
4738
+ */
4739
+ cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6>>;
4740
+ /**
4741
+ * Manage floating IPv6 addresses.
4742
+ * @param {number} id A unique integer value identifying this floating IPv6.
4743
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
4744
+ * @param {*} [options] Override http request option.
4745
+ * @throws {RequiredError}
4746
+ */
4747
+ cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FloatingIPv6UnauthorizeResponse>>;
4147
4748
  /**
4148
4749
  *
4149
4750
  * @summary List hardware generations
@@ -4667,6 +5268,65 @@ export declare const CloudApiFp: (configuration?: Configuration) => {
4667
5268
  * CloudApi - factory interface
4668
5269
  */
4669
5270
  export declare const CloudApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5271
+ /**
5272
+ * Require complete user profile for provisioning (create) API actions.
5273
+ * @param {Bucket} [bucket]
5274
+ * @param {*} [options] Override http request option.
5275
+ * @throws {RequiredError}
5276
+ */
5277
+ cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5278
+ /**
5279
+ * Require complete user profile for provisioning (create) API actions.
5280
+ * @param {number} id A unique integer value identifying this S3 bucket.
5281
+ * @param {Bucket} [bucket]
5282
+ * @param {*} [options] Override http request option.
5283
+ * @throws {RequiredError}
5284
+ */
5285
+ cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5286
+ /**
5287
+ * Require complete user profile for provisioning (create) API actions.
5288
+ * @param {number} id A unique integer value identifying this S3 bucket.
5289
+ * @param {Bucket} [bucket]
5290
+ * @param {*} [options] Override http request option.
5291
+ * @throws {RequiredError}
5292
+ */
5293
+ cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5294
+ /**
5295
+ * Require complete user profile for provisioning (create) API actions.
5296
+ * @param {number} id A unique integer value identifying this S3 bucket.
5297
+ * @param {*} [options] Override http request option.
5298
+ * @throws {RequiredError}
5299
+ */
5300
+ cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5301
+ /**
5302
+ * Require complete user profile for provisioning (create) API actions.
5303
+ * @param {*} [options] Override http request option.
5304
+ * @throws {RequiredError}
5305
+ */
5306
+ cloudBucketsList(options?: RawAxiosRequestConfig): AxiosPromise<Array<Bucket>>;
5307
+ /**
5308
+ * Require complete user profile for provisioning (create) API actions.
5309
+ * @param {number} id A unique integer value identifying this S3 bucket.
5310
+ * @param {Bucket} [bucket]
5311
+ * @param {*} [options] Override http request option.
5312
+ * @throws {RequiredError}
5313
+ */
5314
+ cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5315
+ /**
5316
+ * Require complete user profile for provisioning (create) API actions.
5317
+ * @param {number} id A unique integer value identifying this S3 bucket.
5318
+ * @param {*} [options] Override http request option.
5319
+ * @throws {RequiredError}
5320
+ */
5321
+ cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
5322
+ /**
5323
+ * Require complete user profile for provisioning (create) API actions.
5324
+ * @param {number} id A unique integer value identifying this S3 bucket.
5325
+ * @param {Bucket} [bucket]
5326
+ * @param {*} [options] Override http request option.
5327
+ * @throws {RequiredError}
5328
+ */
5329
+ cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): AxiosPromise<Bucket>;
4670
5330
  /**
4671
5331
  * Require complete user profile for provisioning (create) API actions.
4672
5332
  * @param {FirewallRulesSet} firewallRulesSet
@@ -4759,6 +5419,110 @@ export declare const CloudApiFactory: (configuration?: Configuration, basePath?:
4759
5419
  * @throws {RequiredError}
4760
5420
  */
4761
5421
  cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): AxiosPromise<FirewallRulesSet>;
5422
+ /**
5423
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5424
+ * @param {number} id A unique integer value identifying this floating IPv4.
5425
+ * @param {number} [page] A page number within the paginated result set.
5426
+ * @param {*} [options] Override http request option.
5427
+ * @throws {RequiredError}
5428
+ */
5429
+ cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPAuthorizationList>;
5430
+ /**
5431
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5432
+ * @param {number} id A unique integer value identifying this floating IPv4.
5433
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5434
+ * @param {*} [options] Override http request option.
5435
+ * @throws {RequiredError}
5436
+ */
5437
+ cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4AuthorizeResponse>;
5438
+ /**
5439
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5440
+ * @param {FloatingIPv4Create} [floatingIPv4Create]
5441
+ * @param {*} [options] Override http request option.
5442
+ * @throws {RequiredError}
5443
+ */
5444
+ cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4>;
5445
+ /**
5446
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5447
+ * @param {number} id A unique integer value identifying this floating IPv4.
5448
+ * @param {*} [options] Override http request option.
5449
+ * @throws {RequiredError}
5450
+ */
5451
+ cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5452
+ /**
5453
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5454
+ * @param {number} [page] A page number within the paginated result set.
5455
+ * @param {*} [options] Override http request option.
5456
+ * @throws {RequiredError}
5457
+ */
5458
+ cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPv4List>;
5459
+ /**
5460
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5461
+ * @param {number} id A unique integer value identifying this floating IPv4.
5462
+ * @param {*} [options] Override http request option.
5463
+ * @throws {RequiredError}
5464
+ */
5465
+ cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4>;
5466
+ /**
5467
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
5468
+ * @param {number} id A unique integer value identifying this floating IPv4.
5469
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5470
+ * @param {*} [options] Override http request option.
5471
+ * @throws {RequiredError}
5472
+ */
5473
+ cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv4UnauthorizeResponse>;
5474
+ /**
5475
+ * Manage floating IPv6 addresses.
5476
+ * @param {number} id A unique integer value identifying this floating IPv6.
5477
+ * @param {number} [page] A page number within the paginated result set.
5478
+ * @param {*} [options] Override http request option.
5479
+ * @throws {RequiredError}
5480
+ */
5481
+ cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPAuthorizationList>;
5482
+ /**
5483
+ * Manage floating IPv6 addresses.
5484
+ * @param {number} id A unique integer value identifying this floating IPv6.
5485
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5486
+ * @param {*} [options] Override http request option.
5487
+ * @throws {RequiredError}
5488
+ */
5489
+ cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6AuthorizeResponse>;
5490
+ /**
5491
+ * Manage floating IPv6 addresses.
5492
+ * @param {FloatingIPv6Create} [floatingIPv6Create]
5493
+ * @param {*} [options] Override http request option.
5494
+ * @throws {RequiredError}
5495
+ */
5496
+ cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6>;
5497
+ /**
5498
+ * Manage floating IPv6 addresses.
5499
+ * @param {number} id A unique integer value identifying this floating IPv6.
5500
+ * @param {*} [options] Override http request option.
5501
+ * @throws {RequiredError}
5502
+ */
5503
+ cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5504
+ /**
5505
+ * Manage floating IPv6 addresses.
5506
+ * @param {number} [page] A page number within the paginated result set.
5507
+ * @param {*} [options] Override http request option.
5508
+ * @throws {RequiredError}
5509
+ */
5510
+ cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedFloatingIPv6List>;
5511
+ /**
5512
+ * Manage floating IPv6 addresses.
5513
+ * @param {number} id A unique integer value identifying this floating IPv6.
5514
+ * @param {*} [options] Override http request option.
5515
+ * @throws {RequiredError}
5516
+ */
5517
+ cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6>;
5518
+ /**
5519
+ * Manage floating IPv6 addresses.
5520
+ * @param {number} id A unique integer value identifying this floating IPv6.
5521
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5522
+ * @param {*} [options] Override http request option.
5523
+ * @throws {RequiredError}
5524
+ */
5525
+ cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): AxiosPromise<FloatingIPv6UnauthorizeResponse>;
4762
5526
  /**
4763
5527
  *
4764
5528
  * @summary List hardware generations
@@ -5282,6 +6046,65 @@ export declare const CloudApiFactory: (configuration?: Configuration, basePath?:
5282
6046
  * CloudApi - object-oriented interface
5283
6047
  */
5284
6048
  export declare class CloudApi extends BaseAPI {
6049
+ /**
6050
+ * Require complete user profile for provisioning (create) API actions.
6051
+ * @param {Bucket} [bucket]
6052
+ * @param {*} [options] Override http request option.
6053
+ * @throws {RequiredError}
6054
+ */
6055
+ cloudBucketsCreate(bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
6056
+ /**
6057
+ * Require complete user profile for provisioning (create) API actions.
6058
+ * @param {number} id A unique integer value identifying this S3 bucket.
6059
+ * @param {Bucket} [bucket]
6060
+ * @param {*} [options] Override http request option.
6061
+ * @throws {RequiredError}
6062
+ */
6063
+ cloudBucketsCredentialsRevealCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
6064
+ /**
6065
+ * Require complete user profile for provisioning (create) API actions.
6066
+ * @param {number} id A unique integer value identifying this S3 bucket.
6067
+ * @param {Bucket} [bucket]
6068
+ * @param {*} [options] Override http request option.
6069
+ * @throws {RequiredError}
6070
+ */
6071
+ cloudBucketsCredentialsRotateCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
6072
+ /**
6073
+ * Require complete user profile for provisioning (create) API actions.
6074
+ * @param {number} id A unique integer value identifying this S3 bucket.
6075
+ * @param {*} [options] Override http request option.
6076
+ * @throws {RequiredError}
6077
+ */
6078
+ cloudBucketsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6079
+ /**
6080
+ * Require complete user profile for provisioning (create) API actions.
6081
+ * @param {*} [options] Override http request option.
6082
+ * @throws {RequiredError}
6083
+ */
6084
+ cloudBucketsList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket[], any, {}>>;
6085
+ /**
6086
+ * Require complete user profile for provisioning (create) API actions.
6087
+ * @param {number} id A unique integer value identifying this S3 bucket.
6088
+ * @param {Bucket} [bucket]
6089
+ * @param {*} [options] Override http request option.
6090
+ * @throws {RequiredError}
6091
+ */
6092
+ cloudBucketsResizeCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
6093
+ /**
6094
+ * Require complete user profile for provisioning (create) API actions.
6095
+ * @param {number} id A unique integer value identifying this S3 bucket.
6096
+ * @param {*} [options] Override http request option.
6097
+ * @throws {RequiredError}
6098
+ */
6099
+ cloudBucketsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
6100
+ /**
6101
+ * Require complete user profile for provisioning (create) API actions.
6102
+ * @param {number} id A unique integer value identifying this S3 bucket.
6103
+ * @param {Bucket} [bucket]
6104
+ * @param {*} [options] Override http request option.
6105
+ * @throws {RequiredError}
6106
+ */
6107
+ cloudBucketsVisibilityCreate(id: number, bucket?: Bucket, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Bucket, any, {}>>;
5285
6108
  /**
5286
6109
  * Require complete user profile for provisioning (create) API actions.
5287
6110
  * @param {FirewallRulesSet} firewallRulesSet
@@ -5375,117 +6198,221 @@ export declare class CloudApi extends BaseAPI {
5375
6198
  */
5376
6199
  cloudFirewallRulesSetUpdate(id: number, firewallRulesSet: FirewallRulesSet, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FirewallRulesSet, any, {}>>;
5377
6200
  /**
5378
- *
5379
- * @summary List hardware generations
6201
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6202
+ * @param {number} id A unique integer value identifying this floating IPv4.
6203
+ * @param {number} [page] A page number within the paginated result set.
5380
6204
  * @param {*} [options] Override http request option.
5381
6205
  * @throws {RequiredError}
5382
6206
  */
5383
- cloudGenerationsList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HardwareGeneration[], any, {}>>;
6207
+ cloudFloatingIpv4AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPAuthorizationList, any, {}>>;
5384
6208
  /**
5385
- *
5386
- * @param {string} slug
6209
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6210
+ * @param {number} id A unique integer value identifying this floating IPv4.
6211
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5387
6212
  * @param {*} [options] Override http request option.
5388
6213
  * @throws {RequiredError}
5389
6214
  */
5390
- cloudGenerationsRetrieve(slug: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HardwareGeneration, any, {}>>;
6215
+ cloudFloatingIpv4AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4AuthorizeResponse, any, {}>>;
5391
6216
  /**
5392
- * List of available OS images
5393
- * @param {number} [page] A page number within the paginated result set.
6217
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6218
+ * @param {FloatingIPv4Create} [floatingIPv4Create]
5394
6219
  * @param {*} [options] Override http request option.
5395
6220
  * @throws {RequiredError}
5396
6221
  */
5397
- cloudImagesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedOSImageList, any, {}>>;
6222
+ cloudFloatingIpv4Create(floatingIPv4Create?: FloatingIPv4Create, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4, any, {}>>;
5398
6223
  /**
5399
- * List of available OS images
5400
- * @param {number} id A unique integer value identifying this operating system.
6224
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6225
+ * @param {number} id A unique integer value identifying this floating IPv4.
5401
6226
  * @param {*} [options] Override http request option.
5402
6227
  * @throws {RequiredError}
5403
6228
  */
5404
- cloudImagesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OSImage, any, {}>>;
6229
+ cloudFloatingIpv4Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5405
6230
  /**
5406
- * Require complete user profile for provisioning (create) API actions.
5407
- * @param {PublicIPv4} [publicIPv4]
6231
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6232
+ * @param {number} [page] A page number within the paginated result set.
5408
6233
  * @param {*} [options] Override http request option.
5409
6234
  * @throws {RequiredError}
5410
6235
  */
5411
- cloudIpv4Create(publicIPv4?: PublicIPv4, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicIPv4, any, {}>>;
6236
+ cloudFloatingIpv4List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPv4List, any, {}>>;
5412
6237
  /**
5413
- * Require complete user profile for provisioning (create) API actions.
5414
- * @param {number} id A unique integer value identifying this Public IPv4.
6238
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6239
+ * @param {number} id A unique integer value identifying this floating IPv4.
5415
6240
  * @param {*} [options] Override http request option.
5416
6241
  * @throws {RequiredError}
5417
6242
  */
5418
- cloudIpv4Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6243
+ cloudFloatingIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4, any, {}>>;
5419
6244
  /**
5420
- * Require complete user profile for provisioning (create) API actions.
5421
- * @param {number} id A unique integer value identifying this Public IPv4.
5422
- * @param {PublicIPv4} [publicIPv4]
6245
+ * Manage floating IPv4 addresses. A floating IP can be authorized on multiple VMs simultaneously; the customer asserts ownership inside the guest via keepalived/VRRP.
6246
+ * @param {number} id A unique integer value identifying this floating IPv4.
6247
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5423
6248
  * @param {*} [options] Override http request option.
5424
6249
  * @throws {RequiredError}
5425
6250
  */
5426
- cloudIpv4DetachCreate(id: number, publicIPv4?: PublicIPv4, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachIPv4Response, any, {}>>;
6251
+ cloudFloatingIpv4UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv4UnauthorizeResponse, any, {}>>;
5427
6252
  /**
5428
- * Require complete user profile for provisioning (create) API actions.
6253
+ * Manage floating IPv6 addresses.
6254
+ * @param {number} id A unique integer value identifying this floating IPv6.
5429
6255
  * @param {number} [page] A page number within the paginated result set.
5430
6256
  * @param {*} [options] Override http request option.
5431
6257
  * @throws {RequiredError}
5432
6258
  */
5433
- cloudIpv4List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPublicIPv4List, any, {}>>;
6259
+ cloudFloatingIpv6AuthorizationsList(id: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPAuthorizationList, any, {}>>;
5434
6260
  /**
5435
- * Get or update reverse DNS (PTR) for this IPv4 address.
5436
- * @param {number} id A unique integer value identifying this Public IPv4.
5437
- * @param {ReverseDNS} reverseDNS
6261
+ * Manage floating IPv6 addresses.
6262
+ * @param {number} id A unique integer value identifying this floating IPv6.
6263
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5438
6264
  * @param {*} [options] Override http request option.
5439
6265
  * @throws {RequiredError}
5440
6266
  */
5441
- cloudIpv4RdnsCreate(id: number, reverseDNS: ReverseDNS, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReverseDNS, any, {}>>;
6267
+ cloudFloatingIpv6AuthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6AuthorizeResponse, any, {}>>;
5442
6268
  /**
5443
- * Get or update reverse DNS (PTR) for this IPv4 address.
5444
- * @param {number} id A unique integer value identifying this Public IPv4.
6269
+ * Manage floating IPv6 addresses.
6270
+ * @param {FloatingIPv6Create} [floatingIPv6Create]
5445
6271
  * @param {*} [options] Override http request option.
5446
6272
  * @throws {RequiredError}
5447
6273
  */
5448
- cloudIpv4RdnsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReverseDNS, any, {}>>;
6274
+ cloudFloatingIpv6Create(floatingIPv6Create?: FloatingIPv6Create, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6, any, {}>>;
5449
6275
  /**
5450
- * Require complete user profile for provisioning (create) API actions.
5451
- * @param {number} id A unique integer value identifying this Public IPv4.
6276
+ * Manage floating IPv6 addresses.
6277
+ * @param {number} id A unique integer value identifying this floating IPv6.
5452
6278
  * @param {*} [options] Override http request option.
5453
6279
  * @throws {RequiredError}
5454
6280
  */
5455
- cloudIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicIPv4, any, {}>>;
6281
+ cloudFloatingIpv6Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
5456
6282
  /**
5457
- * Require complete user profile for provisioning (create) API actions.
5458
- * @param {PublicIPv6} [publicIPv6]
6283
+ * Manage floating IPv6 addresses.
6284
+ * @param {number} [page] A page number within the paginated result set.
5459
6285
  * @param {*} [options] Override http request option.
5460
6286
  * @throws {RequiredError}
5461
6287
  */
5462
- cloudIpv6Create(publicIPv6?: PublicIPv6, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicIPv6, any, {}>>;
6288
+ cloudFloatingIpv6List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedFloatingIPv6List, any, {}>>;
5463
6289
  /**
5464
- * Require complete user profile for provisioning (create) API actions.
5465
- * @param {number} id A unique integer value identifying this Public IPv6.
6290
+ * Manage floating IPv6 addresses.
6291
+ * @param {number} id A unique integer value identifying this floating IPv6.
5466
6292
  * @param {*} [options] Override http request option.
5467
6293
  * @throws {RequiredError}
5468
6294
  */
5469
- cloudIpv6Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6295
+ cloudFloatingIpv6Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6, any, {}>>;
5470
6296
  /**
5471
- * Require complete user profile for provisioning (create) API actions.
5472
- * @param {number} id A unique integer value identifying this Public IPv6.
5473
- * @param {PublicIPv6} [publicIPv6]
6297
+ * Manage floating IPv6 addresses.
6298
+ * @param {number} id A unique integer value identifying this floating IPv6.
6299
+ * @param {FloatingIPAuthorizeRequest} floatingIPAuthorizeRequest
5474
6300
  * @param {*} [options] Override http request option.
5475
6301
  * @throws {RequiredError}
5476
6302
  */
5477
- cloudIpv6DetachCreate(id: number, publicIPv6?: PublicIPv6, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachIPv6Response, any, {}>>;
6303
+ cloudFloatingIpv6UnauthorizeCreate(id: number, floatingIPAuthorizeRequest: FloatingIPAuthorizeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FloatingIPv6UnauthorizeResponse, any, {}>>;
5478
6304
  /**
5479
- * Require complete user profile for provisioning (create) API actions.
5480
- * @param {number} [page] A page number within the paginated result set.
6305
+ *
6306
+ * @summary List hardware generations
5481
6307
  * @param {*} [options] Override http request option.
5482
6308
  * @throws {RequiredError}
5483
6309
  */
5484
- cloudIpv6List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPublicIPv6List, any, {}>>;
6310
+ cloudGenerationsList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HardwareGeneration[], any, {}>>;
5485
6311
  /**
5486
- * Get or update reverse DNS (PTR) for this IPv6 address.
5487
- * @param {number} id A unique integer value identifying this Public IPv6.
5488
- * @param {ReverseDNS} reverseDNS
6312
+ *
6313
+ * @param {string} slug
6314
+ * @param {*} [options] Override http request option.
6315
+ * @throws {RequiredError}
6316
+ */
6317
+ cloudGenerationsRetrieve(slug: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HardwareGeneration, any, {}>>;
6318
+ /**
6319
+ * List of available OS images
6320
+ * @param {number} [page] A page number within the paginated result set.
6321
+ * @param {*} [options] Override http request option.
6322
+ * @throws {RequiredError}
6323
+ */
6324
+ cloudImagesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedOSImageList, any, {}>>;
6325
+ /**
6326
+ * List of available OS images
6327
+ * @param {number} id A unique integer value identifying this operating system.
6328
+ * @param {*} [options] Override http request option.
6329
+ * @throws {RequiredError}
6330
+ */
6331
+ cloudImagesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OSImage, any, {}>>;
6332
+ /**
6333
+ * Require complete user profile for provisioning (create) API actions.
6334
+ * @param {PublicIPv4} [publicIPv4]
6335
+ * @param {*} [options] Override http request option.
6336
+ * @throws {RequiredError}
6337
+ */
6338
+ cloudIpv4Create(publicIPv4?: PublicIPv4, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicIPv4, any, {}>>;
6339
+ /**
6340
+ * Require complete user profile for provisioning (create) API actions.
6341
+ * @param {number} id A unique integer value identifying this Public IPv4.
6342
+ * @param {*} [options] Override http request option.
6343
+ * @throws {RequiredError}
6344
+ */
6345
+ cloudIpv4Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6346
+ /**
6347
+ * Require complete user profile for provisioning (create) API actions.
6348
+ * @param {number} id A unique integer value identifying this Public IPv4.
6349
+ * @param {PublicIPv4} [publicIPv4]
6350
+ * @param {*} [options] Override http request option.
6351
+ * @throws {RequiredError}
6352
+ */
6353
+ cloudIpv4DetachCreate(id: number, publicIPv4?: PublicIPv4, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachIPv4Response, any, {}>>;
6354
+ /**
6355
+ * Require complete user profile for provisioning (create) API actions.
6356
+ * @param {number} [page] A page number within the paginated result set.
6357
+ * @param {*} [options] Override http request option.
6358
+ * @throws {RequiredError}
6359
+ */
6360
+ cloudIpv4List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPublicIPv4List, any, {}>>;
6361
+ /**
6362
+ * Get or update reverse DNS (PTR) for this IPv4 address.
6363
+ * @param {number} id A unique integer value identifying this Public IPv4.
6364
+ * @param {ReverseDNS} reverseDNS
6365
+ * @param {*} [options] Override http request option.
6366
+ * @throws {RequiredError}
6367
+ */
6368
+ cloudIpv4RdnsCreate(id: number, reverseDNS: ReverseDNS, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReverseDNS, any, {}>>;
6369
+ /**
6370
+ * Get or update reverse DNS (PTR) for this IPv4 address.
6371
+ * @param {number} id A unique integer value identifying this Public IPv4.
6372
+ * @param {*} [options] Override http request option.
6373
+ * @throws {RequiredError}
6374
+ */
6375
+ cloudIpv4RdnsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReverseDNS, any, {}>>;
6376
+ /**
6377
+ * Require complete user profile for provisioning (create) API actions.
6378
+ * @param {number} id A unique integer value identifying this Public IPv4.
6379
+ * @param {*} [options] Override http request option.
6380
+ * @throws {RequiredError}
6381
+ */
6382
+ cloudIpv4Retrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicIPv4, any, {}>>;
6383
+ /**
6384
+ * Require complete user profile for provisioning (create) API actions.
6385
+ * @param {PublicIPv6} [publicIPv6]
6386
+ * @param {*} [options] Override http request option.
6387
+ * @throws {RequiredError}
6388
+ */
6389
+ cloudIpv6Create(publicIPv6?: PublicIPv6, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PublicIPv6, any, {}>>;
6390
+ /**
6391
+ * Require complete user profile for provisioning (create) API actions.
6392
+ * @param {number} id A unique integer value identifying this Public IPv6.
6393
+ * @param {*} [options] Override http request option.
6394
+ * @throws {RequiredError}
6395
+ */
6396
+ cloudIpv6Destroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
6397
+ /**
6398
+ * Require complete user profile for provisioning (create) API actions.
6399
+ * @param {number} id A unique integer value identifying this Public IPv6.
6400
+ * @param {PublicIPv6} [publicIPv6]
6401
+ * @param {*} [options] Override http request option.
6402
+ * @throws {RequiredError}
6403
+ */
6404
+ cloudIpv6DetachCreate(id: number, publicIPv6?: PublicIPv6, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetachIPv6Response, any, {}>>;
6405
+ /**
6406
+ * Require complete user profile for provisioning (create) API actions.
6407
+ * @param {number} [page] A page number within the paginated result set.
6408
+ * @param {*} [options] Override http request option.
6409
+ * @throws {RequiredError}
6410
+ */
6411
+ cloudIpv6List(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedPublicIPv6List, any, {}>>;
6412
+ /**
6413
+ * Get or update reverse DNS (PTR) for this IPv6 address.
6414
+ * @param {number} id A unique integer value identifying this Public IPv6.
6415
+ * @param {ReverseDNS} reverseDNS
5489
6416
  * @param {*} [options] Override http request option.
5490
6417
  * @throws {RequiredError}
5491
6418
  */
@@ -6645,6 +7572,1578 @@ export declare class DomainApi extends BaseAPI {
6645
7572
  */
6646
7573
  domainTldRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TLD, any, {}>>;
6647
7574
  }
7575
+ /**
7576
+ * EmailApi - axios parameter creator
7577
+ */
7578
+ export declare const EmailApiAxiosParamCreator: (configuration?: Configuration) => {
7579
+ /**
7580
+ * Require complete user profile for provisioning (create) API actions.
7581
+ * @param {ApiCredential} [apiCredential]
7582
+ * @param {*} [options] Override http request option.
7583
+ * @throws {RequiredError}
7584
+ */
7585
+ emailApiCredentialsCreate: (apiCredential?: ApiCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7586
+ /**
7587
+ * Require complete user profile for provisioning (create) API actions.
7588
+ * @param {number} id A unique integer value identifying this api credential.
7589
+ * @param {*} [options] Override http request option.
7590
+ * @throws {RequiredError}
7591
+ */
7592
+ emailApiCredentialsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7593
+ /**
7594
+ * Require complete user profile for provisioning (create) API actions.
7595
+ * @param {number} [page] A page number within the paginated result set.
7596
+ * @param {*} [options] Override http request option.
7597
+ * @throws {RequiredError}
7598
+ */
7599
+ emailApiCredentialsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7600
+ /**
7601
+ * Require complete user profile for provisioning (create) API actions.
7602
+ * @param {number} id A unique integer value identifying this api credential.
7603
+ * @param {*} [options] Override http request option.
7604
+ * @throws {RequiredError}
7605
+ */
7606
+ emailApiCredentialsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7607
+ /**
7608
+ * Require complete user profile for provisioning (create) API actions.
7609
+ * @param {DomainAdd} domainAdd
7610
+ * @param {*} [options] Override http request option.
7611
+ * @throws {RequiredError}
7612
+ */
7613
+ emailDomainsCreate: (domainAdd: DomainAdd, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7614
+ /**
7615
+ * Require complete user profile for provisioning (create) API actions.
7616
+ * @param {number} domainPk
7617
+ * @param {InboundRoute} inboundRoute
7618
+ * @param {*} [options] Override http request option.
7619
+ * @throws {RequiredError}
7620
+ */
7621
+ emailDomainsInboundRoutesCreate: (domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7622
+ /**
7623
+ * Require complete user profile for provisioning (create) API actions.
7624
+ * @param {number} domainPk
7625
+ * @param {number} [page] A page number within the paginated result set.
7626
+ * @param {*} [options] Override http request option.
7627
+ * @throws {RequiredError}
7628
+ */
7629
+ emailDomainsInboundRoutesList: (domainPk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7630
+ /**
7631
+ * Require complete user profile for provisioning (create) API actions.
7632
+ * @param {number} [page] A page number within the paginated result set.
7633
+ * @param {*} [options] Override http request option.
7634
+ * @throws {RequiredError}
7635
+ */
7636
+ emailDomainsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7637
+ /**
7638
+ * Require complete user profile for provisioning (create) API actions.
7639
+ * @param {number} id A unique integer value identifying this sending domain.
7640
+ * @param {*} [options] Override http request option.
7641
+ * @throws {RequiredError}
7642
+ */
7643
+ emailDomainsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7644
+ /**
7645
+ * Require complete user profile for provisioning (create) API actions.
7646
+ * @param {number} id A unique integer value identifying this sending domain.
7647
+ * @param {SendingDomain} [sendingDomain]
7648
+ * @param {*} [options] Override http request option.
7649
+ * @throws {RequiredError}
7650
+ */
7651
+ emailDomainsRotateDkimCreate: (id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7652
+ /**
7653
+ * Require complete user profile for provisioning (create) API actions.
7654
+ * @param {number} id A unique integer value identifying this sending domain.
7655
+ * @param {SendingDomain} [sendingDomain]
7656
+ * @param {*} [options] Override http request option.
7657
+ * @throws {RequiredError}
7658
+ */
7659
+ emailDomainsToggleInboundCreate: (id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7660
+ /**
7661
+ * Require complete user profile for provisioning (create) API actions.
7662
+ * @param {number} id A unique integer value identifying this sending domain.
7663
+ * @param {SendingDomain} [sendingDomain]
7664
+ * @param {*} [options] Override http request option.
7665
+ * @throws {RequiredError}
7666
+ */
7667
+ emailDomainsVerifyCreate: (id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7668
+ /**
7669
+ * Require complete user profile for provisioning (create) API actions.
7670
+ * @param {InboundRoute} inboundRoute
7671
+ * @param {*} [options] Override http request option.
7672
+ * @throws {RequiredError}
7673
+ */
7674
+ emailInboundRoutesCreate: (inboundRoute: InboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7675
+ /**
7676
+ * Require complete user profile for provisioning (create) API actions.
7677
+ * @param {number} id A unique integer value identifying this inbound route.
7678
+ * @param {*} [options] Override http request option.
7679
+ * @throws {RequiredError}
7680
+ */
7681
+ emailInboundRoutesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7682
+ /**
7683
+ * Require complete user profile for provisioning (create) API actions.
7684
+ * @param {number} [page] A page number within the paginated result set.
7685
+ * @param {*} [options] Override http request option.
7686
+ * @throws {RequiredError}
7687
+ */
7688
+ emailInboundRoutesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7689
+ /**
7690
+ * Require complete user profile for provisioning (create) API actions.
7691
+ * @param {number} id A unique integer value identifying this inbound route.
7692
+ * @param {PatchedInboundRoute} [patchedInboundRoute]
7693
+ * @param {*} [options] Override http request option.
7694
+ * @throws {RequiredError}
7695
+ */
7696
+ emailInboundRoutesPartialUpdate: (id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7697
+ /**
7698
+ * Require complete user profile for provisioning (create) API actions.
7699
+ * @param {number} id A unique integer value identifying this inbound route.
7700
+ * @param {*} [options] Override http request option.
7701
+ * @throws {RequiredError}
7702
+ */
7703
+ emailInboundRoutesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7704
+ /**
7705
+ * Require complete user profile for provisioning (create) API actions.
7706
+ * @param {string} messageId
7707
+ * @param {*} [options] Override http request option.
7708
+ * @throws {RequiredError}
7709
+ */
7710
+ emailMessagesRetrieve: (messageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7711
+ /**
7712
+ * Require complete user profile for provisioning (create) API actions.
7713
+ * @param {SandboxAddress} sandboxAddress
7714
+ * @param {*} [options] Override http request option.
7715
+ * @throws {RequiredError}
7716
+ */
7717
+ emailSandboxAddressesCreate: (sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7718
+ /**
7719
+ * Require complete user profile for provisioning (create) API actions.
7720
+ * @param {number} id A unique integer value identifying this sandbox verified address.
7721
+ * @param {*} [options] Override http request option.
7722
+ * @throws {RequiredError}
7723
+ */
7724
+ emailSandboxAddressesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7725
+ /**
7726
+ * Require complete user profile for provisioning (create) API actions.
7727
+ * @param {number} [page] A page number within the paginated result set.
7728
+ * @param {*} [options] Override http request option.
7729
+ * @throws {RequiredError}
7730
+ */
7731
+ emailSandboxAddressesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7732
+ /**
7733
+ * Require complete user profile for provisioning (create) API actions.
7734
+ * @param {number} id A unique integer value identifying this sandbox verified address.
7735
+ * @param {*} [options] Override http request option.
7736
+ * @throws {RequiredError}
7737
+ */
7738
+ emailSandboxAddressesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7739
+ /**
7740
+ *
7741
+ * @param {*} [options] Override http request option.
7742
+ * @throws {RequiredError}
7743
+ */
7744
+ emailSendCreate: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7745
+ /**
7746
+ * Require complete user profile for provisioning (create) API actions.
7747
+ * @param {number} servicePk
7748
+ * @param {ApiCredential} [apiCredential]
7749
+ * @param {*} [options] Override http request option.
7750
+ * @throws {RequiredError}
7751
+ */
7752
+ emailServicesApiCredentialsCreate: (servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7753
+ /**
7754
+ * Require complete user profile for provisioning (create) API actions.
7755
+ * @param {number} servicePk
7756
+ * @param {number} [page] A page number within the paginated result set.
7757
+ * @param {*} [options] Override http request option.
7758
+ * @throws {RequiredError}
7759
+ */
7760
+ emailServicesApiCredentialsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7761
+ /**
7762
+ * Require complete user profile for provisioning (create) API actions.
7763
+ * @param {number} id A unique integer value identifying this email service.
7764
+ * @param {*} [options] Override http request option.
7765
+ * @throws {RequiredError}
7766
+ */
7767
+ emailServicesCancelCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7768
+ /**
7769
+ * Require complete user profile for provisioning (create) API actions.
7770
+ * @param {number} id A unique integer value identifying this email service.
7771
+ * @param {PatchedSubscribe} [patchedSubscribe]
7772
+ * @param {*} [options] Override http request option.
7773
+ * @throws {RequiredError}
7774
+ */
7775
+ emailServicesChangeTierPartialUpdate: (id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7776
+ /**
7777
+ * Require complete user profile for provisioning (create) API actions.
7778
+ * @param {Subscribe} subscribe
7779
+ * @param {*} [options] Override http request option.
7780
+ * @throws {RequiredError}
7781
+ */
7782
+ emailServicesCreate: (subscribe: Subscribe, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7783
+ /**
7784
+ * Require complete user profile for provisioning (create) API actions.
7785
+ * @param {number} id A unique integer value identifying this email service.
7786
+ * @param {*} [options] Override http request option.
7787
+ * @throws {RequiredError}
7788
+ */
7789
+ emailServicesDedicatedIpCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7790
+ /**
7791
+ * Require complete user profile for provisioning (create) API actions.
7792
+ * @param {number} id A unique integer value identifying this email service.
7793
+ * @param {*} [options] Override http request option.
7794
+ * @throws {RequiredError}
7795
+ */
7796
+ emailServicesDedicatedIpDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7797
+ /**
7798
+ * Require complete user profile for provisioning (create) API actions.
7799
+ * @param {number} id A unique integer value identifying this email service.
7800
+ * @param {*} [options] Override http request option.
7801
+ * @throws {RequiredError}
7802
+ */
7803
+ emailServicesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7804
+ /**
7805
+ * Require complete user profile for provisioning (create) API actions.
7806
+ * @param {number} servicePk
7807
+ * @param {DomainAdd} domainAdd
7808
+ * @param {*} [options] Override http request option.
7809
+ * @throws {RequiredError}
7810
+ */
7811
+ emailServicesDomainsCreate: (servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7812
+ /**
7813
+ * Require complete user profile for provisioning (create) API actions.
7814
+ * @param {number} servicePk
7815
+ * @param {number} [page] A page number within the paginated result set.
7816
+ * @param {*} [options] Override http request option.
7817
+ * @throws {RequiredError}
7818
+ */
7819
+ emailServicesDomainsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7820
+ /**
7821
+ * Require complete user profile for provisioning (create) API actions.
7822
+ * @param {number} [page] A page number within the paginated result set.
7823
+ * @param {*} [options] Override http request option.
7824
+ * @throws {RequiredError}
7825
+ */
7826
+ emailServicesList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7827
+ /**
7828
+ * Require complete user profile for provisioning (create) API actions.
7829
+ * @param {number} servicePk
7830
+ * @param {*} [options] Override http request option.
7831
+ * @throws {RequiredError}
7832
+ */
7833
+ emailServicesMessagesRetrieve: (servicePk: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7834
+ /**
7835
+ * Require complete user profile for provisioning (create) API actions.
7836
+ * @param {number} id A unique integer value identifying this email service.
7837
+ * @param {PatchedEmailService} [patchedEmailService]
7838
+ * @param {*} [options] Override http request option.
7839
+ * @throws {RequiredError}
7840
+ */
7841
+ emailServicesPartialUpdate: (id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7842
+ /**
7843
+ * Require complete user profile for provisioning (create) API actions.
7844
+ * @param {number} id A unique integer value identifying this email service.
7845
+ * @param {*} [options] Override http request option.
7846
+ * @throws {RequiredError}
7847
+ */
7848
+ emailServicesRestoreCreate: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7849
+ /**
7850
+ * Require complete user profile for provisioning (create) API actions.
7851
+ * @param {number} id A unique integer value identifying this email service.
7852
+ * @param {*} [options] Override http request option.
7853
+ * @throws {RequiredError}
7854
+ */
7855
+ emailServicesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7856
+ /**
7857
+ * Require complete user profile for provisioning (create) API actions.
7858
+ * @param {number} servicePk
7859
+ * @param {SandboxAddress} sandboxAddress
7860
+ * @param {*} [options] Override http request option.
7861
+ * @throws {RequiredError}
7862
+ */
7863
+ emailServicesSandboxAddressesCreate: (servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7864
+ /**
7865
+ * Require complete user profile for provisioning (create) API actions.
7866
+ * @param {number} servicePk
7867
+ * @param {number} [page] A page number within the paginated result set.
7868
+ * @param {*} [options] Override http request option.
7869
+ * @throws {RequiredError}
7870
+ */
7871
+ emailServicesSandboxAddressesList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7872
+ /**
7873
+ * Require complete user profile for provisioning (create) API actions.
7874
+ * @param {number} servicePk
7875
+ * @param {SmtpCredential} [smtpCredential]
7876
+ * @param {*} [options] Override http request option.
7877
+ * @throws {RequiredError}
7878
+ */
7879
+ emailServicesSmtpCredentialsCreate: (servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7880
+ /**
7881
+ * Require complete user profile for provisioning (create) API actions.
7882
+ * @param {number} servicePk
7883
+ * @param {number} [page] A page number within the paginated result set.
7884
+ * @param {*} [options] Override http request option.
7885
+ * @throws {RequiredError}
7886
+ */
7887
+ emailServicesSmtpCredentialsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7888
+ /**
7889
+ * Require complete user profile for provisioning (create) API actions.
7890
+ * @param {number} servicePk
7891
+ * @param {*} [options] Override http request option.
7892
+ * @throws {RequiredError}
7893
+ */
7894
+ emailServicesStatsRetrieve: (servicePk: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7895
+ /**
7896
+ * Require complete user profile for provisioning (create) API actions.
7897
+ * @param {number} servicePk
7898
+ * @param {SuppressionEntry} [suppressionEntry]
7899
+ * @param {*} [options] Override http request option.
7900
+ * @throws {RequiredError}
7901
+ */
7902
+ emailServicesSuppressionsCreate: (servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7903
+ /**
7904
+ * Require complete user profile for provisioning (create) API actions.
7905
+ * @param {number} servicePk
7906
+ * @param {number} [page] A page number within the paginated result set.
7907
+ * @param {*} [options] Override http request option.
7908
+ * @throws {RequiredError}
7909
+ */
7910
+ emailServicesSuppressionsList: (servicePk: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7911
+ /**
7912
+ * Require complete user profile for provisioning (create) API actions.
7913
+ * @param {SmtpCredential} [smtpCredential]
7914
+ * @param {*} [options] Override http request option.
7915
+ * @throws {RequiredError}
7916
+ */
7917
+ emailSmtpCredentialsCreate: (smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7918
+ /**
7919
+ * Require complete user profile for provisioning (create) API actions.
7920
+ * @param {number} id A unique integer value identifying this smtp credential.
7921
+ * @param {*} [options] Override http request option.
7922
+ * @throws {RequiredError}
7923
+ */
7924
+ emailSmtpCredentialsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7925
+ /**
7926
+ * Require complete user profile for provisioning (create) API actions.
7927
+ * @param {number} [page] A page number within the paginated result set.
7928
+ * @param {*} [options] Override http request option.
7929
+ * @throws {RequiredError}
7930
+ */
7931
+ emailSmtpCredentialsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7932
+ /**
7933
+ * Require complete user profile for provisioning (create) API actions.
7934
+ * @param {number} id A unique integer value identifying this smtp credential.
7935
+ * @param {*} [options] Override http request option.
7936
+ * @throws {RequiredError}
7937
+ */
7938
+ emailSmtpCredentialsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7939
+ /**
7940
+ * Require complete user profile for provisioning (create) API actions.
7941
+ * @param {SuppressionEntry} [suppressionEntry]
7942
+ * @param {*} [options] Override http request option.
7943
+ * @throws {RequiredError}
7944
+ */
7945
+ emailSuppressionsCreate: (suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7946
+ /**
7947
+ * Require complete user profile for provisioning (create) API actions.
7948
+ * @param {number} id A unique integer value identifying this suppression entry.
7949
+ * @param {*} [options] Override http request option.
7950
+ * @throws {RequiredError}
7951
+ */
7952
+ emailSuppressionsDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7953
+ /**
7954
+ * Require complete user profile for provisioning (create) API actions.
7955
+ * @param {number} [page] A page number within the paginated result set.
7956
+ * @param {*} [options] Override http request option.
7957
+ * @throws {RequiredError}
7958
+ */
7959
+ emailSuppressionsList: (page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7960
+ /**
7961
+ * Require complete user profile for provisioning (create) API actions.
7962
+ * @param {number} id A unique integer value identifying this suppression entry.
7963
+ * @param {*} [options] Override http request option.
7964
+ * @throws {RequiredError}
7965
+ */
7966
+ emailSuppressionsRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7967
+ };
7968
+ /**
7969
+ * EmailApi - functional programming interface
7970
+ */
7971
+ export declare const EmailApiFp: (configuration?: Configuration) => {
7972
+ /**
7973
+ * Require complete user profile for provisioning (create) API actions.
7974
+ * @param {ApiCredential} [apiCredential]
7975
+ * @param {*} [options] Override http request option.
7976
+ * @throws {RequiredError}
7977
+ */
7978
+ emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
7979
+ /**
7980
+ * Require complete user profile for provisioning (create) API actions.
7981
+ * @param {number} id A unique integer value identifying this api credential.
7982
+ * @param {*} [options] Override http request option.
7983
+ * @throws {RequiredError}
7984
+ */
7985
+ emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
7986
+ /**
7987
+ * Require complete user profile for provisioning (create) API actions.
7988
+ * @param {number} [page] A page number within the paginated result set.
7989
+ * @param {*} [options] Override http request option.
7990
+ * @throws {RequiredError}
7991
+ */
7992
+ emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedApiCredentialList>>;
7993
+ /**
7994
+ * Require complete user profile for provisioning (create) API actions.
7995
+ * @param {number} id A unique integer value identifying this api credential.
7996
+ * @param {*} [options] Override http request option.
7997
+ * @throws {RequiredError}
7998
+ */
7999
+ emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
8000
+ /**
8001
+ * Require complete user profile for provisioning (create) API actions.
8002
+ * @param {DomainAdd} domainAdd
8003
+ * @param {*} [options] Override http request option.
8004
+ * @throws {RequiredError}
8005
+ */
8006
+ emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8007
+ /**
8008
+ * Require complete user profile for provisioning (create) API actions.
8009
+ * @param {number} domainPk
8010
+ * @param {InboundRoute} inboundRoute
8011
+ * @param {*} [options] Override http request option.
8012
+ * @throws {RequiredError}
8013
+ */
8014
+ emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
8015
+ /**
8016
+ * Require complete user profile for provisioning (create) API actions.
8017
+ * @param {number} domainPk
8018
+ * @param {number} [page] A page number within the paginated result set.
8019
+ * @param {*} [options] Override http request option.
8020
+ * @throws {RequiredError}
8021
+ */
8022
+ emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInboundRouteList>>;
8023
+ /**
8024
+ * Require complete user profile for provisioning (create) API actions.
8025
+ * @param {number} [page] A page number within the paginated result set.
8026
+ * @param {*} [options] Override http request option.
8027
+ * @throws {RequiredError}
8028
+ */
8029
+ emailDomainsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSendingDomainList>>;
8030
+ /**
8031
+ * Require complete user profile for provisioning (create) API actions.
8032
+ * @param {number} id A unique integer value identifying this sending domain.
8033
+ * @param {*} [options] Override http request option.
8034
+ * @throws {RequiredError}
8035
+ */
8036
+ emailDomainsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8037
+ /**
8038
+ * Require complete user profile for provisioning (create) API actions.
8039
+ * @param {number} id A unique integer value identifying this sending domain.
8040
+ * @param {SendingDomain} [sendingDomain]
8041
+ * @param {*} [options] Override http request option.
8042
+ * @throws {RequiredError}
8043
+ */
8044
+ emailDomainsRotateDkimCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8045
+ /**
8046
+ * Require complete user profile for provisioning (create) API actions.
8047
+ * @param {number} id A unique integer value identifying this sending domain.
8048
+ * @param {SendingDomain} [sendingDomain]
8049
+ * @param {*} [options] Override http request option.
8050
+ * @throws {RequiredError}
8051
+ */
8052
+ emailDomainsToggleInboundCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8053
+ /**
8054
+ * Require complete user profile for provisioning (create) API actions.
8055
+ * @param {number} id A unique integer value identifying this sending domain.
8056
+ * @param {SendingDomain} [sendingDomain]
8057
+ * @param {*} [options] Override http request option.
8058
+ * @throws {RequiredError}
8059
+ */
8060
+ emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8061
+ /**
8062
+ * Require complete user profile for provisioning (create) API actions.
8063
+ * @param {InboundRoute} inboundRoute
8064
+ * @param {*} [options] Override http request option.
8065
+ * @throws {RequiredError}
8066
+ */
8067
+ emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
8068
+ /**
8069
+ * Require complete user profile for provisioning (create) API actions.
8070
+ * @param {number} id A unique integer value identifying this inbound route.
8071
+ * @param {*} [options] Override http request option.
8072
+ * @throws {RequiredError}
8073
+ */
8074
+ emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8075
+ /**
8076
+ * Require complete user profile for provisioning (create) API actions.
8077
+ * @param {number} [page] A page number within the paginated result set.
8078
+ * @param {*} [options] Override http request option.
8079
+ * @throws {RequiredError}
8080
+ */
8081
+ emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedInboundRouteList>>;
8082
+ /**
8083
+ * Require complete user profile for provisioning (create) API actions.
8084
+ * @param {number} id A unique integer value identifying this inbound route.
8085
+ * @param {PatchedInboundRoute} [patchedInboundRoute]
8086
+ * @param {*} [options] Override http request option.
8087
+ * @throws {RequiredError}
8088
+ */
8089
+ emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
8090
+ /**
8091
+ * Require complete user profile for provisioning (create) API actions.
8092
+ * @param {number} id A unique integer value identifying this inbound route.
8093
+ * @param {*} [options] Override http request option.
8094
+ * @throws {RequiredError}
8095
+ */
8096
+ emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundRoute>>;
8097
+ /**
8098
+ * Require complete user profile for provisioning (create) API actions.
8099
+ * @param {string} messageId
8100
+ * @param {*} [options] Override http request option.
8101
+ * @throws {RequiredError}
8102
+ */
8103
+ emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8104
+ /**
8105
+ * Require complete user profile for provisioning (create) API actions.
8106
+ * @param {SandboxAddress} sandboxAddress
8107
+ * @param {*} [options] Override http request option.
8108
+ * @throws {RequiredError}
8109
+ */
8110
+ emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
8111
+ /**
8112
+ * Require complete user profile for provisioning (create) API actions.
8113
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8114
+ * @param {*} [options] Override http request option.
8115
+ * @throws {RequiredError}
8116
+ */
8117
+ emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8118
+ /**
8119
+ * Require complete user profile for provisioning (create) API actions.
8120
+ * @param {number} [page] A page number within the paginated result set.
8121
+ * @param {*} [options] Override http request option.
8122
+ * @throws {RequiredError}
8123
+ */
8124
+ emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSandboxAddressList>>;
8125
+ /**
8126
+ * Require complete user profile for provisioning (create) API actions.
8127
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8128
+ * @param {*} [options] Override http request option.
8129
+ * @throws {RequiredError}
8130
+ */
8131
+ emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
8132
+ /**
8133
+ *
8134
+ * @param {*} [options] Override http request option.
8135
+ * @throws {RequiredError}
8136
+ */
8137
+ emailSendCreate(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8138
+ /**
8139
+ * Require complete user profile for provisioning (create) API actions.
8140
+ * @param {number} servicePk
8141
+ * @param {ApiCredential} [apiCredential]
8142
+ * @param {*} [options] Override http request option.
8143
+ * @throws {RequiredError}
8144
+ */
8145
+ emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiCredential>>;
8146
+ /**
8147
+ * Require complete user profile for provisioning (create) API actions.
8148
+ * @param {number} servicePk
8149
+ * @param {number} [page] A page number within the paginated result set.
8150
+ * @param {*} [options] Override http request option.
8151
+ * @throws {RequiredError}
8152
+ */
8153
+ emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedApiCredentialList>>;
8154
+ /**
8155
+ * Require complete user profile for provisioning (create) API actions.
8156
+ * @param {number} id A unique integer value identifying this email service.
8157
+ * @param {*} [options] Override http request option.
8158
+ * @throws {RequiredError}
8159
+ */
8160
+ emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8161
+ /**
8162
+ * Require complete user profile for provisioning (create) API actions.
8163
+ * @param {number} id A unique integer value identifying this email service.
8164
+ * @param {PatchedSubscribe} [patchedSubscribe]
8165
+ * @param {*} [options] Override http request option.
8166
+ * @throws {RequiredError}
8167
+ */
8168
+ emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8169
+ /**
8170
+ * Require complete user profile for provisioning (create) API actions.
8171
+ * @param {Subscribe} subscribe
8172
+ * @param {*} [options] Override http request option.
8173
+ * @throws {RequiredError}
8174
+ */
8175
+ emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8176
+ /**
8177
+ * Require complete user profile for provisioning (create) API actions.
8178
+ * @param {number} id A unique integer value identifying this email service.
8179
+ * @param {*} [options] Override http request option.
8180
+ * @throws {RequiredError}
8181
+ */
8182
+ emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8183
+ /**
8184
+ * Require complete user profile for provisioning (create) API actions.
8185
+ * @param {number} id A unique integer value identifying this email service.
8186
+ * @param {*} [options] Override http request option.
8187
+ * @throws {RequiredError}
8188
+ */
8189
+ emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8190
+ /**
8191
+ * Require complete user profile for provisioning (create) API actions.
8192
+ * @param {number} id A unique integer value identifying this email service.
8193
+ * @param {*} [options] Override http request option.
8194
+ * @throws {RequiredError}
8195
+ */
8196
+ emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8197
+ /**
8198
+ * Require complete user profile for provisioning (create) API actions.
8199
+ * @param {number} servicePk
8200
+ * @param {DomainAdd} domainAdd
8201
+ * @param {*} [options] Override http request option.
8202
+ * @throws {RequiredError}
8203
+ */
8204
+ emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SendingDomain>>;
8205
+ /**
8206
+ * Require complete user profile for provisioning (create) API actions.
8207
+ * @param {number} servicePk
8208
+ * @param {number} [page] A page number within the paginated result set.
8209
+ * @param {*} [options] Override http request option.
8210
+ * @throws {RequiredError}
8211
+ */
8212
+ emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSendingDomainList>>;
8213
+ /**
8214
+ * Require complete user profile for provisioning (create) API actions.
8215
+ * @param {number} [page] A page number within the paginated result set.
8216
+ * @param {*} [options] Override http request option.
8217
+ * @throws {RequiredError}
8218
+ */
8219
+ emailServicesList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedEmailServiceList>>;
8220
+ /**
8221
+ * Require complete user profile for provisioning (create) API actions.
8222
+ * @param {number} servicePk
8223
+ * @param {*} [options] Override http request option.
8224
+ * @throws {RequiredError}
8225
+ */
8226
+ emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8227
+ /**
8228
+ * Require complete user profile for provisioning (create) API actions.
8229
+ * @param {number} id A unique integer value identifying this email service.
8230
+ * @param {PatchedEmailService} [patchedEmailService]
8231
+ * @param {*} [options] Override http request option.
8232
+ * @throws {RequiredError}
8233
+ */
8234
+ emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8235
+ /**
8236
+ * Require complete user profile for provisioning (create) API actions.
8237
+ * @param {number} id A unique integer value identifying this email service.
8238
+ * @param {*} [options] Override http request option.
8239
+ * @throws {RequiredError}
8240
+ */
8241
+ emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8242
+ /**
8243
+ * Require complete user profile for provisioning (create) API actions.
8244
+ * @param {number} id A unique integer value identifying this email service.
8245
+ * @param {*} [options] Override http request option.
8246
+ * @throws {RequiredError}
8247
+ */
8248
+ emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EmailService>>;
8249
+ /**
8250
+ * Require complete user profile for provisioning (create) API actions.
8251
+ * @param {number} servicePk
8252
+ * @param {SandboxAddress} sandboxAddress
8253
+ * @param {*} [options] Override http request option.
8254
+ * @throws {RequiredError}
8255
+ */
8256
+ emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SandboxAddress>>;
8257
+ /**
8258
+ * Require complete user profile for provisioning (create) API actions.
8259
+ * @param {number} servicePk
8260
+ * @param {number} [page] A page number within the paginated result set.
8261
+ * @param {*} [options] Override http request option.
8262
+ * @throws {RequiredError}
8263
+ */
8264
+ emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSandboxAddressList>>;
8265
+ /**
8266
+ * Require complete user profile for provisioning (create) API actions.
8267
+ * @param {number} servicePk
8268
+ * @param {SmtpCredential} [smtpCredential]
8269
+ * @param {*} [options] Override http request option.
8270
+ * @throws {RequiredError}
8271
+ */
8272
+ emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
8273
+ /**
8274
+ * Require complete user profile for provisioning (create) API actions.
8275
+ * @param {number} servicePk
8276
+ * @param {number} [page] A page number within the paginated result set.
8277
+ * @param {*} [options] Override http request option.
8278
+ * @throws {RequiredError}
8279
+ */
8280
+ emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSmtpCredentialList>>;
8281
+ /**
8282
+ * Require complete user profile for provisioning (create) API actions.
8283
+ * @param {number} servicePk
8284
+ * @param {*} [options] Override http request option.
8285
+ * @throws {RequiredError}
8286
+ */
8287
+ emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8288
+ /**
8289
+ * Require complete user profile for provisioning (create) API actions.
8290
+ * @param {number} servicePk
8291
+ * @param {SuppressionEntry} [suppressionEntry]
8292
+ * @param {*} [options] Override http request option.
8293
+ * @throws {RequiredError}
8294
+ */
8295
+ emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
8296
+ /**
8297
+ * Require complete user profile for provisioning (create) API actions.
8298
+ * @param {number} servicePk
8299
+ * @param {number} [page] A page number within the paginated result set.
8300
+ * @param {*} [options] Override http request option.
8301
+ * @throws {RequiredError}
8302
+ */
8303
+ emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSuppressionEntryList>>;
8304
+ /**
8305
+ * Require complete user profile for provisioning (create) API actions.
8306
+ * @param {SmtpCredential} [smtpCredential]
8307
+ * @param {*} [options] Override http request option.
8308
+ * @throws {RequiredError}
8309
+ */
8310
+ emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
8311
+ /**
8312
+ * Require complete user profile for provisioning (create) API actions.
8313
+ * @param {number} id A unique integer value identifying this smtp credential.
8314
+ * @param {*} [options] Override http request option.
8315
+ * @throws {RequiredError}
8316
+ */
8317
+ emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8318
+ /**
8319
+ * Require complete user profile for provisioning (create) API actions.
8320
+ * @param {number} [page] A page number within the paginated result set.
8321
+ * @param {*} [options] Override http request option.
8322
+ * @throws {RequiredError}
8323
+ */
8324
+ emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSmtpCredentialList>>;
8325
+ /**
8326
+ * Require complete user profile for provisioning (create) API actions.
8327
+ * @param {number} id A unique integer value identifying this smtp credential.
8328
+ * @param {*} [options] Override http request option.
8329
+ * @throws {RequiredError}
8330
+ */
8331
+ emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SmtpCredential>>;
8332
+ /**
8333
+ * Require complete user profile for provisioning (create) API actions.
8334
+ * @param {SuppressionEntry} [suppressionEntry]
8335
+ * @param {*} [options] Override http request option.
8336
+ * @throws {RequiredError}
8337
+ */
8338
+ emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
8339
+ /**
8340
+ * Require complete user profile for provisioning (create) API actions.
8341
+ * @param {number} id A unique integer value identifying this suppression entry.
8342
+ * @param {*} [options] Override http request option.
8343
+ * @throws {RequiredError}
8344
+ */
8345
+ emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
8346
+ /**
8347
+ * Require complete user profile for provisioning (create) API actions.
8348
+ * @param {number} [page] A page number within the paginated result set.
8349
+ * @param {*} [options] Override http request option.
8350
+ * @throws {RequiredError}
8351
+ */
8352
+ emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedSuppressionEntryList>>;
8353
+ /**
8354
+ * Require complete user profile for provisioning (create) API actions.
8355
+ * @param {number} id A unique integer value identifying this suppression entry.
8356
+ * @param {*} [options] Override http request option.
8357
+ * @throws {RequiredError}
8358
+ */
8359
+ emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuppressionEntry>>;
8360
+ };
8361
+ /**
8362
+ * EmailApi - factory interface
8363
+ */
8364
+ export declare const EmailApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
8365
+ /**
8366
+ * Require complete user profile for provisioning (create) API actions.
8367
+ * @param {ApiCredential} [apiCredential]
8368
+ * @param {*} [options] Override http request option.
8369
+ * @throws {RequiredError}
8370
+ */
8371
+ emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
8372
+ /**
8373
+ * Require complete user profile for provisioning (create) API actions.
8374
+ * @param {number} id A unique integer value identifying this api credential.
8375
+ * @param {*} [options] Override http request option.
8376
+ * @throws {RequiredError}
8377
+ */
8378
+ emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8379
+ /**
8380
+ * Require complete user profile for provisioning (create) API actions.
8381
+ * @param {number} [page] A page number within the paginated result set.
8382
+ * @param {*} [options] Override http request option.
8383
+ * @throws {RequiredError}
8384
+ */
8385
+ emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedApiCredentialList>;
8386
+ /**
8387
+ * Require complete user profile for provisioning (create) API actions.
8388
+ * @param {number} id A unique integer value identifying this api credential.
8389
+ * @param {*} [options] Override http request option.
8390
+ * @throws {RequiredError}
8391
+ */
8392
+ emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
8393
+ /**
8394
+ * Require complete user profile for provisioning (create) API actions.
8395
+ * @param {DomainAdd} domainAdd
8396
+ * @param {*} [options] Override http request option.
8397
+ * @throws {RequiredError}
8398
+ */
8399
+ emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8400
+ /**
8401
+ * Require complete user profile for provisioning (create) API actions.
8402
+ * @param {number} domainPk
8403
+ * @param {InboundRoute} inboundRoute
8404
+ * @param {*} [options] Override http request option.
8405
+ * @throws {RequiredError}
8406
+ */
8407
+ emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
8408
+ /**
8409
+ * Require complete user profile for provisioning (create) API actions.
8410
+ * @param {number} domainPk
8411
+ * @param {number} [page] A page number within the paginated result set.
8412
+ * @param {*} [options] Override http request option.
8413
+ * @throws {RequiredError}
8414
+ */
8415
+ emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedInboundRouteList>;
8416
+ /**
8417
+ * Require complete user profile for provisioning (create) API actions.
8418
+ * @param {number} [page] A page number within the paginated result set.
8419
+ * @param {*} [options] Override http request option.
8420
+ * @throws {RequiredError}
8421
+ */
8422
+ emailDomainsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSendingDomainList>;
8423
+ /**
8424
+ * Require complete user profile for provisioning (create) API actions.
8425
+ * @param {number} id A unique integer value identifying this sending domain.
8426
+ * @param {*} [options] Override http request option.
8427
+ * @throws {RequiredError}
8428
+ */
8429
+ emailDomainsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8430
+ /**
8431
+ * Require complete user profile for provisioning (create) API actions.
8432
+ * @param {number} id A unique integer value identifying this sending domain.
8433
+ * @param {SendingDomain} [sendingDomain]
8434
+ * @param {*} [options] Override http request option.
8435
+ * @throws {RequiredError}
8436
+ */
8437
+ emailDomainsRotateDkimCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8438
+ /**
8439
+ * Require complete user profile for provisioning (create) API actions.
8440
+ * @param {number} id A unique integer value identifying this sending domain.
8441
+ * @param {SendingDomain} [sendingDomain]
8442
+ * @param {*} [options] Override http request option.
8443
+ * @throws {RequiredError}
8444
+ */
8445
+ emailDomainsToggleInboundCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8446
+ /**
8447
+ * Require complete user profile for provisioning (create) API actions.
8448
+ * @param {number} id A unique integer value identifying this sending domain.
8449
+ * @param {SendingDomain} [sendingDomain]
8450
+ * @param {*} [options] Override http request option.
8451
+ * @throws {RequiredError}
8452
+ */
8453
+ emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8454
+ /**
8455
+ * Require complete user profile for provisioning (create) API actions.
8456
+ * @param {InboundRoute} inboundRoute
8457
+ * @param {*} [options] Override http request option.
8458
+ * @throws {RequiredError}
8459
+ */
8460
+ emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
8461
+ /**
8462
+ * Require complete user profile for provisioning (create) API actions.
8463
+ * @param {number} id A unique integer value identifying this inbound route.
8464
+ * @param {*} [options] Override http request option.
8465
+ * @throws {RequiredError}
8466
+ */
8467
+ emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8468
+ /**
8469
+ * Require complete user profile for provisioning (create) API actions.
8470
+ * @param {number} [page] A page number within the paginated result set.
8471
+ * @param {*} [options] Override http request option.
8472
+ * @throws {RequiredError}
8473
+ */
8474
+ emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedInboundRouteList>;
8475
+ /**
8476
+ * Require complete user profile for provisioning (create) API actions.
8477
+ * @param {number} id A unique integer value identifying this inbound route.
8478
+ * @param {PatchedInboundRoute} [patchedInboundRoute]
8479
+ * @param {*} [options] Override http request option.
8480
+ * @throws {RequiredError}
8481
+ */
8482
+ emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
8483
+ /**
8484
+ * Require complete user profile for provisioning (create) API actions.
8485
+ * @param {number} id A unique integer value identifying this inbound route.
8486
+ * @param {*} [options] Override http request option.
8487
+ * @throws {RequiredError}
8488
+ */
8489
+ emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<InboundRoute>;
8490
+ /**
8491
+ * Require complete user profile for provisioning (create) API actions.
8492
+ * @param {string} messageId
8493
+ * @param {*} [options] Override http request option.
8494
+ * @throws {RequiredError}
8495
+ */
8496
+ emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8497
+ /**
8498
+ * Require complete user profile for provisioning (create) API actions.
8499
+ * @param {SandboxAddress} sandboxAddress
8500
+ * @param {*} [options] Override http request option.
8501
+ * @throws {RequiredError}
8502
+ */
8503
+ emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
8504
+ /**
8505
+ * Require complete user profile for provisioning (create) API actions.
8506
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8507
+ * @param {*} [options] Override http request option.
8508
+ * @throws {RequiredError}
8509
+ */
8510
+ emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8511
+ /**
8512
+ * Require complete user profile for provisioning (create) API actions.
8513
+ * @param {number} [page] A page number within the paginated result set.
8514
+ * @param {*} [options] Override http request option.
8515
+ * @throws {RequiredError}
8516
+ */
8517
+ emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSandboxAddressList>;
8518
+ /**
8519
+ * Require complete user profile for provisioning (create) API actions.
8520
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8521
+ * @param {*} [options] Override http request option.
8522
+ * @throws {RequiredError}
8523
+ */
8524
+ emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
8525
+ /**
8526
+ *
8527
+ * @param {*} [options] Override http request option.
8528
+ * @throws {RequiredError}
8529
+ */
8530
+ emailSendCreate(options?: RawAxiosRequestConfig): AxiosPromise<void>;
8531
+ /**
8532
+ * Require complete user profile for provisioning (create) API actions.
8533
+ * @param {number} servicePk
8534
+ * @param {ApiCredential} [apiCredential]
8535
+ * @param {*} [options] Override http request option.
8536
+ * @throws {RequiredError}
8537
+ */
8538
+ emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): AxiosPromise<ApiCredential>;
8539
+ /**
8540
+ * Require complete user profile for provisioning (create) API actions.
8541
+ * @param {number} servicePk
8542
+ * @param {number} [page] A page number within the paginated result set.
8543
+ * @param {*} [options] Override http request option.
8544
+ * @throws {RequiredError}
8545
+ */
8546
+ emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedApiCredentialList>;
8547
+ /**
8548
+ * Require complete user profile for provisioning (create) API actions.
8549
+ * @param {number} id A unique integer value identifying this email service.
8550
+ * @param {*} [options] Override http request option.
8551
+ * @throws {RequiredError}
8552
+ */
8553
+ emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8554
+ /**
8555
+ * Require complete user profile for provisioning (create) API actions.
8556
+ * @param {number} id A unique integer value identifying this email service.
8557
+ * @param {PatchedSubscribe} [patchedSubscribe]
8558
+ * @param {*} [options] Override http request option.
8559
+ * @throws {RequiredError}
8560
+ */
8561
+ emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8562
+ /**
8563
+ * Require complete user profile for provisioning (create) API actions.
8564
+ * @param {Subscribe} subscribe
8565
+ * @param {*} [options] Override http request option.
8566
+ * @throws {RequiredError}
8567
+ */
8568
+ emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8569
+ /**
8570
+ * Require complete user profile for provisioning (create) API actions.
8571
+ * @param {number} id A unique integer value identifying this email service.
8572
+ * @param {*} [options] Override http request option.
8573
+ * @throws {RequiredError}
8574
+ */
8575
+ emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8576
+ /**
8577
+ * Require complete user profile for provisioning (create) API actions.
8578
+ * @param {number} id A unique integer value identifying this email service.
8579
+ * @param {*} [options] Override http request option.
8580
+ * @throws {RequiredError}
8581
+ */
8582
+ emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8583
+ /**
8584
+ * Require complete user profile for provisioning (create) API actions.
8585
+ * @param {number} id A unique integer value identifying this email service.
8586
+ * @param {*} [options] Override http request option.
8587
+ * @throws {RequiredError}
8588
+ */
8589
+ emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8590
+ /**
8591
+ * Require complete user profile for provisioning (create) API actions.
8592
+ * @param {number} servicePk
8593
+ * @param {DomainAdd} domainAdd
8594
+ * @param {*} [options] Override http request option.
8595
+ * @throws {RequiredError}
8596
+ */
8597
+ emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): AxiosPromise<SendingDomain>;
8598
+ /**
8599
+ * Require complete user profile for provisioning (create) API actions.
8600
+ * @param {number} servicePk
8601
+ * @param {number} [page] A page number within the paginated result set.
8602
+ * @param {*} [options] Override http request option.
8603
+ * @throws {RequiredError}
8604
+ */
8605
+ emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSendingDomainList>;
8606
+ /**
8607
+ * Require complete user profile for provisioning (create) API actions.
8608
+ * @param {number} [page] A page number within the paginated result set.
8609
+ * @param {*} [options] Override http request option.
8610
+ * @throws {RequiredError}
8611
+ */
8612
+ emailServicesList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedEmailServiceList>;
8613
+ /**
8614
+ * Require complete user profile for provisioning (create) API actions.
8615
+ * @param {number} servicePk
8616
+ * @param {*} [options] Override http request option.
8617
+ * @throws {RequiredError}
8618
+ */
8619
+ emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8620
+ /**
8621
+ * Require complete user profile for provisioning (create) API actions.
8622
+ * @param {number} id A unique integer value identifying this email service.
8623
+ * @param {PatchedEmailService} [patchedEmailService]
8624
+ * @param {*} [options] Override http request option.
8625
+ * @throws {RequiredError}
8626
+ */
8627
+ emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8628
+ /**
8629
+ * Require complete user profile for provisioning (create) API actions.
8630
+ * @param {number} id A unique integer value identifying this email service.
8631
+ * @param {*} [options] Override http request option.
8632
+ * @throws {RequiredError}
8633
+ */
8634
+ emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8635
+ /**
8636
+ * Require complete user profile for provisioning (create) API actions.
8637
+ * @param {number} id A unique integer value identifying this email service.
8638
+ * @param {*} [options] Override http request option.
8639
+ * @throws {RequiredError}
8640
+ */
8641
+ emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<EmailService>;
8642
+ /**
8643
+ * Require complete user profile for provisioning (create) API actions.
8644
+ * @param {number} servicePk
8645
+ * @param {SandboxAddress} sandboxAddress
8646
+ * @param {*} [options] Override http request option.
8647
+ * @throws {RequiredError}
8648
+ */
8649
+ emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): AxiosPromise<SandboxAddress>;
8650
+ /**
8651
+ * Require complete user profile for provisioning (create) API actions.
8652
+ * @param {number} servicePk
8653
+ * @param {number} [page] A page number within the paginated result set.
8654
+ * @param {*} [options] Override http request option.
8655
+ * @throws {RequiredError}
8656
+ */
8657
+ emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSandboxAddressList>;
8658
+ /**
8659
+ * Require complete user profile for provisioning (create) API actions.
8660
+ * @param {number} servicePk
8661
+ * @param {SmtpCredential} [smtpCredential]
8662
+ * @param {*} [options] Override http request option.
8663
+ * @throws {RequiredError}
8664
+ */
8665
+ emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
8666
+ /**
8667
+ * Require complete user profile for provisioning (create) API actions.
8668
+ * @param {number} servicePk
8669
+ * @param {number} [page] A page number within the paginated result set.
8670
+ * @param {*} [options] Override http request option.
8671
+ * @throws {RequiredError}
8672
+ */
8673
+ emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSmtpCredentialList>;
8674
+ /**
8675
+ * Require complete user profile for provisioning (create) API actions.
8676
+ * @param {number} servicePk
8677
+ * @param {*} [options] Override http request option.
8678
+ * @throws {RequiredError}
8679
+ */
8680
+ emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8681
+ /**
8682
+ * Require complete user profile for provisioning (create) API actions.
8683
+ * @param {number} servicePk
8684
+ * @param {SuppressionEntry} [suppressionEntry]
8685
+ * @param {*} [options] Override http request option.
8686
+ * @throws {RequiredError}
8687
+ */
8688
+ emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
8689
+ /**
8690
+ * Require complete user profile for provisioning (create) API actions.
8691
+ * @param {number} servicePk
8692
+ * @param {number} [page] A page number within the paginated result set.
8693
+ * @param {*} [options] Override http request option.
8694
+ * @throws {RequiredError}
8695
+ */
8696
+ emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSuppressionEntryList>;
8697
+ /**
8698
+ * Require complete user profile for provisioning (create) API actions.
8699
+ * @param {SmtpCredential} [smtpCredential]
8700
+ * @param {*} [options] Override http request option.
8701
+ * @throws {RequiredError}
8702
+ */
8703
+ emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
8704
+ /**
8705
+ * Require complete user profile for provisioning (create) API actions.
8706
+ * @param {number} id A unique integer value identifying this smtp credential.
8707
+ * @param {*} [options] Override http request option.
8708
+ * @throws {RequiredError}
8709
+ */
8710
+ emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8711
+ /**
8712
+ * Require complete user profile for provisioning (create) API actions.
8713
+ * @param {number} [page] A page number within the paginated result set.
8714
+ * @param {*} [options] Override http request option.
8715
+ * @throws {RequiredError}
8716
+ */
8717
+ emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSmtpCredentialList>;
8718
+ /**
8719
+ * Require complete user profile for provisioning (create) API actions.
8720
+ * @param {number} id A unique integer value identifying this smtp credential.
8721
+ * @param {*} [options] Override http request option.
8722
+ * @throws {RequiredError}
8723
+ */
8724
+ emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SmtpCredential>;
8725
+ /**
8726
+ * Require complete user profile for provisioning (create) API actions.
8727
+ * @param {SuppressionEntry} [suppressionEntry]
8728
+ * @param {*} [options] Override http request option.
8729
+ * @throws {RequiredError}
8730
+ */
8731
+ emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
8732
+ /**
8733
+ * Require complete user profile for provisioning (create) API actions.
8734
+ * @param {number} id A unique integer value identifying this suppression entry.
8735
+ * @param {*} [options] Override http request option.
8736
+ * @throws {RequiredError}
8737
+ */
8738
+ emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
8739
+ /**
8740
+ * Require complete user profile for provisioning (create) API actions.
8741
+ * @param {number} [page] A page number within the paginated result set.
8742
+ * @param {*} [options] Override http request option.
8743
+ * @throws {RequiredError}
8744
+ */
8745
+ emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): AxiosPromise<PaginatedSuppressionEntryList>;
8746
+ /**
8747
+ * Require complete user profile for provisioning (create) API actions.
8748
+ * @param {number} id A unique integer value identifying this suppression entry.
8749
+ * @param {*} [options] Override http request option.
8750
+ * @throws {RequiredError}
8751
+ */
8752
+ emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SuppressionEntry>;
8753
+ };
8754
+ /**
8755
+ * EmailApi - object-oriented interface
8756
+ */
8757
+ export declare class EmailApi extends BaseAPI {
8758
+ /**
8759
+ * Require complete user profile for provisioning (create) API actions.
8760
+ * @param {ApiCredential} [apiCredential]
8761
+ * @param {*} [options] Override http request option.
8762
+ * @throws {RequiredError}
8763
+ */
8764
+ emailApiCredentialsCreate(apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
8765
+ /**
8766
+ * Require complete user profile for provisioning (create) API actions.
8767
+ * @param {number} id A unique integer value identifying this api credential.
8768
+ * @param {*} [options] Override http request option.
8769
+ * @throws {RequiredError}
8770
+ */
8771
+ emailApiCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8772
+ /**
8773
+ * Require complete user profile for provisioning (create) API actions.
8774
+ * @param {number} [page] A page number within the paginated result set.
8775
+ * @param {*} [options] Override http request option.
8776
+ * @throws {RequiredError}
8777
+ */
8778
+ emailApiCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedApiCredentialList, any, {}>>;
8779
+ /**
8780
+ * Require complete user profile for provisioning (create) API actions.
8781
+ * @param {number} id A unique integer value identifying this api credential.
8782
+ * @param {*} [options] Override http request option.
8783
+ * @throws {RequiredError}
8784
+ */
8785
+ emailApiCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
8786
+ /**
8787
+ * Require complete user profile for provisioning (create) API actions.
8788
+ * @param {DomainAdd} domainAdd
8789
+ * @param {*} [options] Override http request option.
8790
+ * @throws {RequiredError}
8791
+ */
8792
+ emailDomainsCreate(domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8793
+ /**
8794
+ * Require complete user profile for provisioning (create) API actions.
8795
+ * @param {number} domainPk
8796
+ * @param {InboundRoute} inboundRoute
8797
+ * @param {*} [options] Override http request option.
8798
+ * @throws {RequiredError}
8799
+ */
8800
+ emailDomainsInboundRoutesCreate(domainPk: number, inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
8801
+ /**
8802
+ * Require complete user profile for provisioning (create) API actions.
8803
+ * @param {number} domainPk
8804
+ * @param {number} [page] A page number within the paginated result set.
8805
+ * @param {*} [options] Override http request option.
8806
+ * @throws {RequiredError}
8807
+ */
8808
+ emailDomainsInboundRoutesList(domainPk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInboundRouteList, any, {}>>;
8809
+ /**
8810
+ * Require complete user profile for provisioning (create) API actions.
8811
+ * @param {number} [page] A page number within the paginated result set.
8812
+ * @param {*} [options] Override http request option.
8813
+ * @throws {RequiredError}
8814
+ */
8815
+ emailDomainsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSendingDomainList, any, {}>>;
8816
+ /**
8817
+ * Require complete user profile for provisioning (create) API actions.
8818
+ * @param {number} id A unique integer value identifying this sending domain.
8819
+ * @param {*} [options] Override http request option.
8820
+ * @throws {RequiredError}
8821
+ */
8822
+ emailDomainsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8823
+ /**
8824
+ * Require complete user profile for provisioning (create) API actions.
8825
+ * @param {number} id A unique integer value identifying this sending domain.
8826
+ * @param {SendingDomain} [sendingDomain]
8827
+ * @param {*} [options] Override http request option.
8828
+ * @throws {RequiredError}
8829
+ */
8830
+ emailDomainsRotateDkimCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8831
+ /**
8832
+ * Require complete user profile for provisioning (create) API actions.
8833
+ * @param {number} id A unique integer value identifying this sending domain.
8834
+ * @param {SendingDomain} [sendingDomain]
8835
+ * @param {*} [options] Override http request option.
8836
+ * @throws {RequiredError}
8837
+ */
8838
+ emailDomainsToggleInboundCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8839
+ /**
8840
+ * Require complete user profile for provisioning (create) API actions.
8841
+ * @param {number} id A unique integer value identifying this sending domain.
8842
+ * @param {SendingDomain} [sendingDomain]
8843
+ * @param {*} [options] Override http request option.
8844
+ * @throws {RequiredError}
8845
+ */
8846
+ emailDomainsVerifyCreate(id: number, sendingDomain?: SendingDomain, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8847
+ /**
8848
+ * Require complete user profile for provisioning (create) API actions.
8849
+ * @param {InboundRoute} inboundRoute
8850
+ * @param {*} [options] Override http request option.
8851
+ * @throws {RequiredError}
8852
+ */
8853
+ emailInboundRoutesCreate(inboundRoute: InboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
8854
+ /**
8855
+ * Require complete user profile for provisioning (create) API actions.
8856
+ * @param {number} id A unique integer value identifying this inbound route.
8857
+ * @param {*} [options] Override http request option.
8858
+ * @throws {RequiredError}
8859
+ */
8860
+ emailInboundRoutesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8861
+ /**
8862
+ * Require complete user profile for provisioning (create) API actions.
8863
+ * @param {number} [page] A page number within the paginated result set.
8864
+ * @param {*} [options] Override http request option.
8865
+ * @throws {RequiredError}
8866
+ */
8867
+ emailInboundRoutesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedInboundRouteList, any, {}>>;
8868
+ /**
8869
+ * Require complete user profile for provisioning (create) API actions.
8870
+ * @param {number} id A unique integer value identifying this inbound route.
8871
+ * @param {PatchedInboundRoute} [patchedInboundRoute]
8872
+ * @param {*} [options] Override http request option.
8873
+ * @throws {RequiredError}
8874
+ */
8875
+ emailInboundRoutesPartialUpdate(id: number, patchedInboundRoute?: PatchedInboundRoute, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
8876
+ /**
8877
+ * Require complete user profile for provisioning (create) API actions.
8878
+ * @param {number} id A unique integer value identifying this inbound route.
8879
+ * @param {*} [options] Override http request option.
8880
+ * @throws {RequiredError}
8881
+ */
8882
+ emailInboundRoutesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InboundRoute, any, {}>>;
8883
+ /**
8884
+ * Require complete user profile for provisioning (create) API actions.
8885
+ * @param {string} messageId
8886
+ * @param {*} [options] Override http request option.
8887
+ * @throws {RequiredError}
8888
+ */
8889
+ emailMessagesRetrieve(messageId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8890
+ /**
8891
+ * Require complete user profile for provisioning (create) API actions.
8892
+ * @param {SandboxAddress} sandboxAddress
8893
+ * @param {*} [options] Override http request option.
8894
+ * @throws {RequiredError}
8895
+ */
8896
+ emailSandboxAddressesCreate(sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
8897
+ /**
8898
+ * Require complete user profile for provisioning (create) API actions.
8899
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8900
+ * @param {*} [options] Override http request option.
8901
+ * @throws {RequiredError}
8902
+ */
8903
+ emailSandboxAddressesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8904
+ /**
8905
+ * Require complete user profile for provisioning (create) API actions.
8906
+ * @param {number} [page] A page number within the paginated result set.
8907
+ * @param {*} [options] Override http request option.
8908
+ * @throws {RequiredError}
8909
+ */
8910
+ emailSandboxAddressesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSandboxAddressList, any, {}>>;
8911
+ /**
8912
+ * Require complete user profile for provisioning (create) API actions.
8913
+ * @param {number} id A unique integer value identifying this sandbox verified address.
8914
+ * @param {*} [options] Override http request option.
8915
+ * @throws {RequiredError}
8916
+ */
8917
+ emailSandboxAddressesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
8918
+ /**
8919
+ *
8920
+ * @param {*} [options] Override http request option.
8921
+ * @throws {RequiredError}
8922
+ */
8923
+ emailSendCreate(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8924
+ /**
8925
+ * Require complete user profile for provisioning (create) API actions.
8926
+ * @param {number} servicePk
8927
+ * @param {ApiCredential} [apiCredential]
8928
+ * @param {*} [options] Override http request option.
8929
+ * @throws {RequiredError}
8930
+ */
8931
+ emailServicesApiCredentialsCreate(servicePk: number, apiCredential?: ApiCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ApiCredential, any, {}>>;
8932
+ /**
8933
+ * Require complete user profile for provisioning (create) API actions.
8934
+ * @param {number} servicePk
8935
+ * @param {number} [page] A page number within the paginated result set.
8936
+ * @param {*} [options] Override http request option.
8937
+ * @throws {RequiredError}
8938
+ */
8939
+ emailServicesApiCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedApiCredentialList, any, {}>>;
8940
+ /**
8941
+ * Require complete user profile for provisioning (create) API actions.
8942
+ * @param {number} id A unique integer value identifying this email service.
8943
+ * @param {*} [options] Override http request option.
8944
+ * @throws {RequiredError}
8945
+ */
8946
+ emailServicesCancelCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
8947
+ /**
8948
+ * Require complete user profile for provisioning (create) API actions.
8949
+ * @param {number} id A unique integer value identifying this email service.
8950
+ * @param {PatchedSubscribe} [patchedSubscribe]
8951
+ * @param {*} [options] Override http request option.
8952
+ * @throws {RequiredError}
8953
+ */
8954
+ emailServicesChangeTierPartialUpdate(id: number, patchedSubscribe?: PatchedSubscribe, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
8955
+ /**
8956
+ * Require complete user profile for provisioning (create) API actions.
8957
+ * @param {Subscribe} subscribe
8958
+ * @param {*} [options] Override http request option.
8959
+ * @throws {RequiredError}
8960
+ */
8961
+ emailServicesCreate(subscribe: Subscribe, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
8962
+ /**
8963
+ * Require complete user profile for provisioning (create) API actions.
8964
+ * @param {number} id A unique integer value identifying this email service.
8965
+ * @param {*} [options] Override http request option.
8966
+ * @throws {RequiredError}
8967
+ */
8968
+ emailServicesDedicatedIpCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
8969
+ /**
8970
+ * Require complete user profile for provisioning (create) API actions.
8971
+ * @param {number} id A unique integer value identifying this email service.
8972
+ * @param {*} [options] Override http request option.
8973
+ * @throws {RequiredError}
8974
+ */
8975
+ emailServicesDedicatedIpDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8976
+ /**
8977
+ * Require complete user profile for provisioning (create) API actions.
8978
+ * @param {number} id A unique integer value identifying this email service.
8979
+ * @param {*} [options] Override http request option.
8980
+ * @throws {RequiredError}
8981
+ */
8982
+ emailServicesDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
8983
+ /**
8984
+ * Require complete user profile for provisioning (create) API actions.
8985
+ * @param {number} servicePk
8986
+ * @param {DomainAdd} domainAdd
8987
+ * @param {*} [options] Override http request option.
8988
+ * @throws {RequiredError}
8989
+ */
8990
+ emailServicesDomainsCreate(servicePk: number, domainAdd: DomainAdd, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SendingDomain, any, {}>>;
8991
+ /**
8992
+ * Require complete user profile for provisioning (create) API actions.
8993
+ * @param {number} servicePk
8994
+ * @param {number} [page] A page number within the paginated result set.
8995
+ * @param {*} [options] Override http request option.
8996
+ * @throws {RequiredError}
8997
+ */
8998
+ emailServicesDomainsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSendingDomainList, any, {}>>;
8999
+ /**
9000
+ * Require complete user profile for provisioning (create) API actions.
9001
+ * @param {number} [page] A page number within the paginated result set.
9002
+ * @param {*} [options] Override http request option.
9003
+ * @throws {RequiredError}
9004
+ */
9005
+ emailServicesList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedEmailServiceList, any, {}>>;
9006
+ /**
9007
+ * Require complete user profile for provisioning (create) API actions.
9008
+ * @param {number} servicePk
9009
+ * @param {*} [options] Override http request option.
9010
+ * @throws {RequiredError}
9011
+ */
9012
+ emailServicesMessagesRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9013
+ /**
9014
+ * Require complete user profile for provisioning (create) API actions.
9015
+ * @param {number} id A unique integer value identifying this email service.
9016
+ * @param {PatchedEmailService} [patchedEmailService]
9017
+ * @param {*} [options] Override http request option.
9018
+ * @throws {RequiredError}
9019
+ */
9020
+ emailServicesPartialUpdate(id: number, patchedEmailService?: PatchedEmailService, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
9021
+ /**
9022
+ * Require complete user profile for provisioning (create) API actions.
9023
+ * @param {number} id A unique integer value identifying this email service.
9024
+ * @param {*} [options] Override http request option.
9025
+ * @throws {RequiredError}
9026
+ */
9027
+ emailServicesRestoreCreate(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
9028
+ /**
9029
+ * Require complete user profile for provisioning (create) API actions.
9030
+ * @param {number} id A unique integer value identifying this email service.
9031
+ * @param {*} [options] Override http request option.
9032
+ * @throws {RequiredError}
9033
+ */
9034
+ emailServicesRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EmailService, any, {}>>;
9035
+ /**
9036
+ * Require complete user profile for provisioning (create) API actions.
9037
+ * @param {number} servicePk
9038
+ * @param {SandboxAddress} sandboxAddress
9039
+ * @param {*} [options] Override http request option.
9040
+ * @throws {RequiredError}
9041
+ */
9042
+ emailServicesSandboxAddressesCreate(servicePk: number, sandboxAddress: SandboxAddress, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SandboxAddress, any, {}>>;
9043
+ /**
9044
+ * Require complete user profile for provisioning (create) API actions.
9045
+ * @param {number} servicePk
9046
+ * @param {number} [page] A page number within the paginated result set.
9047
+ * @param {*} [options] Override http request option.
9048
+ * @throws {RequiredError}
9049
+ */
9050
+ emailServicesSandboxAddressesList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSandboxAddressList, any, {}>>;
9051
+ /**
9052
+ * Require complete user profile for provisioning (create) API actions.
9053
+ * @param {number} servicePk
9054
+ * @param {SmtpCredential} [smtpCredential]
9055
+ * @param {*} [options] Override http request option.
9056
+ * @throws {RequiredError}
9057
+ */
9058
+ emailServicesSmtpCredentialsCreate(servicePk: number, smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
9059
+ /**
9060
+ * Require complete user profile for provisioning (create) API actions.
9061
+ * @param {number} servicePk
9062
+ * @param {number} [page] A page number within the paginated result set.
9063
+ * @param {*} [options] Override http request option.
9064
+ * @throws {RequiredError}
9065
+ */
9066
+ emailServicesSmtpCredentialsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSmtpCredentialList, any, {}>>;
9067
+ /**
9068
+ * Require complete user profile for provisioning (create) API actions.
9069
+ * @param {number} servicePk
9070
+ * @param {*} [options] Override http request option.
9071
+ * @throws {RequiredError}
9072
+ */
9073
+ emailServicesStatsRetrieve(servicePk: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9074
+ /**
9075
+ * Require complete user profile for provisioning (create) API actions.
9076
+ * @param {number} servicePk
9077
+ * @param {SuppressionEntry} [suppressionEntry]
9078
+ * @param {*} [options] Override http request option.
9079
+ * @throws {RequiredError}
9080
+ */
9081
+ emailServicesSuppressionsCreate(servicePk: number, suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
9082
+ /**
9083
+ * Require complete user profile for provisioning (create) API actions.
9084
+ * @param {number} servicePk
9085
+ * @param {number} [page] A page number within the paginated result set.
9086
+ * @param {*} [options] Override http request option.
9087
+ * @throws {RequiredError}
9088
+ */
9089
+ emailServicesSuppressionsList(servicePk: number, page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSuppressionEntryList, any, {}>>;
9090
+ /**
9091
+ * Require complete user profile for provisioning (create) API actions.
9092
+ * @param {SmtpCredential} [smtpCredential]
9093
+ * @param {*} [options] Override http request option.
9094
+ * @throws {RequiredError}
9095
+ */
9096
+ emailSmtpCredentialsCreate(smtpCredential?: SmtpCredential, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
9097
+ /**
9098
+ * Require complete user profile for provisioning (create) API actions.
9099
+ * @param {number} id A unique integer value identifying this smtp credential.
9100
+ * @param {*} [options] Override http request option.
9101
+ * @throws {RequiredError}
9102
+ */
9103
+ emailSmtpCredentialsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9104
+ /**
9105
+ * Require complete user profile for provisioning (create) API actions.
9106
+ * @param {number} [page] A page number within the paginated result set.
9107
+ * @param {*} [options] Override http request option.
9108
+ * @throws {RequiredError}
9109
+ */
9110
+ emailSmtpCredentialsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSmtpCredentialList, any, {}>>;
9111
+ /**
9112
+ * Require complete user profile for provisioning (create) API actions.
9113
+ * @param {number} id A unique integer value identifying this smtp credential.
9114
+ * @param {*} [options] Override http request option.
9115
+ * @throws {RequiredError}
9116
+ */
9117
+ emailSmtpCredentialsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmtpCredential, any, {}>>;
9118
+ /**
9119
+ * Require complete user profile for provisioning (create) API actions.
9120
+ * @param {SuppressionEntry} [suppressionEntry]
9121
+ * @param {*} [options] Override http request option.
9122
+ * @throws {RequiredError}
9123
+ */
9124
+ emailSuppressionsCreate(suppressionEntry?: SuppressionEntry, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
9125
+ /**
9126
+ * Require complete user profile for provisioning (create) API actions.
9127
+ * @param {number} id A unique integer value identifying this suppression entry.
9128
+ * @param {*} [options] Override http request option.
9129
+ * @throws {RequiredError}
9130
+ */
9131
+ emailSuppressionsDestroy(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9132
+ /**
9133
+ * Require complete user profile for provisioning (create) API actions.
9134
+ * @param {number} [page] A page number within the paginated result set.
9135
+ * @param {*} [options] Override http request option.
9136
+ * @throws {RequiredError}
9137
+ */
9138
+ emailSuppressionsList(page?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedSuppressionEntryList, any, {}>>;
9139
+ /**
9140
+ * Require complete user profile for provisioning (create) API actions.
9141
+ * @param {number} id A unique integer value identifying this suppression entry.
9142
+ * @param {*} [options] Override http request option.
9143
+ * @throws {RequiredError}
9144
+ */
9145
+ emailSuppressionsRetrieve(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SuppressionEntry, any, {}>>;
9146
+ }
6648
9147
  /**
6649
9148
  * FreednsApi - axios parameter creator
6650
9149
  */