Skip to content

Commit

Permalink
chore: fix formatting missed by prettier (#1173)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed May 12, 2020
1 parent 1414b8c commit df08dbf
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
8 changes: 6 additions & 2 deletions clients/client-codecommit/protocols/Aws_json1_1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2448,7 +2448,9 @@ const deserializeAws_json1_1BatchDescribeMergeConflictsCommandError = async (
export const deserializeAws_json1_1BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand = async (
output: __HttpResponse,
context: __SerdeContext
): Promise<BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOutput> => {
): Promise<
BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOutput
> => {
if (output.statusCode >= 400) {
return deserializeAws_json1_1BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandError(
output,
Expand All @@ -2472,7 +2474,9 @@ export const deserializeAws_json1_1BatchDisassociateApprovalRuleTemplateFromRepo
const deserializeAws_json1_1BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandError = async (
output: __HttpResponse,
context: __SerdeContext
): Promise<BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOutput> => {
): Promise<
BatchDisassociateApprovalRuleTemplateFromRepositoriesCommandOutput
> => {
const parsedOutput: any = {
...output,
body: await parseBody(output.body, context)
Expand Down
8 changes: 6 additions & 2 deletions clients/client-ec2/protocols/Aws_ec2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20868,7 +20868,9 @@ const deserializeAws_ec2DescribeLaunchTemplatesCommandError = async (
export const deserializeAws_ec2DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand = async (
output: __HttpResponse,
context: __SerdeContext
): Promise<DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput> => {
): Promise<
DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput
> => {
if (output.statusCode >= 400) {
return deserializeAws_ec2DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandError(
output,
Expand All @@ -20893,7 +20895,9 @@ export const deserializeAws_ec2DescribeLocalGatewayRouteTableVirtualInterfaceGro
const deserializeAws_ec2DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandError = async (
output: __HttpResponse,
context: __SerdeContext
): Promise<DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput> => {
): Promise<
DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommandOutput
> => {
const parsedOutput: any = {
...output,
body: await parseBody(output.body, context)
Expand Down
16 changes: 12 additions & 4 deletions clients/client-service-catalog/protocols/Aws_json1_1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2424,7 +2424,9 @@ const deserializeAws_json1_1AssociateTagOptionWithResourceCommandError = async (
export const deserializeAws_json1_1BatchAssociateServiceActionWithProvisioningArtifactCommand = async (
output: __HttpResponse,
context: __SerdeContext
): Promise<BatchAssociateServiceActionWithProvisioningArtifactCommandOutput> => {
): Promise<
BatchAssociateServiceActionWithProvisioningArtifactCommandOutput
> => {
if (output.statusCode >= 400) {
return deserializeAws_json1_1BatchAssociateServiceActionWithProvisioningArtifactCommandError(
output,
Expand All @@ -2448,7 +2450,9 @@ export const deserializeAws_json1_1BatchAssociateServiceActionWithProvisioningAr
const deserializeAws_json1_1BatchAssociateServiceActionWithProvisioningArtifactCommandError = async (
output: __HttpResponse,
context: __SerdeContext
): Promise<BatchAssociateServiceActionWithProvisioningArtifactCommandOutput> => {
): Promise<
BatchAssociateServiceActionWithProvisioningArtifactCommandOutput
> => {
const parsedOutput: any = {
...output,
body: await parseBody(output.body, context)
Expand Down Expand Up @@ -2490,7 +2494,9 @@ const deserializeAws_json1_1BatchAssociateServiceActionWithProvisioningArtifactC
export const deserializeAws_json1_1BatchDisassociateServiceActionFromProvisioningArtifactCommand = async (
output: __HttpResponse,
context: __SerdeContext
): Promise<BatchDisassociateServiceActionFromProvisioningArtifactCommandOutput> => {
): Promise<
BatchDisassociateServiceActionFromProvisioningArtifactCommandOutput
> => {
if (output.statusCode >= 400) {
return deserializeAws_json1_1BatchDisassociateServiceActionFromProvisioningArtifactCommandError(
output,
Expand All @@ -2514,7 +2520,9 @@ export const deserializeAws_json1_1BatchDisassociateServiceActionFromProvisionin
const deserializeAws_json1_1BatchDisassociateServiceActionFromProvisioningArtifactCommandError = async (
output: __HttpResponse,
context: __SerdeContext
): Promise<BatchDisassociateServiceActionFromProvisioningArtifactCommandOutput> => {
): Promise<
BatchDisassociateServiceActionFromProvisioningArtifactCommandOutput
> => {
const parsedOutput: any = {
...output,
body: await parseBody(output.body, context)
Expand Down

0 comments on commit df08dbf

Please sign in to comment.