@scaleway/sdk 2.12.0 → 2.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/domain/v2beta1/marshalling.gen.js +2 -0
- package/dist/api/k8s/v1/marshalling.gen.js +1 -7
- package/dist/api/secret/v1alpha1/marshalling.gen.js +1 -0
- package/dist/api/tem/v1alpha1/marshalling.gen.js +11 -0
- package/dist/index.cjs +16 -8
- package/dist/index.d.ts +40 -41
- package/dist/scw/constants.js +1 -1
- package/package.json +2 -2
|
@@ -112,6 +112,7 @@ const unmarshalContact = data => {
|
|
|
112
112
|
questions: data.questions ? unmarshalArrayOfObject(data.questions, unmarshalContactQuestion) : undefined,
|
|
113
113
|
resale: data.resale,
|
|
114
114
|
state: data.state,
|
|
115
|
+
status: data.status,
|
|
115
116
|
vatIdentificationCode: data.vat_identification_code,
|
|
116
117
|
whoisOptIn: data.whois_opt_in,
|
|
117
118
|
zip: data.zip
|
|
@@ -657,6 +658,7 @@ const unmarshalTask = data => {
|
|
|
657
658
|
throw new TypeError(`Unmarshalling the type 'Task' failed as data isn't a dictionary.`);
|
|
658
659
|
}
|
|
659
660
|
return {
|
|
661
|
+
contactIdentifier: data.contact_identifier,
|
|
660
662
|
domain: data.domain,
|
|
661
663
|
id: data.id,
|
|
662
664
|
message: data.message,
|
|
@@ -52,7 +52,6 @@ const unmarshalVersion = data => {
|
|
|
52
52
|
availableCnis: data.available_cnis,
|
|
53
53
|
availableContainerRuntimes: data.available_container_runtimes,
|
|
54
54
|
availableFeatureGates: data.available_feature_gates,
|
|
55
|
-
availableIngresses: data.available_ingresses ? data.available_ingresses : undefined,
|
|
56
55
|
availableKubeletArgs: data.available_kubelet_args,
|
|
57
56
|
label: data.label,
|
|
58
57
|
name: data.name,
|
|
@@ -121,12 +120,10 @@ const unmarshalCluster = data => {
|
|
|
121
120
|
cni: data.cni,
|
|
122
121
|
commitmentEndsAt: unmarshalDate(data.commitment_ends_at),
|
|
123
122
|
createdAt: unmarshalDate(data.created_at),
|
|
124
|
-
dashboardEnabled: data.dashboard_enabled,
|
|
125
123
|
description: data.description,
|
|
126
124
|
dnsWildcard: data.dns_wildcard,
|
|
127
125
|
featureGates: data.feature_gates,
|
|
128
126
|
id: data.id,
|
|
129
|
-
ingress: data.ingress ? data.ingress : undefined,
|
|
130
127
|
name: data.name,
|
|
131
128
|
openIdConnectConfig: data.open_id_connect_config ? unmarshalClusterOpenIDConnectConfig(data.open_id_connect_config) : undefined,
|
|
132
129
|
organizationId: data.organization_id,
|
|
@@ -196,6 +193,7 @@ const unmarshalClusterType = data => {
|
|
|
196
193
|
throw new TypeError(`Unmarshalling the type 'ClusterType' failed as data isn't a dictionary.`);
|
|
197
194
|
}
|
|
198
195
|
return {
|
|
196
|
+
auditLogsSupported: data.audit_logs_supported,
|
|
199
197
|
availability: data.availability,
|
|
200
198
|
commitmentDelay: data.commitment_delay,
|
|
201
199
|
dedicated: data.dedicated,
|
|
@@ -325,9 +323,7 @@ const marshalCreateClusterRequest = (request, defaults) => ({
|
|
|
325
323
|
autoscaler_config: request.autoscalerConfig !== undefined ? marshalCreateClusterRequestAutoscalerConfig(request.autoscalerConfig) : undefined,
|
|
326
324
|
cni: request.cni,
|
|
327
325
|
description: request.description,
|
|
328
|
-
enable_dashboard: request.enableDashboard,
|
|
329
326
|
feature_gates: request.featureGates,
|
|
330
|
-
ingress: request.ingress,
|
|
331
327
|
name: request.name || randomName('k8s'),
|
|
332
328
|
open_id_connect_config: request.openIdConnectConfig !== undefined ? marshalCreateClusterRequestOpenIDConnectConfig(request.openIdConnectConfig) : undefined,
|
|
333
329
|
pools: request.pools !== undefined ? request.pools.map(elt => marshalCreateClusterRequestPoolConfig(elt)) : undefined,
|
|
@@ -404,9 +400,7 @@ const marshalUpdateClusterRequest = (request, defaults) => ({
|
|
|
404
400
|
auto_upgrade: request.autoUpgrade !== undefined ? marshalUpdateClusterRequestAutoUpgrade(request.autoUpgrade) : undefined,
|
|
405
401
|
autoscaler_config: request.autoscalerConfig !== undefined ? marshalUpdateClusterRequestAutoscalerConfig(request.autoscalerConfig) : undefined,
|
|
406
402
|
description: request.description,
|
|
407
|
-
enable_dashboard: request.enableDashboard,
|
|
408
403
|
feature_gates: request.featureGates,
|
|
409
|
-
ingress: request.ingress,
|
|
410
404
|
name: request.name,
|
|
411
405
|
open_id_connect_config: request.openIdConnectConfig !== undefined ? marshalUpdateClusterRequestOpenIDConnectConfig(request.openIdConnectConfig) : undefined,
|
|
412
406
|
tags: request.tags
|
|
@@ -137,6 +137,7 @@ const marshalEphemeralPolicy = (request, defaults) => ({
|
|
|
137
137
|
const marshalCreateSecretRequest = (request, defaults) => ({
|
|
138
138
|
description: request.description,
|
|
139
139
|
ephemeral_policy: request.ephemeralPolicy !== undefined ? marshalEphemeralPolicy(request.ephemeralPolicy) : undefined,
|
|
140
|
+
is_protected: request.isProtected,
|
|
140
141
|
name: request.name,
|
|
141
142
|
path: request.path,
|
|
142
143
|
project_id: request.projectId ?? defaults.defaultProjectId,
|
|
@@ -99,6 +99,16 @@ const unmarshalDomainLastStatusDkimRecord = data => {
|
|
|
99
99
|
status: data.status
|
|
100
100
|
};
|
|
101
101
|
};
|
|
102
|
+
const unmarshalDomainLastStatusDmarcRecord = data => {
|
|
103
|
+
if (!isJSONObject(data)) {
|
|
104
|
+
throw new TypeError(`Unmarshalling the type 'DomainLastStatusDmarcRecord' failed as data isn't a dictionary.`);
|
|
105
|
+
}
|
|
106
|
+
return {
|
|
107
|
+
error: data.error,
|
|
108
|
+
lastValidAt: unmarshalDate(data.last_valid_at),
|
|
109
|
+
status: data.status
|
|
110
|
+
};
|
|
111
|
+
};
|
|
102
112
|
const unmarshalDomainLastStatusSpfRecord = data => {
|
|
103
113
|
if (!isJSONObject(data)) {
|
|
104
114
|
throw new TypeError(`Unmarshalling the type 'DomainLastStatusSpfRecord' failed as data isn't a dictionary.`);
|
|
@@ -115,6 +125,7 @@ const unmarshalDomainLastStatus = data => {
|
|
|
115
125
|
}
|
|
116
126
|
return {
|
|
117
127
|
dkimRecord: data.dkim_record ? unmarshalDomainLastStatusDkimRecord(data.dkim_record) : undefined,
|
|
128
|
+
dmarcRecord: data.dmarc_record ? unmarshalDomainLastStatusDmarcRecord(data.dmarc_record) : undefined,
|
|
118
129
|
domainId: data.domain_id,
|
|
119
130
|
domainName: data.domain_name,
|
|
120
131
|
spfRecord: data.spf_record ? unmarshalDomainLastStatusSpfRecord(data.spf_record) : undefined
|
package/dist/index.cjs
CHANGED
|
@@ -497,7 +497,7 @@ const assertValidSettings = obj => {
|
|
|
497
497
|
}
|
|
498
498
|
};
|
|
499
499
|
|
|
500
|
-
const version = 'v2.
|
|
500
|
+
const version = 'v2.13.0';
|
|
501
501
|
const userAgent = `scaleway-sdk-js/${version}`;
|
|
502
502
|
|
|
503
503
|
const isBrowser = () =>
|
|
@@ -7649,6 +7649,7 @@ const unmarshalContact = data => {
|
|
|
7649
7649
|
questions: data.questions ? unmarshalArrayOfObject(data.questions, unmarshalContactQuestion) : undefined,
|
|
7650
7650
|
resale: data.resale,
|
|
7651
7651
|
state: data.state,
|
|
7652
|
+
status: data.status,
|
|
7652
7653
|
vatIdentificationCode: data.vat_identification_code,
|
|
7653
7654
|
whoisOptIn: data.whois_opt_in,
|
|
7654
7655
|
zip: data.zip
|
|
@@ -8194,6 +8195,7 @@ const unmarshalTask$1 = data => {
|
|
|
8194
8195
|
throw new TypeError(`Unmarshalling the type 'Task' failed as data isn't a dictionary.`);
|
|
8195
8196
|
}
|
|
8196
8197
|
return {
|
|
8198
|
+
contactIdentifier: data.contact_identifier,
|
|
8197
8199
|
domain: data.domain,
|
|
8198
8200
|
id: data.id,
|
|
8199
8201
|
message: data.message,
|
|
@@ -16825,7 +16827,6 @@ const unmarshalVersion$2 = data => {
|
|
|
16825
16827
|
availableCnis: data.available_cnis,
|
|
16826
16828
|
availableContainerRuntimes: data.available_container_runtimes,
|
|
16827
16829
|
availableFeatureGates: data.available_feature_gates,
|
|
16828
|
-
availableIngresses: data.available_ingresses ? data.available_ingresses : undefined,
|
|
16829
16830
|
availableKubeletArgs: data.available_kubelet_args,
|
|
16830
16831
|
label: data.label,
|
|
16831
16832
|
name: data.name,
|
|
@@ -16894,12 +16895,10 @@ const unmarshalCluster$1 = data => {
|
|
|
16894
16895
|
cni: data.cni,
|
|
16895
16896
|
commitmentEndsAt: unmarshalDate(data.commitment_ends_at),
|
|
16896
16897
|
createdAt: unmarshalDate(data.created_at),
|
|
16897
|
-
dashboardEnabled: data.dashboard_enabled,
|
|
16898
16898
|
description: data.description,
|
|
16899
16899
|
dnsWildcard: data.dns_wildcard,
|
|
16900
16900
|
featureGates: data.feature_gates,
|
|
16901
16901
|
id: data.id,
|
|
16902
|
-
ingress: data.ingress ? data.ingress : undefined,
|
|
16903
16902
|
name: data.name,
|
|
16904
16903
|
openIdConnectConfig: data.open_id_connect_config ? unmarshalClusterOpenIDConnectConfig(data.open_id_connect_config) : undefined,
|
|
16905
16904
|
organizationId: data.organization_id,
|
|
@@ -16969,6 +16968,7 @@ const unmarshalClusterType = data => {
|
|
|
16969
16968
|
throw new TypeError(`Unmarshalling the type 'ClusterType' failed as data isn't a dictionary.`);
|
|
16970
16969
|
}
|
|
16971
16970
|
return {
|
|
16971
|
+
auditLogsSupported: data.audit_logs_supported,
|
|
16972
16972
|
availability: data.availability,
|
|
16973
16973
|
commitmentDelay: data.commitment_delay,
|
|
16974
16974
|
dedicated: data.dedicated,
|
|
@@ -17098,9 +17098,7 @@ const marshalCreateClusterRequest$1 = (request, defaults) => ({
|
|
|
17098
17098
|
autoscaler_config: request.autoscalerConfig !== undefined ? marshalCreateClusterRequestAutoscalerConfig(request.autoscalerConfig) : undefined,
|
|
17099
17099
|
cni: request.cni,
|
|
17100
17100
|
description: request.description,
|
|
17101
|
-
enable_dashboard: request.enableDashboard,
|
|
17102
17101
|
feature_gates: request.featureGates,
|
|
17103
|
-
ingress: request.ingress,
|
|
17104
17102
|
name: request.name || randomName('k8s'),
|
|
17105
17103
|
open_id_connect_config: request.openIdConnectConfig !== undefined ? marshalCreateClusterRequestOpenIDConnectConfig(request.openIdConnectConfig) : undefined,
|
|
17106
17104
|
pools: request.pools !== undefined ? request.pools.map(elt => marshalCreateClusterRequestPoolConfig(elt)) : undefined,
|
|
@@ -17177,9 +17175,7 @@ const marshalUpdateClusterRequest$1 = (request, defaults) => ({
|
|
|
17177
17175
|
auto_upgrade: request.autoUpgrade !== undefined ? marshalUpdateClusterRequestAutoUpgrade(request.autoUpgrade) : undefined,
|
|
17178
17176
|
autoscaler_config: request.autoscalerConfig !== undefined ? marshalUpdateClusterRequestAutoscalerConfig(request.autoscalerConfig) : undefined,
|
|
17179
17177
|
description: request.description,
|
|
17180
|
-
enable_dashboard: request.enableDashboard,
|
|
17181
17178
|
feature_gates: request.featureGates,
|
|
17182
|
-
ingress: request.ingress,
|
|
17183
17179
|
name: request.name,
|
|
17184
17180
|
open_id_connect_config: request.openIdConnectConfig !== undefined ? marshalUpdateClusterRequestOpenIDConnectConfig(request.openIdConnectConfig) : undefined,
|
|
17185
17181
|
tags: request.tags
|
|
@@ -24225,6 +24221,7 @@ const marshalEphemeralPolicy = (request, defaults) => ({
|
|
|
24225
24221
|
const marshalCreateSecretRequest = (request, defaults) => ({
|
|
24226
24222
|
description: request.description,
|
|
24227
24223
|
ephemeral_policy: request.ephemeralPolicy !== undefined ? marshalEphemeralPolicy(request.ephemeralPolicy) : undefined,
|
|
24224
|
+
is_protected: request.isProtected,
|
|
24228
24225
|
name: request.name,
|
|
24229
24226
|
path: request.path,
|
|
24230
24227
|
project_id: request.projectId ?? defaults.defaultProjectId,
|
|
@@ -25318,6 +25315,16 @@ const unmarshalDomainLastStatusDkimRecord = data => {
|
|
|
25318
25315
|
status: data.status
|
|
25319
25316
|
};
|
|
25320
25317
|
};
|
|
25318
|
+
const unmarshalDomainLastStatusDmarcRecord = data => {
|
|
25319
|
+
if (!isJSONObject(data)) {
|
|
25320
|
+
throw new TypeError(`Unmarshalling the type 'DomainLastStatusDmarcRecord' failed as data isn't a dictionary.`);
|
|
25321
|
+
}
|
|
25322
|
+
return {
|
|
25323
|
+
error: data.error,
|
|
25324
|
+
lastValidAt: unmarshalDate(data.last_valid_at),
|
|
25325
|
+
status: data.status
|
|
25326
|
+
};
|
|
25327
|
+
};
|
|
25321
25328
|
const unmarshalDomainLastStatusSpfRecord = data => {
|
|
25322
25329
|
if (!isJSONObject(data)) {
|
|
25323
25330
|
throw new TypeError(`Unmarshalling the type 'DomainLastStatusSpfRecord' failed as data isn't a dictionary.`);
|
|
@@ -25334,6 +25341,7 @@ const unmarshalDomainLastStatus = data => {
|
|
|
25334
25341
|
}
|
|
25335
25342
|
return {
|
|
25336
25343
|
dkimRecord: data.dkim_record ? unmarshalDomainLastStatusDkimRecord(data.dkim_record) : undefined,
|
|
25344
|
+
dmarcRecord: data.dmarc_record ? unmarshalDomainLastStatusDmarcRecord(data.dmarc_record) : undefined,
|
|
25337
25345
|
domainId: data.domain_id,
|
|
25338
25346
|
domainName: data.domain_name,
|
|
25339
25347
|
spfRecord: data.spf_record ? unmarshalDomainLastStatusSpfRecord(data.spf_record) : undefined
|
package/dist/index.d.ts
CHANGED
|
@@ -7635,6 +7635,7 @@ type ContactEmailStatus = 'email_status_unknown' | 'validated' | 'not_validated'
|
|
|
7635
7635
|
type ContactExtensionFRMode = 'mode_unknown' | 'individual' | 'company_identification_code' | 'duns' | 'local' | 'association' | 'trademark' | 'code_auth_afnic';
|
|
7636
7636
|
type ContactExtensionNLLegalForm = 'legal_form_unknown' | 'other' | 'non_dutch_eu_company' | 'non_dutch_legal_form_enterprise_subsidiary' | 'limited_company' | 'limited_company_in_formation' | 'cooperative' | 'limited_partnership' | 'sole_company' | 'european_economic_interest_group' | 'religious_entity' | 'partnership' | 'public_company' | 'mutual_benefit_company' | 'residential' | 'shipping_company' | 'foundation' | 'association' | 'trading_partnership' | 'natural_person';
|
|
7637
7637
|
type ContactLegalForm = 'legal_form_unknown' | 'individual' | 'corporate' | 'association' | 'other';
|
|
7638
|
+
type ContactStatus = 'status_unknown' | 'active' | 'pending';
|
|
7638
7639
|
type DNSZoneStatus = 'unknown' | 'active' | 'pending' | 'error' | 'locked';
|
|
7639
7640
|
type DSRecordAlgorithm = 'rsamd5' | 'dh' | 'dsa' | 'rsasha1' | 'dsa_nsec3_sha1' | 'rsasha1_nsec3_sha1' | 'rsasha256' | 'rsasha512' | 'ecc_gost' | 'ecdsap256sha256' | 'ecdsap384sha384' | 'ed25519' | 'ed448';
|
|
7640
7641
|
type DSRecordDigestType = 'sha_1' | 'sha_256' | 'gost_r_34_11_94' | 'sha_384';
|
|
@@ -7849,6 +7850,7 @@ interface Contact {
|
|
|
7849
7850
|
emailStatus: ContactEmailStatus;
|
|
7850
7851
|
state: string;
|
|
7851
7852
|
extensionNl?: ContactExtensionNL;
|
|
7853
|
+
status: ContactStatus;
|
|
7852
7854
|
}
|
|
7853
7855
|
interface ContactRolesRoles {
|
|
7854
7856
|
isOwner: boolean;
|
|
@@ -8015,15 +8017,26 @@ interface SSLCertificate {
|
|
|
8015
8017
|
expiredAt?: Date;
|
|
8016
8018
|
}
|
|
8017
8019
|
interface Task$1 {
|
|
8020
|
+
/** The unique identifier of the task. */
|
|
8018
8021
|
id: string;
|
|
8022
|
+
/** The project ID associated to the task. */
|
|
8019
8023
|
projectId: string;
|
|
8024
|
+
/** The organization ID associated to the task. */
|
|
8020
8025
|
organizationId: string;
|
|
8026
|
+
/** The domain name associated to the task. */
|
|
8021
8027
|
domain?: string;
|
|
8028
|
+
/** The type of the task. */
|
|
8022
8029
|
type: TaskType;
|
|
8030
|
+
/** The status of the task. */
|
|
8023
8031
|
status: TaskStatus$1;
|
|
8032
|
+
/** Start date of the task. */
|
|
8024
8033
|
startedAt?: Date;
|
|
8034
|
+
/** Last update of the task. */
|
|
8025
8035
|
updatedAt?: Date;
|
|
8036
|
+
/** Error message associated to the task. */
|
|
8026
8037
|
message?: string;
|
|
8038
|
+
/** Human-friendly contact identifier used when the task concerns a contact. */
|
|
8039
|
+
contactIdentifier?: string;
|
|
8027
8040
|
}
|
|
8028
8041
|
interface TransferInDomainRequestTransferRequest {
|
|
8029
8042
|
domain: string;
|
|
@@ -9228,6 +9241,7 @@ type index_gen$m_ContactLegalForm = ContactLegalForm;
|
|
|
9228
9241
|
type index_gen$m_ContactQuestion = ContactQuestion;
|
|
9229
9242
|
type index_gen$m_ContactRoles = ContactRoles;
|
|
9230
9243
|
type index_gen$m_ContactRolesRoles = ContactRolesRoles;
|
|
9244
|
+
type index_gen$m_ContactStatus = ContactStatus;
|
|
9231
9245
|
type index_gen$m_CreateDNSZoneRequest = CreateDNSZoneRequest;
|
|
9232
9246
|
type index_gen$m_CreateSSLCertificateRequest = CreateSSLCertificateRequest;
|
|
9233
9247
|
type index_gen$m_DNSZone = DNSZone;
|
|
@@ -9366,7 +9380,7 @@ type index_gen$m_UpdateDNSZoneRecordsRequest = UpdateDNSZoneRecordsRequest;
|
|
|
9366
9380
|
type index_gen$m_UpdateDNSZoneRecordsResponse = UpdateDNSZoneRecordsResponse;
|
|
9367
9381
|
type index_gen$m_UpdateDNSZoneRequest = UpdateDNSZoneRequest;
|
|
9368
9382
|
declare namespace index_gen$m {
|
|
9369
|
-
export { API$n as API, type index_gen$m_AvailableDomain as AvailableDomain, type index_gen$m_CheckContactsCompatibilityResponse as CheckContactsCompatibilityResponse, type index_gen$m_CheckContactsCompatibilityResponseContactCheckResult as CheckContactsCompatibilityResponseContactCheckResult, type index_gen$m_ClearDNSZoneRecordsRequest as ClearDNSZoneRecordsRequest, type index_gen$m_ClearDNSZoneRecordsResponse as ClearDNSZoneRecordsResponse, type index_gen$m_CloneDNSZoneRequest as CloneDNSZoneRequest, type index_gen$m_Contact as Contact, type index_gen$m_ContactEmailStatus as ContactEmailStatus, type index_gen$m_ContactExtensionEU as ContactExtensionEU, type index_gen$m_ContactExtensionFR as ContactExtensionFR, type index_gen$m_ContactExtensionFRAssociationInfo as ContactExtensionFRAssociationInfo, type index_gen$m_ContactExtensionFRCodeAuthAfnicInfo as ContactExtensionFRCodeAuthAfnicInfo, type index_gen$m_ContactExtensionFRDunsInfo as ContactExtensionFRDunsInfo, type index_gen$m_ContactExtensionFRIndividualInfo as ContactExtensionFRIndividualInfo, type index_gen$m_ContactExtensionFRMode as ContactExtensionFRMode, type index_gen$m_ContactExtensionFRTrademarkInfo as ContactExtensionFRTrademarkInfo, type index_gen$m_ContactExtensionNL as ContactExtensionNL, type index_gen$m_ContactExtensionNLLegalForm as ContactExtensionNLLegalForm, type index_gen$m_ContactLegalForm as ContactLegalForm, type index_gen$m_ContactQuestion as ContactQuestion, type index_gen$m_ContactRoles as ContactRoles, type index_gen$m_ContactRolesRoles as ContactRolesRoles, type index_gen$m_CreateDNSZoneRequest as CreateDNSZoneRequest, type index_gen$m_CreateSSLCertificateRequest as CreateSSLCertificateRequest, type index_gen$m_DNSZone as DNSZone, type index_gen$m_DNSZoneStatus as DNSZoneStatus, type index_gen$m_DNSZoneVersion as DNSZoneVersion, index_gen$m_DNS_ZONE_TRANSIENT_STATUSES as DNS_ZONE_TRANSIENT_STATUSES, index_gen$m_DOMAIN_FEATURE_TRANSIENT_STATUSES as DOMAIN_FEATURE_TRANSIENT_STATUSES, index_gen$m_DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES as DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES, DOMAIN_TRANSIENT_STATUSES$2 as DOMAIN_TRANSIENT_STATUSES, type index_gen$m_DSRecord as DSRecord, type index_gen$m_DSRecordAlgorithm as DSRecordAlgorithm, type index_gen$m_DSRecordDigest as DSRecordDigest, type index_gen$m_DSRecordDigestType as DSRecordDigestType, type index_gen$m_DSRecordPublicKey as DSRecordPublicKey, type index_gen$m_DeleteDNSZoneRequest as DeleteDNSZoneRequest, type index_gen$m_DeleteDNSZoneResponse as DeleteDNSZoneResponse, type index_gen$m_DeleteDNSZoneTsigKeyRequest as DeleteDNSZoneTsigKeyRequest, type index_gen$m_DeleteExternalDomainResponse as DeleteExternalDomainResponse, type index_gen$m_DeleteSSLCertificateRequest as DeleteSSLCertificateRequest, type index_gen$m_DeleteSSLCertificateResponse as DeleteSSLCertificateResponse, type Domain$2 as Domain, type index_gen$m_DomainDNSSEC as DomainDNSSEC, type index_gen$m_DomainFeatureStatus as DomainFeatureStatus, type index_gen$m_DomainRecord as DomainRecord, type index_gen$m_DomainRecordGeoIPConfig as DomainRecordGeoIPConfig, type index_gen$m_DomainRecordGeoIPConfigMatch as DomainRecordGeoIPConfigMatch, type index_gen$m_DomainRecordHTTPServiceConfig as DomainRecordHTTPServiceConfig, type index_gen$m_DomainRecordHTTPServiceConfigStrategy as DomainRecordHTTPServiceConfigStrategy, type index_gen$m_DomainRecordType as DomainRecordType, type index_gen$m_DomainRecordViewConfig as DomainRecordViewConfig, type index_gen$m_DomainRecordViewConfigView as DomainRecordViewConfigView, type index_gen$m_DomainRecordWeightedConfig as DomainRecordWeightedConfig, type index_gen$m_DomainRecordWeightedConfigWeightedIP as DomainRecordWeightedConfigWeightedIP, type index_gen$m_DomainRegistrationStatusExternalDomain as DomainRegistrationStatusExternalDomain, type index_gen$m_DomainRegistrationStatusTransfer as DomainRegistrationStatusTransfer, type index_gen$m_DomainRegistrationStatusTransferStatus as DomainRegistrationStatusTransferStatus, type DomainStatus$2 as DomainStatus, type index_gen$m_DomainSummary as DomainSummary, type index_gen$m_ExportRawDNSZoneRequest as ExportRawDNSZoneRequest, type index_gen$m_GetDNSZoneTsigKeyRequest as GetDNSZoneTsigKeyRequest, type index_gen$m_GetDNSZoneTsigKeyResponse as GetDNSZoneTsigKeyResponse, type index_gen$m_GetDNSZoneVersionDiffRequest as GetDNSZoneVersionDiffRequest, type index_gen$m_GetDNSZoneVersionDiffResponse as GetDNSZoneVersionDiffResponse, type index_gen$m_GetDomainAuthCodeResponse as GetDomainAuthCodeResponse, type index_gen$m_GetSSLCertificateRequest as GetSSLCertificateRequest, index_gen$m_HOST_TRANSIENT_STATUSES as HOST_TRANSIENT_STATUSES, type index_gen$m_Host as Host, type index_gen$m_HostStatus as HostStatus, type index_gen$m_ImportProviderDNSZoneRequest as ImportProviderDNSZoneRequest, type index_gen$m_ImportProviderDNSZoneRequestOnlineV1 as ImportProviderDNSZoneRequestOnlineV1, type index_gen$m_ImportProviderDNSZoneResponse as ImportProviderDNSZoneResponse, type index_gen$m_ImportRawDNSZoneRequest as ImportRawDNSZoneRequest, type index_gen$m_ImportRawDNSZoneRequestAXFRSource as ImportRawDNSZoneRequestAXFRSource, type index_gen$m_ImportRawDNSZoneRequestBindSource as ImportRawDNSZoneRequestBindSource, type index_gen$m_ImportRawDNSZoneRequestTsigKey as ImportRawDNSZoneRequestTsigKey, type index_gen$m_ImportRawDNSZoneResponse as ImportRawDNSZoneResponse, type index_gen$m_LinkedProduct as LinkedProduct, type index_gen$m_ListContactsRequestRole as ListContactsRequestRole, type index_gen$m_ListContactsResponse as ListContactsResponse, type index_gen$m_ListDNSZoneNameserversRequest as ListDNSZoneNameserversRequest, type index_gen$m_ListDNSZoneNameserversResponse as ListDNSZoneNameserversResponse, type index_gen$m_ListDNSZoneRecordsRequest as ListDNSZoneRecordsRequest, type index_gen$m_ListDNSZoneRecordsRequestOrderBy as ListDNSZoneRecordsRequestOrderBy, type index_gen$m_ListDNSZoneRecordsResponse as ListDNSZoneRecordsResponse, type index_gen$m_ListDNSZoneVersionRecordsRequest as ListDNSZoneVersionRecordsRequest, type index_gen$m_ListDNSZoneVersionRecordsResponse as ListDNSZoneVersionRecordsResponse, type index_gen$m_ListDNSZoneVersionsRequest as ListDNSZoneVersionsRequest, type index_gen$m_ListDNSZoneVersionsResponse as ListDNSZoneVersionsResponse, type index_gen$m_ListDNSZonesRequest as ListDNSZonesRequest, type index_gen$m_ListDNSZonesRequestOrderBy as ListDNSZonesRequestOrderBy, type index_gen$m_ListDNSZonesResponse as ListDNSZonesResponse, type index_gen$m_ListDomainHostsResponse as ListDomainHostsResponse, type ListDomainsRequestOrderBy$1 as ListDomainsRequestOrderBy, type ListDomainsResponse$2 as ListDomainsResponse, type index_gen$m_ListRenewableDomainsRequestOrderBy as ListRenewableDomainsRequestOrderBy, type index_gen$m_ListRenewableDomainsResponse as ListRenewableDomainsResponse, type index_gen$m_ListSSLCertificatesRequest as ListSSLCertificatesRequest, type index_gen$m_ListSSLCertificatesResponse as ListSSLCertificatesResponse, type index_gen$m_ListTasksRequestOrderBy as ListTasksRequestOrderBy, type index_gen$m_ListTasksResponse as ListTasksResponse, type index_gen$m_ListTldsRequestOrderBy as ListTldsRequestOrderBy, type index_gen$m_ListTldsResponse as ListTldsResponse, type Nameserver$1 as Nameserver, type index_gen$m_NewContact as NewContact, type index_gen$m_OrderResponse as OrderResponse, type index_gen$m_RawFormat as RawFormat, type index_gen$m_RecordChange as RecordChange, type index_gen$m_RecordChangeAdd as RecordChangeAdd, type index_gen$m_RecordChangeClear as RecordChangeClear, type index_gen$m_RecordChangeDelete as RecordChangeDelete, type index_gen$m_RecordChangeSet as RecordChangeSet, type index_gen$m_RecordIdentifier as RecordIdentifier, type index_gen$m_RefreshDNSZoneRequest as RefreshDNSZoneRequest, type index_gen$m_RefreshDNSZoneResponse as RefreshDNSZoneResponse, type index_gen$m_RegisterExternalDomainResponse as RegisterExternalDomainResponse, index_gen$m_RegistrarAPI as RegistrarAPI, type index_gen$m_RegistrarApiBuyDomainsRequest as RegistrarApiBuyDomainsRequest, type index_gen$m_RegistrarApiCheckContactsCompatibilityRequest as RegistrarApiCheckContactsCompatibilityRequest, type index_gen$m_RegistrarApiCreateDomainHostRequest as RegistrarApiCreateDomainHostRequest, type index_gen$m_RegistrarApiDeleteDomainHostRequest as RegistrarApiDeleteDomainHostRequest, type index_gen$m_RegistrarApiDeleteExternalDomainRequest as RegistrarApiDeleteExternalDomainRequest, type index_gen$m_RegistrarApiDisableDomainAutoRenewRequest as RegistrarApiDisableDomainAutoRenewRequest, type index_gen$m_RegistrarApiDisableDomainDNSSECRequest as RegistrarApiDisableDomainDNSSECRequest, type index_gen$m_RegistrarApiEnableDomainAutoRenewRequest as RegistrarApiEnableDomainAutoRenewRequest, type index_gen$m_RegistrarApiEnableDomainDNSSECRequest as RegistrarApiEnableDomainDNSSECRequest, type index_gen$m_RegistrarApiGetContactRequest as RegistrarApiGetContactRequest, type index_gen$m_RegistrarApiGetDomainAuthCodeRequest as RegistrarApiGetDomainAuthCodeRequest, type index_gen$m_RegistrarApiGetDomainRequest as RegistrarApiGetDomainRequest, type index_gen$m_RegistrarApiListContactsRequest as RegistrarApiListContactsRequest, type index_gen$m_RegistrarApiListDomainHostsRequest as RegistrarApiListDomainHostsRequest, type index_gen$m_RegistrarApiListDomainsRequest as RegistrarApiListDomainsRequest, type index_gen$m_RegistrarApiListRenewableDomainsRequest as RegistrarApiListRenewableDomainsRequest, type index_gen$m_RegistrarApiListTasksRequest as RegistrarApiListTasksRequest, type index_gen$m_RegistrarApiListTldsRequest as RegistrarApiListTldsRequest, type index_gen$m_RegistrarApiLockDomainTransferRequest as RegistrarApiLockDomainTransferRequest, type index_gen$m_RegistrarApiRegisterExternalDomainRequest as RegistrarApiRegisterExternalDomainRequest, type index_gen$m_RegistrarApiRenewDomainsRequest as RegistrarApiRenewDomainsRequest, type index_gen$m_RegistrarApiSearchAvailableDomainsRequest as RegistrarApiSearchAvailableDomainsRequest, type index_gen$m_RegistrarApiTradeDomainRequest as RegistrarApiTradeDomainRequest, type index_gen$m_RegistrarApiTransferInDomainRequest as RegistrarApiTransferInDomainRequest, type index_gen$m_RegistrarApiUnlockDomainTransferRequest as RegistrarApiUnlockDomainTransferRequest, type index_gen$m_RegistrarApiUpdateContactRequest as RegistrarApiUpdateContactRequest, type index_gen$m_RegistrarApiUpdateDomainHostRequest as RegistrarApiUpdateDomainHostRequest, type index_gen$m_RegistrarApiUpdateDomainRequest as RegistrarApiUpdateDomainRequest, type index_gen$m_RenewableDomain as RenewableDomain, type index_gen$m_RenewableDomainStatus as RenewableDomainStatus, type index_gen$m_RestoreDNSZoneVersionRequest as RestoreDNSZoneVersionRequest, type index_gen$m_RestoreDNSZoneVersionResponse as RestoreDNSZoneVersionResponse, type index_gen$m_SSLCertificate as SSLCertificate, type index_gen$m_SSLCertificateStatus as SSLCertificateStatus, index_gen$m_SSL_CERTIFICATE_TRANSIENT_STATUSES as SSL_CERTIFICATE_TRANSIENT_STATUSES, type index_gen$m_SearchAvailableDomainsResponse as SearchAvailableDomainsResponse, TASK_TRANSIENT_STATUSES$1 as TASK_TRANSIENT_STATUSES, type Task$1 as Task, type TaskStatus$1 as TaskStatus, type index_gen$m_TaskType as TaskType, type index_gen$m_Tld as Tld, type index_gen$m_TldOffer as TldOffer, type index_gen$m_TransferInDomainRequestTransferRequest as TransferInDomainRequestTransferRequest, type index_gen$m_UpdateContactRequestQuestion as UpdateContactRequestQuestion, type index_gen$m_UpdateDNSZoneNameserversRequest as UpdateDNSZoneNameserversRequest, type index_gen$m_UpdateDNSZoneNameserversResponse as UpdateDNSZoneNameserversResponse, type index_gen$m_UpdateDNSZoneRecordsRequest as UpdateDNSZoneRecordsRequest, type index_gen$m_UpdateDNSZoneRecordsResponse as UpdateDNSZoneRecordsResponse, type index_gen$m_UpdateDNSZoneRequest as UpdateDNSZoneRequest };
|
|
9383
|
+
export { API$n as API, type index_gen$m_AvailableDomain as AvailableDomain, type index_gen$m_CheckContactsCompatibilityResponse as CheckContactsCompatibilityResponse, type index_gen$m_CheckContactsCompatibilityResponseContactCheckResult as CheckContactsCompatibilityResponseContactCheckResult, type index_gen$m_ClearDNSZoneRecordsRequest as ClearDNSZoneRecordsRequest, type index_gen$m_ClearDNSZoneRecordsResponse as ClearDNSZoneRecordsResponse, type index_gen$m_CloneDNSZoneRequest as CloneDNSZoneRequest, type index_gen$m_Contact as Contact, type index_gen$m_ContactEmailStatus as ContactEmailStatus, type index_gen$m_ContactExtensionEU as ContactExtensionEU, type index_gen$m_ContactExtensionFR as ContactExtensionFR, type index_gen$m_ContactExtensionFRAssociationInfo as ContactExtensionFRAssociationInfo, type index_gen$m_ContactExtensionFRCodeAuthAfnicInfo as ContactExtensionFRCodeAuthAfnicInfo, type index_gen$m_ContactExtensionFRDunsInfo as ContactExtensionFRDunsInfo, type index_gen$m_ContactExtensionFRIndividualInfo as ContactExtensionFRIndividualInfo, type index_gen$m_ContactExtensionFRMode as ContactExtensionFRMode, type index_gen$m_ContactExtensionFRTrademarkInfo as ContactExtensionFRTrademarkInfo, type index_gen$m_ContactExtensionNL as ContactExtensionNL, type index_gen$m_ContactExtensionNLLegalForm as ContactExtensionNLLegalForm, type index_gen$m_ContactLegalForm as ContactLegalForm, type index_gen$m_ContactQuestion as ContactQuestion, type index_gen$m_ContactRoles as ContactRoles, type index_gen$m_ContactRolesRoles as ContactRolesRoles, type index_gen$m_ContactStatus as ContactStatus, type index_gen$m_CreateDNSZoneRequest as CreateDNSZoneRequest, type index_gen$m_CreateSSLCertificateRequest as CreateSSLCertificateRequest, type index_gen$m_DNSZone as DNSZone, type index_gen$m_DNSZoneStatus as DNSZoneStatus, type index_gen$m_DNSZoneVersion as DNSZoneVersion, index_gen$m_DNS_ZONE_TRANSIENT_STATUSES as DNS_ZONE_TRANSIENT_STATUSES, index_gen$m_DOMAIN_FEATURE_TRANSIENT_STATUSES as DOMAIN_FEATURE_TRANSIENT_STATUSES, index_gen$m_DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES as DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES, DOMAIN_TRANSIENT_STATUSES$2 as DOMAIN_TRANSIENT_STATUSES, type index_gen$m_DSRecord as DSRecord, type index_gen$m_DSRecordAlgorithm as DSRecordAlgorithm, type index_gen$m_DSRecordDigest as DSRecordDigest, type index_gen$m_DSRecordDigestType as DSRecordDigestType, type index_gen$m_DSRecordPublicKey as DSRecordPublicKey, type index_gen$m_DeleteDNSZoneRequest as DeleteDNSZoneRequest, type index_gen$m_DeleteDNSZoneResponse as DeleteDNSZoneResponse, type index_gen$m_DeleteDNSZoneTsigKeyRequest as DeleteDNSZoneTsigKeyRequest, type index_gen$m_DeleteExternalDomainResponse as DeleteExternalDomainResponse, type index_gen$m_DeleteSSLCertificateRequest as DeleteSSLCertificateRequest, type index_gen$m_DeleteSSLCertificateResponse as DeleteSSLCertificateResponse, type Domain$2 as Domain, type index_gen$m_DomainDNSSEC as DomainDNSSEC, type index_gen$m_DomainFeatureStatus as DomainFeatureStatus, type index_gen$m_DomainRecord as DomainRecord, type index_gen$m_DomainRecordGeoIPConfig as DomainRecordGeoIPConfig, type index_gen$m_DomainRecordGeoIPConfigMatch as DomainRecordGeoIPConfigMatch, type index_gen$m_DomainRecordHTTPServiceConfig as DomainRecordHTTPServiceConfig, type index_gen$m_DomainRecordHTTPServiceConfigStrategy as DomainRecordHTTPServiceConfigStrategy, type index_gen$m_DomainRecordType as DomainRecordType, type index_gen$m_DomainRecordViewConfig as DomainRecordViewConfig, type index_gen$m_DomainRecordViewConfigView as DomainRecordViewConfigView, type index_gen$m_DomainRecordWeightedConfig as DomainRecordWeightedConfig, type index_gen$m_DomainRecordWeightedConfigWeightedIP as DomainRecordWeightedConfigWeightedIP, type index_gen$m_DomainRegistrationStatusExternalDomain as DomainRegistrationStatusExternalDomain, type index_gen$m_DomainRegistrationStatusTransfer as DomainRegistrationStatusTransfer, type index_gen$m_DomainRegistrationStatusTransferStatus as DomainRegistrationStatusTransferStatus, type DomainStatus$2 as DomainStatus, type index_gen$m_DomainSummary as DomainSummary, type index_gen$m_ExportRawDNSZoneRequest as ExportRawDNSZoneRequest, type index_gen$m_GetDNSZoneTsigKeyRequest as GetDNSZoneTsigKeyRequest, type index_gen$m_GetDNSZoneTsigKeyResponse as GetDNSZoneTsigKeyResponse, type index_gen$m_GetDNSZoneVersionDiffRequest as GetDNSZoneVersionDiffRequest, type index_gen$m_GetDNSZoneVersionDiffResponse as GetDNSZoneVersionDiffResponse, type index_gen$m_GetDomainAuthCodeResponse as GetDomainAuthCodeResponse, type index_gen$m_GetSSLCertificateRequest as GetSSLCertificateRequest, index_gen$m_HOST_TRANSIENT_STATUSES as HOST_TRANSIENT_STATUSES, type index_gen$m_Host as Host, type index_gen$m_HostStatus as HostStatus, type index_gen$m_ImportProviderDNSZoneRequest as ImportProviderDNSZoneRequest, type index_gen$m_ImportProviderDNSZoneRequestOnlineV1 as ImportProviderDNSZoneRequestOnlineV1, type index_gen$m_ImportProviderDNSZoneResponse as ImportProviderDNSZoneResponse, type index_gen$m_ImportRawDNSZoneRequest as ImportRawDNSZoneRequest, type index_gen$m_ImportRawDNSZoneRequestAXFRSource as ImportRawDNSZoneRequestAXFRSource, type index_gen$m_ImportRawDNSZoneRequestBindSource as ImportRawDNSZoneRequestBindSource, type index_gen$m_ImportRawDNSZoneRequestTsigKey as ImportRawDNSZoneRequestTsigKey, type index_gen$m_ImportRawDNSZoneResponse as ImportRawDNSZoneResponse, type index_gen$m_LinkedProduct as LinkedProduct, type index_gen$m_ListContactsRequestRole as ListContactsRequestRole, type index_gen$m_ListContactsResponse as ListContactsResponse, type index_gen$m_ListDNSZoneNameserversRequest as ListDNSZoneNameserversRequest, type index_gen$m_ListDNSZoneNameserversResponse as ListDNSZoneNameserversResponse, type index_gen$m_ListDNSZoneRecordsRequest as ListDNSZoneRecordsRequest, type index_gen$m_ListDNSZoneRecordsRequestOrderBy as ListDNSZoneRecordsRequestOrderBy, type index_gen$m_ListDNSZoneRecordsResponse as ListDNSZoneRecordsResponse, type index_gen$m_ListDNSZoneVersionRecordsRequest as ListDNSZoneVersionRecordsRequest, type index_gen$m_ListDNSZoneVersionRecordsResponse as ListDNSZoneVersionRecordsResponse, type index_gen$m_ListDNSZoneVersionsRequest as ListDNSZoneVersionsRequest, type index_gen$m_ListDNSZoneVersionsResponse as ListDNSZoneVersionsResponse, type index_gen$m_ListDNSZonesRequest as ListDNSZonesRequest, type index_gen$m_ListDNSZonesRequestOrderBy as ListDNSZonesRequestOrderBy, type index_gen$m_ListDNSZonesResponse as ListDNSZonesResponse, type index_gen$m_ListDomainHostsResponse as ListDomainHostsResponse, type ListDomainsRequestOrderBy$1 as ListDomainsRequestOrderBy, type ListDomainsResponse$2 as ListDomainsResponse, type index_gen$m_ListRenewableDomainsRequestOrderBy as ListRenewableDomainsRequestOrderBy, type index_gen$m_ListRenewableDomainsResponse as ListRenewableDomainsResponse, type index_gen$m_ListSSLCertificatesRequest as ListSSLCertificatesRequest, type index_gen$m_ListSSLCertificatesResponse as ListSSLCertificatesResponse, type index_gen$m_ListTasksRequestOrderBy as ListTasksRequestOrderBy, type index_gen$m_ListTasksResponse as ListTasksResponse, type index_gen$m_ListTldsRequestOrderBy as ListTldsRequestOrderBy, type index_gen$m_ListTldsResponse as ListTldsResponse, type Nameserver$1 as Nameserver, type index_gen$m_NewContact as NewContact, type index_gen$m_OrderResponse as OrderResponse, type index_gen$m_RawFormat as RawFormat, type index_gen$m_RecordChange as RecordChange, type index_gen$m_RecordChangeAdd as RecordChangeAdd, type index_gen$m_RecordChangeClear as RecordChangeClear, type index_gen$m_RecordChangeDelete as RecordChangeDelete, type index_gen$m_RecordChangeSet as RecordChangeSet, type index_gen$m_RecordIdentifier as RecordIdentifier, type index_gen$m_RefreshDNSZoneRequest as RefreshDNSZoneRequest, type index_gen$m_RefreshDNSZoneResponse as RefreshDNSZoneResponse, type index_gen$m_RegisterExternalDomainResponse as RegisterExternalDomainResponse, index_gen$m_RegistrarAPI as RegistrarAPI, type index_gen$m_RegistrarApiBuyDomainsRequest as RegistrarApiBuyDomainsRequest, type index_gen$m_RegistrarApiCheckContactsCompatibilityRequest as RegistrarApiCheckContactsCompatibilityRequest, type index_gen$m_RegistrarApiCreateDomainHostRequest as RegistrarApiCreateDomainHostRequest, type index_gen$m_RegistrarApiDeleteDomainHostRequest as RegistrarApiDeleteDomainHostRequest, type index_gen$m_RegistrarApiDeleteExternalDomainRequest as RegistrarApiDeleteExternalDomainRequest, type index_gen$m_RegistrarApiDisableDomainAutoRenewRequest as RegistrarApiDisableDomainAutoRenewRequest, type index_gen$m_RegistrarApiDisableDomainDNSSECRequest as RegistrarApiDisableDomainDNSSECRequest, type index_gen$m_RegistrarApiEnableDomainAutoRenewRequest as RegistrarApiEnableDomainAutoRenewRequest, type index_gen$m_RegistrarApiEnableDomainDNSSECRequest as RegistrarApiEnableDomainDNSSECRequest, type index_gen$m_RegistrarApiGetContactRequest as RegistrarApiGetContactRequest, type index_gen$m_RegistrarApiGetDomainAuthCodeRequest as RegistrarApiGetDomainAuthCodeRequest, type index_gen$m_RegistrarApiGetDomainRequest as RegistrarApiGetDomainRequest, type index_gen$m_RegistrarApiListContactsRequest as RegistrarApiListContactsRequest, type index_gen$m_RegistrarApiListDomainHostsRequest as RegistrarApiListDomainHostsRequest, type index_gen$m_RegistrarApiListDomainsRequest as RegistrarApiListDomainsRequest, type index_gen$m_RegistrarApiListRenewableDomainsRequest as RegistrarApiListRenewableDomainsRequest, type index_gen$m_RegistrarApiListTasksRequest as RegistrarApiListTasksRequest, type index_gen$m_RegistrarApiListTldsRequest as RegistrarApiListTldsRequest, type index_gen$m_RegistrarApiLockDomainTransferRequest as RegistrarApiLockDomainTransferRequest, type index_gen$m_RegistrarApiRegisterExternalDomainRequest as RegistrarApiRegisterExternalDomainRequest, type index_gen$m_RegistrarApiRenewDomainsRequest as RegistrarApiRenewDomainsRequest, type index_gen$m_RegistrarApiSearchAvailableDomainsRequest as RegistrarApiSearchAvailableDomainsRequest, type index_gen$m_RegistrarApiTradeDomainRequest as RegistrarApiTradeDomainRequest, type index_gen$m_RegistrarApiTransferInDomainRequest as RegistrarApiTransferInDomainRequest, type index_gen$m_RegistrarApiUnlockDomainTransferRequest as RegistrarApiUnlockDomainTransferRequest, type index_gen$m_RegistrarApiUpdateContactRequest as RegistrarApiUpdateContactRequest, type index_gen$m_RegistrarApiUpdateDomainHostRequest as RegistrarApiUpdateDomainHostRequest, type index_gen$m_RegistrarApiUpdateDomainRequest as RegistrarApiUpdateDomainRequest, type index_gen$m_RenewableDomain as RenewableDomain, type index_gen$m_RenewableDomainStatus as RenewableDomainStatus, type index_gen$m_RestoreDNSZoneVersionRequest as RestoreDNSZoneVersionRequest, type index_gen$m_RestoreDNSZoneVersionResponse as RestoreDNSZoneVersionResponse, type index_gen$m_SSLCertificate as SSLCertificate, type index_gen$m_SSLCertificateStatus as SSLCertificateStatus, index_gen$m_SSL_CERTIFICATE_TRANSIENT_STATUSES as SSL_CERTIFICATE_TRANSIENT_STATUSES, type index_gen$m_SearchAvailableDomainsResponse as SearchAvailableDomainsResponse, TASK_TRANSIENT_STATUSES$1 as TASK_TRANSIENT_STATUSES, type Task$1 as Task, type TaskStatus$1 as TaskStatus, type index_gen$m_TaskType as TaskType, type index_gen$m_Tld as Tld, type index_gen$m_TldOffer as TldOffer, type index_gen$m_TransferInDomainRequestTransferRequest as TransferInDomainRequestTransferRequest, type index_gen$m_UpdateContactRequestQuestion as UpdateContactRequestQuestion, type index_gen$m_UpdateDNSZoneNameserversRequest as UpdateDNSZoneNameserversRequest, type index_gen$m_UpdateDNSZoneNameserversResponse as UpdateDNSZoneNameserversResponse, type index_gen$m_UpdateDNSZoneRecordsRequest as UpdateDNSZoneRecordsRequest, type index_gen$m_UpdateDNSZoneRecordsResponse as UpdateDNSZoneRecordsResponse, type index_gen$m_UpdateDNSZoneRequest as UpdateDNSZoneRequest };
|
|
9370
9384
|
}
|
|
9371
9385
|
|
|
9372
9386
|
declare namespace index$p {
|
|
@@ -12878,9 +12892,10 @@ interface ServerIp {
|
|
|
12878
12892
|
provisioningMode: ServerIpProvisioningMode;
|
|
12879
12893
|
/** Tags associated with the IP. */
|
|
12880
12894
|
tags: string[];
|
|
12881
|
-
state: ServerIpState;
|
|
12882
12895
|
/** The ip_id of an IPAM ip if the ip is created from IPAM, null if not. */
|
|
12883
12896
|
ipamId: string;
|
|
12897
|
+
/** IP address state. */
|
|
12898
|
+
state: ServerIpState;
|
|
12884
12899
|
}
|
|
12885
12900
|
interface ServerIpv6 {
|
|
12886
12901
|
/** Instance IPv6 IP-Address. */
|
|
@@ -18040,7 +18055,6 @@ type CNI = 'unknown_cni' | 'cilium' | 'calico' | 'weave' | 'flannel' | 'kilo';
|
|
|
18040
18055
|
type ClusterStatus$1 = 'unknown' | 'creating' | 'ready' | 'deleting' | 'deleted' | 'updating' | 'locked' | 'pool_required';
|
|
18041
18056
|
type ClusterTypeAvailability = 'available' | 'scarce' | 'shortage';
|
|
18042
18057
|
type ClusterTypeResiliency = 'unknown_resiliency' | 'standard' | 'high_availability';
|
|
18043
|
-
type Ingress = 'unknown_ingress' | 'none' | 'nginx' | 'traefik' | 'traefik2';
|
|
18044
18058
|
type ListClustersRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc' | 'status_asc' | 'status_desc' | 'version_asc' | 'version_desc';
|
|
18045
18059
|
type ListNodesRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
18046
18060
|
type ListPoolsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc' | 'status_asc' | 'status_desc' | 'version_asc' | 'version_desc';
|
|
@@ -18395,6 +18409,11 @@ interface ClusterType {
|
|
|
18395
18409
|
memory: number;
|
|
18396
18410
|
/** Returns information if this offer uses dedicated resources. */
|
|
18397
18411
|
dedicated: boolean;
|
|
18412
|
+
/**
|
|
18413
|
+
* True if the offer allows activation of the audit log functionality. Please
|
|
18414
|
+
* note that audit logs are sent to Cockpit.
|
|
18415
|
+
*/
|
|
18416
|
+
auditLogsSupported: boolean;
|
|
18398
18417
|
}
|
|
18399
18418
|
interface Version$2 {
|
|
18400
18419
|
/** Name of the Kubernetes version. */
|
|
@@ -18405,8 +18424,6 @@ interface Version$2 {
|
|
|
18405
18424
|
region: Region;
|
|
18406
18425
|
/** Supported Container Network Interface (CNI) plugins for this version. */
|
|
18407
18426
|
availableCnis: CNI[];
|
|
18408
|
-
/** @deprecated Supported Ingress Controllers for this version. */
|
|
18409
|
-
availableIngresses?: Ingress[];
|
|
18410
18427
|
/** Supported container runtimes for this version. */
|
|
18411
18428
|
availableContainerRuntimes: Runtime[];
|
|
18412
18429
|
/** Supported feature gates for this version. */
|
|
@@ -18449,16 +18466,6 @@ interface Cluster$1 {
|
|
|
18449
18466
|
updatedAt?: Date;
|
|
18450
18467
|
/** Autoscaler config for the cluster. */
|
|
18451
18468
|
autoscalerConfig?: ClusterAutoscalerConfig;
|
|
18452
|
-
/**
|
|
18453
|
-
* @deprecated Defines whether the Kubernetes dashboard is enabled for the
|
|
18454
|
-
* cluster.
|
|
18455
|
-
*/
|
|
18456
|
-
dashboardEnabled?: boolean;
|
|
18457
|
-
/**
|
|
18458
|
-
* @deprecated Managed Ingress controller used in the cluster (deprecated
|
|
18459
|
-
* feature).
|
|
18460
|
-
*/
|
|
18461
|
-
ingress?: Ingress;
|
|
18462
18469
|
/** Auto upgrade configuration of the cluster. */
|
|
18463
18470
|
autoUpgrade?: ClusterAutoUpgrade;
|
|
18464
18471
|
/** Defines whether a new Kubernetes version is available. */
|
|
@@ -18639,13 +18646,6 @@ type CreateClusterRequest$2 = {
|
|
|
18639
18646
|
version: string;
|
|
18640
18647
|
/** Container Network Interface (CNI) plugin running in the cluster. */
|
|
18641
18648
|
cni: CNI;
|
|
18642
|
-
/**
|
|
18643
|
-
* @deprecated Defines whether the Kubernetes Dashboard is enabled in the
|
|
18644
|
-
* cluster.
|
|
18645
|
-
*/
|
|
18646
|
-
enableDashboard?: boolean;
|
|
18647
|
-
/** @deprecated Ingress Controller running in the cluster (deprecated feature). */
|
|
18648
|
-
ingress?: Ingress;
|
|
18649
18649
|
/** Pools created along with the cluster. */
|
|
18650
18650
|
pools?: CreateClusterRequestPoolConfig$1[];
|
|
18651
18651
|
/**
|
|
@@ -18813,7 +18813,7 @@ interface ExternalNode {
|
|
|
18813
18813
|
nodeLabels: Record<string, string>;
|
|
18814
18814
|
nodeTaints: ExternalNodeCoreV1Taint[];
|
|
18815
18815
|
}
|
|
18816
|
-
type GetClusterKubeConfigRequest
|
|
18816
|
+
type GetClusterKubeConfigRequest = {
|
|
18817
18817
|
/**
|
|
18818
18818
|
* Region to target. If none is passed will use default region from the
|
|
18819
18819
|
* config.
|
|
@@ -19079,10 +19079,6 @@ type UpdateClusterRequest$2 = {
|
|
|
19079
19079
|
tags?: string[];
|
|
19080
19080
|
/** New autoscaler config for the cluster. */
|
|
19081
19081
|
autoscalerConfig?: UpdateClusterRequestAutoscalerConfig$1;
|
|
19082
|
-
/** @deprecated New value for the Kubernetes Dashboard enablement. */
|
|
19083
|
-
enableDashboard?: boolean;
|
|
19084
|
-
/** @deprecated New Ingress Controller for the cluster (deprecated feature). */
|
|
19085
|
-
ingress?: Ingress;
|
|
19086
19082
|
/**
|
|
19087
19083
|
* New auto upgrade configuration for the cluster. Note that all fields need
|
|
19088
19084
|
* to be set.
|
|
@@ -19255,7 +19251,7 @@ declare class API$e extends API$x {
|
|
|
19255
19251
|
* @returns A Promise of ListClusterAvailableTypesResponse
|
|
19256
19252
|
*/
|
|
19257
19253
|
listClusterAvailableTypes: (request: Readonly<ListClusterAvailableTypesRequest>) => Promise<ListClusterAvailableTypesResponse>;
|
|
19258
|
-
protected _getClusterKubeConfig: (request: Readonly<GetClusterKubeConfigRequest
|
|
19254
|
+
protected _getClusterKubeConfig: (request: Readonly<GetClusterKubeConfigRequest>) => Promise<Blob>;
|
|
19259
19255
|
/**
|
|
19260
19256
|
* Reset the admin token of a Cluster. Reset the admin token for a specific
|
|
19261
19257
|
* Kubernetes cluster. This will revoke the old admin token (which will not be
|
|
@@ -19433,16 +19429,6 @@ declare class API$e extends API$x {
|
|
|
19433
19429
|
};
|
|
19434
19430
|
}
|
|
19435
19431
|
|
|
19436
|
-
type GetClusterKubeConfigRequest = {
|
|
19437
|
-
/**
|
|
19438
|
-
* Region to target. If none is passed will use default region from the
|
|
19439
|
-
* config.
|
|
19440
|
-
*/
|
|
19441
|
-
region?: Region;
|
|
19442
|
-
/** Cluster ID for which to download the kubeconfig. */
|
|
19443
|
-
clusterId: string;
|
|
19444
|
-
};
|
|
19445
|
-
|
|
19446
19432
|
declare class K8SUtilsAPI extends API$e {
|
|
19447
19433
|
/**
|
|
19448
19434
|
* Get configuration of a kube cluster.
|
|
@@ -19587,9 +19573,9 @@ type index$f_DeleteNodeRequest = DeleteNodeRequest;
|
|
|
19587
19573
|
type index$f_DeletePoolRequest = DeletePoolRequest;
|
|
19588
19574
|
type index$f_ExternalNode = ExternalNode;
|
|
19589
19575
|
type index$f_ExternalNodeCoreV1Taint = ExternalNodeCoreV1Taint;
|
|
19576
|
+
type index$f_GetClusterKubeConfigRequest = GetClusterKubeConfigRequest;
|
|
19590
19577
|
type index$f_GetNodeRequest = GetNodeRequest;
|
|
19591
19578
|
type index$f_GetPoolRequest = GetPoolRequest;
|
|
19592
|
-
type index$f_Ingress = Ingress;
|
|
19593
19579
|
type index$f_ListClusterAvailableTypesRequest = ListClusterAvailableTypesRequest;
|
|
19594
19580
|
type index$f_ListClusterAvailableTypesResponse = ListClusterAvailableTypesResponse;
|
|
19595
19581
|
type index$f_ListClusterAvailableVersionsRequest = ListClusterAvailableVersionsRequest;
|
|
@@ -19621,7 +19607,7 @@ type index$f_UpdatePoolRequestUpgradePolicy = UpdatePoolRequestUpgradePolicy;
|
|
|
19621
19607
|
type index$f_UpgradeClusterRequest = UpgradeClusterRequest;
|
|
19622
19608
|
type index$f_UpgradePoolRequest = UpgradePoolRequest;
|
|
19623
19609
|
declare namespace index$f {
|
|
19624
|
-
export { K8SUtilsAPI as API, type index$f_AutoscalerEstimator as AutoscalerEstimator, type index$f_AutoscalerExpander as AutoscalerExpander, CLUSTER_TRANSIENT_STATUSES$1 as CLUSTER_TRANSIENT_STATUSES, type index$f_CNI as CNI, type Cluster$1 as Cluster, type index$f_ClusterAutoUpgrade as ClusterAutoUpgrade, type index$f_ClusterAutoscalerConfig as ClusterAutoscalerConfig, type index$f_ClusterOpenIDConnectConfig as ClusterOpenIDConnectConfig, type ClusterStatus$1 as ClusterStatus, type index$f_ClusterType as ClusterType, type index$f_ClusterTypeAvailability as ClusterTypeAvailability, type index$f_ClusterTypeResiliency as ClusterTypeResiliency, type CreateClusterRequest$2 as CreateClusterRequest, type index$f_CreateClusterRequestAutoUpgrade as CreateClusterRequestAutoUpgrade, type CreateClusterRequestAutoscalerConfig$1 as CreateClusterRequestAutoscalerConfig, type CreateClusterRequestOpenIDConnectConfig$1 as CreateClusterRequestOpenIDConnectConfig, type CreateClusterRequestPoolConfig$1 as CreateClusterRequestPoolConfig, type index$f_CreateClusterRequestPoolConfigUpgradePolicy as CreateClusterRequestPoolConfigUpgradePolicy, type index$f_CreateExternalNodeRequest as CreateExternalNodeRequest, type CreatePoolRequest$1 as CreatePoolRequest, type index$f_CreatePoolRequestUpgradePolicy as CreatePoolRequestUpgradePolicy, type DeleteClusterRequest$1 as DeleteClusterRequest, type index$f_DeleteNodeRequest as DeleteNodeRequest, type index$f_DeletePoolRequest as DeletePoolRequest, type index$f_ExternalNode as ExternalNode, type index$f_ExternalNodeCoreV1Taint as ExternalNodeCoreV1Taint, type
|
|
19610
|
+
export { K8SUtilsAPI as API, type index$f_AutoscalerEstimator as AutoscalerEstimator, type index$f_AutoscalerExpander as AutoscalerExpander, CLUSTER_TRANSIENT_STATUSES$1 as CLUSTER_TRANSIENT_STATUSES, type index$f_CNI as CNI, type Cluster$1 as Cluster, type index$f_ClusterAutoUpgrade as ClusterAutoUpgrade, type index$f_ClusterAutoscalerConfig as ClusterAutoscalerConfig, type index$f_ClusterOpenIDConnectConfig as ClusterOpenIDConnectConfig, type ClusterStatus$1 as ClusterStatus, type index$f_ClusterType as ClusterType, type index$f_ClusterTypeAvailability as ClusterTypeAvailability, type index$f_ClusterTypeResiliency as ClusterTypeResiliency, type CreateClusterRequest$2 as CreateClusterRequest, type index$f_CreateClusterRequestAutoUpgrade as CreateClusterRequestAutoUpgrade, type CreateClusterRequestAutoscalerConfig$1 as CreateClusterRequestAutoscalerConfig, type CreateClusterRequestOpenIDConnectConfig$1 as CreateClusterRequestOpenIDConnectConfig, type CreateClusterRequestPoolConfig$1 as CreateClusterRequestPoolConfig, type index$f_CreateClusterRequestPoolConfigUpgradePolicy as CreateClusterRequestPoolConfigUpgradePolicy, type index$f_CreateExternalNodeRequest as CreateExternalNodeRequest, type CreatePoolRequest$1 as CreatePoolRequest, type index$f_CreatePoolRequestUpgradePolicy as CreatePoolRequestUpgradePolicy, type DeleteClusterRequest$1 as DeleteClusterRequest, type index$f_DeleteNodeRequest as DeleteNodeRequest, type index$f_DeletePoolRequest as DeletePoolRequest, type index$f_ExternalNode as ExternalNode, type index$f_ExternalNodeCoreV1Taint as ExternalNodeCoreV1Taint, type index$f_GetClusterKubeConfigRequest as GetClusterKubeConfigRequest, type GetClusterRequest$1 as GetClusterRequest, type index$f_GetNodeRequest as GetNodeRequest, type index$f_GetPoolRequest as GetPoolRequest, type GetVersionRequest$1 as GetVersionRequest, type index$f_ListClusterAvailableTypesRequest as ListClusterAvailableTypesRequest, type index$f_ListClusterAvailableTypesResponse as ListClusterAvailableTypesResponse, type index$f_ListClusterAvailableVersionsRequest as ListClusterAvailableVersionsRequest, type index$f_ListClusterAvailableVersionsResponse as ListClusterAvailableVersionsResponse, type ListClusterTypesRequest$1 as ListClusterTypesRequest, type index$f_ListClusterTypesResponse as ListClusterTypesResponse, type ListClustersRequest$2 as ListClustersRequest, type ListClustersRequestOrderBy$1 as ListClustersRequestOrderBy, type ListClustersResponse$1 as ListClustersResponse, type ListNodesRequest$1 as ListNodesRequest, type index$f_ListNodesRequestOrderBy as ListNodesRequestOrderBy, type index$f_ListNodesResponse as ListNodesResponse, type ListPoolsRequest$1 as ListPoolsRequest, type index$f_ListPoolsRequestOrderBy as ListPoolsRequestOrderBy, type index$f_ListPoolsResponse as ListPoolsResponse, type ListVersionsRequest$1 as ListVersionsRequest, type ListVersionsResponse$1 as ListVersionsResponse, type MaintenanceWindow$1 as MaintenanceWindow, type index$f_MaintenanceWindowDayOfTheWeek as MaintenanceWindowDayOfTheWeek, type index$f_MigrateToPrivateNetworkClusterRequest as MigrateToPrivateNetworkClusterRequest, index$f_NODE_TRANSIENT_STATUSES as NODE_TRANSIENT_STATUSES, type index$f_Node as Node, type index$f_NodeStatus as NodeStatus, index$f_POOL_TRANSIENT_STATUSES as POOL_TRANSIENT_STATUSES, type index$f_Pool as Pool, type index$f_PoolStatus as PoolStatus, type index$f_PoolUpgradePolicy as PoolUpgradePolicy, type index$f_PoolVolumeType as PoolVolumeType, type index$f_RebootNodeRequest as RebootNodeRequest, type index$f_ReplaceNodeRequest as ReplaceNodeRequest, type index$f_ResetClusterAdminTokenRequest as ResetClusterAdminTokenRequest, type index$f_Runtime as Runtime, type index$f_SetClusterTypeRequest as SetClusterTypeRequest, type UpdateClusterRequest$2 as UpdateClusterRequest, type index$f_UpdateClusterRequestAutoUpgrade as UpdateClusterRequestAutoUpgrade, type UpdateClusterRequestAutoscalerConfig$1 as UpdateClusterRequestAutoscalerConfig, type index$f_UpdateClusterRequestOpenIDConnectConfig as UpdateClusterRequestOpenIDConnectConfig, type index$f_UpdatePoolRequest as UpdatePoolRequest, type index$f_UpdatePoolRequestUpgradePolicy as UpdatePoolRequestUpgradePolicy, type index$f_UpgradeClusterRequest as UpgradeClusterRequest, type index$f_UpgradePoolRequest as UpgradePoolRequest, validationRules_gen$4 as ValidationRules, type Version$2 as Version };
|
|
19625
19611
|
}
|
|
19626
19612
|
|
|
19627
19613
|
declare namespace index$e {
|
|
@@ -28424,6 +28410,8 @@ type CreateSecretRequest = {
|
|
|
28424
28410
|
* default, the policy is applied to all the secret's versions.
|
|
28425
28411
|
*/
|
|
28426
28412
|
ephemeralPolicy?: EphemeralPolicy;
|
|
28413
|
+
/** A protected secret cannot be deleted. */
|
|
28414
|
+
isProtected: boolean;
|
|
28427
28415
|
};
|
|
28428
28416
|
type CreateSecretVersionRequest = {
|
|
28429
28417
|
/**
|
|
@@ -29814,6 +29802,14 @@ interface DomainLastStatusDkimRecord {
|
|
|
29814
29802
|
/** An error text displays in case the record is not valid. */
|
|
29815
29803
|
error?: string;
|
|
29816
29804
|
}
|
|
29805
|
+
interface DomainLastStatusDmarcRecord {
|
|
29806
|
+
/** Status of the DMARC record's configuration. */
|
|
29807
|
+
status: DomainLastStatusRecordStatus;
|
|
29808
|
+
/** Time and date the DMARC record was last valid. */
|
|
29809
|
+
lastValidAt?: Date;
|
|
29810
|
+
/** An error text displays in case the record is not valid. */
|
|
29811
|
+
error?: string;
|
|
29812
|
+
}
|
|
29817
29813
|
interface DomainLastStatusSpfRecord {
|
|
29818
29814
|
/** Status of the SPF record's configuration. */
|
|
29819
29815
|
status: DomainLastStatusRecordStatus;
|
|
@@ -29933,6 +29929,8 @@ interface DomainLastStatus {
|
|
|
29933
29929
|
spfRecord?: DomainLastStatusSpfRecord;
|
|
29934
29930
|
/** The DKIM record verification data. */
|
|
29935
29931
|
dkimRecord?: DomainLastStatusDkimRecord;
|
|
29932
|
+
/** The DMARC record verification data. */
|
|
29933
|
+
dmarcRecord?: DomainLastStatusDmarcRecord;
|
|
29936
29934
|
}
|
|
29937
29935
|
type GetDomainLastStatusRequest = {
|
|
29938
29936
|
/**
|
|
@@ -30226,6 +30224,7 @@ declare const index_gen$4_DOMAIN_TRANSIENT_STATUSES: typeof DOMAIN_TRANSIENT_STA
|
|
|
30226
30224
|
type index_gen$4_Domain = Domain;
|
|
30227
30225
|
type index_gen$4_DomainLastStatus = DomainLastStatus;
|
|
30228
30226
|
type index_gen$4_DomainLastStatusDkimRecord = DomainLastStatusDkimRecord;
|
|
30227
|
+
type index_gen$4_DomainLastStatusDmarcRecord = DomainLastStatusDmarcRecord;
|
|
30229
30228
|
type index_gen$4_DomainLastStatusRecordStatus = DomainLastStatusRecordStatus;
|
|
30230
30229
|
type index_gen$4_DomainLastStatusSpfRecord = DomainLastStatusSpfRecord;
|
|
30231
30230
|
type index_gen$4_DomainReputation = DomainReputation;
|
|
@@ -30250,7 +30249,7 @@ type index_gen$4_ListEmailsResponse = ListEmailsResponse;
|
|
|
30250
30249
|
type index_gen$4_RevokeDomainRequest = RevokeDomainRequest;
|
|
30251
30250
|
type index_gen$4_Statistics = Statistics;
|
|
30252
30251
|
declare namespace index_gen$4 {
|
|
30253
|
-
export { API$4 as API, type index_gen$4_CancelEmailRequest as CancelEmailRequest, type index_gen$4_CheckDomainRequest as CheckDomainRequest, type index_gen$4_CreateDomainRequest as CreateDomainRequest, type index_gen$4_CreateEmailRequest as CreateEmailRequest, type index_gen$4_CreateEmailRequestAddress as CreateEmailRequestAddress, type index_gen$4_CreateEmailRequestAttachment as CreateEmailRequestAttachment, type index_gen$4_CreateEmailRequestHeader as CreateEmailRequestHeader, type index_gen$4_CreateEmailResponse as CreateEmailResponse, index_gen$4_DOMAIN_TRANSIENT_STATUSES as DOMAIN_TRANSIENT_STATUSES, type index_gen$4_Domain as Domain, type index_gen$4_DomainLastStatus as DomainLastStatus, type index_gen$4_DomainLastStatusDkimRecord as DomainLastStatusDkimRecord, type index_gen$4_DomainLastStatusRecordStatus as DomainLastStatusRecordStatus, type index_gen$4_DomainLastStatusSpfRecord as DomainLastStatusSpfRecord, type index_gen$4_DomainReputation as DomainReputation, type index_gen$4_DomainReputationStatus as DomainReputationStatus, type index_gen$4_DomainStatistics as DomainStatistics, type index_gen$4_DomainStatus as DomainStatus, index_gen$4_EMAIL_TRANSIENT_STATUSES as EMAIL_TRANSIENT_STATUSES, type index_gen$4_Email as Email, type index_gen$4_EmailFlag as EmailFlag, type index_gen$4_EmailRcptType as EmailRcptType, type index_gen$4_EmailStatus as EmailStatus, type index_gen$4_EmailTry as EmailTry, type index_gen$4_GetDomainLastStatusRequest as GetDomainLastStatusRequest, type index_gen$4_GetDomainRequest as GetDomainRequest, type index_gen$4_GetEmailRequest as GetEmailRequest, type index_gen$4_GetStatisticsRequest as GetStatisticsRequest, type index_gen$4_ListDomainsRequest as ListDomainsRequest, type index_gen$4_ListDomainsResponse as ListDomainsResponse, type index_gen$4_ListEmailsRequest as ListEmailsRequest, type index_gen$4_ListEmailsRequestOrderBy as ListEmailsRequestOrderBy, type index_gen$4_ListEmailsResponse as ListEmailsResponse, type index_gen$4_RevokeDomainRequest as RevokeDomainRequest, type index_gen$4_Statistics as Statistics };
|
|
30252
|
+
export { API$4 as API, type index_gen$4_CancelEmailRequest as CancelEmailRequest, type index_gen$4_CheckDomainRequest as CheckDomainRequest, type index_gen$4_CreateDomainRequest as CreateDomainRequest, type index_gen$4_CreateEmailRequest as CreateEmailRequest, type index_gen$4_CreateEmailRequestAddress as CreateEmailRequestAddress, type index_gen$4_CreateEmailRequestAttachment as CreateEmailRequestAttachment, type index_gen$4_CreateEmailRequestHeader as CreateEmailRequestHeader, type index_gen$4_CreateEmailResponse as CreateEmailResponse, index_gen$4_DOMAIN_TRANSIENT_STATUSES as DOMAIN_TRANSIENT_STATUSES, type index_gen$4_Domain as Domain, type index_gen$4_DomainLastStatus as DomainLastStatus, type index_gen$4_DomainLastStatusDkimRecord as DomainLastStatusDkimRecord, type index_gen$4_DomainLastStatusDmarcRecord as DomainLastStatusDmarcRecord, type index_gen$4_DomainLastStatusRecordStatus as DomainLastStatusRecordStatus, type index_gen$4_DomainLastStatusSpfRecord as DomainLastStatusSpfRecord, type index_gen$4_DomainReputation as DomainReputation, type index_gen$4_DomainReputationStatus as DomainReputationStatus, type index_gen$4_DomainStatistics as DomainStatistics, type index_gen$4_DomainStatus as DomainStatus, index_gen$4_EMAIL_TRANSIENT_STATUSES as EMAIL_TRANSIENT_STATUSES, type index_gen$4_Email as Email, type index_gen$4_EmailFlag as EmailFlag, type index_gen$4_EmailRcptType as EmailRcptType, type index_gen$4_EmailStatus as EmailStatus, type index_gen$4_EmailTry as EmailTry, type index_gen$4_GetDomainLastStatusRequest as GetDomainLastStatusRequest, type index_gen$4_GetDomainRequest as GetDomainRequest, type index_gen$4_GetEmailRequest as GetEmailRequest, type index_gen$4_GetStatisticsRequest as GetStatisticsRequest, type index_gen$4_ListDomainsRequest as ListDomainsRequest, type index_gen$4_ListDomainsResponse as ListDomainsResponse, type index_gen$4_ListEmailsRequest as ListEmailsRequest, type index_gen$4_ListEmailsRequestOrderBy as ListEmailsRequestOrderBy, type index_gen$4_ListEmailsResponse as ListEmailsResponse, type index_gen$4_RevokeDomainRequest as RevokeDomainRequest, type index_gen$4_Statistics as Statistics };
|
|
30254
30253
|
}
|
|
30255
30254
|
|
|
30256
30255
|
declare namespace index$3 {
|
package/dist/scw/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Scaleway SDK.",
|
|
6
6
|
"keywords": [
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bundledDependencies": [
|
|
36
36
|
"@scaleway/random-name"
|
|
37
37
|
],
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "d343fa2fc4bfa7d96ad463d7540870f600051d7d"
|
|
39
39
|
}
|