@hashgraph/solo
    Preparing search index...
    interface ConfigMaps {
        create(
            namespace: NamespaceName,
            name: string,
            labels: Record<string, string>,
            data: Record<string, string>,
        ): Promise<boolean>;
        createOrReplace(
            namespace: NamespaceName,
            name: string,
            labels: Record<string, string>,
            data: Record<string, string>,
        ): Promise<boolean>;
        delete(namespace: NamespaceName, name: string): Promise<boolean>;
        exists(namespace: NamespaceName, name: string): Promise<boolean>;
        list(namespace: NamespaceName, labels: string[]): Promise<ConfigMap[]>;
        listForAllNamespaces(labels: string[]): Promise<ConfigMap[]>;
        read(namespace: NamespaceName, name: string): Promise<ConfigMap>;
        replace(
            namespace: NamespaceName,
            name: string,
            labels: Record<string, string>,
            data: Record<string, string>,
        ): Promise<boolean>;
        update(
            namespace: NamespaceName,
            name: string,
            data: Record<string, string>,
        ): Promise<void>;
    }

    Implemented by

    Index

    Methods

    • Create a new config map. If the config map already exists, it will not be replaced.

      Parameters

      • namespace: NamespaceName

        for the config map

      • name: string

        for the config name

      • labels: Record<string, string>

        for the config metadata

      • data: Record<string, string>

        to contain in the config

      Returns Promise<boolean>

      if the config map could not be created.

      if the API call fails for an unexpected reason.

    • Create or replace a config map. If the config map already exists, it will be replaced.

      Parameters

      • namespace: NamespaceName

        for the config map

      • name: string

        for the config name

      • labels: Record<string, string>

        for the config metadata

      • data: Record<string, string>

        to contain in the config

      Returns Promise<boolean>

      if the config map could not be created.

      if the config map could not be replaced.

      if the API call fails for an unexpected reason.

    • Replace an existing config map with a new one

      Parameters

      • namespace: NamespaceName

        for the config map

      • name: string

        for the config name

      • labels: Record<string, string>

        for the config metadata

      • data: Record<string, string>

        to contain in the config

      Returns Promise<boolean>