ServerTemplate interface

Reprezentuje stanową abstrakcję dla szablonu serwera Zdalnej konfiguracji.

Podpis:

export interface ServerTemplate 

Metody

Metoda Opis
Oceń(kontekst) Analizuje bieżący szablon w celu wygenerowania ServerConfig.
load() Pobiera i zapisuje bieżącą aktywną wersję ServerTemplate projektu.
set(template) Ustawia i zapisuje w pamięci podręcznej ciąg ServerTemplateData lub ciąg JSON reprezentujący szablon serwera
toJSON(), Zwraca reprezentację elementu ServerTemplateData w formacie JSON

ServerTemplate.Oceń()

Analizuje bieżący szablon w celu wygenerowania ServerConfig.

Podpis:

evaluate(context?: EvaluationContext): ServerConfig;

Parametry

Parametr Typ Opis
kontekst Kontekst oceny

Zwroty:

Konfiguracja serwera

ServerTemplate.load()

Pobiera i zapisuje bieżącą aktywną wersję ServerTemplate projektu.

Podpis:

load(): Promise<void>;

Zwroty:

Obietnica<void>

ServerTemplate.set()

Ustawia i zapisuje w pamięci podręcznej ciąg ServerTemplateData lub ciąg JSON reprezentujący szablon serwera

Podpis:

set(template: ServerTemplateDataType): void;

Parametry

Parametr Typ Opis
szablon ServerTemplateDataType (Typ danych ServerTemplateDataType)

Zwroty:

nieważne

ServerTemplate.toJSON()

Zwraca reprezentację elementu ServerTemplateData w formacie JSON

Podpis:

toJSON(): ServerTemplateData;

Zwroty:

ServerTemplateData (Dane szablonu serwera)