From af4e1df367d533573d92e4b9bdb1152f8cb47128 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Tue, 29 Aug 2023 12:13:50 -0700 Subject: [PATCH] update interface name --- src/CredentialSource/AwsNativeSource.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CredentialSource/AwsNativeSource.php b/src/CredentialSource/AwsNativeSource.php index 9f18ff59e..e3b60513f 100644 --- a/src/CredentialSource/AwsNativeSource.php +++ b/src/CredentialSource/AwsNativeSource.php @@ -17,7 +17,7 @@ namespace Google\Auth\CredentialSource; -use Google\Auth\CredentialSourceInterface; +use Google\Auth\ExternalAccountCredentialSourceInterface; use Google\Auth\HttpHandler\HttpClientCache; use Google\Auth\HttpHandler\HttpHandlerFactory; use GuzzleHttp\Psr7\Request; @@ -25,7 +25,7 @@ /** * Authenticates requests using IAM credentials. */ -class AwsNativeSource implements CredentialSourceInterface +class AwsNativeSource implements ExternalAccountCredentialSourceInterface { private const CRED_VERIFICATION_QUERY = 'Action=GetCallerIdentity&Version=2011-06-15';