@aws-sdk/client-geo-maps 3.1110.0 → 3.1112.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist-cjs/index.js +37 -12
- package/dist-es/endpoint/bdd.js +4 -4
- package/dist-es/models/enums.js +19 -0
- package/dist-es/schemas/schemas_0.js +12 -7
- package/dist-types/GeoMaps.d.ts +1 -1
- package/dist-types/GeoMapsClient.d.ts +1 -1
- package/dist-types/commands/GetSpritesCommand.d.ts +3 -3
- package/dist-types/commands/GetStaticMapCommand.d.ts +6 -6
- package/dist-types/commands/GetStyleDescriptorCommand.d.ts +11 -7
- package/dist-types/commands/GetTileCommand.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +35 -10
- package/dist-types/models/models_0.d.ts +11 -1
- package/dist-types/runtimeConfig.browser.d.ts +40 -40
- package/dist-types/runtimeConfig.d.ts +36 -36
- package/dist-types/runtimeConfig.native.d.ts +38 -38
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/models/enums.d.ts +21 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +56 -58
- package/dist-types/ts3.4/runtimeConfig.d.ts +58 -58
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +60 -62
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/package.json +5 -5
|
@@ -4,11 +4,46 @@ import type { GeoMapsClientConfig } from "./GeoMapsClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: GeoMapsClientConfig) => {
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
9
|
+
tls?: boolean;
|
|
10
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
11
|
+
serviceConfiguredEndpoint?: never;
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
26
|
+
logger?: import("@smithy/types").Logger;
|
|
27
|
+
}) => import("@smithy/types").EndpointV2;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoMapsHttpAuthSchemeProvider;
|
|
30
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
[setting: string]: unknown;
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
};
|
|
37
|
+
serviceId: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
7
42
|
runtime: string;
|
|
8
43
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
44
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
45
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider: ((
|
|
46
|
+
credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
12
47
|
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
48
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
49
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -18,40 +53,5 @@ export declare const getRuntimeConfig: (config: GeoMapsClientConfig) => {
|
|
|
18
53
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
54
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
55
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
21
|
-
cacheMiddleware?: boolean | undefined;
|
|
22
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
23
|
-
protocolSettings: {
|
|
24
|
-
defaultNamespace?: string;
|
|
25
|
-
[setting: string]: unknown;
|
|
26
|
-
};
|
|
27
|
-
apiVersion: string;
|
|
28
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
29
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
32
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
33
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
34
|
-
disableHostPrefix: boolean;
|
|
35
|
-
serviceId: string;
|
|
36
56
|
profile?: string;
|
|
37
|
-
logger: import("@smithy/types").Logger;
|
|
38
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
40
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
41
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
42
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
43
|
-
logger?: import("@smithy/types").Logger;
|
|
44
|
-
}) => import("@smithy/types").EndpointV2;
|
|
45
|
-
tls?: boolean;
|
|
46
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
47
|
-
serviceConfiguredEndpoint?: never;
|
|
48
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
49
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoMapsHttpAuthSchemeProvider;
|
|
50
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
51
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
52
|
-
signingEscapePath?: boolean;
|
|
53
|
-
systemClockOffset?: number;
|
|
54
|
-
signingRegion?: string;
|
|
55
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
57
57
|
};
|
|
@@ -3,54 +3,54 @@ import type { GeoMapsClientConfig } from "./GeoMapsClient";
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: GeoMapsClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
6
|
cacheMiddleware?: boolean;
|
|
9
|
-
|
|
7
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
8
|
+
tls?: boolean;
|
|
9
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
10
|
+
serviceConfiguredEndpoint?: never;
|
|
11
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
12
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
signingEscapePath?: boolean;
|
|
17
|
+
systemClockOffset?: number;
|
|
18
|
+
signingRegion?: string;
|
|
19
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
20
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
27
|
+
logger?: import("@smithy/types").Logger;
|
|
28
|
+
}) => import("@smithy/types").EndpointV2;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoMapsHttpAuthSchemeProvider;
|
|
31
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
32
|
+
logger: import("@smithy/types").Logger;
|
|
33
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
10
34
|
protocolSettings: {
|
|
11
|
-
defaultNamespace?: string;
|
|
12
35
|
[setting: string]: unknown;
|
|
36
|
+
defaultNamespace?: string;
|
|
13
37
|
};
|
|
14
|
-
|
|
38
|
+
serviceId: string;
|
|
15
39
|
sha256: import("@smithy/types").HashConstructor;
|
|
16
40
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
41
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
42
|
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
serviceId: string;
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
28
43
|
profile?: string;
|
|
29
|
-
|
|
44
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
45
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
30
46
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
47
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
31
48
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
49
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
50
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
32
51
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
39
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
40
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
41
|
-
logger?: import("@smithy/types").Logger;
|
|
42
|
-
}) => import("@smithy/types").EndpointV2;
|
|
43
|
-
tls?: boolean;
|
|
44
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
|
-
serviceConfiguredEndpoint?: never;
|
|
46
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
47
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
48
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoMapsHttpAuthSchemeProvider;
|
|
49
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
50
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
51
|
-
signingEscapePath?: boolean;
|
|
52
|
-
systemClockOffset?: number;
|
|
53
|
-
signingRegion?: string;
|
|
54
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
55
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
52
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
53
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
54
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
55
|
+
runtime: string;
|
|
56
56
|
};
|
|
@@ -8,14 +8,14 @@ export declare const getRuntimeConfig: (config: GeoMapsClientConfig) => {
|
|
|
8
8
|
base64Decoder: import("@smithy/types").Decoder;
|
|
9
9
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
10
10
|
disableHostPrefix: boolean;
|
|
11
|
-
endpointProvider: (
|
|
11
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
12
12
|
logger?: import("@smithy/types").Logger;
|
|
13
13
|
}) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoMapsHttpAuthSchemeProvider;
|
|
16
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
17
|
logger: import("@smithy/types").Logger;
|
|
18
|
-
protocol: import("@smithy/types")
|
|
18
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
19
|
protocolSettings: {
|
|
20
20
|
[setting: string]: unknown;
|
|
21
21
|
defaultNamespace?: string;
|
|
@@ -56,6 +56,27 @@ export declare const ValidationExceptionReason: {
|
|
|
56
56
|
};
|
|
57
57
|
export type ValidationExceptionReason =
|
|
58
58
|
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
59
|
+
export declare const PoiCategory: {
|
|
60
|
+
readonly ACCOMMODATIONS: "Accommodations";
|
|
61
|
+
readonly BUSINESS_AND_SERVICES: "BusinessAndServices";
|
|
62
|
+
readonly ENTERTAINMENT: "Entertainment";
|
|
63
|
+
readonly FACILITIES_AND_BUILDINGS: "FacilitiesAndBuildings";
|
|
64
|
+
readonly FOOD_AND_DRINK: "FoodAndDrink";
|
|
65
|
+
readonly LEISURE_AND_OUTDOOR: "LeisureAndOutdoor";
|
|
66
|
+
readonly SHOPPING: "Shopping";
|
|
67
|
+
readonly SIGHTS_AND_MUSEUMS: "SightsAndMuseums";
|
|
68
|
+
readonly TRANSPORTATION: "Transportation";
|
|
69
|
+
};
|
|
70
|
+
export type PoiCategory = (typeof PoiCategory)[keyof typeof PoiCategory];
|
|
71
|
+
export declare const PoiDensity: {
|
|
72
|
+
readonly DEFAULT: "Default";
|
|
73
|
+
readonly DENSE: "Dense";
|
|
74
|
+
readonly OFF: "Off";
|
|
75
|
+
readonly SPARSE: "Sparse";
|
|
76
|
+
readonly VERY_DENSE: "VeryDense";
|
|
77
|
+
readonly VERY_SPARSE: "VerySparse";
|
|
78
|
+
};
|
|
79
|
+
export type PoiDensity = (typeof PoiDensity)[keyof typeof PoiDensity];
|
|
59
80
|
export declare const Terrain: {
|
|
60
81
|
readonly HILLSHADE: "Hillshade";
|
|
61
82
|
readonly TERRAIN_3D: "Terrain3D";
|
|
@@ -5,6 +5,8 @@ import {
|
|
|
5
5
|
LabelSize,
|
|
6
6
|
MapFeatureMode,
|
|
7
7
|
MapStyle,
|
|
8
|
+
PoiCategory,
|
|
9
|
+
PoiDensity,
|
|
8
10
|
ScaleBarUnit,
|
|
9
11
|
StaticMapStyle,
|
|
10
12
|
Terrain,
|
|
@@ -77,6 +79,8 @@ export interface GetStyleDescriptorRequest {
|
|
|
77
79
|
Traffic?: Traffic | undefined;
|
|
78
80
|
TravelModes?: TravelMode[] | undefined;
|
|
79
81
|
Buildings?: Buildings | undefined;
|
|
82
|
+
PoiDensity?: PoiDensity | undefined;
|
|
83
|
+
PoiCategories?: PoiCategory[] | undefined;
|
|
80
84
|
Key?: string | undefined;
|
|
81
85
|
}
|
|
82
86
|
export interface GetStyleDescriptorResponse {
|
|
@@ -1,81 +1,30 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { GeoMapsClientConfig } from "./GeoMapsClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: GeoMapsClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
|
-
defaultUserAgentProvider: (
|
|
13
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
14
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
17
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
18
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
-
streamCollector: (
|
|
20
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
21
|
-
) => Promise<Uint8Array>;
|
|
22
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
23
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
24
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
25
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
cacheMiddleware?: boolean | undefined;
|
|
27
|
-
protocol:
|
|
28
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
29
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
30
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
31
|
-
protocolSettings: {
|
|
32
|
-
defaultNamespace?: string;
|
|
33
|
-
[setting: string]: unknown;
|
|
34
|
-
};
|
|
35
|
-
apiVersion: string;
|
|
36
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
37
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
38
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
39
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
40
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
42
|
-
disableHostPrefix: boolean;
|
|
43
|
-
serviceId: string;
|
|
44
|
-
profile?: string;
|
|
45
|
-
logger: import("@smithy/types").Logger;
|
|
46
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
47
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
50
5
|
endpoint?:
|
|
51
6
|
| ((
|
|
52
7
|
| string
|
|
53
8
|
| import("@smithy/types").Endpoint
|
|
54
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
55
9
|
| import("@smithy/types").EndpointV2
|
|
10
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
56
11
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
57
12
|
) &
|
|
58
13
|
(
|
|
59
14
|
| string
|
|
60
|
-
| import("@smithy/types").Provider<string>
|
|
61
15
|
| import("@smithy/types").Endpoint
|
|
62
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
63
16
|
| import("@smithy/types").EndpointV2
|
|
17
|
+
| import("@smithy/types").Provider<string>
|
|
18
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
19
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
65
20
|
))
|
|
66
21
|
| undefined;
|
|
67
|
-
endpointProvider: (
|
|
68
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
69
|
-
context?: {
|
|
70
|
-
logger?: import("@smithy/types").Logger;
|
|
71
|
-
},
|
|
72
|
-
) => import("@smithy/types").EndpointV2;
|
|
73
22
|
tls?: boolean;
|
|
74
23
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
75
24
|
serviceConfiguredEndpoint?: never;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
25
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
26
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
27
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
79
28
|
credentials?:
|
|
80
29
|
| import("@smithy/types").AwsCredentialIdentity
|
|
81
30
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -92,4 +41,53 @@ export declare const getRuntimeConfig: (config: GeoMapsClientConfig) => {
|
|
|
92
41
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
93
42
|
) => import("@smithy/types").RequestSigner;
|
|
94
43
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
44
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
45
|
+
apiVersion: string;
|
|
46
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
47
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
48
|
+
disableHostPrefix: boolean;
|
|
49
|
+
endpointProvider: (
|
|
50
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
51
|
+
context?: {
|
|
52
|
+
logger?: import("@smithy/types").Logger;
|
|
53
|
+
},
|
|
54
|
+
) => import("@smithy/types").EndpointV2;
|
|
55
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoMapsHttpAuthSchemeProvider;
|
|
57
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
58
|
+
logger: import("@smithy/types").Logger;
|
|
59
|
+
protocol:
|
|
60
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
61
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
62
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
63
|
+
protocolSettings: {
|
|
64
|
+
[setting: string]: unknown;
|
|
65
|
+
defaultNamespace?: string;
|
|
66
|
+
};
|
|
67
|
+
serviceId: string;
|
|
68
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
69
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
70
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
71
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
72
|
+
profile?: string;
|
|
73
|
+
runtime: string;
|
|
74
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
75
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
76
|
+
>;
|
|
77
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
78
|
+
credentialDefaultProvider:
|
|
79
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
80
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
81
|
+
defaultUserAgentProvider: (
|
|
82
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
83
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
84
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
85
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
86
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
87
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
88
|
+
streamCollector: (
|
|
89
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
90
|
+
) => Promise<Uint8Array>;
|
|
91
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
92
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
95
93
|
};
|
|
@@ -1,81 +1,29 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { GeoMapsClientConfig } from "./GeoMapsClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: GeoMapsClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider:
|
|
11
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
|
-
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
|
-
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
|
-
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
|
-
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
21
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
streamCollector: (
|
|
23
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
24
|
-
) => Promise<Uint8Array>;
|
|
25
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
-
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
28
|
-
cacheMiddleware?: boolean | undefined;
|
|
29
|
-
protocol:
|
|
30
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
31
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
32
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
-
protocolSettings: {
|
|
34
|
-
defaultNamespace?: string;
|
|
35
|
-
[setting: string]: unknown;
|
|
36
|
-
};
|
|
37
|
-
apiVersion: string;
|
|
38
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
41
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
42
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
44
|
-
disableHostPrefix: boolean;
|
|
45
|
-
serviceId: string;
|
|
46
|
-
profile?: string;
|
|
47
|
-
logger: import("@smithy/types").Logger;
|
|
48
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
50
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
51
5
|
endpoint?:
|
|
52
6
|
| ((
|
|
53
7
|
| string
|
|
54
8
|
| import("@smithy/types").Endpoint
|
|
55
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
56
9
|
| import("@smithy/types").EndpointV2
|
|
10
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
57
11
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
58
12
|
) &
|
|
59
13
|
(
|
|
60
14
|
| string
|
|
61
|
-
| import("@smithy/types").Provider<string>
|
|
62
15
|
| import("@smithy/types").Endpoint
|
|
63
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
16
|
| import("@smithy/types").EndpointV2
|
|
17
|
+
| import("@smithy/types").Provider<string>
|
|
18
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
65
19
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
20
|
))
|
|
67
21
|
| undefined;
|
|
68
|
-
endpointProvider: (
|
|
69
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
70
|
-
context?: {
|
|
71
|
-
logger?: import("@smithy/types").Logger;
|
|
72
|
-
},
|
|
73
|
-
) => import("@smithy/types").EndpointV2;
|
|
74
22
|
tls?: boolean;
|
|
75
23
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
76
24
|
serviceConfiguredEndpoint?: never;
|
|
77
|
-
|
|
78
|
-
|
|
25
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
26
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
79
27
|
credentials?:
|
|
80
28
|
| import("@smithy/types").AwsCredentialIdentity
|
|
81
29
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -92,4 +40,56 @@ export declare const getRuntimeConfig: (config: GeoMapsClientConfig) => {
|
|
|
92
40
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
93
41
|
) => import("@smithy/types").RequestSigner;
|
|
94
42
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
43
|
+
apiVersion: string;
|
|
44
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
45
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
46
|
+
disableHostPrefix: boolean;
|
|
47
|
+
endpointProvider: (
|
|
48
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
49
|
+
context?: {
|
|
50
|
+
logger?: import("@smithy/types").Logger;
|
|
51
|
+
},
|
|
52
|
+
) => import("@smithy/types").EndpointV2;
|
|
53
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GeoMapsHttpAuthSchemeProvider;
|
|
55
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
56
|
+
logger: import("@smithy/types").Logger;
|
|
57
|
+
protocol:
|
|
58
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
59
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
60
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
61
|
+
protocolSettings: {
|
|
62
|
+
[setting: string]: unknown;
|
|
63
|
+
defaultNamespace?: string;
|
|
64
|
+
};
|
|
65
|
+
serviceId: string;
|
|
66
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
67
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
68
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
69
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
70
|
+
runtime: string;
|
|
71
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
72
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
73
|
+
>;
|
|
74
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
75
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
76
|
+
credentialDefaultProvider:
|
|
77
|
+
| ((
|
|
78
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
79
|
+
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider)
|
|
80
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
81
|
+
defaultUserAgentProvider: (
|
|
82
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
83
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
84
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
85
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
86
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
87
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
88
|
+
streamCollector: (
|
|
89
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
90
|
+
) => Promise<Uint8Array>;
|
|
91
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
92
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
93
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
94
|
+
profile?: string;
|
|
95
95
|
};
|