@aws-sdk/client-application-discovery-service 3.51.0 → 3.54.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ApplicationDiscoveryServiceServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +120 -2
- package/dist-cjs/protocols/Aws_json1_1.js +292 -1152
- package/dist-es/index.js +1 -0
- package/dist-es/models/ApplicationDiscoveryServiceServiceException.js +12 -0
- package/dist-es/models/models_0.js +110 -1
- package/dist-es/protocols/Aws_json1_1.js +634 -1235
- package/dist-types/ApplicationDiscoveryServiceClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ApplicationDiscoveryServiceServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -37
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ApplicationDiscoveryServiceClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ApplicationDiscoveryServiceServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -37
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateConfigurationItemsToApplicationCommandInput, AssociateConfigurationItemsToApplicationCommandOutput } from "./commands/AssociateConfigurationItemsToApplicationCommand";
|
|
10
10
|
import { BatchDeleteImportDataCommandInput, BatchDeleteImportDataCommandOutput } from "./commands/BatchDeleteImportDataCommand";
|
|
11
11
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
@@ -53,7 +53,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
53
53
|
* A function that can calculate the length of a request body.
|
|
54
54
|
* @internal
|
|
55
55
|
*/
|
|
56
|
-
bodyLengthChecker?:
|
|
56
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
57
57
|
/**
|
|
58
58
|
* A function that converts a stream into an array of bytes.
|
|
59
59
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from ApplicationDiscoveryService service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class ApplicationDiscoveryServiceServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Information about agents or connectors that were instructed to start collecting data.
|
|
4
5
|
* Information includes the agent/connector ID, a description of the operation, and whether the
|
|
@@ -137,43 +138,58 @@ export declare namespace AssociateConfigurationItemsToApplicationResponse {
|
|
|
137
138
|
* <p>The AWS user account does not have permission to perform the action. Check the IAM
|
|
138
139
|
* policy associated with this account.</p>
|
|
139
140
|
*/
|
|
140
|
-
export
|
|
141
|
-
name: "AuthorizationErrorException";
|
|
142
|
-
$fault: "client";
|
|
143
|
-
|
|
141
|
+
export declare class AuthorizationErrorException extends __BaseException {
|
|
142
|
+
readonly name: "AuthorizationErrorException";
|
|
143
|
+
readonly $fault: "client";
|
|
144
|
+
/**
|
|
145
|
+
* @internal
|
|
146
|
+
*/
|
|
147
|
+
constructor(opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>);
|
|
144
148
|
}
|
|
145
149
|
/**
|
|
146
150
|
* <p>The home region is not set. Set the home region to continue.</p>
|
|
147
151
|
*/
|
|
148
|
-
export
|
|
149
|
-
name: "HomeRegionNotSetException";
|
|
150
|
-
$fault: "client";
|
|
151
|
-
|
|
152
|
+
export declare class HomeRegionNotSetException extends __BaseException {
|
|
153
|
+
readonly name: "HomeRegionNotSetException";
|
|
154
|
+
readonly $fault: "client";
|
|
155
|
+
/**
|
|
156
|
+
* @internal
|
|
157
|
+
*/
|
|
158
|
+
constructor(opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>);
|
|
152
159
|
}
|
|
153
160
|
/**
|
|
154
161
|
* <p>One or more parameters are not valid. Verify the parameters and try again.</p>
|
|
155
162
|
*/
|
|
156
|
-
export
|
|
157
|
-
name: "InvalidParameterException";
|
|
158
|
-
$fault: "client";
|
|
159
|
-
|
|
163
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
164
|
+
readonly name: "InvalidParameterException";
|
|
165
|
+
readonly $fault: "client";
|
|
166
|
+
/**
|
|
167
|
+
* @internal
|
|
168
|
+
*/
|
|
169
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
160
170
|
}
|
|
161
171
|
/**
|
|
162
172
|
* <p>The value of one or more parameters are either invalid or out of range. Verify the
|
|
163
173
|
* parameter values and try again.</p>
|
|
164
174
|
*/
|
|
165
|
-
export
|
|
166
|
-
name: "InvalidParameterValueException";
|
|
167
|
-
$fault: "client";
|
|
168
|
-
|
|
175
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
176
|
+
readonly name: "InvalidParameterValueException";
|
|
177
|
+
readonly $fault: "client";
|
|
178
|
+
/**
|
|
179
|
+
* @internal
|
|
180
|
+
*/
|
|
181
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
169
182
|
}
|
|
170
183
|
/**
|
|
171
184
|
* <p>The server experienced an internal error. Try again.</p>
|
|
172
185
|
*/
|
|
173
|
-
export
|
|
174
|
-
name: "ServerInternalErrorException";
|
|
175
|
-
$fault: "server";
|
|
176
|
-
|
|
186
|
+
export declare class ServerInternalErrorException extends __BaseException {
|
|
187
|
+
readonly name: "ServerInternalErrorException";
|
|
188
|
+
readonly $fault: "server";
|
|
189
|
+
/**
|
|
190
|
+
* @internal
|
|
191
|
+
*/
|
|
192
|
+
constructor(opts: __ExceptionOptionType<ServerInternalErrorException, __BaseException>);
|
|
177
193
|
}
|
|
178
194
|
export interface BatchDeleteImportDataRequest {
|
|
179
195
|
/**
|
|
@@ -309,10 +325,13 @@ export declare namespace CreateTagsResponse {
|
|
|
309
325
|
* <p>The specified configuration ID was not located. Verify the configuration ID and try
|
|
310
326
|
* again.</p>
|
|
311
327
|
*/
|
|
312
|
-
export
|
|
313
|
-
name: "ResourceNotFoundException";
|
|
314
|
-
$fault: "client";
|
|
315
|
-
|
|
328
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
329
|
+
readonly name: "ResourceNotFoundException";
|
|
330
|
+
readonly $fault: "client";
|
|
331
|
+
/**
|
|
332
|
+
* @internal
|
|
333
|
+
*/
|
|
334
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
316
335
|
}
|
|
317
336
|
export interface DeleteApplicationsRequest {
|
|
318
337
|
/**
|
|
@@ -652,10 +671,13 @@ export declare namespace DescribeContinuousExportsResponse {
|
|
|
652
671
|
/**
|
|
653
672
|
* <p>This operation is not permitted.</p>
|
|
654
673
|
*/
|
|
655
|
-
export
|
|
656
|
-
name: "OperationNotPermittedException";
|
|
657
|
-
$fault: "client";
|
|
658
|
-
|
|
674
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
675
|
+
readonly name: "OperationNotPermittedException";
|
|
676
|
+
readonly $fault: "client";
|
|
677
|
+
/**
|
|
678
|
+
* @internal
|
|
679
|
+
*/
|
|
680
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
659
681
|
}
|
|
660
682
|
export interface DescribeExportConfigurationsRequest {
|
|
661
683
|
/**
|
|
@@ -1442,10 +1464,13 @@ export declare namespace ListServerNeighborsResponse {
|
|
|
1442
1464
|
/**
|
|
1443
1465
|
* <p></p>
|
|
1444
1466
|
*/
|
|
1445
|
-
export
|
|
1446
|
-
name: "ConflictErrorException";
|
|
1447
|
-
$fault: "client";
|
|
1448
|
-
|
|
1467
|
+
export declare class ConflictErrorException extends __BaseException {
|
|
1468
|
+
readonly name: "ConflictErrorException";
|
|
1469
|
+
readonly $fault: "client";
|
|
1470
|
+
/**
|
|
1471
|
+
* @internal
|
|
1472
|
+
*/
|
|
1473
|
+
constructor(opts: __ExceptionOptionType<ConflictErrorException, __BaseException>);
|
|
1449
1474
|
}
|
|
1450
1475
|
/**
|
|
1451
1476
|
* <p>This issue occurs when the same <code>clientRequestToken</code> is used with the
|
|
@@ -1454,10 +1479,13 @@ export interface ConflictErrorException extends __SmithyException, $MetadataBear
|
|
|
1454
1479
|
* import tasks are meant to be different, use a different <code>clientRequestToken</code>, and
|
|
1455
1480
|
* try again.</p>
|
|
1456
1481
|
*/
|
|
1457
|
-
export
|
|
1458
|
-
name: "ResourceInUseException";
|
|
1459
|
-
$fault: "client";
|
|
1460
|
-
|
|
1482
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
1483
|
+
readonly name: "ResourceInUseException";
|
|
1484
|
+
readonly $fault: "client";
|
|
1485
|
+
/**
|
|
1486
|
+
* @internal
|
|
1487
|
+
*/
|
|
1488
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
1461
1489
|
}
|
|
1462
1490
|
export interface StartContinuousExportRequest {
|
|
1463
1491
|
}
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ApplicationDiscoveryServiceClien
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ApplicationDiscoveryServiceClien
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ApplicationDiscoveryServiceClien
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateConfigurationItemsToApplicationCommandInput, AssociateConfigurationItemsToApplicationCommandOutput } from "./commands/AssociateConfigurationItemsToApplicationCommand";
|
|
10
10
|
import { BatchDeleteImportDataCommandInput, BatchDeleteImportDataCommandOutput } from "./commands/BatchDeleteImportDataCommand";
|
|
11
11
|
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
@@ -41,7 +41,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
41
41
|
|
|
42
42
|
urlParser?: __UrlParser;
|
|
43
43
|
|
|
44
|
-
bodyLengthChecker?:
|
|
44
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
45
45
|
|
|
46
46
|
streamCollector?: __StreamCollector;
|
|
47
47
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class ApplicationDiscoveryServiceServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException";
|
|
2
3
|
|
|
3
4
|
export interface AgentConfigurationStatus {
|
|
4
5
|
|
|
@@ -75,34 +76,39 @@ export declare namespace AssociateConfigurationItemsToApplicationResponse {
|
|
|
75
76
|
const filterSensitiveLog: (obj: AssociateConfigurationItemsToApplicationResponse) => any;
|
|
76
77
|
}
|
|
77
78
|
|
|
78
|
-
export
|
|
79
|
-
name: "AuthorizationErrorException";
|
|
80
|
-
$fault: "client";
|
|
81
|
-
|
|
79
|
+
export declare class AuthorizationErrorException extends __BaseException {
|
|
80
|
+
readonly name: "AuthorizationErrorException";
|
|
81
|
+
readonly $fault: "client";
|
|
82
|
+
|
|
83
|
+
constructor(opts: __ExceptionOptionType<AuthorizationErrorException, __BaseException>);
|
|
82
84
|
}
|
|
83
85
|
|
|
84
|
-
export
|
|
85
|
-
name: "HomeRegionNotSetException";
|
|
86
|
-
$fault: "client";
|
|
87
|
-
|
|
86
|
+
export declare class HomeRegionNotSetException extends __BaseException {
|
|
87
|
+
readonly name: "HomeRegionNotSetException";
|
|
88
|
+
readonly $fault: "client";
|
|
89
|
+
|
|
90
|
+
constructor(opts: __ExceptionOptionType<HomeRegionNotSetException, __BaseException>);
|
|
88
91
|
}
|
|
89
92
|
|
|
90
|
-
export
|
|
91
|
-
name: "InvalidParameterException";
|
|
92
|
-
$fault: "client";
|
|
93
|
-
|
|
93
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
94
|
+
readonly name: "InvalidParameterException";
|
|
95
|
+
readonly $fault: "client";
|
|
96
|
+
|
|
97
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
94
98
|
}
|
|
95
99
|
|
|
96
|
-
export
|
|
97
|
-
name: "InvalidParameterValueException";
|
|
98
|
-
$fault: "client";
|
|
99
|
-
|
|
100
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
101
|
+
readonly name: "InvalidParameterValueException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
|
|
104
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
|
|
100
105
|
}
|
|
101
106
|
|
|
102
|
-
export
|
|
103
|
-
name: "ServerInternalErrorException";
|
|
104
|
-
$fault: "server";
|
|
105
|
-
|
|
107
|
+
export declare class ServerInternalErrorException extends __BaseException {
|
|
108
|
+
readonly name: "ServerInternalErrorException";
|
|
109
|
+
readonly $fault: "server";
|
|
110
|
+
|
|
111
|
+
constructor(opts: __ExceptionOptionType<ServerInternalErrorException, __BaseException>);
|
|
106
112
|
}
|
|
107
113
|
export interface BatchDeleteImportDataRequest {
|
|
108
114
|
|
|
@@ -184,10 +190,11 @@ export declare namespace CreateTagsResponse {
|
|
|
184
190
|
const filterSensitiveLog: (obj: CreateTagsResponse) => any;
|
|
185
191
|
}
|
|
186
192
|
|
|
187
|
-
export
|
|
188
|
-
name: "ResourceNotFoundException";
|
|
189
|
-
$fault: "client";
|
|
190
|
-
|
|
193
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
194
|
+
readonly name: "ResourceNotFoundException";
|
|
195
|
+
readonly $fault: "client";
|
|
196
|
+
|
|
197
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
191
198
|
}
|
|
192
199
|
export interface DeleteApplicationsRequest {
|
|
193
200
|
|
|
@@ -334,10 +341,11 @@ export declare namespace DescribeContinuousExportsResponse {
|
|
|
334
341
|
const filterSensitiveLog: (obj: DescribeContinuousExportsResponse) => any;
|
|
335
342
|
}
|
|
336
343
|
|
|
337
|
-
export
|
|
338
|
-
name: "OperationNotPermittedException";
|
|
339
|
-
$fault: "client";
|
|
340
|
-
|
|
344
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
345
|
+
readonly name: "OperationNotPermittedException";
|
|
346
|
+
readonly $fault: "client";
|
|
347
|
+
|
|
348
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
341
349
|
}
|
|
342
350
|
export interface DescribeExportConfigurationsRequest {
|
|
343
351
|
|
|
@@ -745,16 +753,18 @@ export declare namespace ListServerNeighborsResponse {
|
|
|
745
753
|
const filterSensitiveLog: (obj: ListServerNeighborsResponse) => any;
|
|
746
754
|
}
|
|
747
755
|
|
|
748
|
-
export
|
|
749
|
-
name: "ConflictErrorException";
|
|
750
|
-
$fault: "client";
|
|
751
|
-
|
|
756
|
+
export declare class ConflictErrorException extends __BaseException {
|
|
757
|
+
readonly name: "ConflictErrorException";
|
|
758
|
+
readonly $fault: "client";
|
|
759
|
+
|
|
760
|
+
constructor(opts: __ExceptionOptionType<ConflictErrorException, __BaseException>);
|
|
752
761
|
}
|
|
753
762
|
|
|
754
|
-
export
|
|
755
|
-
name: "ResourceInUseException";
|
|
756
|
-
$fault: "client";
|
|
757
|
-
|
|
763
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
764
|
+
readonly name: "ResourceInUseException";
|
|
765
|
+
readonly $fault: "client";
|
|
766
|
+
|
|
767
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
758
768
|
}
|
|
759
769
|
export interface StartContinuousExportRequest {
|
|
760
770
|
}
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ApplicationDiscoveryServiceClien
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ApplicationDiscoveryServiceClien
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ApplicationDiscoveryServiceClien
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-discovery-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Discovery Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*"
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
|
|
13
13
|
},
|
|
14
14
|
"main": "./dist-cjs/index.js",
|
|
15
15
|
"types": "./dist-types/index.d.ts",
|
|
@@ -18,41 +18,41 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
56
56
|
"@tsconfig/recommended": "1.0.1",
|
|
57
57
|
"@types/node": "^12.7.5",
|
|
58
58
|
"@types/uuid": "^8.3.0",
|