@scaleway/sdk-applesilicon 2.2.0 → 2.3.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.
|
@@ -372,6 +372,7 @@ const marshalBatchCreateServersRequestBatchInnerCreateServerRequest = (request,
|
|
|
372
372
|
});
|
|
373
373
|
const marshalBatchCreateServersRequest = (request, defaults) => ({
|
|
374
374
|
commitment_type: request.commitmentType,
|
|
375
|
+
enable_kext: request.enableKext,
|
|
375
376
|
enable_vpc: request.enableVpc,
|
|
376
377
|
os_id: request.osId,
|
|
377
378
|
project_id: request.projectId ?? defaults.defaultProjectId,
|
|
@@ -430,6 +431,7 @@ const marshalCreateServerRequest = (request, defaults) => ({
|
|
|
430
431
|
request.appliedRunnerConfigurations
|
|
431
432
|
) : void 0,
|
|
432
433
|
commitment_type: request.commitmentType,
|
|
434
|
+
enable_kext: request.enableKext,
|
|
433
435
|
enable_vpc: request.enableVpc,
|
|
434
436
|
name: request.name || randomName("as"),
|
|
435
437
|
os_id: request.osId,
|
|
@@ -446,6 +448,7 @@ const marshalPrivateNetworkApiSetServerPrivateNetworksRequest = (request, defaul
|
|
|
446
448
|
per_private_network_ipam_ip_ids: request.perPrivateNetworkIpamIpIds
|
|
447
449
|
});
|
|
448
450
|
const marshalReinstallServerRequest = (request, defaults) => ({
|
|
451
|
+
enable_kext: request.enableKext,
|
|
449
452
|
os_id: request.osId
|
|
450
453
|
});
|
|
451
454
|
const marshalStartConnectivityDiagnosticRequest = (request, defaults) => ({
|
|
@@ -362,6 +362,10 @@ export type BatchCreateServersRequest = {
|
|
|
362
362
|
* List of servers to create.
|
|
363
363
|
*/
|
|
364
364
|
requests?: BatchCreateServersRequestBatchInnerCreateServerRequest[];
|
|
365
|
+
/**
|
|
366
|
+
* Enable kernel extensions in this install of mac OS.
|
|
367
|
+
*/
|
|
368
|
+
enableKext: boolean;
|
|
365
369
|
};
|
|
366
370
|
export interface BatchCreateServersResponse {
|
|
367
371
|
/**
|
|
@@ -432,6 +436,10 @@ export type CreateServerRequest = {
|
|
|
432
436
|
* Runner configurations to apply on the server, existing ones missing from the specified configuration will be removed from the server.
|
|
433
437
|
*/
|
|
434
438
|
appliedRunnerConfigurations?: AppliedRunnerConfigurations;
|
|
439
|
+
/**
|
|
440
|
+
* Enable kernel extensions in this install of mac OS.
|
|
441
|
+
*/
|
|
442
|
+
enableKext: boolean;
|
|
435
443
|
};
|
|
436
444
|
export type DeleteRunnerRequest = {
|
|
437
445
|
/**
|
|
@@ -729,6 +737,10 @@ export type ReinstallServerRequest = {
|
|
|
729
737
|
* Reinstall the server with the target OS, when no os_id provided the default OS for the server type is used.
|
|
730
738
|
*/
|
|
731
739
|
osId?: string;
|
|
740
|
+
/**
|
|
741
|
+
* Enable kernel extensions in this install of mac OS.
|
|
742
|
+
*/
|
|
743
|
+
enableKext: boolean;
|
|
732
744
|
};
|
|
733
745
|
export interface SetServerPrivateNetworksResponse {
|
|
734
746
|
serverPrivateNetworks: ServerPrivateNetwork[];
|