@hashgraph/solo
    Preparing search index...
    interface RemoteConfigRuntimeStateApi {
        configuration?: RemoteConfig;
        currentCluster: string;
        addCommandToHistory(command: string): void;
        create(
            argv: ArgvStruct,
            ledgerPhase: LedgerPhase,
            nodeAliases: NodeAliases,
            namespace: NamespaceName,
            deployment: string,
            clusterReference: string,
            context: string,
            dnsBaseDomain: string,
            dnsConsensusNodePattern: string,
        ): Promise<void>;
        createConfigMap(
            namespace: NamespaceName,
            context: string,
        ): Promise<ConfigMap>;
        createFromExisting(
            namespace: NamespaceName,
            clusterReference: string,
            deployment: string,
            componentFactory: ComponentFactoryApi,
            dnsBaseDomain: string,
            dnsConsensusNodePattern: string,
            existingClusterContext: string,
            argv: ArgvStruct,
            nodeAliases: NodeAliases,
        ): Promise<void>;
        deleteComponents(): Promise<void>;
        getClusterRefs(): ClusterReferences;
        getConsensusNodes(): ConsensusNode[];
        getContexts(): string[];
        getNamespace(): NamespaceName;
        isLoaded(): boolean;
        load(namespace?: NamespaceName, context?: string): Promise<void>;
        loadAndValidate(
            argv: { _: string[] } & AnyObject,
            validate?: boolean,
            skipConsensusNodesValidation?: boolean,
        ): Promise<void>;
        persist(): Promise<void>;
        populateFromExisting(
            namespace: NamespaceName,
            context: string,
        ): Promise<void>;
        remoteConfigExists(
            namespace: NamespaceName,
            context: string,
        ): Promise<boolean>;
    }

    Implemented by

    Index

    Properties

    configuration?: RemoteConfig
    currentCluster: string

    Methods