Initial import from local backup (Documents-Playground/pakerpale)
This commit is contained in:
29
node_modules/gcp-metadata/build/src/index.d.ts
generated
vendored
Normal file
29
node_modules/gcp-metadata/build/src/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* Copyright 2018 Google LLC
|
||||
*
|
||||
* Distributed under MIT license.
|
||||
* See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
||||
*/
|
||||
/// <reference types="node" />
|
||||
import { OutgoingHttpHeaders } from 'http';
|
||||
export declare const HOST_ADDRESS = "http://metadata.google.internal.";
|
||||
export declare const BASE_PATH = "/computeMetadata/v1";
|
||||
export declare const BASE_URL: string;
|
||||
export declare const HEADER_NAME = "Metadata-Flavor";
|
||||
export declare const HEADER_VALUE = "Google";
|
||||
export declare const HEADERS: Readonly<{
|
||||
[HEADER_NAME]: string;
|
||||
}>;
|
||||
export interface Options {
|
||||
params?: {
|
||||
[index: string]: string;
|
||||
};
|
||||
property?: string;
|
||||
headers?: OutgoingHttpHeaders;
|
||||
}
|
||||
export declare function instance<T = any>(options?: string | Options): Promise<T>;
|
||||
export declare function project<T = any>(options?: string | Options): Promise<T>;
|
||||
/**
|
||||
* Determine if the metadata server is currently available.
|
||||
*/
|
||||
export declare function isAvailable(): Promise<boolean>;
|
||||
Reference in New Issue
Block a user