@cdklabs/cdk-ecs-codedeploy 0.0.413 → 0.0.415
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/.jsii +4 -4
- package/.jsii.tabl.json +1 -1
- package/lib/api-canary/code-bundling.js +1 -1
- package/lib/api-canary/index.js +2 -2
- package/lib/ecs-appspec/index.js +2 -2
- package/lib/ecs-deployment/index.js +2 -2
- package/lib/ecs-deployment-provider/is-complete.lambda.js +3 -3
- package/lib/ecs-deployment-provider/on-event.lambda.js +2 -3
- package/lib/ecs-patterns/application-load-balanced-codedeployed-fargate-service.js +2 -2
- package/node_modules/@aws-sdk/client-codedeploy/package.json +34 -34
- package/node_modules/@aws-sdk/client-sso/package.json +32 -32
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1496 -14
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +13 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +14 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +14 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +84 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +118 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +105 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +106 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +17 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +147 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +152 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +126 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +154 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +279 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +19 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +39 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +55 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +39 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/node_modules/@aws-sdk/core/package.json +14 -10
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +7 -7
- package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
- package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +3 -0
- package/node_modules/@aws-sdk/util-endpoints/package.json +4 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
- package/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +173 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +54 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +9 -8
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +4 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +1 -6
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +9 -2
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +3 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +4 -0
- package/node_modules/@smithy/core/package.json +1 -1
- package/node_modules/@smithy/middleware-endpoint/package.json +2 -2
- package/node_modules/@smithy/middleware-retry/package.json +2 -2
- package/node_modules/@smithy/smithy-client/package.json +3 -3
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
- package/package.json +12 -11
package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
import type { Schema as ISchema, ShapeSerializer } from "@smithy/types";
|
2
|
+
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
3
|
+
import { XmlSettings } from "./XmlCodec";
|
4
|
+
/**
|
5
|
+
* @alpha
|
6
|
+
*/
|
7
|
+
export declare class XmlShapeSerializer extends SerdeContextConfig implements ShapeSerializer<string | Uint8Array> {
|
8
|
+
readonly settings: XmlSettings;
|
9
|
+
private stringBuffer?;
|
10
|
+
private byteBuffer?;
|
11
|
+
private buffer?;
|
12
|
+
constructor(settings: XmlSettings);
|
13
|
+
write(schema: ISchema, value: unknown): void;
|
14
|
+
flush(): string | Uint8Array;
|
15
|
+
private writeStruct;
|
16
|
+
private writeList;
|
17
|
+
private writeMap;
|
18
|
+
private writeSimple;
|
19
|
+
private writeSimpleInto;
|
20
|
+
private getXmlnsAttribute;
|
21
|
+
}
|
@@ -1,4 +1,17 @@
|
|
1
1
|
export * from "./coercing-serializers";
|
2
|
+
export * from "./json/AwsJson1_0Protocol";
|
3
|
+
export * from "./json/AwsJson1_1Protocol";
|
4
|
+
export * from "./json/AwsJsonRpcProtocol";
|
5
|
+
export * from "./json/AwsRestJsonProtocol";
|
6
|
+
export * from "./json/JsonCodec";
|
7
|
+
export * from "./json/JsonShapeDeserializer";
|
8
|
+
export * from "./json/JsonShapeSerializer";
|
2
9
|
export * from "./json/awsExpectUnion";
|
3
10
|
export * from "./json/parseJsonBody";
|
11
|
+
export * from "./query/AwsEc2QueryProtocol";
|
12
|
+
export * from "./query/AwsQueryProtocol";
|
13
|
+
export * from "./xml/AwsRestXmlProtocol";
|
14
|
+
export * from "./xml/XmlCodec";
|
15
|
+
export * from "./xml/XmlShapeDeserializer";
|
16
|
+
export * from "./xml/XmlShapeSerializer";
|
4
17
|
export * from "./xml/parseXmlBody";
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import { RpcProtocol } from "@smithy/core/protocols";
|
2
|
+
import {
|
3
|
+
EndpointBearer,
|
4
|
+
HandlerExecutionContext,
|
5
|
+
HttpRequest,
|
6
|
+
HttpResponse,
|
7
|
+
OperationSchema,
|
8
|
+
ResponseMetadata,
|
9
|
+
SerdeFunctions,
|
10
|
+
ShapeDeserializer,
|
11
|
+
ShapeSerializer,
|
12
|
+
} from "@smithy/types";
|
13
|
+
import { JsonCodec } from "./JsonCodec";
|
14
|
+
export declare abstract class AwsJsonRpcProtocol extends RpcProtocol {
|
15
|
+
protected serializer: ShapeSerializer<string | Uint8Array>;
|
16
|
+
protected deserializer: ShapeDeserializer<string | Uint8Array>;
|
17
|
+
private codec;
|
18
|
+
protected constructor({ defaultNamespace }: { defaultNamespace: string });
|
19
|
+
serializeRequest<Input extends object>(
|
20
|
+
operationSchema: OperationSchema,
|
21
|
+
input: Input,
|
22
|
+
context: HandlerExecutionContext & SerdeFunctions & EndpointBearer
|
23
|
+
): Promise<HttpRequest>;
|
24
|
+
getPayloadCodec(): JsonCodec;
|
25
|
+
protected abstract getJsonRpcVersion(): "1.1" | "1.0";
|
26
|
+
protected handleError(
|
27
|
+
operationSchema: OperationSchema,
|
28
|
+
context: HandlerExecutionContext & SerdeFunctions,
|
29
|
+
response: HttpResponse,
|
30
|
+
dataObject: any,
|
31
|
+
metadata: ResponseMetadata
|
32
|
+
): Promise<never>;
|
33
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import { HttpBindingProtocol } from "@smithy/core/protocols";
|
2
|
+
import {
|
3
|
+
EndpointBearer,
|
4
|
+
HandlerExecutionContext,
|
5
|
+
HttpRequest,
|
6
|
+
HttpResponse,
|
7
|
+
OperationSchema,
|
8
|
+
ResponseMetadata,
|
9
|
+
SerdeFunctions,
|
10
|
+
ShapeDeserializer,
|
11
|
+
ShapeSerializer,
|
12
|
+
} from "@smithy/types";
|
13
|
+
import { JsonCodec } from "./JsonCodec";
|
14
|
+
export declare class AwsRestJsonProtocol extends HttpBindingProtocol {
|
15
|
+
protected serializer: ShapeSerializer<string | Uint8Array>;
|
16
|
+
protected deserializer: ShapeDeserializer<string | Uint8Array>;
|
17
|
+
private readonly codec;
|
18
|
+
constructor({ defaultNamespace }: { defaultNamespace: string });
|
19
|
+
getShapeId(): string;
|
20
|
+
getPayloadCodec(): JsonCodec;
|
21
|
+
setSerdeContext(serdeContext: SerdeFunctions): void;
|
22
|
+
serializeRequest<Input extends object>(
|
23
|
+
operationSchema: OperationSchema,
|
24
|
+
input: Input,
|
25
|
+
context: HandlerExecutionContext & SerdeFunctions & EndpointBearer
|
26
|
+
): Promise<HttpRequest>;
|
27
|
+
protected handleError(
|
28
|
+
operationSchema: OperationSchema,
|
29
|
+
context: HandlerExecutionContext & SerdeFunctions,
|
30
|
+
response: HttpResponse,
|
31
|
+
dataObject: any,
|
32
|
+
metadata: ResponseMetadata
|
33
|
+
): Promise<never>;
|
34
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { Codec, CodecSettings } from "@smithy/types";
|
2
|
+
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
3
|
+
import { JsonShapeDeserializer } from "./JsonShapeDeserializer";
|
4
|
+
import { JsonShapeSerializer } from "./JsonShapeSerializer";
|
5
|
+
export type JsonSettings = CodecSettings & {
|
6
|
+
jsonName: boolean;
|
7
|
+
};
|
8
|
+
export declare class JsonCodec
|
9
|
+
extends SerdeContextConfig
|
10
|
+
implements Codec<string, string>
|
11
|
+
{
|
12
|
+
readonly settings: JsonSettings;
|
13
|
+
constructor(settings: JsonSettings);
|
14
|
+
createSerializer(): JsonShapeSerializer;
|
15
|
+
createDeserializer(): JsonShapeDeserializer;
|
16
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { DocumentType, Schema, ShapeDeserializer } from "@smithy/types";
|
2
|
+
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
3
|
+
import { JsonSettings } from "./JsonCodec";
|
4
|
+
export declare class JsonShapeDeserializer
|
5
|
+
extends SerdeContextConfig
|
6
|
+
implements ShapeDeserializer<string>
|
7
|
+
{
|
8
|
+
readonly settings: JsonSettings;
|
9
|
+
constructor(settings: JsonSettings);
|
10
|
+
read(schema: Schema, data: string | Uint8Array | unknown): Promise<any>;
|
11
|
+
readObject(schema: Schema, data: DocumentType): any;
|
12
|
+
private _read;
|
13
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { Schema, ShapeSerializer } from "@smithy/types";
|
2
|
+
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
3
|
+
import { JsonSettings } from "./JsonCodec";
|
4
|
+
export declare class JsonShapeSerializer
|
5
|
+
extends SerdeContextConfig
|
6
|
+
implements ShapeSerializer<string>
|
7
|
+
{
|
8
|
+
readonly settings: JsonSettings;
|
9
|
+
private buffer;
|
10
|
+
private rootSchema;
|
11
|
+
constructor(settings: JsonSettings);
|
12
|
+
write(schema: Schema, value: unknown): void;
|
13
|
+
flush(): string;
|
14
|
+
private _write;
|
15
|
+
}
|
package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
import { HttpResponse,
|
1
|
+
import { HttpResponse, SerdeFunctions } from "@smithy/types";
|
2
2
|
export declare const parseJsonBody: (
|
3
3
|
streamBody: any,
|
4
|
-
context:
|
4
|
+
context: SerdeFunctions
|
5
5
|
) => any;
|
6
6
|
export declare const parseJsonErrorBody: (
|
7
7
|
errorBody: any,
|
8
|
-
context:
|
8
|
+
context: SerdeFunctions
|
9
9
|
) => Promise<any>;
|
10
10
|
export declare const loadRestJsonErrorCode: (
|
11
11
|
output: HttpResponse,
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { AwsQueryProtocol } from "./AwsQueryProtocol";
|
2
|
+
export declare class AwsEc2QueryProtocol extends AwsQueryProtocol {
|
3
|
+
options: {
|
4
|
+
defaultNamespace: string;
|
5
|
+
xmlNamespace: string;
|
6
|
+
version: string;
|
7
|
+
};
|
8
|
+
constructor(options: {
|
9
|
+
defaultNamespace: string;
|
10
|
+
xmlNamespace: string;
|
11
|
+
version: string;
|
12
|
+
});
|
13
|
+
protected useNestedResult(): boolean;
|
14
|
+
}
|
package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
import { RpcProtocol } from "@smithy/core/protocols";
|
2
|
+
import {
|
3
|
+
Codec,
|
4
|
+
EndpointBearer,
|
5
|
+
HandlerExecutionContext,
|
6
|
+
HttpRequest,
|
7
|
+
MetadataBearer,
|
8
|
+
OperationSchema,
|
9
|
+
ResponseMetadata,
|
10
|
+
SerdeFunctions,
|
11
|
+
} from "@smithy/types";
|
12
|
+
import { HttpResponse as IHttpResponse } from "@smithy/types/dist-types/http";
|
13
|
+
import { XmlShapeDeserializer } from "../xml/XmlShapeDeserializer";
|
14
|
+
import { QueryShapeSerializer } from "./QueryShapeSerializer";
|
15
|
+
export declare class AwsQueryProtocol extends RpcProtocol {
|
16
|
+
options: {
|
17
|
+
defaultNamespace: string;
|
18
|
+
xmlNamespace: string;
|
19
|
+
version: string;
|
20
|
+
};
|
21
|
+
protected serializer: QueryShapeSerializer;
|
22
|
+
protected deserializer: XmlShapeDeserializer;
|
23
|
+
constructor(options: {
|
24
|
+
defaultNamespace: string;
|
25
|
+
xmlNamespace: string;
|
26
|
+
version: string;
|
27
|
+
});
|
28
|
+
getShapeId(): string;
|
29
|
+
setSerdeContext(serdeContext: SerdeFunctions): void;
|
30
|
+
getPayloadCodec(): Codec<any, any>;
|
31
|
+
serializeRequest<Input extends object>(
|
32
|
+
operationSchema: OperationSchema,
|
33
|
+
input: Input,
|
34
|
+
context: HandlerExecutionContext & SerdeFunctions & EndpointBearer
|
35
|
+
): Promise<HttpRequest>;
|
36
|
+
deserializeResponse<Output extends MetadataBearer>(
|
37
|
+
operationSchema: OperationSchema,
|
38
|
+
context: HandlerExecutionContext & SerdeFunctions,
|
39
|
+
response: IHttpResponse
|
40
|
+
): Promise<Output>;
|
41
|
+
protected useNestedResult(): boolean;
|
42
|
+
protected handleError(
|
43
|
+
operationSchema: OperationSchema,
|
44
|
+
context: HandlerExecutionContext & SerdeFunctions,
|
45
|
+
response: IHttpResponse,
|
46
|
+
dataObject: any,
|
47
|
+
metadata: ResponseMetadata
|
48
|
+
): Promise<never>;
|
49
|
+
protected loadQueryErrorCode(
|
50
|
+
output: IHttpResponse,
|
51
|
+
data: any
|
52
|
+
): string | undefined;
|
53
|
+
protected loadQueryError(data: any): any | undefined;
|
54
|
+
protected loadQueryErrorMessage(data: any): string;
|
55
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { Schema, ShapeSerializer } from "@smithy/types";
|
2
|
+
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
3
|
+
import { QuerySerializerSettings } from "./QuerySerializerSettings";
|
4
|
+
export declare class QueryShapeSerializer
|
5
|
+
extends SerdeContextConfig
|
6
|
+
implements ShapeSerializer<string | Uint8Array>
|
7
|
+
{
|
8
|
+
readonly settings: QuerySerializerSettings;
|
9
|
+
private buffer;
|
10
|
+
constructor(settings: QuerySerializerSettings);
|
11
|
+
write(schema: Schema, value: unknown, prefix?: string): void;
|
12
|
+
flush(): string | Uint8Array;
|
13
|
+
protected getKey(memberName: string, xmlName?: string): string;
|
14
|
+
protected writeKey(key: string): void;
|
15
|
+
protected writeValue(value: string): void;
|
16
|
+
}
|
package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
import { HttpBindingProtocol } from "@smithy/core/protocols";
|
2
|
+
import { OperationSchema } from "@smithy/core/schema";
|
3
|
+
import {
|
4
|
+
EndpointBearer,
|
5
|
+
HandlerExecutionContext,
|
6
|
+
HttpRequest as IHttpRequest,
|
7
|
+
HttpResponse as IHttpResponse,
|
8
|
+
MetadataBearer,
|
9
|
+
ResponseMetadata,
|
10
|
+
SerdeFunctions,
|
11
|
+
ShapeDeserializer,
|
12
|
+
ShapeSerializer,
|
13
|
+
} from "@smithy/types";
|
14
|
+
import { XmlCodec } from "./XmlCodec";
|
15
|
+
export declare class AwsRestXmlProtocol extends HttpBindingProtocol {
|
16
|
+
private readonly codec;
|
17
|
+
protected serializer: ShapeSerializer<string | Uint8Array>;
|
18
|
+
protected deserializer: ShapeDeserializer<string | Uint8Array>;
|
19
|
+
constructor(options: { defaultNamespace: string; xmlNamespace: string });
|
20
|
+
getPayloadCodec(): XmlCodec;
|
21
|
+
getShapeId(): string;
|
22
|
+
serializeRequest<Input extends object>(
|
23
|
+
operationSchema: OperationSchema,
|
24
|
+
input: Input,
|
25
|
+
context: HandlerExecutionContext & SerdeFunctions & EndpointBearer
|
26
|
+
): Promise<IHttpRequest>;
|
27
|
+
deserializeResponse<Output extends MetadataBearer>(
|
28
|
+
operationSchema: OperationSchema,
|
29
|
+
context: HandlerExecutionContext & SerdeFunctions,
|
30
|
+
response: IHttpResponse
|
31
|
+
): Promise<Output>;
|
32
|
+
protected handleError(
|
33
|
+
operationSchema: OperationSchema,
|
34
|
+
context: HandlerExecutionContext & SerdeFunctions,
|
35
|
+
response: IHttpResponse,
|
36
|
+
dataObject: any,
|
37
|
+
metadata: ResponseMetadata
|
38
|
+
): Promise<never>;
|
39
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { Codec, CodecSettings } from "@smithy/types";
|
2
|
+
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
3
|
+
import { XmlShapeDeserializer } from "./XmlShapeDeserializer";
|
4
|
+
import { XmlShapeSerializer } from "./XmlShapeSerializer";
|
5
|
+
export type XmlSettings = CodecSettings & {
|
6
|
+
xmlNamespace: string;
|
7
|
+
serviceNamespace: string;
|
8
|
+
};
|
9
|
+
export declare class XmlCodec
|
10
|
+
extends SerdeContextConfig
|
11
|
+
implements Codec<Uint8Array | string, Uint8Array | string>
|
12
|
+
{
|
13
|
+
readonly settings: XmlSettings;
|
14
|
+
constructor(settings: XmlSettings);
|
15
|
+
createSerializer(): XmlShapeSerializer;
|
16
|
+
createDeserializer(): XmlShapeDeserializer;
|
17
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { Schema, SerdeFunctions, ShapeDeserializer } from "@smithy/types";
|
2
|
+
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
3
|
+
import { XmlSettings } from "./XmlCodec";
|
4
|
+
export declare class XmlShapeDeserializer
|
5
|
+
extends SerdeContextConfig
|
6
|
+
implements ShapeDeserializer<Uint8Array | string>
|
7
|
+
{
|
8
|
+
readonly settings: XmlSettings;
|
9
|
+
private stringDeserializer;
|
10
|
+
constructor(settings: XmlSettings);
|
11
|
+
setSerdeContext(serdeContext: SerdeFunctions): void;
|
12
|
+
read(schema: Schema, bytes: Uint8Array | string, key?: string): any;
|
13
|
+
readSchema(_schema: Schema, value: any): any;
|
14
|
+
protected parseXml(xml: string): any;
|
15
|
+
}
|
package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
import { Schema as ISchema, ShapeSerializer } from "@smithy/types";
|
2
|
+
import { SerdeContextConfig } from "../ConfigurableSerdeContext";
|
3
|
+
import { XmlSettings } from "./XmlCodec";
|
4
|
+
export declare class XmlShapeSerializer
|
5
|
+
extends SerdeContextConfig
|
6
|
+
implements ShapeSerializer<string | Uint8Array>
|
7
|
+
{
|
8
|
+
readonly settings: XmlSettings;
|
9
|
+
private stringBuffer?;
|
10
|
+
private byteBuffer?;
|
11
|
+
private buffer?;
|
12
|
+
constructor(settings: XmlSettings);
|
13
|
+
write(schema: ISchema, value: unknown): void;
|
14
|
+
flush(): string | Uint8Array;
|
15
|
+
private writeStruct;
|
16
|
+
private writeList;
|
17
|
+
private writeMap;
|
18
|
+
private writeSimple;
|
19
|
+
private writeSimpleInto;
|
20
|
+
private getXmlnsAttribute;
|
21
|
+
}
|
package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export declare function simpleFormatXml(xml: string): string;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/core",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.826.0",
|
4
4
|
"description": "Core functions & classes shared by multiple AWS SDK clients.",
|
5
5
|
"scripts": {
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
@@ -81,15 +81,19 @@
|
|
81
81
|
},
|
82
82
|
"license": "Apache-2.0",
|
83
83
|
"dependencies": {
|
84
|
-
"@aws-sdk/types": "3.
|
85
|
-
"@
|
86
|
-
"@smithy/
|
87
|
-
"@smithy/
|
88
|
-
"@smithy/
|
89
|
-
"@smithy/
|
90
|
-
"@smithy/
|
91
|
-
"@smithy/
|
92
|
-
"@smithy/
|
84
|
+
"@aws-sdk/types": "3.821.0",
|
85
|
+
"@aws-sdk/xml-builder": "3.821.0",
|
86
|
+
"@smithy/core": "^3.5.3",
|
87
|
+
"@smithy/node-config-provider": "^4.1.3",
|
88
|
+
"@smithy/property-provider": "^4.0.4",
|
89
|
+
"@smithy/protocol-http": "^5.1.2",
|
90
|
+
"@smithy/signature-v4": "^5.1.2",
|
91
|
+
"@smithy/smithy-client": "^4.4.3",
|
92
|
+
"@smithy/types": "^4.3.1",
|
93
|
+
"@smithy/util-base64": "^4.0.0",
|
94
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
95
|
+
"@smithy/util-middleware": "^4.0.4",
|
96
|
+
"@smithy/util-utf8": "^4.0.0",
|
93
97
|
"fast-xml-parser": "4.4.1",
|
94
98
|
"tslib": "^2.6.2"
|
95
99
|
},
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-env",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.826.0",
|
4
4
|
"description": "AWS credential provider that sources credentials from known environment variables",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -25,10 +25,10 @@
|
|
25
25
|
},
|
26
26
|
"license": "Apache-2.0",
|
27
27
|
"dependencies": {
|
28
|
-
"@aws-sdk/core": "3.
|
29
|
-
"@aws-sdk/types": "3.
|
30
|
-
"@smithy/property-provider": "^4.0.
|
31
|
-
"@smithy/types": "^4.
|
28
|
+
"@aws-sdk/core": "3.826.0",
|
29
|
+
"@aws-sdk/types": "3.821.0",
|
30
|
+
"@smithy/property-provider": "^4.0.4",
|
31
|
+
"@smithy/types": "^4.3.1",
|
32
32
|
"tslib": "^2.6.2"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-http",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.826.0",
|
4
4
|
"description": "AWS credential provider for containers and HTTP sources",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -27,15 +27,15 @@
|
|
27
27
|
},
|
28
28
|
"license": "Apache-2.0",
|
29
29
|
"dependencies": {
|
30
|
-
"@aws-sdk/core": "3.
|
31
|
-
"@aws-sdk/types": "3.
|
32
|
-
"@smithy/fetch-http-handler": "^5.0.
|
33
|
-
"@smithy/node-http-handler": "^4.0.
|
34
|
-
"@smithy/property-provider": "^4.0.
|
35
|
-
"@smithy/protocol-http": "^5.1.
|
36
|
-
"@smithy/smithy-client": "^4.
|
37
|
-
"@smithy/types": "^4.
|
38
|
-
"@smithy/util-stream": "^4.2.
|
30
|
+
"@aws-sdk/core": "3.826.0",
|
31
|
+
"@aws-sdk/types": "3.821.0",
|
32
|
+
"@smithy/fetch-http-handler": "^5.0.4",
|
33
|
+
"@smithy/node-http-handler": "^4.0.6",
|
34
|
+
"@smithy/property-provider": "^4.0.4",
|
35
|
+
"@smithy/protocol-http": "^5.1.2",
|
36
|
+
"@smithy/smithy-client": "^4.4.3",
|
37
|
+
"@smithy/types": "^4.3.1",
|
38
|
+
"@smithy/util-stream": "^4.2.2",
|
39
39
|
"tslib": "^2.6.2"
|
40
40
|
},
|
41
41
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-ini",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.828.0",
|
4
4
|
"description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -27,18 +27,18 @@
|
|
27
27
|
},
|
28
28
|
"license": "Apache-2.0",
|
29
29
|
"dependencies": {
|
30
|
-
"@aws-sdk/core": "3.
|
31
|
-
"@aws-sdk/credential-provider-env": "3.
|
32
|
-
"@aws-sdk/credential-provider-http": "3.
|
33
|
-
"@aws-sdk/credential-provider-process": "3.
|
34
|
-
"@aws-sdk/credential-provider-sso": "3.
|
35
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
36
|
-
"@aws-sdk/nested-clients": "3.
|
37
|
-
"@aws-sdk/types": "3.
|
38
|
-
"@smithy/credential-provider-imds": "^4.0.
|
39
|
-
"@smithy/property-provider": "^4.0.
|
40
|
-
"@smithy/shared-ini-file-loader": "^4.0.
|
41
|
-
"@smithy/types": "^4.
|
30
|
+
"@aws-sdk/core": "3.826.0",
|
31
|
+
"@aws-sdk/credential-provider-env": "3.826.0",
|
32
|
+
"@aws-sdk/credential-provider-http": "3.826.0",
|
33
|
+
"@aws-sdk/credential-provider-process": "3.826.0",
|
34
|
+
"@aws-sdk/credential-provider-sso": "3.828.0",
|
35
|
+
"@aws-sdk/credential-provider-web-identity": "3.828.0",
|
36
|
+
"@aws-sdk/nested-clients": "3.828.0",
|
37
|
+
"@aws-sdk/types": "3.821.0",
|
38
|
+
"@smithy/credential-provider-imds": "^4.0.6",
|
39
|
+
"@smithy/property-provider": "^4.0.4",
|
40
|
+
"@smithy/shared-ini-file-loader": "^4.0.4",
|
41
|
+
"@smithy/types": "^4.3.1",
|
42
42
|
"tslib": "^2.6.2"
|
43
43
|
},
|
44
44
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-node",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.828.0",
|
4
4
|
"description": "AWS credential provider that sources credentials from a Node.JS environment. ",
|
5
5
|
"engines": {
|
6
6
|
"node": ">=18.0.0"
|
@@ -29,17 +29,17 @@
|
|
29
29
|
},
|
30
30
|
"license": "Apache-2.0",
|
31
31
|
"dependencies": {
|
32
|
-
"@aws-sdk/credential-provider-env": "3.
|
33
|
-
"@aws-sdk/credential-provider-http": "3.
|
34
|
-
"@aws-sdk/credential-provider-ini": "3.
|
35
|
-
"@aws-sdk/credential-provider-process": "3.
|
36
|
-
"@aws-sdk/credential-provider-sso": "3.
|
37
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
38
|
-
"@aws-sdk/types": "3.
|
39
|
-
"@smithy/credential-provider-imds": "^4.0.
|
40
|
-
"@smithy/property-provider": "^4.0.
|
41
|
-
"@smithy/shared-ini-file-loader": "^4.0.
|
42
|
-
"@smithy/types": "^4.
|
32
|
+
"@aws-sdk/credential-provider-env": "3.826.0",
|
33
|
+
"@aws-sdk/credential-provider-http": "3.826.0",
|
34
|
+
"@aws-sdk/credential-provider-ini": "3.828.0",
|
35
|
+
"@aws-sdk/credential-provider-process": "3.826.0",
|
36
|
+
"@aws-sdk/credential-provider-sso": "3.828.0",
|
37
|
+
"@aws-sdk/credential-provider-web-identity": "3.828.0",
|
38
|
+
"@aws-sdk/types": "3.821.0",
|
39
|
+
"@smithy/credential-provider-imds": "^4.0.6",
|
40
|
+
"@smithy/property-provider": "^4.0.4",
|
41
|
+
"@smithy/shared-ini-file-loader": "^4.0.4",
|
42
|
+
"@smithy/types": "^4.3.1",
|
43
43
|
"tslib": "^2.6.2"
|
44
44
|
},
|
45
45
|
"devDependencies": {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aws-sdk/credential-provider-process",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.826.0",
|
4
4
|
"description": "AWS credential provider that sources credential_process from ~/.aws/credentials and ~/.aws/config",
|
5
5
|
"main": "./dist-cjs/index.js",
|
6
6
|
"module": "./dist-es/index.js",
|
@@ -25,11 +25,11 @@
|
|
25
25
|
},
|
26
26
|
"license": "Apache-2.0",
|
27
27
|
"dependencies": {
|
28
|
-
"@aws-sdk/core": "3.
|
29
|
-
"@aws-sdk/types": "3.
|
30
|
-
"@smithy/property-provider": "^4.0.
|
31
|
-
"@smithy/shared-ini-file-loader": "^4.0.
|
32
|
-
"@smithy/types": "^4.
|
28
|
+
"@aws-sdk/core": "3.826.0",
|
29
|
+
"@aws-sdk/types": "3.821.0",
|
30
|
+
"@smithy/property-provider": "^4.0.4",
|
31
|
+
"@smithy/shared-ini-file-loader": "^4.0.4",
|
32
|
+
"@smithy/types": "^4.3.1",
|
33
33
|
"tslib": "^2.6.2"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|