This commit is contained in:
RochesterX
2025-11-12 10:13:24 -05:00
parent d5b0f97adb
commit 6e820464d5
9761 changed files with 706938 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import { AuthError } from "@azure/msal-common/node";
import * as ManagedIdentityErrorCodes from "./ManagedIdentityErrorCodes.js";
export { ManagedIdentityErrorCodes };
/**
* ManagedIdentityErrorMessage class containing string constants used by error codes and messages.
*/
export declare const ManagedIdentityErrorMessages: {
invalid_file_extension: string;
invalid_file_path: string;
invalid_managed_identity_id_type: string;
invalid_secret: string;
platform_not_supported: string;
missing_client_id: string;
azure_pod_identity_authority_host_url_malformed: string;
identity_endpoint_url_malformed: string;
imds_endpoint_url_malformed: string;
msi_endpoint_url_malformed: string;
network_unavailable: string;
unable_to_create_azure_arc: string;
unable_to_create_cloud_shell: string;
unable_to_create_source: string;
unable_to_read_secret_file: string;
user_assigned_not_available_at_runtime: string;
www_authenticate_header_missing: string;
www_authenticate_header_unsupported_format: string;
};
export declare class ManagedIdentityError extends AuthError {
constructor(errorCode: string);
}
export declare function createManagedIdentityError(errorCode: string): ManagedIdentityError;
//# sourceMappingURL=ManagedIdentityError.d.ts.map