@aws-sdk/client-appconfigdata 3.928.0 → 3.930.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +193 -195
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AppConfigDataClient.js +2 -0
- package/dist-es/commands/GetLatestConfigurationCommand.js +3 -10
- package/dist-es/commands/StartConfigurationSessionCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -13
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +182 -0
- package/dist-types/AppConfigDataClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +4 -5
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/AppConfigDataClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -0
- package/package.json +34 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -163
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -20
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -29
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { GetLatestConfigurationCommandInput, GetLatestConfigurationCommandOutput } from "../commands/GetLatestConfigurationCommand";
|
|
4
|
-
import { StartConfigurationSessionCommandInput, StartConfigurationSessionCommandOutput } from "../commands/StartConfigurationSessionCommand";
|
|
5
|
-
/**
|
|
6
|
-
* serializeAws_restJson1GetLatestConfigurationCommand
|
|
7
|
-
*/
|
|
8
|
-
export declare const se_GetLatestConfigurationCommand: (input: GetLatestConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
|
-
/**
|
|
10
|
-
* serializeAws_restJson1StartConfigurationSessionCommand
|
|
11
|
-
*/
|
|
12
|
-
export declare const se_StartConfigurationSessionCommand: (input: StartConfigurationSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
|
-
/**
|
|
14
|
-
* deserializeAws_restJson1GetLatestConfigurationCommand
|
|
15
|
-
*/
|
|
16
|
-
export declare const de_GetLatestConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLatestConfigurationCommandOutput>;
|
|
17
|
-
/**
|
|
18
|
-
* deserializeAws_restJson1StartConfigurationSessionCommand
|
|
19
|
-
*/
|
|
20
|
-
export declare const de_StartConfigurationSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartConfigurationSessionCommandOutput>;
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/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 se_GetLatestConfigurationCommand: (
|
|
15
|
-
input: GetLatestConfigurationCommandInput,
|
|
16
|
-
context: __SerdeContext
|
|
17
|
-
) => Promise<__HttpRequest>;
|
|
18
|
-
export declare const se_StartConfigurationSessionCommand: (
|
|
19
|
-
input: StartConfigurationSessionCommandInput,
|
|
20
|
-
context: __SerdeContext
|
|
21
|
-
) => Promise<__HttpRequest>;
|
|
22
|
-
export declare const de_GetLatestConfigurationCommand: (
|
|
23
|
-
output: __HttpResponse,
|
|
24
|
-
context: __SerdeContext
|
|
25
|
-
) => Promise<GetLatestConfigurationCommandOutput>;
|
|
26
|
-
export declare const de_StartConfigurationSessionCommand: (
|
|
27
|
-
output: __HttpResponse,
|
|
28
|
-
context: __SerdeContext
|
|
29
|
-
) => Promise<StartConfigurationSessionCommandOutput>;
|