diff --git a/plugins/kubernetes-backend/api-report.md b/plugins/kubernetes-backend/api-report.md index 449131a26e..2b6387701b 100644 --- a/plugins/kubernetes-backend/api-report.md +++ b/plugins/kubernetes-backend/api-report.md @@ -5,7 +5,6 @@ ```ts import { CatalogApi } from '@backstage/catalog-client'; import { Config } from '@backstage/config'; -import { Credentials } from 'aws-sdk'; import type { CustomResourceMatcher } from '@backstage/plugin-kubernetes-common'; import { Duration } from 'luxon'; import { Entity } from '@backstage/catalog-model'; @@ -34,25 +33,10 @@ export interface AWSClusterDetails extends ClusterDetails { export class AwsIamKubernetesAuthTranslator implements KubernetesAuthTranslator { - // (undocumented) - awsGetCredentials: () => Promise; // (undocumented) decorateClusterDetailsWithAuth( clusterDetails: AWSClusterDetails, ): Promise; - // (undocumented) - getBearerToken( - clusterName: string, - assumeRole?: string, - externalId?: string, - ): Promise; - // (undocumented) - getCredentials( - assumeRole?: string, - externalId?: string, - ): Promise; - // (undocumented) - validCredentials(creds: SigningCreds): boolean; } // @public (undocumented)