@scaleway/sdk 2.13.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.
|
@@ -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
|
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
|
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 {
|
|
@@ -18041,7 +18055,6 @@ type CNI = 'unknown_cni' | 'cilium' | 'calico' | 'weave' | 'flannel' | 'kilo';
|
|
|
18041
18055
|
type ClusterStatus$1 = 'unknown' | 'creating' | 'ready' | 'deleting' | 'deleted' | 'updating' | 'locked' | 'pool_required';
|
|
18042
18056
|
type ClusterTypeAvailability = 'available' | 'scarce' | 'shortage';
|
|
18043
18057
|
type ClusterTypeResiliency = 'unknown_resiliency' | 'standard' | 'high_availability';
|
|
18044
|
-
type Ingress = 'unknown_ingress' | 'none' | 'nginx' | 'traefik' | 'traefik2';
|
|
18045
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';
|
|
18046
18059
|
type ListNodesRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
18047
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';
|
|
@@ -18396,6 +18409,11 @@ interface ClusterType {
|
|
|
18396
18409
|
memory: number;
|
|
18397
18410
|
/** Returns information if this offer uses dedicated resources. */
|
|
18398
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;
|
|
18399
18417
|
}
|
|
18400
18418
|
interface Version$2 {
|
|
18401
18419
|
/** Name of the Kubernetes version. */
|
|
@@ -18406,8 +18424,6 @@ interface Version$2 {
|
|
|
18406
18424
|
region: Region;
|
|
18407
18425
|
/** Supported Container Network Interface (CNI) plugins for this version. */
|
|
18408
18426
|
availableCnis: CNI[];
|
|
18409
|
-
/** @deprecated Supported Ingress Controllers for this version. */
|
|
18410
|
-
availableIngresses?: Ingress[];
|
|
18411
18427
|
/** Supported container runtimes for this version. */
|
|
18412
18428
|
availableContainerRuntimes: Runtime[];
|
|
18413
18429
|
/** Supported feature gates for this version. */
|
|
@@ -18450,16 +18466,6 @@ interface Cluster$1 {
|
|
|
18450
18466
|
updatedAt?: Date;
|
|
18451
18467
|
/** Autoscaler config for the cluster. */
|
|
18452
18468
|
autoscalerConfig?: ClusterAutoscalerConfig;
|
|
18453
|
-
/**
|
|
18454
|
-
* @deprecated Defines whether the Kubernetes dashboard is enabled for the
|
|
18455
|
-
* cluster.
|
|
18456
|
-
*/
|
|
18457
|
-
dashboardEnabled?: boolean;
|
|
18458
|
-
/**
|
|
18459
|
-
* @deprecated Managed Ingress controller used in the cluster (deprecated
|
|
18460
|
-
* feature).
|
|
18461
|
-
*/
|
|
18462
|
-
ingress?: Ingress;
|
|
18463
18469
|
/** Auto upgrade configuration of the cluster. */
|
|
18464
18470
|
autoUpgrade?: ClusterAutoUpgrade;
|
|
18465
18471
|
/** Defines whether a new Kubernetes version is available. */
|
|
@@ -18640,13 +18646,6 @@ type CreateClusterRequest$2 = {
|
|
|
18640
18646
|
version: string;
|
|
18641
18647
|
/** Container Network Interface (CNI) plugin running in the cluster. */
|
|
18642
18648
|
cni: CNI;
|
|
18643
|
-
/**
|
|
18644
|
-
* @deprecated Defines whether the Kubernetes Dashboard is enabled in the
|
|
18645
|
-
* cluster.
|
|
18646
|
-
*/
|
|
18647
|
-
enableDashboard?: boolean;
|
|
18648
|
-
/** @deprecated Ingress Controller running in the cluster (deprecated feature). */
|
|
18649
|
-
ingress?: Ingress;
|
|
18650
18649
|
/** Pools created along with the cluster. */
|
|
18651
18650
|
pools?: CreateClusterRequestPoolConfig$1[];
|
|
18652
18651
|
/**
|
|
@@ -19080,10 +19079,6 @@ type UpdateClusterRequest$2 = {
|
|
|
19080
19079
|
tags?: string[];
|
|
19081
19080
|
/** New autoscaler config for the cluster. */
|
|
19082
19081
|
autoscalerConfig?: UpdateClusterRequestAutoscalerConfig$1;
|
|
19083
|
-
/** @deprecated New value for the Kubernetes Dashboard enablement. */
|
|
19084
|
-
enableDashboard?: boolean;
|
|
19085
|
-
/** @deprecated New Ingress Controller for the cluster (deprecated feature). */
|
|
19086
|
-
ingress?: Ingress;
|
|
19087
19082
|
/**
|
|
19088
19083
|
* New auto upgrade configuration for the cluster. Note that all fields need
|
|
19089
19084
|
* to be set.
|
|
@@ -19581,7 +19576,6 @@ type index$f_ExternalNodeCoreV1Taint = ExternalNodeCoreV1Taint;
|
|
|
19581
19576
|
type index$f_GetClusterKubeConfigRequest = GetClusterKubeConfigRequest;
|
|
19582
19577
|
type index$f_GetNodeRequest = GetNodeRequest;
|
|
19583
19578
|
type index$f_GetPoolRequest = GetPoolRequest;
|
|
19584
|
-
type index$f_Ingress = Ingress;
|
|
19585
19579
|
type index$f_ListClusterAvailableTypesRequest = ListClusterAvailableTypesRequest;
|
|
19586
19580
|
type index$f_ListClusterAvailableTypesResponse = ListClusterAvailableTypesResponse;
|
|
19587
19581
|
type index$f_ListClusterAvailableVersionsRequest = ListClusterAvailableVersionsRequest;
|
|
@@ -19613,7 +19607,7 @@ type index$f_UpdatePoolRequestUpgradePolicy = UpdatePoolRequestUpgradePolicy;
|
|
|
19613
19607
|
type index$f_UpgradeClusterRequest = UpgradeClusterRequest;
|
|
19614
19608
|
type index$f_UpgradePoolRequest = UpgradePoolRequest;
|
|
19615
19609
|
declare namespace index$f {
|
|
19616
|
-
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$
|
|
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 };
|
|
19617
19611
|
}
|
|
19618
19612
|
|
|
19619
19613
|
declare namespace index$e {
|
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
|
}
|