Type Alias SecretStore

SecretStore: {
    createSecretStoreExportTemplate(): SecretStoreExportInterface;
    exportSecretStore(
        secretStoreId: string,
        globalConfig: boolean,
    ): Promise<SecretStoreExportInterface>;
    exportSecretStores(
        globalConfig: boolean,
    ): Promise<SecretStoreExportInterface>;
    importSecretStores(
        importData: SecretStoreExportInterface,
        globalConfig: boolean,
        secretStoreId?: string,
    ): Promise<SecretStoreExportSkeleton[]>;
    readSecretStore(
        secretStoreId: string,
        globalConfig: boolean,
    ): Promise<AmConfigEntityInterface>;
    readSecretStoreMappings(
        secretStoreId: string,
        secretStoreTypeId: string,
        globalConfig: boolean,
    ): Promise<SecretStoreMappingSkeleton[]>;
    readSecretStores(globalConfig: boolean): Promise<AmConfigEntityInterface[]>;
    updateSecretStore(
        secretStoreData: AmConfigEntityInterface,
        globalConfig: boolean,
    ): Promise<AmConfigEntityInterface>;
    updateSecretStoreMapping(
        secretStoreId: string,
        secretStoreTypeId: string,
        secretStoreMappingData: SecretStoreMappingSkeleton,
        globalConfig: boolean,
    ): Promise<SecretStoreMappingSkeleton>;
}

Type declaration

  • createSecretStoreExportTemplate:function
  • exportSecretStore:function
    • Export a single secret store by id. The response can be saved to file as is.

      Parameters

      • secretStoreId: string

        Secret store id

      • globalConfig: boolean

        true if global secret store is the target of the operation, false otherwise. Default: false.

      Returns Promise<SecretStoreExportInterface>

      Promise resolving to a SecretStoreExportInterface object.

  • exportSecretStores:function
  • importSecretStores:function
  • readSecretStore:function
    • Read secret store by id

      Parameters

      • secretStoreId: string

        Secret store id

      • globalConfig: boolean

        true if global secret store is the target of the operation, false otherwise. Default: false.

      Returns Promise<AmConfigEntityInterface>

      a promise that resolves to a secret store object

  • readSecretStoreMappings:function
    • Read secret store mappings

      Parameters

      • secretStoreId: string

        Secret store id

      • secretStoreTypeId: string

        Secret store type id

      • globalConfig: boolean

        true if the secret store is global, false otherwise. Default: false.

      Returns Promise<SecretStoreMappingSkeleton[]>

      a promise that resolves to an array of secret store mapping objects

  • readSecretStores:function
  • updateSecretStore:function
  • updateSecretStoreMapping:function