@aws-sdk/client-appconfigdata 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/AppConfigData.d.ts +38 -15
- package/dist-types/ts3.4/AppConfigDataClient.d.ts +117 -75
- package/dist-types/ts3.4/commands/GetLatestConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartConfigurationSessionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +2 -2
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AppConfigDataServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +110 -132
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +29 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfigdata
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfigdata
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-appconfigdata
|
|
@@ -1,15 +1,38 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import { AppConfigDataClient } from "./AppConfigDataClient";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AppConfigDataClient } from "./AppConfigDataClient";
|
|
3
|
+
import {
|
|
4
|
+
GetLatestConfigurationCommandInput,
|
|
5
|
+
GetLatestConfigurationCommandOutput,
|
|
6
|
+
} from "./commands/GetLatestConfigurationCommand";
|
|
7
|
+
import {
|
|
8
|
+
StartConfigurationSessionCommandInput,
|
|
9
|
+
StartConfigurationSessionCommandOutput,
|
|
10
|
+
} from "./commands/StartConfigurationSessionCommand";
|
|
11
|
+
export declare class AppConfigData extends AppConfigDataClient {
|
|
12
|
+
getLatestConfiguration(
|
|
13
|
+
args: GetLatestConfigurationCommandInput,
|
|
14
|
+
options?: __HttpHandlerOptions
|
|
15
|
+
): Promise<GetLatestConfigurationCommandOutput>;
|
|
16
|
+
getLatestConfiguration(
|
|
17
|
+
args: GetLatestConfigurationCommandInput,
|
|
18
|
+
cb: (err: any, data?: GetLatestConfigurationCommandOutput) => void
|
|
19
|
+
): void;
|
|
20
|
+
getLatestConfiguration(
|
|
21
|
+
args: GetLatestConfigurationCommandInput,
|
|
22
|
+
options: __HttpHandlerOptions,
|
|
23
|
+
cb: (err: any, data?: GetLatestConfigurationCommandOutput) => void
|
|
24
|
+
): void;
|
|
25
|
+
startConfigurationSession(
|
|
26
|
+
args: StartConfigurationSessionCommandInput,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Promise<StartConfigurationSessionCommandOutput>;
|
|
29
|
+
startConfigurationSession(
|
|
30
|
+
args: StartConfigurationSessionCommandInput,
|
|
31
|
+
cb: (err: any, data?: StartConfigurationSessionCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
startConfigurationSession(
|
|
34
|
+
args: StartConfigurationSessionCommandInput,
|
|
35
|
+
options: __HttpHandlerOptions,
|
|
36
|
+
cb: (err: any, data?: StartConfigurationSessionCommandOutput) => void
|
|
37
|
+
): void;
|
|
38
|
+
}
|
|
@@ -1,75 +1,117 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
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
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
GetLatestConfigurationCommandInput,
|
|
47
|
+
GetLatestConfigurationCommandOutput,
|
|
48
|
+
} from "./commands/GetLatestConfigurationCommand";
|
|
49
|
+
import {
|
|
50
|
+
StartConfigurationSessionCommandInput,
|
|
51
|
+
StartConfigurationSessionCommandOutput,
|
|
52
|
+
} from "./commands/StartConfigurationSessionCommand";
|
|
53
|
+
export declare type ServiceInputTypes =
|
|
54
|
+
| GetLatestConfigurationCommandInput
|
|
55
|
+
| StartConfigurationSessionCommandInput;
|
|
56
|
+
export declare type ServiceOutputTypes =
|
|
57
|
+
| GetLatestConfigurationCommandOutput
|
|
58
|
+
| StartConfigurationSessionCommandOutput;
|
|
59
|
+
export interface ClientDefaults
|
|
60
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
61
|
+
requestHandler?: __HttpHandler;
|
|
62
|
+
sha256?: __HashConstructor;
|
|
63
|
+
urlParser?: __UrlParser;
|
|
64
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
65
|
+
streamCollector?: __StreamCollector;
|
|
66
|
+
base64Decoder?: __Decoder;
|
|
67
|
+
base64Encoder?: __Encoder;
|
|
68
|
+
utf8Decoder?: __Decoder;
|
|
69
|
+
utf8Encoder?: __Encoder;
|
|
70
|
+
runtime?: string;
|
|
71
|
+
disableHostPrefix?: boolean;
|
|
72
|
+
maxAttempts?: number | __Provider<number>;
|
|
73
|
+
retryMode?: string | __Provider<string>;
|
|
74
|
+
logger?: __Logger;
|
|
75
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
76
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
77
|
+
serviceId?: string;
|
|
78
|
+
region?: string | __Provider<string>;
|
|
79
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
80
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
81
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
82
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
83
|
+
}
|
|
84
|
+
declare type AppConfigDataClientConfigType = Partial<
|
|
85
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
86
|
+
> &
|
|
87
|
+
ClientDefaults &
|
|
88
|
+
RegionInputConfig &
|
|
89
|
+
EndpointsInputConfig &
|
|
90
|
+
RetryInputConfig &
|
|
91
|
+
HostHeaderInputConfig &
|
|
92
|
+
AwsAuthInputConfig &
|
|
93
|
+
UserAgentInputConfig;
|
|
94
|
+
export interface AppConfigDataClientConfig
|
|
95
|
+
extends AppConfigDataClientConfigType {}
|
|
96
|
+
declare type AppConfigDataClientResolvedConfigType =
|
|
97
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
98
|
+
Required<ClientDefaults> &
|
|
99
|
+
RegionResolvedConfig &
|
|
100
|
+
EndpointsResolvedConfig &
|
|
101
|
+
RetryResolvedConfig &
|
|
102
|
+
HostHeaderResolvedConfig &
|
|
103
|
+
AwsAuthResolvedConfig &
|
|
104
|
+
UserAgentResolvedConfig;
|
|
105
|
+
export interface AppConfigDataClientResolvedConfig
|
|
106
|
+
extends AppConfigDataClientResolvedConfigType {}
|
|
107
|
+
export declare class AppConfigDataClient extends __Client<
|
|
108
|
+
__HttpHandlerOptions,
|
|
109
|
+
ServiceInputTypes,
|
|
110
|
+
ServiceOutputTypes,
|
|
111
|
+
AppConfigDataClientResolvedConfig
|
|
112
|
+
> {
|
|
113
|
+
readonly config: AppConfigDataClientResolvedConfig;
|
|
114
|
+
constructor(configuration: AppConfigDataClientConfig);
|
|
115
|
+
destroy(): void;
|
|
116
|
+
}
|
|
117
|
+
export {};
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppConfigDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppConfigDataClient";
|
|
13
|
+
import {
|
|
14
|
+
GetLatestConfigurationRequest,
|
|
15
|
+
GetLatestConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetLatestConfigurationCommandInput
|
|
18
|
+
extends GetLatestConfigurationRequest {}
|
|
19
|
+
export interface GetLatestConfigurationCommandOutput
|
|
20
|
+
extends GetLatestConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetLatestConfigurationCommand extends $Command<
|
|
23
|
+
GetLatestConfigurationCommandInput,
|
|
24
|
+
GetLatestConfigurationCommandOutput,
|
|
25
|
+
AppConfigDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetLatestConfigurationCommandInput;
|
|
28
|
+
constructor(input: GetLatestConfigurationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppConfigDataClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetLatestConfigurationCommandInput,
|
|
35
|
+
GetLatestConfigurationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AppConfigDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AppConfigDataClient";
|
|
13
|
+
import {
|
|
14
|
+
StartConfigurationSessionRequest,
|
|
15
|
+
StartConfigurationSessionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface StartConfigurationSessionCommandInput
|
|
18
|
+
extends StartConfigurationSessionRequest {}
|
|
19
|
+
export interface StartConfigurationSessionCommandOutput
|
|
20
|
+
extends StartConfigurationSessionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartConfigurationSessionCommand extends $Command<
|
|
23
|
+
StartConfigurationSessionCommandInput,
|
|
24
|
+
StartConfigurationSessionCommandOutput,
|
|
25
|
+
AppConfigDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartConfigurationSessionCommandInput;
|
|
28
|
+
constructor(input: StartConfigurationSessionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AppConfigDataClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
StartConfigurationSessionCommandInput,
|
|
35
|
+
StartConfigurationSessionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./GetLatestConfigurationCommand";
|
|
2
|
-
export * from "./StartConfigurationSessionCommand";
|
|
1
|
+
export * from "./GetLatestConfigurationCommand";
|
|
2
|
+
export * from "./StartConfigurationSessionCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./AppConfigData";
|
|
2
|
-
export * from "./AppConfigDataClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { AppConfigDataServiceException } from "./models/AppConfigDataServiceException";
|
|
1
|
+
export * from "./AppConfigData";
|
|
2
|
+
export * from "./AppConfigDataClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { AppConfigDataServiceException } from "./models/AppConfigDataServiceException";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class AppConfigDataServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|
|
@@ -1,132 +1,110 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
3
|
-
export declare enum InvalidParameterProblem {
|
|
4
|
-
|
|
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
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
export declare class
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
export interface GetLatestConfigurationResponse {
|
|
112
|
-
|
|
113
|
-
NextPollConfigurationToken?: string;
|
|
114
|
-
|
|
115
|
-
NextPollIntervalInSeconds?: number;
|
|
116
|
-
|
|
117
|
-
ContentType?: string;
|
|
118
|
-
|
|
119
|
-
Configuration?: Uint8Array;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
export declare const InvalidParameterDetailFilterSensitiveLog: (obj: InvalidParameterDetail) => any;
|
|
123
|
-
|
|
124
|
-
export declare const BadRequestDetailsFilterSensitiveLog: (obj: BadRequestDetails) => any;
|
|
125
|
-
|
|
126
|
-
export declare const StartConfigurationSessionRequestFilterSensitiveLog: (obj: StartConfigurationSessionRequest) => any;
|
|
127
|
-
|
|
128
|
-
export declare const StartConfigurationSessionResponseFilterSensitiveLog: (obj: StartConfigurationSessionResponse) => any;
|
|
129
|
-
|
|
130
|
-
export declare const GetLatestConfigurationRequestFilterSensitiveLog: (obj: GetLatestConfigurationRequest) => any;
|
|
131
|
-
|
|
132
|
-
export declare const GetLatestConfigurationResponseFilterSensitiveLog: (obj: GetLatestConfigurationResponse) => any;
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
3
|
+
export declare enum InvalidParameterProblem {
|
|
4
|
+
CORRUPTED = "Corrupted",
|
|
5
|
+
EXPIRED = "Expired",
|
|
6
|
+
POLL_INTERVAL_NOT_SATISFIED = "PollIntervalNotSatisfied",
|
|
7
|
+
}
|
|
8
|
+
export interface InvalidParameterDetail {
|
|
9
|
+
Problem?: InvalidParameterProblem | string;
|
|
10
|
+
}
|
|
11
|
+
export declare type BadRequestDetails =
|
|
12
|
+
| BadRequestDetails.InvalidParametersMember
|
|
13
|
+
| BadRequestDetails.$UnknownMember;
|
|
14
|
+
export declare namespace BadRequestDetails {
|
|
15
|
+
interface InvalidParametersMember {
|
|
16
|
+
InvalidParameters: Record<string, InvalidParameterDetail>;
|
|
17
|
+
$unknown?: never;
|
|
18
|
+
}
|
|
19
|
+
interface $UnknownMember {
|
|
20
|
+
InvalidParameters?: never;
|
|
21
|
+
$unknown: [string, any];
|
|
22
|
+
}
|
|
23
|
+
interface Visitor<T> {
|
|
24
|
+
InvalidParameters: (value: Record<string, InvalidParameterDetail>) => T;
|
|
25
|
+
_: (name: string, value: any) => T;
|
|
26
|
+
}
|
|
27
|
+
const visit: <T>(value: BadRequestDetails, visitor: Visitor<T>) => T;
|
|
28
|
+
}
|
|
29
|
+
export declare enum BadRequestReason {
|
|
30
|
+
INVALID_PARAMETERS = "InvalidParameters",
|
|
31
|
+
}
|
|
32
|
+
export declare class BadRequestException extends __BaseException {
|
|
33
|
+
readonly name: "BadRequestException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
Message?: string;
|
|
36
|
+
Reason?: BadRequestReason | string;
|
|
37
|
+
Details?: BadRequestDetails;
|
|
38
|
+
constructor(
|
|
39
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
export declare class InternalServerException extends __BaseException {
|
|
43
|
+
readonly name: "InternalServerException";
|
|
44
|
+
readonly $fault: "server";
|
|
45
|
+
Message?: string;
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
export declare enum ResourceType {
|
|
51
|
+
APPLICATION = "Application",
|
|
52
|
+
CONFIGURATION = "Configuration",
|
|
53
|
+
CONFIGURATION_PROFILE = "ConfigurationProfile",
|
|
54
|
+
DEPLOYMENT = "Deployment",
|
|
55
|
+
ENVIRONMENT = "Environment",
|
|
56
|
+
}
|
|
57
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
58
|
+
readonly name: "ResourceNotFoundException";
|
|
59
|
+
readonly $fault: "client";
|
|
60
|
+
Message?: string;
|
|
61
|
+
ResourceType?: ResourceType | string;
|
|
62
|
+
ReferencedBy?: Record<string, string>;
|
|
63
|
+
constructor(
|
|
64
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
export interface StartConfigurationSessionRequest {
|
|
68
|
+
ApplicationIdentifier: string | undefined;
|
|
69
|
+
EnvironmentIdentifier: string | undefined;
|
|
70
|
+
ConfigurationProfileIdentifier: string | undefined;
|
|
71
|
+
RequiredMinimumPollIntervalInSeconds?: number;
|
|
72
|
+
}
|
|
73
|
+
export interface StartConfigurationSessionResponse {
|
|
74
|
+
InitialConfigurationToken?: string;
|
|
75
|
+
}
|
|
76
|
+
export declare class ThrottlingException extends __BaseException {
|
|
77
|
+
readonly name: "ThrottlingException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
Message?: string;
|
|
80
|
+
constructor(
|
|
81
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
82
|
+
);
|
|
83
|
+
}
|
|
84
|
+
export interface GetLatestConfigurationRequest {
|
|
85
|
+
ConfigurationToken: string | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface GetLatestConfigurationResponse {
|
|
88
|
+
NextPollConfigurationToken?: string;
|
|
89
|
+
NextPollIntervalInSeconds?: number;
|
|
90
|
+
ContentType?: string;
|
|
91
|
+
Configuration?: Uint8Array;
|
|
92
|
+
}
|
|
93
|
+
export declare const InvalidParameterDetailFilterSensitiveLog: (
|
|
94
|
+
obj: InvalidParameterDetail
|
|
95
|
+
) => any;
|
|
96
|
+
export declare const BadRequestDetailsFilterSensitiveLog: (
|
|
97
|
+
obj: BadRequestDetails
|
|
98
|
+
) => any;
|
|
99
|
+
export declare const StartConfigurationSessionRequestFilterSensitiveLog: (
|
|
100
|
+
obj: StartConfigurationSessionRequest
|
|
101
|
+
) => any;
|
|
102
|
+
export declare const StartConfigurationSessionResponseFilterSensitiveLog: (
|
|
103
|
+
obj: StartConfigurationSessionResponse
|
|
104
|
+
) => any;
|
|
105
|
+
export declare const GetLatestConfigurationRequestFilterSensitiveLog: (
|
|
106
|
+
obj: GetLatestConfigurationRequest
|
|
107
|
+
) => any;
|
|
108
|
+
export declare const GetLatestConfigurationResponseFilterSensitiveLog: (
|
|
109
|
+
obj: GetLatestConfigurationResponse
|
|
110
|
+
) => any;
|
|
@@ -1,8 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
+
GetLatestConfigurationCommandInput,
|
|
8
|
+
GetLatestConfigurationCommandOutput,
|
|
9
|
+
} from "../commands/GetLatestConfigurationCommand";
|
|
10
|
+
import {
|
|
11
|
+
StartConfigurationSessionCommandInput,
|
|
12
|
+
StartConfigurationSessionCommandOutput,
|
|
13
|
+
} from "../commands/StartConfigurationSessionCommand";
|
|
14
|
+
export declare const serializeAws_restJson1GetLatestConfigurationCommand: (
|
|
15
|
+
input: GetLatestConfigurationCommandInput,
|
|
16
|
+
context: __SerdeContext
|
|
17
|
+
) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_restJson1StartConfigurationSessionCommand: (
|
|
19
|
+
input: StartConfigurationSessionCommandInput,
|
|
20
|
+
context: __SerdeContext
|
|
21
|
+
) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const deserializeAws_restJson1GetLatestConfigurationCommand: (
|
|
23
|
+
output: __HttpResponse,
|
|
24
|
+
context: __SerdeContext
|
|
25
|
+
) => Promise<GetLatestConfigurationCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_restJson1StartConfigurationSessionCommand: (
|
|
27
|
+
output: __HttpResponse,
|
|
28
|
+
context: __SerdeContext
|
|
29
|
+
) => Promise<StartConfigurationSessionCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
3
|
-
|
|
4
|
-
|
|
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 { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
3
|
-
|
|
4
|
-
|
|
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 { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|
|
@@ -1,37 +1,66 @@
|
|
|
1
|
-
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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
|
-
|
|
1
|
+
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
7
|
+
any,
|
|
8
|
+
any,
|
|
9
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
10
|
+
> &
|
|
11
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
12
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
apiVersion: string;
|
|
14
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
15
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
16
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
18
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
19
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
+
disableHostPrefix: boolean;
|
|
22
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
23
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
24
|
+
logger: import("@aws-sdk/types").Logger;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
29
|
+
credentialDefaultProvider: (
|
|
30
|
+
input: any
|
|
31
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
32
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
33
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
34
|
+
import("@aws-sdk/types").UserAgent
|
|
35
|
+
>;
|
|
36
|
+
defaultsMode:
|
|
37
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
38
|
+
| import("@aws-sdk/types").Provider<
|
|
39
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
40
|
+
>;
|
|
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,11 +1,10 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
};
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
4
|
+
apiVersion: string;
|
|
5
|
+
disableHostPrefix: boolean;
|
|
6
|
+
logger: __Logger;
|
|
7
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
8
|
+
serviceId: string;
|
|
9
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
10
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfigdata",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfigdata Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.171.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",
|
|
@@ -19,45 +19,45 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.171.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.171.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.171.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.171.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.171.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.171.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.171.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.171.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.171.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.171.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.171.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.171.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.171.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.171.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.171.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.171.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.171.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.171.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.171.0",
|
|
41
|
+
"@aws-sdk/types": "3.171.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.171.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.171.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.171.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.171.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.171.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.170.0",
|
|
57
57
|
"@tsconfig/recommended": "1.0.1",
|
|
58
58
|
"@types/node": "^12.7.5",
|
|
59
59
|
"concurrently": "7.0.0",
|
|
60
|
-
"downlevel-dts": "0.
|
|
60
|
+
"downlevel-dts": "0.10.1",
|
|
61
61
|
"rimraf": "3.0.2",
|
|
62
62
|
"typedoc": "0.19.2",
|
|
63
63
|
"typescript": "~4.6.2"
|