Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
@@ -0,0 +1,24 @@
import type { AccessToken } from "@azure/core-auth";
import type { IdentityClient } from "../../client/identityClient.js";
/**
* @internal
*/
export interface MSIConfiguration {
retryConfig: {
maxRetries: number;
startDelayInMs: number;
intervalIncrement: number;
};
identityClient: IdentityClient;
scopes: string | string[];
clientId?: string;
resourceId?: string;
}
/**
* @internal
* Represents an access token for {@link ManagedIdentity} for internal usage,
* with an expiration time and the time in which token should refresh.
*/
export declare interface MSIToken extends AccessToken {
}
//# sourceMappingURL=models.d.ts.map