diff --git a/plugins/catalog-backend-module-azure/report.api.md b/plugins/catalog-backend-module-azure/report.api.md index f515349e94..19b79a6d0d 100644 --- a/plugins/catalog-backend-module-azure/report.api.md +++ b/plugins/catalog-backend-module-azure/report.api.md @@ -3,33 +3,22 @@ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). ```ts -import { AzureBlobStorageIntergation } from '@backstage/integration'; import { BackendFeature } from '@backstage/backend-plugin-api'; import { CatalogProcessor } from '@backstage/plugin-catalog-node'; import { CatalogProcessorEmit } from '@backstage/plugin-catalog-node'; import { Config } from '@backstage/config'; -import { DefaultAzureCredentialsManager } from '@backstage/integration'; import { EntityProvider } from '@backstage/plugin-catalog-node'; import { EntityProviderConnection } from '@backstage/plugin-catalog-node'; import { LocationSpec } from '@backstage/plugin-catalog-common'; import { LoggerService } from '@backstage/backend-plugin-api'; import { SchedulerService } from '@backstage/backend-plugin-api'; import { SchedulerServiceTaskRunner } from '@backstage/backend-plugin-api'; -import { SchedulerServiceTaskScheduleDefinition } from '@backstage/backend-plugin-api'; import { ScmIntegrationRegistry } from '@backstage/integration'; // Warning: (ae-missing-release-tag) "AzureBlobStorageEntityProvider" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal) // // @public (undocumented) export class AzureBlobStorageEntityProvider implements EntityProvider { - // Warning: (ae-forgotten-export) The symbol "AzureBlobStorageConfig" needs to be exported by the entry point index.d.ts - constructor( - config: AzureBlobStorageConfig, - integration: AzureBlobStorageIntergation, - credentialsProvider: DefaultAzureCredentialsManager, - logger: LoggerService, - schedule: SchedulerServiceTaskRunner, - ); // (undocumented) connect(connection: EntityProviderConnection): Promise; // (undocumented) diff --git a/plugins/catalog-backend-module-azure/src/providers/AzureBlobStorageEntityProvider.ts b/plugins/catalog-backend-module-azure/src/providers/AzureBlobStorageEntityProvider.ts index 47154f5c89..f30675cc9e 100644 --- a/plugins/catalog-backend-module-azure/src/providers/AzureBlobStorageEntityProvider.ts +++ b/plugins/catalog-backend-module-azure/src/providers/AzureBlobStorageEntityProvider.ts @@ -92,7 +92,7 @@ export class AzureBlobStorageEntityProvider implements EntityProvider { ); }); } - constructor( + private constructor( private readonly config: AzureBlobStorageConfig, private readonly integration: AzureBlobStorageIntergation, private readonly credentialsProvider: DefaultAzureCredentialsManager,