ruchy-syntax-tools
Version: 
Comprehensive syntax highlighting and language support for the Ruchy programming language
20 lines • 701 B
TypeScript
import type { MultiTenantTokenCredentialOptions } from "./multiTenantTokenCredentialOptions.js";
/**
 * Options for the {@link AzureCliCredential}
 */
export interface AzureCliCredentialOptions extends MultiTenantTokenCredentialOptions {
    /**
     * Allows specifying a tenant ID
     */
    tenantId?: string;
    /**
     * Process timeout configurable for making token requests, provided in milliseconds
     */
    processTimeoutInMs?: number;
    /**
     * Subscription is the name or ID of a subscription. Set this to acquire tokens for an account other
     * than the Azure CLI's current account.
     */
    subscription?: string;
}
//# sourceMappingURL=azureCliCredentialOptions.d.ts.map