Skip to content

Commit 28d6121

Browse files
authored
feat: regenerate service clients (#204)
* fix(kinesis): generate metadata protocolsettings properly * fix: export more interfaces in commands
1 parent 7bc40aa commit 28d6121

File tree

189 files changed

+510
-252
lines changed

Some content is hidden

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

189 files changed

+510
-252
lines changed

models/kinesis/2013-12-02/service-2.json

Lines changed: 0 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -427,22 +427,6 @@
427427
],
428428
"documentation":"<p>Disables server-side encryption for a specified stream. </p> <p>Stopping encryption is an asynchronous operation. Upon receiving the request, Kinesis Data Streams returns immediately and sets the status of the stream to <code>UPDATING</code>. After the update is complete, Kinesis Data Streams sets the status of the stream back to <code>ACTIVE</code>. Stopping encryption normally takes a few seconds to complete, but it can take minutes. You can continue to read and write data to your stream while its status is <code>UPDATING</code>. Once the status of the stream is <code>ACTIVE</code>, records written to the stream are no longer encrypted by Kinesis Data Streams. </p> <p>API Limits: You can successfully disable server-side encryption 25 times in a rolling 24-hour period. </p> <p>Note: It can take up to 5 seconds after the stream is in an <code>ACTIVE</code> status before all records written to the stream are no longer subject to encryption. After you disabled encryption, you can verify that encryption is not applied by inspecting the API response from <code>PutRecord</code> or <code>PutRecords</code>.</p>"
429429
},
430-
"SubscribeToShard":{
431-
"name":"SubscribeToShard",
432-
"http":{
433-
"method":"POST",
434-
"requestUri":"/"
435-
},
436-
"input":{"shape":"SubscribeToShardInput"},
437-
"output":{"shape":"SubscribeToShardOutput"},
438-
"errors":[
439-
{"shape":"ResourceNotFoundException"},
440-
{"shape":"InvalidArgumentException"},
441-
{"shape":"ResourceInUseException"},
442-
{"shape":"LimitExceededException"}
443-
],
444-
"documentation":"<p>Call this operation from your consumer after you call <a>RegisterStreamConsumer</a> to register the consumer with Kinesis Data Streams. If the call succeeds, your consumer starts receiving events of type <a>SubscribeToShardEvent</a> for up to 5 minutes, after which time you need to call <code>SubscribeToShard</code> again to renew the subscription if you want to continue to receive records.</p> <p>You can make one call to <code>SubscribeToShard</code> per second per <code>ConsumerARN</code>. If your call succeeds, and then you call the operation again less than 5 seconds later, the second call generates a <a>ResourceInUseException</a>. If you call the operation a second time more than 5 seconds after the first call succeeds, the second call succeeds and the first connection gets shut down.</p>"
445-
},
446430
"UpdateShardCount":{
447431
"name":"UpdateShardCount",
448432
"http":{
@@ -1847,76 +1831,6 @@
18471831
"UPDATING"
18481832
]
18491833
},
1850-
"SubscribeToShardEvent":{
1851-
"type":"structure",
1852-
"required":[
1853-
"Records",
1854-
"ContinuationSequenceNumber",
1855-
"MillisBehindLatest"
1856-
],
1857-
"members":{
1858-
"Records":{
1859-
"shape":"RecordList",
1860-
"documentation":"<p/>"
1861-
},
1862-
"ContinuationSequenceNumber":{
1863-
"shape":"SequenceNumber",
1864-
"documentation":"<p>Use this as <code>StartingSequenceNumber</code> in the next call to <a>SubscribeToShard</a>.</p>"
1865-
},
1866-
"MillisBehindLatest":{
1867-
"shape":"MillisBehindLatest",
1868-
"documentation":"<p>The number of milliseconds the read records are from the tip of the stream, indicating how far behind current time the consumer is. A value of zero indicates that record processing is caught up, and there are no new records to process at this moment.</p>"
1869-
}
1870-
},
1871-
"documentation":"<p>After you call <a>SubscribeToShard</a>, Kinesis Data Streams sends events of this type to your consumer. </p>",
1872-
"event":true
1873-
},
1874-
"SubscribeToShardEventStream":{
1875-
"type":"structure",
1876-
"required":["SubscribeToShardEvent"],
1877-
"members":{
1878-
"SubscribeToShardEvent":{"shape":"SubscribeToShardEvent"},
1879-
"ResourceNotFoundException":{"shape":"ResourceNotFoundException"},
1880-
"ResourceInUseException":{"shape":"ResourceInUseException"},
1881-
"KMSDisabledException":{"shape":"KMSDisabledException"},
1882-
"KMSInvalidStateException":{"shape":"KMSInvalidStateException"},
1883-
"KMSAccessDeniedException":{"shape":"KMSAccessDeniedException"},
1884-
"KMSNotFoundException":{"shape":"KMSNotFoundException"},
1885-
"KMSOptInRequired":{"shape":"KMSOptInRequired"},
1886-
"KMSThrottlingException":{"shape":"KMSThrottlingException"},
1887-
"InternalFailureException":{"shape":"InternalFailureException"}
1888-
},
1889-
"eventstream":true
1890-
},
1891-
"SubscribeToShardInput":{
1892-
"type":"structure",
1893-
"required":[
1894-
"ConsumerARN",
1895-
"ShardId",
1896-
"StartingPosition"
1897-
],
1898-
"members":{
1899-
"ConsumerARN":{
1900-
"shape":"ConsumerARN",
1901-
"documentation":"<p>For this parameter, use the value you obtained when you called <a>RegisterStreamConsumer</a>.</p>"
1902-
},
1903-
"ShardId":{
1904-
"shape":"ShardId",
1905-
"documentation":"<p>The ID of the shard you want to subscribe to. To see a list of all the shards for a given stream, use <a>ListShards</a>.</p>"
1906-
},
1907-
"StartingPosition":{"shape":"StartingPosition"}
1908-
}
1909-
},
1910-
"SubscribeToShardOutput":{
1911-
"type":"structure",
1912-
"required":["EventStream"],
1913-
"members":{
1914-
"EventStream":{
1915-
"shape":"SubscribeToShardEventStream",
1916-
"documentation":"<p>The event stream that your consumer can use to read records from the shard.</p>"
1917-
}
1918-
}
1919-
},
19201834
"Tag":{
19211835
"type":"structure",
19221836
"required":["Key"],

packages/client-codecommit-node/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The AWS SDK is modulized by clients and commends in CommonJS modules. To send a
2121
```javascript
2222
//javascript
2323
const { CodeCommitClient } = require('@aws-sdk/client-codecommit-node/CodeCommitClient');
24-
const { BatchGetRepositoriesCommand } = require('@aws-sdk/client-codecommit-node/BatchGetRepositoriesCommand');
24+
const { BatchGetRepositoriesCommand } = require('@aws-sdk/client-codecommit-node/commands/BatchGetRepositoriesCommand');
2525
```
2626

2727
```javascript
@@ -111,7 +111,7 @@ The keys within exceptions are also parsed, you can access them by specifying ex
111111

112112
Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them.
113113

114-
* Ask a question on [StackOverflow](https://stackoverflow.com/) and tag it with `aws-sdk-js`
114+
* Ask a question on [StackOverflow](https://stackoverflow.com/questions/tagged/aws-sdk-js) and tag it with `aws-sdk-js`
115115
* Come join the AWS JavaScript community on [gitter](https://gitter.im/aws/aws-sdk-js-v3)
116116
* If it turns out that you may have found a bug, please [open an issue](https://github.com/aws/aws-sdk-js-v3/issues)
117117

packages/client-codecommit-node/commands/BatchGetRepositoriesCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {BatchGetRepositoriesInput} from '../types/BatchGetRepositoriesInput';
88
import {BatchGetRepositoriesOutput} from '../types/BatchGetRepositoriesOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/BatchGetRepositoriesInput';
11+
export * from '../types/BatchGetRepositoriesOutput';
12+
export * from '../types/BatchGetRepositoriesExceptionsUnion';
1013

1114
export class BatchGetRepositoriesCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/CreateBranchCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {CreateBranchInput} from '../types/CreateBranchInput';
88
import {CreateBranchOutput} from '../types/CreateBranchOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/CreateBranchInput';
11+
export * from '../types/CreateBranchOutput';
12+
export * from '../types/CreateBranchExceptionsUnion';
1013

1114
export class CreateBranchCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/CreatePullRequestCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {CreatePullRequestInput} from '../types/CreatePullRequestInput';
88
import {CreatePullRequestOutput} from '../types/CreatePullRequestOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/CreatePullRequestInput';
11+
export * from '../types/CreatePullRequestOutput';
12+
export * from '../types/CreatePullRequestExceptionsUnion';
1013

1114
export class CreatePullRequestCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/CreateRepositoryCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {CreateRepositoryInput} from '../types/CreateRepositoryInput';
88
import {CreateRepositoryOutput} from '../types/CreateRepositoryOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/CreateRepositoryInput';
11+
export * from '../types/CreateRepositoryOutput';
12+
export * from '../types/CreateRepositoryExceptionsUnion';
1013

1114
export class CreateRepositoryCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/DeleteBranchCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {DeleteBranchInput} from '../types/DeleteBranchInput';
88
import {DeleteBranchOutput} from '../types/DeleteBranchOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/DeleteBranchInput';
11+
export * from '../types/DeleteBranchOutput';
12+
export * from '../types/DeleteBranchExceptionsUnion';
1013

1114
export class DeleteBranchCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/DeleteCommentContentCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {DeleteCommentContentInput} from '../types/DeleteCommentContentInput';
88
import {DeleteCommentContentOutput} from '../types/DeleteCommentContentOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/DeleteCommentContentInput';
11+
export * from '../types/DeleteCommentContentOutput';
12+
export * from '../types/DeleteCommentContentExceptionsUnion';
1013

1114
export class DeleteCommentContentCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/DeleteFileCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {DeleteFileInput} from '../types/DeleteFileInput';
88
import {DeleteFileOutput} from '../types/DeleteFileOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/DeleteFileInput';
11+
export * from '../types/DeleteFileOutput';
12+
export * from '../types/DeleteFileExceptionsUnion';
1013

1114
export class DeleteFileCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/DeleteRepositoryCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {DeleteRepositoryInput} from '../types/DeleteRepositoryInput';
88
import {DeleteRepositoryOutput} from '../types/DeleteRepositoryOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/DeleteRepositoryInput';
11+
export * from '../types/DeleteRepositoryOutput';
12+
export * from '../types/DeleteRepositoryExceptionsUnion';
1013

1114
export class DeleteRepositoryCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/DescribePullRequestEventsCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {DescribePullRequestEventsInput} from '../types/DescribePullRequestEventsInput';
88
import {DescribePullRequestEventsOutput} from '../types/DescribePullRequestEventsOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/DescribePullRequestEventsInput';
11+
export * from '../types/DescribePullRequestEventsOutput';
12+
export * from '../types/DescribePullRequestEventsExceptionsUnion';
1013

1114
export class DescribePullRequestEventsCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetBlobCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetBlobInput} from '../types/GetBlobInput';
88
import {GetBlobOutput} from '../types/GetBlobOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetBlobInput';
11+
export * from '../types/GetBlobOutput';
12+
export * from '../types/GetBlobExceptionsUnion';
1013

1114
export class GetBlobCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetBranchCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetBranchInput} from '../types/GetBranchInput';
88
import {GetBranchOutput} from '../types/GetBranchOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetBranchInput';
11+
export * from '../types/GetBranchOutput';
12+
export * from '../types/GetBranchExceptionsUnion';
1013

1114
export class GetBranchCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetCommentCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetCommentInput} from '../types/GetCommentInput';
88
import {GetCommentOutput} from '../types/GetCommentOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetCommentInput';
11+
export * from '../types/GetCommentOutput';
12+
export * from '../types/GetCommentExceptionsUnion';
1013

1114
export class GetCommentCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetCommentsForComparedCommitCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetCommentsForComparedCommitInput} from '../types/GetCommentsForComparedCommitInput';
88
import {GetCommentsForComparedCommitOutput} from '../types/GetCommentsForComparedCommitOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetCommentsForComparedCommitInput';
11+
export * from '../types/GetCommentsForComparedCommitOutput';
12+
export * from '../types/GetCommentsForComparedCommitExceptionsUnion';
1013

1114
export class GetCommentsForComparedCommitCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetCommentsForPullRequestCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetCommentsForPullRequestInput} from '../types/GetCommentsForPullRequestInput';
88
import {GetCommentsForPullRequestOutput} from '../types/GetCommentsForPullRequestOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetCommentsForPullRequestInput';
11+
export * from '../types/GetCommentsForPullRequestOutput';
12+
export * from '../types/GetCommentsForPullRequestExceptionsUnion';
1013

1114
export class GetCommentsForPullRequestCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetCommitCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetCommitInput} from '../types/GetCommitInput';
88
import {GetCommitOutput} from '../types/GetCommitOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetCommitInput';
11+
export * from '../types/GetCommitOutput';
12+
export * from '../types/GetCommitExceptionsUnion';
1013

1114
export class GetCommitCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetDifferencesCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetDifferencesInput} from '../types/GetDifferencesInput';
88
import {GetDifferencesOutput} from '../types/GetDifferencesOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetDifferencesInput';
11+
export * from '../types/GetDifferencesOutput';
12+
export * from '../types/GetDifferencesExceptionsUnion';
1013

1114
export class GetDifferencesCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetFileCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetFileInput} from '../types/GetFileInput';
88
import {GetFileOutput} from '../types/GetFileOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetFileInput';
11+
export * from '../types/GetFileOutput';
12+
export * from '../types/GetFileExceptionsUnion';
1013

1114
export class GetFileCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetFolderCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetFolderInput} from '../types/GetFolderInput';
88
import {GetFolderOutput} from '../types/GetFolderOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetFolderInput';
11+
export * from '../types/GetFolderOutput';
12+
export * from '../types/GetFolderExceptionsUnion';
1013

1114
export class GetFolderCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetMergeConflictsCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetMergeConflictsInput} from '../types/GetMergeConflictsInput';
88
import {GetMergeConflictsOutput} from '../types/GetMergeConflictsOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetMergeConflictsInput';
11+
export * from '../types/GetMergeConflictsOutput';
12+
export * from '../types/GetMergeConflictsExceptionsUnion';
1013

1114
export class GetMergeConflictsCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetPullRequestCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetPullRequestInput} from '../types/GetPullRequestInput';
88
import {GetPullRequestOutput} from '../types/GetPullRequestOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetPullRequestInput';
11+
export * from '../types/GetPullRequestOutput';
12+
export * from '../types/GetPullRequestExceptionsUnion';
1013

1114
export class GetPullRequestCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetRepositoryCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetRepositoryInput} from '../types/GetRepositoryInput';
88
import {GetRepositoryOutput} from '../types/GetRepositoryOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetRepositoryInput';
11+
export * from '../types/GetRepositoryOutput';
12+
export * from '../types/GetRepositoryExceptionsUnion';
1013

1114
export class GetRepositoryCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/GetRepositoryTriggersCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {GetRepositoryTriggersInput} from '../types/GetRepositoryTriggersInput';
88
import {GetRepositoryTriggersOutput} from '../types/GetRepositoryTriggersOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/GetRepositoryTriggersInput';
11+
export * from '../types/GetRepositoryTriggersOutput';
12+
export * from '../types/GetRepositoryTriggersExceptionsUnion';
1013

1114
export class GetRepositoryTriggersCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/ListBranchesCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {ListBranchesInput} from '../types/ListBranchesInput';
88
import {ListBranchesOutput} from '../types/ListBranchesOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/ListBranchesInput';
11+
export * from '../types/ListBranchesOutput';
12+
export * from '../types/ListBranchesExceptionsUnion';
1013

1114
export class ListBranchesCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/ListPullRequestsCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {ListPullRequestsInput} from '../types/ListPullRequestsInput';
88
import {ListPullRequestsOutput} from '../types/ListPullRequestsOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/ListPullRequestsInput';
11+
export * from '../types/ListPullRequestsOutput';
12+
export * from '../types/ListPullRequestsExceptionsUnion';
1013

1114
export class ListPullRequestsCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

packages/client-codecommit-node/commands/ListRepositoriesCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import {OutputTypesUnion} from '../types/OutputTypesUnion';
77
import {ListRepositoriesInput} from '../types/ListRepositoriesInput';
88
import {ListRepositoriesOutput} from '../types/ListRepositoriesOutput';
99
import {CodeCommitResolvedConfiguration} from '../CodeCommitConfiguration';
10+
export * from '../types/ListRepositoriesInput';
11+
export * from '../types/ListRepositoriesOutput';
12+
export * from '../types/ListRepositoriesExceptionsUnion';
1013

1114
export class ListRepositoriesCommand implements __aws_sdk_types.Command<
1215
InputTypesUnion,

0 commit comments

Comments
 (0)