Skip to content

Commit 3dfe61b

Browse files
authored
chore: codegen for event stream support (#937)
* feat: add event stream serde dependencies([#824](#824)) * support eventstream traits([smithy-typescript#110](smithy-lang/smithy-typescript#110))
1 parent 08f8213 commit 3dfe61b

File tree

7,372 files changed

+29559
-28841
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,372 files changed

+29559
-28841
lines changed

Diff for: clients/client-accessanalyzer/commands/CreateAnalyzerCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
23-
HttpHandlerOptions as __HttpHandlerOptions
22+
HttpHandlerOptions as __HttpHandlerOptions,
23+
SerdeContext as __SerdeContext
2424
} from "@aws-sdk/types";
2525

2626
export type CreateAnalyzerCommandInput = CreateAnalyzerRequest;
@@ -64,14 +64,14 @@ export class CreateAnalyzerCommand extends $Command<
6464

6565
private serialize(
6666
input: CreateAnalyzerCommandInput,
67-
context: SerdeContext
67+
context: __SerdeContext
6868
): Promise<__HttpRequest> {
6969
return serializeAws_restJson1_1CreateAnalyzerCommand(input, context);
7070
}
7171

7272
private deserialize(
7373
output: __HttpResponse,
74-
context: SerdeContext
74+
context: __SerdeContext
7575
): Promise<CreateAnalyzerCommandOutput> {
7676
return deserializeAws_restJson1_1CreateAnalyzerCommand(output, context);
7777
}

Diff for: clients/client-accessanalyzer/commands/CreateArchiveRuleCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
2322
HttpHandlerOptions as __HttpHandlerOptions,
24-
MetadataBearer as __MetadataBearer
23+
MetadataBearer as __MetadataBearer,
24+
SerdeContext as __SerdeContext
2525
} from "@aws-sdk/types";
2626

2727
export type CreateArchiveRuleCommandInput = CreateArchiveRuleRequest;
@@ -65,14 +65,14 @@ export class CreateArchiveRuleCommand extends $Command<
6565

6666
private serialize(
6767
input: CreateArchiveRuleCommandInput,
68-
context: SerdeContext
68+
context: __SerdeContext
6969
): Promise<__HttpRequest> {
7070
return serializeAws_restJson1_1CreateArchiveRuleCommand(input, context);
7171
}
7272

7373
private deserialize(
7474
output: __HttpResponse,
75-
context: SerdeContext
75+
context: __SerdeContext
7676
): Promise<CreateArchiveRuleCommandOutput> {
7777
return deserializeAws_restJson1_1CreateArchiveRuleCommand(output, context);
7878
}

Diff for: clients/client-accessanalyzer/commands/DeleteAnalyzerCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
2322
HttpHandlerOptions as __HttpHandlerOptions,
24-
MetadataBearer as __MetadataBearer
23+
MetadataBearer as __MetadataBearer,
24+
SerdeContext as __SerdeContext
2525
} from "@aws-sdk/types";
2626

2727
export type DeleteAnalyzerCommandInput = DeleteAnalyzerRequest;
@@ -65,14 +65,14 @@ export class DeleteAnalyzerCommand extends $Command<
6565

6666
private serialize(
6767
input: DeleteAnalyzerCommandInput,
68-
context: SerdeContext
68+
context: __SerdeContext
6969
): Promise<__HttpRequest> {
7070
return serializeAws_restJson1_1DeleteAnalyzerCommand(input, context);
7171
}
7272

7373
private deserialize(
7474
output: __HttpResponse,
75-
context: SerdeContext
75+
context: __SerdeContext
7676
): Promise<DeleteAnalyzerCommandOutput> {
7777
return deserializeAws_restJson1_1DeleteAnalyzerCommand(output, context);
7878
}

Diff for: clients/client-accessanalyzer/commands/DeleteArchiveRuleCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
2322
HttpHandlerOptions as __HttpHandlerOptions,
24-
MetadataBearer as __MetadataBearer
23+
MetadataBearer as __MetadataBearer,
24+
SerdeContext as __SerdeContext
2525
} from "@aws-sdk/types";
2626

2727
export type DeleteArchiveRuleCommandInput = DeleteArchiveRuleRequest;
@@ -65,14 +65,14 @@ export class DeleteArchiveRuleCommand extends $Command<
6565

6666
private serialize(
6767
input: DeleteArchiveRuleCommandInput,
68-
context: SerdeContext
68+
context: __SerdeContext
6969
): Promise<__HttpRequest> {
7070
return serializeAws_restJson1_1DeleteArchiveRuleCommand(input, context);
7171
}
7272

7373
private deserialize(
7474
output: __HttpResponse,
75-
context: SerdeContext
75+
context: __SerdeContext
7676
): Promise<DeleteArchiveRuleCommandOutput> {
7777
return deserializeAws_restJson1_1DeleteArchiveRuleCommand(output, context);
7878
}

Diff for: clients/client-accessanalyzer/commands/GetAnalyzedResourceCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import {
2222
Handler,
2323
HandlerExecutionContext,
2424
MiddlewareStack,
25-
SerdeContext,
26-
HttpHandlerOptions as __HttpHandlerOptions
25+
HttpHandlerOptions as __HttpHandlerOptions,
26+
SerdeContext as __SerdeContext
2727
} from "@aws-sdk/types";
2828

2929
export type GetAnalyzedResourceCommandInput = GetAnalyzedResourceRequest;
@@ -70,14 +70,14 @@ export class GetAnalyzedResourceCommand extends $Command<
7070

7171
private serialize(
7272
input: GetAnalyzedResourceCommandInput,
73-
context: SerdeContext
73+
context: __SerdeContext
7474
): Promise<__HttpRequest> {
7575
return serializeAws_restJson1_1GetAnalyzedResourceCommand(input, context);
7676
}
7777

7878
private deserialize(
7979
output: __HttpResponse,
80-
context: SerdeContext
80+
context: __SerdeContext
8181
): Promise<GetAnalyzedResourceCommandOutput> {
8282
return deserializeAws_restJson1_1GetAnalyzedResourceCommand(
8383
output,

Diff for: clients/client-accessanalyzer/commands/GetAnalyzerCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
23-
HttpHandlerOptions as __HttpHandlerOptions
22+
HttpHandlerOptions as __HttpHandlerOptions,
23+
SerdeContext as __SerdeContext
2424
} from "@aws-sdk/types";
2525

2626
export type GetAnalyzerCommandInput = GetAnalyzerRequest;
@@ -64,14 +64,14 @@ export class GetAnalyzerCommand extends $Command<
6464

6565
private serialize(
6666
input: GetAnalyzerCommandInput,
67-
context: SerdeContext
67+
context: __SerdeContext
6868
): Promise<__HttpRequest> {
6969
return serializeAws_restJson1_1GetAnalyzerCommand(input, context);
7070
}
7171

7272
private deserialize(
7373
output: __HttpResponse,
74-
context: SerdeContext
74+
context: __SerdeContext
7575
): Promise<GetAnalyzerCommandOutput> {
7676
return deserializeAws_restJson1_1GetAnalyzerCommand(output, context);
7777
}

Diff for: clients/client-accessanalyzer/commands/GetArchiveRuleCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
23-
HttpHandlerOptions as __HttpHandlerOptions
22+
HttpHandlerOptions as __HttpHandlerOptions,
23+
SerdeContext as __SerdeContext
2424
} from "@aws-sdk/types";
2525

2626
export type GetArchiveRuleCommandInput = GetArchiveRuleRequest;
@@ -64,14 +64,14 @@ export class GetArchiveRuleCommand extends $Command<
6464

6565
private serialize(
6666
input: GetArchiveRuleCommandInput,
67-
context: SerdeContext
67+
context: __SerdeContext
6868
): Promise<__HttpRequest> {
6969
return serializeAws_restJson1_1GetArchiveRuleCommand(input, context);
7070
}
7171

7272
private deserialize(
7373
output: __HttpResponse,
74-
context: SerdeContext
74+
context: __SerdeContext
7575
): Promise<GetArchiveRuleCommandOutput> {
7676
return deserializeAws_restJson1_1GetArchiveRuleCommand(output, context);
7777
}

Diff for: clients/client-accessanalyzer/commands/GetFindingCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
23-
HttpHandlerOptions as __HttpHandlerOptions
22+
HttpHandlerOptions as __HttpHandlerOptions,
23+
SerdeContext as __SerdeContext
2424
} from "@aws-sdk/types";
2525

2626
export type GetFindingCommandInput = GetFindingRequest;
@@ -64,14 +64,14 @@ export class GetFindingCommand extends $Command<
6464

6565
private serialize(
6666
input: GetFindingCommandInput,
67-
context: SerdeContext
67+
context: __SerdeContext
6868
): Promise<__HttpRequest> {
6969
return serializeAws_restJson1_1GetFindingCommand(input, context);
7070
}
7171

7272
private deserialize(
7373
output: __HttpResponse,
74-
context: SerdeContext
74+
context: __SerdeContext
7575
): Promise<GetFindingCommandOutput> {
7676
return deserializeAws_restJson1_1GetFindingCommand(output, context);
7777
}

Diff for: clients/client-accessanalyzer/commands/ListAnalyzedResourcesCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import {
2222
Handler,
2323
HandlerExecutionContext,
2424
MiddlewareStack,
25-
SerdeContext,
26-
HttpHandlerOptions as __HttpHandlerOptions
25+
HttpHandlerOptions as __HttpHandlerOptions,
26+
SerdeContext as __SerdeContext
2727
} from "@aws-sdk/types";
2828

2929
export type ListAnalyzedResourcesCommandInput = ListAnalyzedResourcesRequest;
@@ -70,14 +70,14 @@ export class ListAnalyzedResourcesCommand extends $Command<
7070

7171
private serialize(
7272
input: ListAnalyzedResourcesCommandInput,
73-
context: SerdeContext
73+
context: __SerdeContext
7474
): Promise<__HttpRequest> {
7575
return serializeAws_restJson1_1ListAnalyzedResourcesCommand(input, context);
7676
}
7777

7878
private deserialize(
7979
output: __HttpResponse,
80-
context: SerdeContext
80+
context: __SerdeContext
8181
): Promise<ListAnalyzedResourcesCommandOutput> {
8282
return deserializeAws_restJson1_1ListAnalyzedResourcesCommand(
8383
output,

Diff for: clients/client-accessanalyzer/commands/ListAnalyzersCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
23-
HttpHandlerOptions as __HttpHandlerOptions
22+
HttpHandlerOptions as __HttpHandlerOptions,
23+
SerdeContext as __SerdeContext
2424
} from "@aws-sdk/types";
2525

2626
export type ListAnalyzersCommandInput = ListAnalyzersRequest;
@@ -64,14 +64,14 @@ export class ListAnalyzersCommand extends $Command<
6464

6565
private serialize(
6666
input: ListAnalyzersCommandInput,
67-
context: SerdeContext
67+
context: __SerdeContext
6868
): Promise<__HttpRequest> {
6969
return serializeAws_restJson1_1ListAnalyzersCommand(input, context);
7070
}
7171

7272
private deserialize(
7373
output: __HttpResponse,
74-
context: SerdeContext
74+
context: __SerdeContext
7575
): Promise<ListAnalyzersCommandOutput> {
7676
return deserializeAws_restJson1_1ListAnalyzersCommand(output, context);
7777
}

Diff for: clients/client-accessanalyzer/commands/ListArchiveRulesCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import {
2222
Handler,
2323
HandlerExecutionContext,
2424
MiddlewareStack,
25-
SerdeContext,
26-
HttpHandlerOptions as __HttpHandlerOptions
25+
HttpHandlerOptions as __HttpHandlerOptions,
26+
SerdeContext as __SerdeContext
2727
} from "@aws-sdk/types";
2828

2929
export type ListArchiveRulesCommandInput = ListArchiveRulesRequest;
@@ -67,14 +67,14 @@ export class ListArchiveRulesCommand extends $Command<
6767

6868
private serialize(
6969
input: ListArchiveRulesCommandInput,
70-
context: SerdeContext
70+
context: __SerdeContext
7171
): Promise<__HttpRequest> {
7272
return serializeAws_restJson1_1ListArchiveRulesCommand(input, context);
7373
}
7474

7575
private deserialize(
7676
output: __HttpResponse,
77-
context: SerdeContext
77+
context: __SerdeContext
7878
): Promise<ListArchiveRulesCommandOutput> {
7979
return deserializeAws_restJson1_1ListArchiveRulesCommand(output, context);
8080
}

Diff for: clients/client-accessanalyzer/commands/ListFindingsCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
23-
HttpHandlerOptions as __HttpHandlerOptions
22+
HttpHandlerOptions as __HttpHandlerOptions,
23+
SerdeContext as __SerdeContext
2424
} from "@aws-sdk/types";
2525

2626
export type ListFindingsCommandInput = ListFindingsRequest;
@@ -64,14 +64,14 @@ export class ListFindingsCommand extends $Command<
6464

6565
private serialize(
6666
input: ListFindingsCommandInput,
67-
context: SerdeContext
67+
context: __SerdeContext
6868
): Promise<__HttpRequest> {
6969
return serializeAws_restJson1_1ListFindingsCommand(input, context);
7070
}
7171

7272
private deserialize(
7373
output: __HttpResponse,
74-
context: SerdeContext
74+
context: __SerdeContext
7575
): Promise<ListFindingsCommandOutput> {
7676
return deserializeAws_restJson1_1ListFindingsCommand(output, context);
7777
}

Diff for: clients/client-accessanalyzer/commands/ListTagsForResourceCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import {
2222
Handler,
2323
HandlerExecutionContext,
2424
MiddlewareStack,
25-
SerdeContext,
26-
HttpHandlerOptions as __HttpHandlerOptions
25+
HttpHandlerOptions as __HttpHandlerOptions,
26+
SerdeContext as __SerdeContext
2727
} from "@aws-sdk/types";
2828

2929
export type ListTagsForResourceCommandInput = ListTagsForResourceRequest;
@@ -70,14 +70,14 @@ export class ListTagsForResourceCommand extends $Command<
7070

7171
private serialize(
7272
input: ListTagsForResourceCommandInput,
73-
context: SerdeContext
73+
context: __SerdeContext
7474
): Promise<__HttpRequest> {
7575
return serializeAws_restJson1_1ListTagsForResourceCommand(input, context);
7676
}
7777

7878
private deserialize(
7979
output: __HttpResponse,
80-
context: SerdeContext
80+
context: __SerdeContext
8181
): Promise<ListTagsForResourceCommandOutput> {
8282
return deserializeAws_restJson1_1ListTagsForResourceCommand(
8383
output,

Diff for: clients/client-accessanalyzer/commands/StartResourceScanCommand.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import {
1919
Handler,
2020
HandlerExecutionContext,
2121
MiddlewareStack,
22-
SerdeContext,
2322
HttpHandlerOptions as __HttpHandlerOptions,
24-
MetadataBearer as __MetadataBearer
23+
MetadataBearer as __MetadataBearer,
24+
SerdeContext as __SerdeContext
2525
} from "@aws-sdk/types";
2626

2727
export type StartResourceScanCommandInput = StartResourceScanRequest;
@@ -65,14 +65,14 @@ export class StartResourceScanCommand extends $Command<
6565

6666
private serialize(
6767
input: StartResourceScanCommandInput,
68-
context: SerdeContext
68+
context: __SerdeContext
6969
): Promise<__HttpRequest> {
7070
return serializeAws_restJson1_1StartResourceScanCommand(input, context);
7171
}
7272

7373
private deserialize(
7474
output: __HttpResponse,
75-
context: SerdeContext
75+
context: __SerdeContext
7676
): Promise<StartResourceScanCommandOutput> {
7777
return deserializeAws_restJson1_1StartResourceScanCommand(output, context);
7878
}

0 commit comments

Comments
 (0)