-
Notifications
You must be signed in to change notification settings - Fork 578
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix issues with */ in doc block breaking code gen * chore: remove importexport service because of deprecation * fix(service-types-generator): fix self reference in generated model * fix(service-model): code gen of different models with casing difference * fix: remove universal client generation when import models Currently generated clients' config doesn't compatible with either browser dependency or node dependency because the default streamType is 'Uint8Array', which is not compatible with `Blob` or `Readable` * fix(service-types-generator): remove versions from cloudfront commands * fix: fix incorrect codegen in commands signing middleware * fix: fix naming conflict between operations and shapes * feat: introduce typescript incremental build * chore: add travis wait time for long-running steps
- Loading branch information
1 parent
0323774
commit cb268ed
Showing
133,743 changed files
with
4,517,715 additions
and
295,182 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
version: 0.2 | ||
|
||
phases: | ||
install: | ||
runtime-versions: | ||
nodejs: 10 | ||
pre_build: | ||
commands: | ||
- echo Installing dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/node_modules/ | ||
/build/ | ||
/coverage/ | ||
/docs/ | ||
*.tsbuildinfo | ||
*.tgz | ||
*.log | ||
package-lock.json | ||
|
||
*.d.ts | ||
*.js | ||
*.js.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/coverage/ | ||
/docs/ | ||
*.ts | ||
!*.d.ts | ||
tsconfig.test.json | ||
*.tsbuildinfo |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
import * as __aws_crypto_sha256_browser from "@aws-crypto/sha256-browser"; | ||
import * as __aws_sdk_config_resolver from "@aws-sdk/config-resolver"; | ||
import * as __aws_sdk_core_handler from "@aws-sdk/core-handler"; | ||
import * as __aws_sdk_fetch_http_handler from "@aws-sdk/fetch-http-handler"; | ||
import * as __aws_sdk_json_builder from "@aws-sdk/json-builder"; | ||
import * as __aws_sdk_json_error_unmarshaller from "@aws-sdk/json-error-unmarshaller"; | ||
import * as __aws_sdk_json_parser from "@aws-sdk/json-parser"; | ||
import * as __aws_sdk_middleware_content_length from "@aws-sdk/middleware-content-length"; | ||
import * as __aws_sdk_middleware_header_default from "@aws-sdk/middleware-header-default"; | ||
import * as __aws_sdk_middleware_serializer from "@aws-sdk/middleware-serializer"; | ||
import * as __aws_sdk_middleware_stack from "@aws-sdk/middleware-stack"; | ||
import * as __aws_sdk_protocol_json_rpc from "@aws-sdk/protocol-json-rpc"; | ||
import * as __aws_sdk_retry_middleware from "@aws-sdk/retry-middleware"; | ||
import * as __aws_sdk_signature_v4 from "@aws-sdk/signature-v4"; | ||
import * as __aws_sdk_signing_middleware from "@aws-sdk/signing-middleware"; | ||
import * as __aws_sdk_stream_collector_browser from "@aws-sdk/stream-collector-browser"; | ||
import * as __aws_sdk_types from "@aws-sdk/types"; | ||
import * as __aws_sdk_url_parser_browser from "@aws-sdk/url-parser-browser"; | ||
import * as __aws_sdk_util_base64_browser from "@aws-sdk/util-base64-browser"; | ||
import * as __aws_sdk_util_body_length_browser from "@aws-sdk/util-body-length-browser"; | ||
import * as __aws_sdk_util_user_agent_browser from "@aws-sdk/util-user-agent-browser"; | ||
import * as __aws_sdk_util_utf8_browser from "@aws-sdk/util-utf8-browser"; | ||
import { | ||
ACMConfiguration, | ||
ACMResolvedConfiguration, | ||
configurationProperties | ||
} from "./ACMConfiguration"; | ||
import { InputTypesUnion } from "./types/InputTypesUnion"; | ||
import { OutputTypesUnion } from "./types/OutputTypesUnion"; | ||
import { clientVersion, ServiceMetadata } from "./model/ServiceMetadata"; | ||
|
||
export class ACMClient | ||
implements | ||
__aws_sdk_types.AWSClient<InputTypesUnion, OutputTypesUnion, Blob> { | ||
readonly config: ACMResolvedConfiguration; | ||
|
||
readonly middlewareStack = new __aws_sdk_middleware_stack.MiddlewareStack< | ||
InputTypesUnion, | ||
OutputTypesUnion, | ||
Blob | ||
>(); | ||
|
||
constructor(configuration: ACMConfiguration) { | ||
this.config = __aws_sdk_config_resolver.resolveConfiguration( | ||
configuration, | ||
configurationProperties, | ||
this.middlewareStack | ||
); | ||
this.middlewareStack.add( | ||
__aws_sdk_middleware_serializer.serializerMiddleware( | ||
this.config.serializer | ||
), | ||
{ | ||
step: "serialize", | ||
priority: 90, | ||
tags: { SERIALIZER: true } | ||
} | ||
); | ||
this.middlewareStack.add( | ||
__aws_sdk_middleware_content_length.contentLengthMiddleware( | ||
this.config.bodyLengthChecker | ||
), | ||
{ | ||
step: "build", | ||
priority: -80, | ||
tags: { SET_CONTENT_LENGTH: true } | ||
} | ||
); | ||
if (this.config.maxRetries > 0) { | ||
this.middlewareStack.add( | ||
__aws_sdk_retry_middleware.retryMiddleware( | ||
this.config.maxRetries, | ||
this.config.retryDecider, | ||
this.config.delayDecider | ||
), | ||
{ | ||
step: "finalize", | ||
priority: Infinity, | ||
tags: { RETRY: true } | ||
} | ||
); | ||
} | ||
this.middlewareStack.add( | ||
__aws_sdk_signing_middleware.signingMiddleware< | ||
InputTypesUnion, | ||
OutputTypesUnion, | ||
Blob | ||
>(this.config.signer), | ||
{ | ||
step: "finalize", | ||
priority: 0, | ||
tags: { SIGNATURE: true } | ||
} | ||
); | ||
this.middlewareStack.add( | ||
__aws_sdk_middleware_header_default.headerDefault({ | ||
"X-Amz-User-Agent": __aws_sdk_util_user_agent_browser.defaultUserAgent( | ||
ServiceMetadata.serviceId || ServiceMetadata.endpointPrefix, | ||
clientVersion | ||
) | ||
}), | ||
{ | ||
step: "build", | ||
priority: 0, | ||
tags: { SET_USER_AGENT: true } | ||
} | ||
); | ||
} | ||
|
||
destroy(): void { | ||
if (!this.config._user_injected_http_handler) { | ||
this.config.httpHandler.destroy(); | ||
} | ||
} | ||
|
||
/** | ||
* This will need to be revised when the command interface lands. | ||
*/ | ||
send<InputType extends InputTypesUnion, OutputType extends OutputTypesUnion>( | ||
command: __aws_sdk_types.Command< | ||
InputTypesUnion, | ||
InputType, | ||
OutputTypesUnion, | ||
OutputType, | ||
ACMResolvedConfiguration, | ||
Blob | ||
> | ||
): Promise<OutputType>; | ||
send<InputType extends InputTypesUnion, OutputType extends OutputTypesUnion>( | ||
command: __aws_sdk_types.Command< | ||
InputTypesUnion, | ||
InputType, | ||
OutputTypesUnion, | ||
OutputType, | ||
ACMResolvedConfiguration, | ||
Blob | ||
>, | ||
cb: (err: any, data?: OutputType) => void | ||
): void; | ||
send<InputType extends InputTypesUnion, OutputType extends OutputTypesUnion>( | ||
command: __aws_sdk_types.Command< | ||
InputTypesUnion, | ||
InputType, | ||
OutputTypesUnion, | ||
OutputType, | ||
ACMResolvedConfiguration, | ||
Blob | ||
>, | ||
cb?: (err: any, data?: OutputType) => void | ||
): Promise<OutputType> | void { | ||
const handler = command.resolveMiddleware( | ||
this.middlewareStack, | ||
this.config | ||
); | ||
if (cb) { | ||
handler(command) | ||
.then((result: OutputType) => cb(null, result), (err: any) => cb(err)) | ||
.catch( | ||
// prevent any errors thrown in the callback from triggering an | ||
// unhandled promise rejection | ||
() => {} | ||
); | ||
} else { | ||
return handler(command); | ||
} | ||
} | ||
} |
Oops, something went wrong.