@aws-sdk/client-backup-gateway 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/BackupGateway.d.ts +328 -95
- package/dist-types/ts3.4/BackupGatewayClient.d.ts +238 -91
- package/dist-types/ts3.4/commands/AssociateGatewayToServerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteHypervisorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DisassociateGatewayFromServerCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetGatewayCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ImportHypervisorConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListHypervisorsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListVirtualMachinesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutMaintenanceStartTimeCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TestHypervisorConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateGatewayInformationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateGatewaySoftwareNowCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateHypervisorCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +18 -18
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/BackupGatewayServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +453 -410
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListHypervisorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVirtualMachinesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +221 -56
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { BackupGateway } from "../BackupGateway";
|
|
3
|
-
import { BackupGatewayClient } from "../BackupGatewayClient";
|
|
4
|
-
export interface BackupGatewayPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { BackupGateway } from "../BackupGateway";
|
|
3
|
+
import { BackupGatewayClient } from "../BackupGatewayClient";
|
|
4
|
+
export interface BackupGatewayPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: BackupGateway | BackupGatewayClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListGatewaysCommandInput,
|
|
4
|
+
ListGatewaysCommandOutput,
|
|
5
|
+
} from "../commands/ListGatewaysCommand";
|
|
6
|
+
import { BackupGatewayPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListGateways(
|
|
8
|
+
config: BackupGatewayPaginationConfiguration,
|
|
9
|
+
input: ListGatewaysCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListGatewaysCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListHypervisorsCommandInput,
|
|
4
|
+
ListHypervisorsCommandOutput,
|
|
5
|
+
} from "../commands/ListHypervisorsCommand";
|
|
6
|
+
import { BackupGatewayPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListHypervisors(
|
|
8
|
+
config: BackupGatewayPaginationConfiguration,
|
|
9
|
+
input: ListHypervisorsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListHypervisorsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListVirtualMachinesCommandInput,
|
|
4
|
+
ListVirtualMachinesCommandOutput,
|
|
5
|
+
} from "../commands/ListVirtualMachinesCommand";
|
|
6
|
+
import { BackupGatewayPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListVirtualMachines(
|
|
8
|
+
config: BackupGatewayPaginationConfiguration,
|
|
9
|
+
input: ListVirtualMachinesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListVirtualMachinesCommandOutput>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListGatewaysPaginator";
|
|
3
|
-
export * from "./ListHypervisorsPaginator";
|
|
4
|
-
export * from "./ListVirtualMachinesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListGatewaysPaginator";
|
|
3
|
+
export * from "./ListHypervisorsPaginator";
|
|
4
|
+
export * from "./ListVirtualMachinesPaginator";
|
|
@@ -1,56 +1,221 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AssociateGatewayToServerCommandInput,
|
|
8
|
+
AssociateGatewayToServerCommandOutput,
|
|
9
|
+
} from "../commands/AssociateGatewayToServerCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateGatewayCommandInput,
|
|
12
|
+
CreateGatewayCommandOutput,
|
|
13
|
+
} from "../commands/CreateGatewayCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteGatewayCommandInput,
|
|
16
|
+
DeleteGatewayCommandOutput,
|
|
17
|
+
} from "../commands/DeleteGatewayCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteHypervisorCommandInput,
|
|
20
|
+
DeleteHypervisorCommandOutput,
|
|
21
|
+
} from "../commands/DeleteHypervisorCommand";
|
|
22
|
+
import {
|
|
23
|
+
DisassociateGatewayFromServerCommandInput,
|
|
24
|
+
DisassociateGatewayFromServerCommandOutput,
|
|
25
|
+
} from "../commands/DisassociateGatewayFromServerCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetGatewayCommandInput,
|
|
28
|
+
GetGatewayCommandOutput,
|
|
29
|
+
} from "../commands/GetGatewayCommand";
|
|
30
|
+
import {
|
|
31
|
+
ImportHypervisorConfigurationCommandInput,
|
|
32
|
+
ImportHypervisorConfigurationCommandOutput,
|
|
33
|
+
} from "../commands/ImportHypervisorConfigurationCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListGatewaysCommandInput,
|
|
36
|
+
ListGatewaysCommandOutput,
|
|
37
|
+
} from "../commands/ListGatewaysCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListHypervisorsCommandInput,
|
|
40
|
+
ListHypervisorsCommandOutput,
|
|
41
|
+
} from "../commands/ListHypervisorsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTagsForResourceCommandInput,
|
|
44
|
+
ListTagsForResourceCommandOutput,
|
|
45
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListVirtualMachinesCommandInput,
|
|
48
|
+
ListVirtualMachinesCommandOutput,
|
|
49
|
+
} from "../commands/ListVirtualMachinesCommand";
|
|
50
|
+
import {
|
|
51
|
+
PutMaintenanceStartTimeCommandInput,
|
|
52
|
+
PutMaintenanceStartTimeCommandOutput,
|
|
53
|
+
} from "../commands/PutMaintenanceStartTimeCommand";
|
|
54
|
+
import {
|
|
55
|
+
TagResourceCommandInput,
|
|
56
|
+
TagResourceCommandOutput,
|
|
57
|
+
} from "../commands/TagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
TestHypervisorConfigurationCommandInput,
|
|
60
|
+
TestHypervisorConfigurationCommandOutput,
|
|
61
|
+
} from "../commands/TestHypervisorConfigurationCommand";
|
|
62
|
+
import {
|
|
63
|
+
UntagResourceCommandInput,
|
|
64
|
+
UntagResourceCommandOutput,
|
|
65
|
+
} from "../commands/UntagResourceCommand";
|
|
66
|
+
import {
|
|
67
|
+
UpdateGatewayInformationCommandInput,
|
|
68
|
+
UpdateGatewayInformationCommandOutput,
|
|
69
|
+
} from "../commands/UpdateGatewayInformationCommand";
|
|
70
|
+
import {
|
|
71
|
+
UpdateGatewaySoftwareNowCommandInput,
|
|
72
|
+
UpdateGatewaySoftwareNowCommandOutput,
|
|
73
|
+
} from "../commands/UpdateGatewaySoftwareNowCommand";
|
|
74
|
+
import {
|
|
75
|
+
UpdateHypervisorCommandInput,
|
|
76
|
+
UpdateHypervisorCommandOutput,
|
|
77
|
+
} from "../commands/UpdateHypervisorCommand";
|
|
78
|
+
export declare const serializeAws_json1_0AssociateGatewayToServerCommand: (
|
|
79
|
+
input: AssociateGatewayToServerCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_json1_0CreateGatewayCommand: (
|
|
83
|
+
input: CreateGatewayCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_json1_0DeleteGatewayCommand: (
|
|
87
|
+
input: DeleteGatewayCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_json1_0DeleteHypervisorCommand: (
|
|
91
|
+
input: DeleteHypervisorCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_json1_0DisassociateGatewayFromServerCommand: (
|
|
95
|
+
input: DisassociateGatewayFromServerCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_json1_0GetGatewayCommand: (
|
|
99
|
+
input: GetGatewayCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_json1_0ImportHypervisorConfigurationCommand: (
|
|
103
|
+
input: ImportHypervisorConfigurationCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_json1_0ListGatewaysCommand: (
|
|
107
|
+
input: ListGatewaysCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_0ListHypervisorsCommand: (
|
|
111
|
+
input: ListHypervisorsCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_0ListTagsForResourceCommand: (
|
|
115
|
+
input: ListTagsForResourceCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_0ListVirtualMachinesCommand: (
|
|
119
|
+
input: ListVirtualMachinesCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_0PutMaintenanceStartTimeCommand: (
|
|
123
|
+
input: PutMaintenanceStartTimeCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_json1_0TagResourceCommand: (
|
|
127
|
+
input: TagResourceCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_0TestHypervisorConfigurationCommand: (
|
|
131
|
+
input: TestHypervisorConfigurationCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_0UntagResourceCommand: (
|
|
135
|
+
input: UntagResourceCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_0UpdateGatewayInformationCommand: (
|
|
139
|
+
input: UpdateGatewayInformationCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_0UpdateGatewaySoftwareNowCommand: (
|
|
143
|
+
input: UpdateGatewaySoftwareNowCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_0UpdateHypervisorCommand: (
|
|
147
|
+
input: UpdateHypervisorCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const deserializeAws_json1_0AssociateGatewayToServerCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<AssociateGatewayToServerCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_json1_0CreateGatewayCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<CreateGatewayCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_json1_0DeleteGatewayCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<DeleteGatewayCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_json1_0DeleteHypervisorCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<DeleteHypervisorCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_json1_0DisassociateGatewayFromServerCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<DisassociateGatewayFromServerCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_json1_0GetGatewayCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<GetGatewayCommandOutput>;
|
|
174
|
+
export declare const deserializeAws_json1_0ImportHypervisorConfigurationCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<ImportHypervisorConfigurationCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_json1_0ListGatewaysCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<ListGatewaysCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_json1_0ListHypervisorsCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<ListHypervisorsCommandOutput>;
|
|
186
|
+
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
190
|
+
export declare const deserializeAws_json1_0ListVirtualMachinesCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<ListVirtualMachinesCommandOutput>;
|
|
194
|
+
export declare const deserializeAws_json1_0PutMaintenanceStartTimeCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<PutMaintenanceStartTimeCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_json1_0TagResourceCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<TagResourceCommandOutput>;
|
|
202
|
+
export declare const deserializeAws_json1_0TestHypervisorConfigurationCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<TestHypervisorConfigurationCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_json1_0UntagResourceCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_json1_0UpdateGatewayInformationCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<UpdateGatewayInformationCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_json1_0UpdateGatewaySoftwareNowCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<UpdateGatewaySoftwareNowCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_json1_0UpdateHypervisorCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<UpdateHypervisorCommandOutput>;
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { BackupGatewayClientConfig } from "./BackupGatewayClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { BackupGatewayClientConfig } from "./BackupGatewayClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { BackupGatewayClientConfig } from "./BackupGatewayClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { BackupGatewayClientConfig } from "./BackupGatewayClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: BackupGatewayClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|