@aws-sdk/client-location 3.272.0 → 3.278.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/dist-cjs/Location.js +75 -0
- package/dist-cjs/commands/CreateKeyCommand.js +46 -0
- package/dist-cjs/commands/DeleteKeyCommand.js +46 -0
- package/dist-cjs/commands/DescribeKeyCommand.js +46 -0
- package/dist-cjs/commands/ListKeysCommand.js +46 -0
- package/dist-cjs/commands/UpdateKeyCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +80 -22
- package/dist-cjs/pagination/ListKeysPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +544 -3
- package/dist-es/Location.js +75 -0
- package/dist-es/commands/CreateKeyCommand.js +42 -0
- package/dist-es/commands/DeleteKeyCommand.js +42 -0
- package/dist-es/commands/DescribeKeyCommand.js +42 -0
- package/dist-es/commands/ListKeysCommand.js +42 -0
- package/dist-es/commands/UpdateKeyCommand.js +42 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +60 -15
- package/dist-es/pagination/ListKeysPaginator.js +32 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +531 -0
- package/dist-types/Location.d.ts +82 -24
- package/dist-types/LocationClient.d.ts +7 -2
- package/dist-types/commands/CreateKeyCommand.d.ts +44 -0
- package/dist-types/commands/CreateMapCommand.d.ts +2 -2
- package/dist-types/commands/CreatePlaceIndexCommand.d.ts +2 -2
- package/dist-types/commands/CreateRouteCalculatorCommand.d.ts +2 -2
- package/dist-types/commands/CreateTrackerCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGeofenceCollectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteKeyCommand.d.ts +38 -0
- package/dist-types/commands/DeleteMapCommand.d.ts +1 -1
- package/dist-types/commands/DeletePlaceIndexCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRouteCalculatorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTrackerCommand.d.ts +1 -1
- package/dist-types/commands/DescribeKeyCommand.d.ts +42 -0
- package/dist-types/commands/GetPlaceCommand.d.ts +2 -2
- package/dist-types/commands/ListGeofenceCollectionsCommand.d.ts +1 -1
- package/dist-types/commands/ListKeysCommand.d.ts +42 -0
- package/dist-types/commands/ListMapsCommand.d.ts +1 -1
- package/dist-types/commands/ListPlaceIndexesCommand.d.ts +1 -1
- package/dist-types/commands/ListRouteCalculatorsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrackersCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +5 -5
- package/dist-types/commands/UpdateKeyCommand.d.ts +42 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +548 -67
- package/dist-types/pagination/ListKeysPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/Location.d.ts +85 -0
- package/dist-types/ts3.4/LocationClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateKeyCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteKeyCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DescribeKeyCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateKeyCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +131 -15
- package/dist-types/ts3.4/pagination/ListKeysPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +4 -4
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListKeysCommandInput, ListKeysCommandOutput } from "../commands/ListKeysCommand";
|
|
3
|
+
import { LocationPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListKeys(config: LocationPaginationConfiguration, input: ListKeysCommandInput, ...additionalArguments: any): Paginator<ListKeysCommandOutput>;
|
|
@@ -3,6 +3,7 @@ export * from "./Interfaces";
|
|
|
3
3
|
export * from "./ListDevicePositionsPaginator";
|
|
4
4
|
export * from "./ListGeofenceCollectionsPaginator";
|
|
5
5
|
export * from "./ListGeofencesPaginator";
|
|
6
|
+
export * from "./ListKeysPaginator";
|
|
6
7
|
export * from "./ListMapsPaginator";
|
|
7
8
|
export * from "./ListPlaceIndexesPaginator";
|
|
8
9
|
export * from "./ListRouteCalculatorsPaginator";
|
|
@@ -10,16 +10,19 @@ import { BatchUpdateDevicePositionCommandInput, BatchUpdateDevicePositionCommand
|
|
|
10
10
|
import { CalculateRouteCommandInput, CalculateRouteCommandOutput } from "../commands/CalculateRouteCommand";
|
|
11
11
|
import { CalculateRouteMatrixCommandInput, CalculateRouteMatrixCommandOutput } from "../commands/CalculateRouteMatrixCommand";
|
|
12
12
|
import { CreateGeofenceCollectionCommandInput, CreateGeofenceCollectionCommandOutput } from "../commands/CreateGeofenceCollectionCommand";
|
|
13
|
+
import { CreateKeyCommandInput, CreateKeyCommandOutput } from "../commands/CreateKeyCommand";
|
|
13
14
|
import { CreateMapCommandInput, CreateMapCommandOutput } from "../commands/CreateMapCommand";
|
|
14
15
|
import { CreatePlaceIndexCommandInput, CreatePlaceIndexCommandOutput } from "../commands/CreatePlaceIndexCommand";
|
|
15
16
|
import { CreateRouteCalculatorCommandInput, CreateRouteCalculatorCommandOutput } from "../commands/CreateRouteCalculatorCommand";
|
|
16
17
|
import { CreateTrackerCommandInput, CreateTrackerCommandOutput } from "../commands/CreateTrackerCommand";
|
|
17
18
|
import { DeleteGeofenceCollectionCommandInput, DeleteGeofenceCollectionCommandOutput } from "../commands/DeleteGeofenceCollectionCommand";
|
|
19
|
+
import { DeleteKeyCommandInput, DeleteKeyCommandOutput } from "../commands/DeleteKeyCommand";
|
|
18
20
|
import { DeleteMapCommandInput, DeleteMapCommandOutput } from "../commands/DeleteMapCommand";
|
|
19
21
|
import { DeletePlaceIndexCommandInput, DeletePlaceIndexCommandOutput } from "../commands/DeletePlaceIndexCommand";
|
|
20
22
|
import { DeleteRouteCalculatorCommandInput, DeleteRouteCalculatorCommandOutput } from "../commands/DeleteRouteCalculatorCommand";
|
|
21
23
|
import { DeleteTrackerCommandInput, DeleteTrackerCommandOutput } from "../commands/DeleteTrackerCommand";
|
|
22
24
|
import { DescribeGeofenceCollectionCommandInput, DescribeGeofenceCollectionCommandOutput } from "../commands/DescribeGeofenceCollectionCommand";
|
|
25
|
+
import { DescribeKeyCommandInput, DescribeKeyCommandOutput } from "../commands/DescribeKeyCommand";
|
|
23
26
|
import { DescribeMapCommandInput, DescribeMapCommandOutput } from "../commands/DescribeMapCommand";
|
|
24
27
|
import { DescribePlaceIndexCommandInput, DescribePlaceIndexCommandOutput } from "../commands/DescribePlaceIndexCommand";
|
|
25
28
|
import { DescribeRouteCalculatorCommandInput, DescribeRouteCalculatorCommandOutput } from "../commands/DescribeRouteCalculatorCommand";
|
|
@@ -36,6 +39,7 @@ import { GetPlaceCommandInput, GetPlaceCommandOutput } from "../commands/GetPlac
|
|
|
36
39
|
import { ListDevicePositionsCommandInput, ListDevicePositionsCommandOutput } from "../commands/ListDevicePositionsCommand";
|
|
37
40
|
import { ListGeofenceCollectionsCommandInput, ListGeofenceCollectionsCommandOutput } from "../commands/ListGeofenceCollectionsCommand";
|
|
38
41
|
import { ListGeofencesCommandInput, ListGeofencesCommandOutput } from "../commands/ListGeofencesCommand";
|
|
42
|
+
import { ListKeysCommandInput, ListKeysCommandOutput } from "../commands/ListKeysCommand";
|
|
39
43
|
import { ListMapsCommandInput, ListMapsCommandOutput } from "../commands/ListMapsCommand";
|
|
40
44
|
import { ListPlaceIndexesCommandInput, ListPlaceIndexesCommandOutput } from "../commands/ListPlaceIndexesCommand";
|
|
41
45
|
import { ListRouteCalculatorsCommandInput, ListRouteCalculatorsCommandOutput } from "../commands/ListRouteCalculatorsCommand";
|
|
@@ -49,6 +53,7 @@ import { SearchPlaceIndexForTextCommandInput, SearchPlaceIndexForTextCommandOutp
|
|
|
49
53
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
50
54
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
51
55
|
import { UpdateGeofenceCollectionCommandInput, UpdateGeofenceCollectionCommandOutput } from "../commands/UpdateGeofenceCollectionCommand";
|
|
56
|
+
import { UpdateKeyCommandInput, UpdateKeyCommandOutput } from "../commands/UpdateKeyCommand";
|
|
52
57
|
import { UpdateMapCommandInput, UpdateMapCommandOutput } from "../commands/UpdateMapCommand";
|
|
53
58
|
import { UpdatePlaceIndexCommandInput, UpdatePlaceIndexCommandOutput } from "../commands/UpdatePlaceIndexCommand";
|
|
54
59
|
import { UpdateRouteCalculatorCommandInput, UpdateRouteCalculatorCommandOutput } from "../commands/UpdateRouteCalculatorCommand";
|
|
@@ -63,16 +68,19 @@ export declare const serializeAws_restJson1BatchUpdateDevicePositionCommand: (in
|
|
|
63
68
|
export declare const serializeAws_restJson1CalculateRouteCommand: (input: CalculateRouteCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
69
|
export declare const serializeAws_restJson1CalculateRouteMatrixCommand: (input: CalculateRouteMatrixCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
70
|
export declare const serializeAws_restJson1CreateGeofenceCollectionCommand: (input: CreateGeofenceCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
export declare const serializeAws_restJson1CreateKeyCommand: (input: CreateKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
72
|
export declare const serializeAws_restJson1CreateMapCommand: (input: CreateMapCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
73
|
export declare const serializeAws_restJson1CreatePlaceIndexCommand: (input: CreatePlaceIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
74
|
export declare const serializeAws_restJson1CreateRouteCalculatorCommand: (input: CreateRouteCalculatorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
75
|
export declare const serializeAws_restJson1CreateTrackerCommand: (input: CreateTrackerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
76
|
export declare const serializeAws_restJson1DeleteGeofenceCollectionCommand: (input: DeleteGeofenceCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
+
export declare const serializeAws_restJson1DeleteKeyCommand: (input: DeleteKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
78
|
export declare const serializeAws_restJson1DeleteMapCommand: (input: DeleteMapCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
79
|
export declare const serializeAws_restJson1DeletePlaceIndexCommand: (input: DeletePlaceIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
80
|
export declare const serializeAws_restJson1DeleteRouteCalculatorCommand: (input: DeleteRouteCalculatorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
81
|
export declare const serializeAws_restJson1DeleteTrackerCommand: (input: DeleteTrackerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
82
|
export declare const serializeAws_restJson1DescribeGeofenceCollectionCommand: (input: DescribeGeofenceCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
export declare const serializeAws_restJson1DescribeKeyCommand: (input: DescribeKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
84
|
export declare const serializeAws_restJson1DescribeMapCommand: (input: DescribeMapCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
85
|
export declare const serializeAws_restJson1DescribePlaceIndexCommand: (input: DescribePlaceIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
86
|
export declare const serializeAws_restJson1DescribeRouteCalculatorCommand: (input: DescribeRouteCalculatorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -89,6 +97,7 @@ export declare const serializeAws_restJson1GetPlaceCommand: (input: GetPlaceComm
|
|
|
89
97
|
export declare const serializeAws_restJson1ListDevicePositionsCommand: (input: ListDevicePositionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
98
|
export declare const serializeAws_restJson1ListGeofenceCollectionsCommand: (input: ListGeofenceCollectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
91
99
|
export declare const serializeAws_restJson1ListGeofencesCommand: (input: ListGeofencesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
export declare const serializeAws_restJson1ListKeysCommand: (input: ListKeysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
101
|
export declare const serializeAws_restJson1ListMapsCommand: (input: ListMapsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
102
|
export declare const serializeAws_restJson1ListPlaceIndexesCommand: (input: ListPlaceIndexesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
103
|
export declare const serializeAws_restJson1ListRouteCalculatorsCommand: (input: ListRouteCalculatorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -102,6 +111,7 @@ export declare const serializeAws_restJson1SearchPlaceIndexForTextCommand: (inpu
|
|
|
102
111
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
112
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
113
|
export declare const serializeAws_restJson1UpdateGeofenceCollectionCommand: (input: UpdateGeofenceCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1UpdateKeyCommand: (input: UpdateKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
115
|
export declare const serializeAws_restJson1UpdateMapCommand: (input: UpdateMapCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
116
|
export declare const serializeAws_restJson1UpdatePlaceIndexCommand: (input: UpdatePlaceIndexCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
117
|
export declare const serializeAws_restJson1UpdateRouteCalculatorCommand: (input: UpdateRouteCalculatorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -116,16 +126,19 @@ export declare const deserializeAws_restJson1BatchUpdateDevicePositionCommand: (
|
|
|
116
126
|
export declare const deserializeAws_restJson1CalculateRouteCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CalculateRouteCommandOutput>;
|
|
117
127
|
export declare const deserializeAws_restJson1CalculateRouteMatrixCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CalculateRouteMatrixCommandOutput>;
|
|
118
128
|
export declare const deserializeAws_restJson1CreateGeofenceCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateGeofenceCollectionCommandOutput>;
|
|
129
|
+
export declare const deserializeAws_restJson1CreateKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateKeyCommandOutput>;
|
|
119
130
|
export declare const deserializeAws_restJson1CreateMapCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMapCommandOutput>;
|
|
120
131
|
export declare const deserializeAws_restJson1CreatePlaceIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePlaceIndexCommandOutput>;
|
|
121
132
|
export declare const deserializeAws_restJson1CreateRouteCalculatorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRouteCalculatorCommandOutput>;
|
|
122
133
|
export declare const deserializeAws_restJson1CreateTrackerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTrackerCommandOutput>;
|
|
123
134
|
export declare const deserializeAws_restJson1DeleteGeofenceCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteGeofenceCollectionCommandOutput>;
|
|
135
|
+
export declare const deserializeAws_restJson1DeleteKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKeyCommandOutput>;
|
|
124
136
|
export declare const deserializeAws_restJson1DeleteMapCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMapCommandOutput>;
|
|
125
137
|
export declare const deserializeAws_restJson1DeletePlaceIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePlaceIndexCommandOutput>;
|
|
126
138
|
export declare const deserializeAws_restJson1DeleteRouteCalculatorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRouteCalculatorCommandOutput>;
|
|
127
139
|
export declare const deserializeAws_restJson1DeleteTrackerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTrackerCommandOutput>;
|
|
128
140
|
export declare const deserializeAws_restJson1DescribeGeofenceCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeGeofenceCollectionCommandOutput>;
|
|
141
|
+
export declare const deserializeAws_restJson1DescribeKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeKeyCommandOutput>;
|
|
129
142
|
export declare const deserializeAws_restJson1DescribeMapCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMapCommandOutput>;
|
|
130
143
|
export declare const deserializeAws_restJson1DescribePlaceIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePlaceIndexCommandOutput>;
|
|
131
144
|
export declare const deserializeAws_restJson1DescribeRouteCalculatorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRouteCalculatorCommandOutput>;
|
|
@@ -142,6 +155,7 @@ export declare const deserializeAws_restJson1GetPlaceCommand: (output: __HttpRes
|
|
|
142
155
|
export declare const deserializeAws_restJson1ListDevicePositionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDevicePositionsCommandOutput>;
|
|
143
156
|
export declare const deserializeAws_restJson1ListGeofenceCollectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGeofenceCollectionsCommandOutput>;
|
|
144
157
|
export declare const deserializeAws_restJson1ListGeofencesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListGeofencesCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_restJson1ListKeysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKeysCommandOutput>;
|
|
145
159
|
export declare const deserializeAws_restJson1ListMapsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMapsCommandOutput>;
|
|
146
160
|
export declare const deserializeAws_restJson1ListPlaceIndexesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPlaceIndexesCommandOutput>;
|
|
147
161
|
export declare const deserializeAws_restJson1ListRouteCalculatorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRouteCalculatorsCommandOutput>;
|
|
@@ -155,6 +169,7 @@ export declare const deserializeAws_restJson1SearchPlaceIndexForTextCommand: (ou
|
|
|
155
169
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
156
170
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
157
171
|
export declare const deserializeAws_restJson1UpdateGeofenceCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateGeofenceCollectionCommandOutput>;
|
|
172
|
+
export declare const deserializeAws_restJson1UpdateKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateKeyCommandOutput>;
|
|
158
173
|
export declare const deserializeAws_restJson1UpdateMapCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMapCommandOutput>;
|
|
159
174
|
export declare const deserializeAws_restJson1UpdatePlaceIndexCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePlaceIndexCommandOutput>;
|
|
160
175
|
export declare const deserializeAws_restJson1UpdateRouteCalculatorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRouteCalculatorCommandOutput>;
|
|
@@ -39,6 +39,10 @@ import {
|
|
|
39
39
|
CreateGeofenceCollectionCommandInput,
|
|
40
40
|
CreateGeofenceCollectionCommandOutput,
|
|
41
41
|
} from "./commands/CreateGeofenceCollectionCommand";
|
|
42
|
+
import {
|
|
43
|
+
CreateKeyCommandInput,
|
|
44
|
+
CreateKeyCommandOutput,
|
|
45
|
+
} from "./commands/CreateKeyCommand";
|
|
42
46
|
import {
|
|
43
47
|
CreateMapCommandInput,
|
|
44
48
|
CreateMapCommandOutput,
|
|
@@ -59,6 +63,10 @@ import {
|
|
|
59
63
|
DeleteGeofenceCollectionCommandInput,
|
|
60
64
|
DeleteGeofenceCollectionCommandOutput,
|
|
61
65
|
} from "./commands/DeleteGeofenceCollectionCommand";
|
|
66
|
+
import {
|
|
67
|
+
DeleteKeyCommandInput,
|
|
68
|
+
DeleteKeyCommandOutput,
|
|
69
|
+
} from "./commands/DeleteKeyCommand";
|
|
62
70
|
import {
|
|
63
71
|
DeleteMapCommandInput,
|
|
64
72
|
DeleteMapCommandOutput,
|
|
@@ -79,6 +87,10 @@ import {
|
|
|
79
87
|
DescribeGeofenceCollectionCommandInput,
|
|
80
88
|
DescribeGeofenceCollectionCommandOutput,
|
|
81
89
|
} from "./commands/DescribeGeofenceCollectionCommand";
|
|
90
|
+
import {
|
|
91
|
+
DescribeKeyCommandInput,
|
|
92
|
+
DescribeKeyCommandOutput,
|
|
93
|
+
} from "./commands/DescribeKeyCommand";
|
|
82
94
|
import {
|
|
83
95
|
DescribeMapCommandInput,
|
|
84
96
|
DescribeMapCommandOutput,
|
|
@@ -143,6 +155,10 @@ import {
|
|
|
143
155
|
ListGeofencesCommandInput,
|
|
144
156
|
ListGeofencesCommandOutput,
|
|
145
157
|
} from "./commands/ListGeofencesCommand";
|
|
158
|
+
import {
|
|
159
|
+
ListKeysCommandInput,
|
|
160
|
+
ListKeysCommandOutput,
|
|
161
|
+
} from "./commands/ListKeysCommand";
|
|
146
162
|
import {
|
|
147
163
|
ListMapsCommandInput,
|
|
148
164
|
ListMapsCommandOutput,
|
|
@@ -195,6 +211,10 @@ import {
|
|
|
195
211
|
UpdateGeofenceCollectionCommandInput,
|
|
196
212
|
UpdateGeofenceCollectionCommandOutput,
|
|
197
213
|
} from "./commands/UpdateGeofenceCollectionCommand";
|
|
214
|
+
import {
|
|
215
|
+
UpdateKeyCommandInput,
|
|
216
|
+
UpdateKeyCommandOutput,
|
|
217
|
+
} from "./commands/UpdateKeyCommand";
|
|
198
218
|
import {
|
|
199
219
|
UpdateMapCommandInput,
|
|
200
220
|
UpdateMapCommandOutput,
|
|
@@ -343,6 +363,19 @@ export declare class Location extends LocationClient {
|
|
|
343
363
|
options: __HttpHandlerOptions,
|
|
344
364
|
cb: (err: any, data?: CreateGeofenceCollectionCommandOutput) => void
|
|
345
365
|
): void;
|
|
366
|
+
createKey(
|
|
367
|
+
args: CreateKeyCommandInput,
|
|
368
|
+
options?: __HttpHandlerOptions
|
|
369
|
+
): Promise<CreateKeyCommandOutput>;
|
|
370
|
+
createKey(
|
|
371
|
+
args: CreateKeyCommandInput,
|
|
372
|
+
cb: (err: any, data?: CreateKeyCommandOutput) => void
|
|
373
|
+
): void;
|
|
374
|
+
createKey(
|
|
375
|
+
args: CreateKeyCommandInput,
|
|
376
|
+
options: __HttpHandlerOptions,
|
|
377
|
+
cb: (err: any, data?: CreateKeyCommandOutput) => void
|
|
378
|
+
): void;
|
|
346
379
|
createMap(
|
|
347
380
|
args: CreateMapCommandInput,
|
|
348
381
|
options?: __HttpHandlerOptions
|
|
@@ -408,6 +441,19 @@ export declare class Location extends LocationClient {
|
|
|
408
441
|
options: __HttpHandlerOptions,
|
|
409
442
|
cb: (err: any, data?: DeleteGeofenceCollectionCommandOutput) => void
|
|
410
443
|
): void;
|
|
444
|
+
deleteKey(
|
|
445
|
+
args: DeleteKeyCommandInput,
|
|
446
|
+
options?: __HttpHandlerOptions
|
|
447
|
+
): Promise<DeleteKeyCommandOutput>;
|
|
448
|
+
deleteKey(
|
|
449
|
+
args: DeleteKeyCommandInput,
|
|
450
|
+
cb: (err: any, data?: DeleteKeyCommandOutput) => void
|
|
451
|
+
): void;
|
|
452
|
+
deleteKey(
|
|
453
|
+
args: DeleteKeyCommandInput,
|
|
454
|
+
options: __HttpHandlerOptions,
|
|
455
|
+
cb: (err: any, data?: DeleteKeyCommandOutput) => void
|
|
456
|
+
): void;
|
|
411
457
|
deleteMap(
|
|
412
458
|
args: DeleteMapCommandInput,
|
|
413
459
|
options?: __HttpHandlerOptions
|
|
@@ -473,6 +519,19 @@ export declare class Location extends LocationClient {
|
|
|
473
519
|
options: __HttpHandlerOptions,
|
|
474
520
|
cb: (err: any, data?: DescribeGeofenceCollectionCommandOutput) => void
|
|
475
521
|
): void;
|
|
522
|
+
describeKey(
|
|
523
|
+
args: DescribeKeyCommandInput,
|
|
524
|
+
options?: __HttpHandlerOptions
|
|
525
|
+
): Promise<DescribeKeyCommandOutput>;
|
|
526
|
+
describeKey(
|
|
527
|
+
args: DescribeKeyCommandInput,
|
|
528
|
+
cb: (err: any, data?: DescribeKeyCommandOutput) => void
|
|
529
|
+
): void;
|
|
530
|
+
describeKey(
|
|
531
|
+
args: DescribeKeyCommandInput,
|
|
532
|
+
options: __HttpHandlerOptions,
|
|
533
|
+
cb: (err: any, data?: DescribeKeyCommandOutput) => void
|
|
534
|
+
): void;
|
|
476
535
|
describeMap(
|
|
477
536
|
args: DescribeMapCommandInput,
|
|
478
537
|
options?: __HttpHandlerOptions
|
|
@@ -681,6 +740,19 @@ export declare class Location extends LocationClient {
|
|
|
681
740
|
options: __HttpHandlerOptions,
|
|
682
741
|
cb: (err: any, data?: ListGeofencesCommandOutput) => void
|
|
683
742
|
): void;
|
|
743
|
+
listKeys(
|
|
744
|
+
args: ListKeysCommandInput,
|
|
745
|
+
options?: __HttpHandlerOptions
|
|
746
|
+
): Promise<ListKeysCommandOutput>;
|
|
747
|
+
listKeys(
|
|
748
|
+
args: ListKeysCommandInput,
|
|
749
|
+
cb: (err: any, data?: ListKeysCommandOutput) => void
|
|
750
|
+
): void;
|
|
751
|
+
listKeys(
|
|
752
|
+
args: ListKeysCommandInput,
|
|
753
|
+
options: __HttpHandlerOptions,
|
|
754
|
+
cb: (err: any, data?: ListKeysCommandOutput) => void
|
|
755
|
+
): void;
|
|
684
756
|
listMaps(
|
|
685
757
|
args: ListMapsCommandInput,
|
|
686
758
|
options?: __HttpHandlerOptions
|
|
@@ -850,6 +922,19 @@ export declare class Location extends LocationClient {
|
|
|
850
922
|
options: __HttpHandlerOptions,
|
|
851
923
|
cb: (err: any, data?: UpdateGeofenceCollectionCommandOutput) => void
|
|
852
924
|
): void;
|
|
925
|
+
updateKey(
|
|
926
|
+
args: UpdateKeyCommandInput,
|
|
927
|
+
options?: __HttpHandlerOptions
|
|
928
|
+
): Promise<UpdateKeyCommandOutput>;
|
|
929
|
+
updateKey(
|
|
930
|
+
args: UpdateKeyCommandInput,
|
|
931
|
+
cb: (err: any, data?: UpdateKeyCommandOutput) => void
|
|
932
|
+
): void;
|
|
933
|
+
updateKey(
|
|
934
|
+
args: UpdateKeyCommandInput,
|
|
935
|
+
options: __HttpHandlerOptions,
|
|
936
|
+
cb: (err: any, data?: UpdateKeyCommandOutput) => void
|
|
937
|
+
): void;
|
|
853
938
|
updateMap(
|
|
854
939
|
args: UpdateMapCommandInput,
|
|
855
940
|
options?: __HttpHandlerOptions
|
|
@@ -84,6 +84,10 @@ import {
|
|
|
84
84
|
CreateGeofenceCollectionCommandInput,
|
|
85
85
|
CreateGeofenceCollectionCommandOutput,
|
|
86
86
|
} from "./commands/CreateGeofenceCollectionCommand";
|
|
87
|
+
import {
|
|
88
|
+
CreateKeyCommandInput,
|
|
89
|
+
CreateKeyCommandOutput,
|
|
90
|
+
} from "./commands/CreateKeyCommand";
|
|
87
91
|
import {
|
|
88
92
|
CreateMapCommandInput,
|
|
89
93
|
CreateMapCommandOutput,
|
|
@@ -104,6 +108,10 @@ import {
|
|
|
104
108
|
DeleteGeofenceCollectionCommandInput,
|
|
105
109
|
DeleteGeofenceCollectionCommandOutput,
|
|
106
110
|
} from "./commands/DeleteGeofenceCollectionCommand";
|
|
111
|
+
import {
|
|
112
|
+
DeleteKeyCommandInput,
|
|
113
|
+
DeleteKeyCommandOutput,
|
|
114
|
+
} from "./commands/DeleteKeyCommand";
|
|
107
115
|
import {
|
|
108
116
|
DeleteMapCommandInput,
|
|
109
117
|
DeleteMapCommandOutput,
|
|
@@ -124,6 +132,10 @@ import {
|
|
|
124
132
|
DescribeGeofenceCollectionCommandInput,
|
|
125
133
|
DescribeGeofenceCollectionCommandOutput,
|
|
126
134
|
} from "./commands/DescribeGeofenceCollectionCommand";
|
|
135
|
+
import {
|
|
136
|
+
DescribeKeyCommandInput,
|
|
137
|
+
DescribeKeyCommandOutput,
|
|
138
|
+
} from "./commands/DescribeKeyCommand";
|
|
127
139
|
import {
|
|
128
140
|
DescribeMapCommandInput,
|
|
129
141
|
DescribeMapCommandOutput,
|
|
@@ -188,6 +200,10 @@ import {
|
|
|
188
200
|
ListGeofencesCommandInput,
|
|
189
201
|
ListGeofencesCommandOutput,
|
|
190
202
|
} from "./commands/ListGeofencesCommand";
|
|
203
|
+
import {
|
|
204
|
+
ListKeysCommandInput,
|
|
205
|
+
ListKeysCommandOutput,
|
|
206
|
+
} from "./commands/ListKeysCommand";
|
|
191
207
|
import {
|
|
192
208
|
ListMapsCommandInput,
|
|
193
209
|
ListMapsCommandOutput,
|
|
@@ -240,6 +256,10 @@ import {
|
|
|
240
256
|
UpdateGeofenceCollectionCommandInput,
|
|
241
257
|
UpdateGeofenceCollectionCommandOutput,
|
|
242
258
|
} from "./commands/UpdateGeofenceCollectionCommand";
|
|
259
|
+
import {
|
|
260
|
+
UpdateKeyCommandInput,
|
|
261
|
+
UpdateKeyCommandOutput,
|
|
262
|
+
} from "./commands/UpdateKeyCommand";
|
|
243
263
|
import {
|
|
244
264
|
UpdateMapCommandInput,
|
|
245
265
|
UpdateMapCommandOutput,
|
|
@@ -272,16 +292,19 @@ export declare type ServiceInputTypes =
|
|
|
272
292
|
| CalculateRouteCommandInput
|
|
273
293
|
| CalculateRouteMatrixCommandInput
|
|
274
294
|
| CreateGeofenceCollectionCommandInput
|
|
295
|
+
| CreateKeyCommandInput
|
|
275
296
|
| CreateMapCommandInput
|
|
276
297
|
| CreatePlaceIndexCommandInput
|
|
277
298
|
| CreateRouteCalculatorCommandInput
|
|
278
299
|
| CreateTrackerCommandInput
|
|
279
300
|
| DeleteGeofenceCollectionCommandInput
|
|
301
|
+
| DeleteKeyCommandInput
|
|
280
302
|
| DeleteMapCommandInput
|
|
281
303
|
| DeletePlaceIndexCommandInput
|
|
282
304
|
| DeleteRouteCalculatorCommandInput
|
|
283
305
|
| DeleteTrackerCommandInput
|
|
284
306
|
| DescribeGeofenceCollectionCommandInput
|
|
307
|
+
| DescribeKeyCommandInput
|
|
285
308
|
| DescribeMapCommandInput
|
|
286
309
|
| DescribePlaceIndexCommandInput
|
|
287
310
|
| DescribeRouteCalculatorCommandInput
|
|
@@ -298,6 +321,7 @@ export declare type ServiceInputTypes =
|
|
|
298
321
|
| ListDevicePositionsCommandInput
|
|
299
322
|
| ListGeofenceCollectionsCommandInput
|
|
300
323
|
| ListGeofencesCommandInput
|
|
324
|
+
| ListKeysCommandInput
|
|
301
325
|
| ListMapsCommandInput
|
|
302
326
|
| ListPlaceIndexesCommandInput
|
|
303
327
|
| ListRouteCalculatorsCommandInput
|
|
@@ -311,6 +335,7 @@ export declare type ServiceInputTypes =
|
|
|
311
335
|
| TagResourceCommandInput
|
|
312
336
|
| UntagResourceCommandInput
|
|
313
337
|
| UpdateGeofenceCollectionCommandInput
|
|
338
|
+
| UpdateKeyCommandInput
|
|
314
339
|
| UpdateMapCommandInput
|
|
315
340
|
| UpdatePlaceIndexCommandInput
|
|
316
341
|
| UpdateRouteCalculatorCommandInput
|
|
@@ -326,16 +351,19 @@ export declare type ServiceOutputTypes =
|
|
|
326
351
|
| CalculateRouteCommandOutput
|
|
327
352
|
| CalculateRouteMatrixCommandOutput
|
|
328
353
|
| CreateGeofenceCollectionCommandOutput
|
|
354
|
+
| CreateKeyCommandOutput
|
|
329
355
|
| CreateMapCommandOutput
|
|
330
356
|
| CreatePlaceIndexCommandOutput
|
|
331
357
|
| CreateRouteCalculatorCommandOutput
|
|
332
358
|
| CreateTrackerCommandOutput
|
|
333
359
|
| DeleteGeofenceCollectionCommandOutput
|
|
360
|
+
| DeleteKeyCommandOutput
|
|
334
361
|
| DeleteMapCommandOutput
|
|
335
362
|
| DeletePlaceIndexCommandOutput
|
|
336
363
|
| DeleteRouteCalculatorCommandOutput
|
|
337
364
|
| DeleteTrackerCommandOutput
|
|
338
365
|
| DescribeGeofenceCollectionCommandOutput
|
|
366
|
+
| DescribeKeyCommandOutput
|
|
339
367
|
| DescribeMapCommandOutput
|
|
340
368
|
| DescribePlaceIndexCommandOutput
|
|
341
369
|
| DescribeRouteCalculatorCommandOutput
|
|
@@ -352,6 +380,7 @@ export declare type ServiceOutputTypes =
|
|
|
352
380
|
| ListDevicePositionsCommandOutput
|
|
353
381
|
| ListGeofenceCollectionsCommandOutput
|
|
354
382
|
| ListGeofencesCommandOutput
|
|
383
|
+
| ListKeysCommandOutput
|
|
355
384
|
| ListMapsCommandOutput
|
|
356
385
|
| ListPlaceIndexesCommandOutput
|
|
357
386
|
| ListRouteCalculatorsCommandOutput
|
|
@@ -365,6 +394,7 @@ export declare type ServiceOutputTypes =
|
|
|
365
394
|
| TagResourceCommandOutput
|
|
366
395
|
| UntagResourceCommandOutput
|
|
367
396
|
| UpdateGeofenceCollectionCommandOutput
|
|
397
|
+
| UpdateKeyCommandOutput
|
|
368
398
|
| UpdateMapCommandOutput
|
|
369
399
|
| UpdatePlaceIndexCommandOutput
|
|
370
400
|
| UpdateRouteCalculatorCommandOutput
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
LocationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LocationClient";
|
|
14
|
+
import { CreateKeyRequest, CreateKeyResponse } from "../models/models_0";
|
|
15
|
+
export interface CreateKeyCommandInput extends CreateKeyRequest {}
|
|
16
|
+
export interface CreateKeyCommandOutput
|
|
17
|
+
extends CreateKeyResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class CreateKeyCommand extends $Command<
|
|
20
|
+
CreateKeyCommandInput,
|
|
21
|
+
CreateKeyCommandOutput,
|
|
22
|
+
LocationClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateKeyCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CreateKeyCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: LocationClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateKeyCommandInput, CreateKeyCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
LocationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LocationClient";
|
|
14
|
+
import { DeleteKeyRequest, DeleteKeyResponse } from "../models/models_0";
|
|
15
|
+
export interface DeleteKeyCommandInput extends DeleteKeyRequest {}
|
|
16
|
+
export interface DeleteKeyCommandOutput
|
|
17
|
+
extends DeleteKeyResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteKeyCommand extends $Command<
|
|
20
|
+
DeleteKeyCommandInput,
|
|
21
|
+
DeleteKeyCommandOutput,
|
|
22
|
+
LocationClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteKeyCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteKeyCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: LocationClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteKeyCommandInput, DeleteKeyCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
LocationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LocationClient";
|
|
14
|
+
import { DescribeKeyRequest, DescribeKeyResponse } from "../models/models_0";
|
|
15
|
+
export interface DescribeKeyCommandInput extends DescribeKeyRequest {}
|
|
16
|
+
export interface DescribeKeyCommandOutput
|
|
17
|
+
extends DescribeKeyResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DescribeKeyCommand extends $Command<
|
|
20
|
+
DescribeKeyCommandInput,
|
|
21
|
+
DescribeKeyCommandOutput,
|
|
22
|
+
LocationClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeKeyCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DescribeKeyCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: LocationClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DescribeKeyCommandInput, DescribeKeyCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
LocationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LocationClient";
|
|
14
|
+
import { ListKeysRequest, ListKeysResponse } from "../models/models_0";
|
|
15
|
+
export interface ListKeysCommandInput extends ListKeysRequest {}
|
|
16
|
+
export interface ListKeysCommandOutput
|
|
17
|
+
extends ListKeysResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListKeysCommand extends $Command<
|
|
20
|
+
ListKeysCommandInput,
|
|
21
|
+
ListKeysCommandOutput,
|
|
22
|
+
LocationClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListKeysCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListKeysCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: LocationClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListKeysCommandInput, ListKeysCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
LocationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LocationClient";
|
|
14
|
+
import { UpdateKeyRequest, UpdateKeyResponse } from "../models/models_0";
|
|
15
|
+
export interface UpdateKeyCommandInput extends UpdateKeyRequest {}
|
|
16
|
+
export interface UpdateKeyCommandOutput
|
|
17
|
+
extends UpdateKeyResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class UpdateKeyCommand extends $Command<
|
|
20
|
+
UpdateKeyCommandInput,
|
|
21
|
+
UpdateKeyCommandOutput,
|
|
22
|
+
LocationClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateKeyCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: UpdateKeyCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: LocationClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateKeyCommandInput, UpdateKeyCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -8,16 +8,19 @@ export * from "./BatchUpdateDevicePositionCommand";
|
|
|
8
8
|
export * from "./CalculateRouteCommand";
|
|
9
9
|
export * from "./CalculateRouteMatrixCommand";
|
|
10
10
|
export * from "./CreateGeofenceCollectionCommand";
|
|
11
|
+
export * from "./CreateKeyCommand";
|
|
11
12
|
export * from "./CreateMapCommand";
|
|
12
13
|
export * from "./CreatePlaceIndexCommand";
|
|
13
14
|
export * from "./CreateRouteCalculatorCommand";
|
|
14
15
|
export * from "./CreateTrackerCommand";
|
|
15
16
|
export * from "./DeleteGeofenceCollectionCommand";
|
|
17
|
+
export * from "./DeleteKeyCommand";
|
|
16
18
|
export * from "./DeleteMapCommand";
|
|
17
19
|
export * from "./DeletePlaceIndexCommand";
|
|
18
20
|
export * from "./DeleteRouteCalculatorCommand";
|
|
19
21
|
export * from "./DeleteTrackerCommand";
|
|
20
22
|
export * from "./DescribeGeofenceCollectionCommand";
|
|
23
|
+
export * from "./DescribeKeyCommand";
|
|
21
24
|
export * from "./DescribeMapCommand";
|
|
22
25
|
export * from "./DescribePlaceIndexCommand";
|
|
23
26
|
export * from "./DescribeRouteCalculatorCommand";
|
|
@@ -34,6 +37,7 @@ export * from "./GetPlaceCommand";
|
|
|
34
37
|
export * from "./ListDevicePositionsCommand";
|
|
35
38
|
export * from "./ListGeofenceCollectionsCommand";
|
|
36
39
|
export * from "./ListGeofencesCommand";
|
|
40
|
+
export * from "./ListKeysCommand";
|
|
37
41
|
export * from "./ListMapsCommand";
|
|
38
42
|
export * from "./ListPlaceIndexesCommand";
|
|
39
43
|
export * from "./ListRouteCalculatorsCommand";
|
|
@@ -47,6 +51,7 @@ export * from "./SearchPlaceIndexForTextCommand";
|
|
|
47
51
|
export * from "./TagResourceCommand";
|
|
48
52
|
export * from "./UntagResourceCommand";
|
|
49
53
|
export * from "./UpdateGeofenceCollectionCommand";
|
|
54
|
+
export * from "./UpdateKeyCommand";
|
|
50
55
|
export * from "./UpdateMapCommand";
|
|
51
56
|
export * from "./UpdatePlaceIndexCommand";
|
|
52
57
|
export * from "./UpdateRouteCalculatorCommand";
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region?: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|