Skip to content

Commit a1e8036

Browse files
authored
feat: update clients as of 11/30/2020 (#1734)
1 parent c4c046e commit a1e8036

File tree

339 files changed

+73486
-39280
lines changed

Some content is hidden

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

339 files changed

+73486
-39280
lines changed

Diff for: clients/client-appflow/models/models_0.ts

+618-522
Large diffs are not rendered by default.

Diff for: clients/client-appflow/protocols/Aws_restJson1.ts

+77
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ import {
143143
TriggerProperties,
144144
TriggerType,
145145
UnsupportedOperationException,
146+
UpsolverDestinationProperties,
147+
UpsolverMetadata,
148+
UpsolverS3OutputFormatConfig,
146149
ValidationException,
147150
VeevaConnectorProfileCredentials,
148151
VeevaConnectorProfileProperties,
@@ -2529,6 +2532,9 @@ const serializeAws_restJson1DestinationConnectorProperties = (
25292532
...(input.Snowflake !== undefined && {
25302533
Snowflake: serializeAws_restJson1SnowflakeDestinationProperties(input.Snowflake, context),
25312534
}),
2535+
...(input.Upsolver !== undefined && {
2536+
Upsolver: serializeAws_restJson1UpsolverDestinationProperties(input.Upsolver, context),
2537+
}),
25322538
};
25332539
};
25342540

@@ -3112,6 +3118,34 @@ const serializeAws_restJson1TriggerProperties = (input: TriggerProperties, conte
31123118
};
31133119
};
31143120

3121+
const serializeAws_restJson1UpsolverDestinationProperties = (
3122+
input: UpsolverDestinationProperties,
3123+
context: __SerdeContext
3124+
): any => {
3125+
return {
3126+
...(input.bucketName !== undefined && { bucketName: input.bucketName }),
3127+
...(input.bucketPrefix !== undefined && { bucketPrefix: input.bucketPrefix }),
3128+
...(input.s3OutputFormatConfig !== undefined && {
3129+
s3OutputFormatConfig: serializeAws_restJson1UpsolverS3OutputFormatConfig(input.s3OutputFormatConfig, context),
3130+
}),
3131+
};
3132+
};
3133+
3134+
const serializeAws_restJson1UpsolverS3OutputFormatConfig = (
3135+
input: UpsolverS3OutputFormatConfig,
3136+
context: __SerdeContext
3137+
): any => {
3138+
return {
3139+
...(input.aggregationConfig !== undefined && {
3140+
aggregationConfig: serializeAws_restJson1AggregationConfig(input.aggregationConfig, context),
3141+
}),
3142+
...(input.fileType !== undefined && { fileType: input.fileType }),
3143+
...(input.prefixConfig !== undefined && {
3144+
prefixConfig: serializeAws_restJson1PrefixConfig(input.prefixConfig, context),
3145+
}),
3146+
};
3147+
};
3148+
31153149
const serializeAws_restJson1VeevaConnectorProfileCredentials = (
31163150
input: VeevaConnectorProfileCredentials,
31173151
context: __SerdeContext
@@ -3364,6 +3398,10 @@ const deserializeAws_restJson1ConnectorMetadata = (output: any, context: __Serde
33643398
output.Trendmicro !== undefined && output.Trendmicro !== null
33653399
? deserializeAws_restJson1TrendmicroMetadata(output.Trendmicro, context)
33663400
: undefined,
3401+
Upsolver:
3402+
output.Upsolver !== undefined && output.Upsolver !== null
3403+
? deserializeAws_restJson1UpsolverMetadata(output.Upsolver, context)
3404+
: undefined,
33673405
Veeva:
33683406
output.Veeva !== undefined && output.Veeva !== null
33693407
? deserializeAws_restJson1VeevaMetadata(output.Veeva, context)
@@ -3555,6 +3593,10 @@ const deserializeAws_restJson1DestinationConnectorProperties = (
35553593
output.Snowflake !== undefined && output.Snowflake !== null
35563594
? deserializeAws_restJson1SnowflakeDestinationProperties(output.Snowflake, context)
35573595
: undefined,
3596+
Upsolver:
3597+
output.Upsolver !== undefined && output.Upsolver !== null
3598+
? deserializeAws_restJson1UpsolverDestinationProperties(output.Upsolver, context)
3599+
: undefined,
35583600
} as any;
35593601
};
35603602

@@ -4347,6 +4389,41 @@ const deserializeAws_restJson1TriggerTypeList = (output: any, context: __SerdeCo
43474389
return (output || []).map((entry: any) => entry);
43484390
};
43494391

4392+
const deserializeAws_restJson1UpsolverDestinationProperties = (
4393+
output: any,
4394+
context: __SerdeContext
4395+
): UpsolverDestinationProperties => {
4396+
return {
4397+
bucketName: output.bucketName !== undefined && output.bucketName !== null ? output.bucketName : undefined,
4398+
bucketPrefix: output.bucketPrefix !== undefined && output.bucketPrefix !== null ? output.bucketPrefix : undefined,
4399+
s3OutputFormatConfig:
4400+
output.s3OutputFormatConfig !== undefined && output.s3OutputFormatConfig !== null
4401+
? deserializeAws_restJson1UpsolverS3OutputFormatConfig(output.s3OutputFormatConfig, context)
4402+
: undefined,
4403+
} as any;
4404+
};
4405+
4406+
const deserializeAws_restJson1UpsolverMetadata = (output: any, context: __SerdeContext): UpsolverMetadata => {
4407+
return {} as any;
4408+
};
4409+
4410+
const deserializeAws_restJson1UpsolverS3OutputFormatConfig = (
4411+
output: any,
4412+
context: __SerdeContext
4413+
): UpsolverS3OutputFormatConfig => {
4414+
return {
4415+
aggregationConfig:
4416+
output.aggregationConfig !== undefined && output.aggregationConfig !== null
4417+
? deserializeAws_restJson1AggregationConfig(output.aggregationConfig, context)
4418+
: undefined,
4419+
fileType: output.fileType !== undefined && output.fileType !== null ? output.fileType : undefined,
4420+
prefixConfig:
4421+
output.prefixConfig !== undefined && output.prefixConfig !== null
4422+
? deserializeAws_restJson1PrefixConfig(output.prefixConfig, context)
4423+
: undefined,
4424+
} as any;
4425+
};
4426+
43504427
const deserializeAws_restJson1VeevaConnectorProfileProperties = (
43514428
output: any,
43524429
context: __SerdeContext

Diff for: clients/client-application-insights/ApplicationInsights.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,14 @@ import {
133133
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
134134

135135
/**
136-
* <fullname>Amazon CloudWatch Application Insights for .NET and SQL Server</fullname>
137-
* <p> Amazon CloudWatch Application Insights for .NET and SQL Server is a service that
138-
* helps you detect common problems with your .NET and SQL Server-based applications. It
136+
* <fullname>Amazon CloudWatch Application Insights</fullname>
137+
* <p> Amazon CloudWatch Application Insights is a service that
138+
* helps you detect common problems with your applications. It
139139
* enables you to pinpoint the source of issues in your applications (built with technologies
140140
* such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into
141141
* detected problems.</p>
142-
* <p>After you onboard your application, CloudWatch Application Insights for .NET and SQL
143-
* Server identifies, recommends, and sets up metrics and logs. It continuously analyzes and
142+
* <p>After you onboard your application, CloudWatch Application Insights identifies,
143+
* recommends, and sets up metrics and logs. It continuously analyzes and
144144
* correlates your metrics and logs for unusual behavior to surface actionable problems with
145145
* your application. For example, if your application is slow and unresponsive and leading to
146146
* HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you

Diff for: clients/client-application-insights/ApplicationInsightsClient.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -269,14 +269,14 @@ export type ApplicationInsightsClientResolvedConfig = __SmithyResolvedConfigurat
269269
HostHeaderResolvedConfig;
270270

271271
/**
272-
* <fullname>Amazon CloudWatch Application Insights for .NET and SQL Server</fullname>
273-
* <p> Amazon CloudWatch Application Insights for .NET and SQL Server is a service that
274-
* helps you detect common problems with your .NET and SQL Server-based applications. It
272+
* <fullname>Amazon CloudWatch Application Insights</fullname>
273+
* <p> Amazon CloudWatch Application Insights is a service that
274+
* helps you detect common problems with your applications. It
275275
* enables you to pinpoint the source of issues in your applications (built with technologies
276276
* such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into
277277
* detected problems.</p>
278-
* <p>After you onboard your application, CloudWatch Application Insights for .NET and SQL
279-
* Server identifies, recommends, and sets up metrics and logs. It continuously analyzes and
278+
* <p>After you onboard your application, CloudWatch Application Insights identifies,
279+
* recommends, and sets up metrics and logs. It continuously analyzes and
280280
* correlates your metrics and logs for unusual behavior to surface actionable problems with
281281
* your application. For example, if your application is slow and unresponsive and leading to
282282
* HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you

0 commit comments

Comments
 (0)