Rocky_Mountain_Vending/.pnpm-store/v10/files/ac/768f8b1fe951f7d9f1d59f6b4ad9333f7f7c8457cbbc40bac960257c26a33a3b68b3efe9469d06bfaab1445c4e3774d5e470c946cc6b8d3740ef3447cd9163
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

21 lines
940 B
Text

import { Endpoint } from "@smithy/types";
/**
* Returns the host to use for instance metadata service call.
*
* The host is read from endpoint which can be set either in
* {@link ENV_ENDPOINT_NAME} environment variable or {@link CONFIG_ENDPOINT_NAME}
* configuration property.
*
* If endpoint is not set, then endpoint mode is read either from
* {@link ENV_ENDPOINT_MODE_NAME} environment variable or {@link CONFIG_ENDPOINT_MODE_NAME}
* configuration property. If endpoint mode is not set, then default endpoint mode
* {@link EndpointMode.IPv4} is used.
*
* If endpoint mode is set to {@link EndpointMode.IPv4}, then the host is {@link Endpoint.IPv4}.
* If endpoint mode is set to {@link EndpointMode.IPv6}, then the host is {@link Endpoint.IPv6}.
*
* @returns Host to use for instance metadata service call.
*
* @internal
*/
export declare const getInstanceMetadataEndpoint: () => Promise<Endpoint>;