@aws-sdk/client-codestar-connections 3.169.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CodeStarConnections.d.ts +208 -65
  3. package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +177 -85
  4. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/GetHostCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +6 -6
  19. package/dist-types/ts3.4/models/CodeStarConnectionsServiceException.d.ts +7 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +238 -288
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  23. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  26. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +149 -38
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  31. package/package.json +34 -34
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { CreateHostInput, CreateHostOutput } from "../models/models_0";
5
- export interface CreateHostCommandInput extends CreateHostInput {
6
- }
7
- export interface CreateHostCommandOutput extends CreateHostOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateHostCommand extends $Command<CreateHostCommandInput, CreateHostCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: CreateHostCommandInput;
12
- constructor(input: CreateHostCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateHostCommandInput, CreateHostCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import { CreateHostInput, CreateHostOutput } from "../models/models_0";
14
+ export interface CreateHostCommandInput extends CreateHostInput {}
15
+ export interface CreateHostCommandOutput
16
+ extends CreateHostOutput,
17
+ __MetadataBearer {}
18
+ export declare class CreateHostCommand extends $Command<
19
+ CreateHostCommandInput,
20
+ CreateHostCommandOutput,
21
+ CodeStarConnectionsClientResolvedConfig
22
+ > {
23
+ readonly input: CreateHostCommandInput;
24
+ constructor(input: CreateHostCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CodeStarConnectionsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CreateHostCommandInput, CreateHostCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_0";
5
- export interface DeleteConnectionCommandInput extends DeleteConnectionInput {
6
- }
7
- export interface DeleteConnectionCommandOutput extends DeleteConnectionOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteConnectionCommand extends $Command<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: DeleteConnectionCommandInput;
12
- constructor(input: DeleteConnectionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteConnectionCommandInput, DeleteConnectionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import {
14
+ DeleteConnectionInput,
15
+ DeleteConnectionOutput,
16
+ } from "../models/models_0";
17
+ export interface DeleteConnectionCommandInput extends DeleteConnectionInput {}
18
+ export interface DeleteConnectionCommandOutput
19
+ extends DeleteConnectionOutput,
20
+ __MetadataBearer {}
21
+ export declare class DeleteConnectionCommand extends $Command<
22
+ DeleteConnectionCommandInput,
23
+ DeleteConnectionCommandOutput,
24
+ CodeStarConnectionsClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteConnectionCommandInput;
27
+ constructor(input: DeleteConnectionCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CodeStarConnectionsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteConnectionCommandInput, DeleteConnectionCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { DeleteHostInput, DeleteHostOutput } from "../models/models_0";
5
- export interface DeleteHostCommandInput extends DeleteHostInput {
6
- }
7
- export interface DeleteHostCommandOutput extends DeleteHostOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteHostCommand extends $Command<DeleteHostCommandInput, DeleteHostCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: DeleteHostCommandInput;
12
- constructor(input: DeleteHostCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteHostCommandInput, DeleteHostCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import { DeleteHostInput, DeleteHostOutput } from "../models/models_0";
14
+ export interface DeleteHostCommandInput extends DeleteHostInput {}
15
+ export interface DeleteHostCommandOutput
16
+ extends DeleteHostOutput,
17
+ __MetadataBearer {}
18
+ export declare class DeleteHostCommand extends $Command<
19
+ DeleteHostCommandInput,
20
+ DeleteHostCommandOutput,
21
+ CodeStarConnectionsClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteHostCommandInput;
24
+ constructor(input: DeleteHostCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CodeStarConnectionsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteHostCommandInput, DeleteHostCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { GetConnectionInput, GetConnectionOutput } from "../models/models_0";
5
- export interface GetConnectionCommandInput extends GetConnectionInput {
6
- }
7
- export interface GetConnectionCommandOutput extends GetConnectionOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetConnectionCommand extends $Command<GetConnectionCommandInput, GetConnectionCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: GetConnectionCommandInput;
12
- constructor(input: GetConnectionCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetConnectionCommandInput, GetConnectionCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import { GetConnectionInput, GetConnectionOutput } from "../models/models_0";
14
+ export interface GetConnectionCommandInput extends GetConnectionInput {}
15
+ export interface GetConnectionCommandOutput
16
+ extends GetConnectionOutput,
17
+ __MetadataBearer {}
18
+ export declare class GetConnectionCommand extends $Command<
19
+ GetConnectionCommandInput,
20
+ GetConnectionCommandOutput,
21
+ CodeStarConnectionsClientResolvedConfig
22
+ > {
23
+ readonly input: GetConnectionCommandInput;
24
+ constructor(input: GetConnectionCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CodeStarConnectionsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetConnectionCommandInput, GetConnectionCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,30 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { GetHostInput, GetHostOutput } from "../models/models_0";
5
- export interface GetHostCommandInput extends GetHostInput {
6
- }
7
- export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class GetHostCommand extends $Command<GetHostCommandInput, GetHostCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: GetHostCommandInput;
12
- constructor(input: GetHostCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetHostCommandInput, GetHostCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import { GetHostInput, GetHostOutput } from "../models/models_0";
14
+ export interface GetHostCommandInput extends GetHostInput {}
15
+ export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {}
16
+ export declare class GetHostCommand extends $Command<
17
+ GetHostCommandInput,
18
+ GetHostCommandOutput,
19
+ CodeStarConnectionsClientResolvedConfig
20
+ > {
21
+ readonly input: GetHostCommandInput;
22
+ constructor(input: GetHostCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: CodeStarConnectionsClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<GetHostCommandInput, GetHostCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { ListConnectionsInput, ListConnectionsOutput } from "../models/models_0";
5
- export interface ListConnectionsCommandInput extends ListConnectionsInput {
6
- }
7
- export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListConnectionsCommand extends $Command<ListConnectionsCommandInput, ListConnectionsCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: ListConnectionsCommandInput;
12
- constructor(input: ListConnectionsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectionsCommandInput, ListConnectionsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import {
14
+ ListConnectionsInput,
15
+ ListConnectionsOutput,
16
+ } from "../models/models_0";
17
+ export interface ListConnectionsCommandInput extends ListConnectionsInput {}
18
+ export interface ListConnectionsCommandOutput
19
+ extends ListConnectionsOutput,
20
+ __MetadataBearer {}
21
+ export declare class ListConnectionsCommand extends $Command<
22
+ ListConnectionsCommandInput,
23
+ ListConnectionsCommandOutput,
24
+ CodeStarConnectionsClientResolvedConfig
25
+ > {
26
+ readonly input: ListConnectionsCommandInput;
27
+ constructor(input: ListConnectionsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CodeStarConnectionsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListConnectionsCommandInput, ListConnectionsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { ListHostsInput, ListHostsOutput } from "../models/models_0";
5
- export interface ListHostsCommandInput extends ListHostsInput {
6
- }
7
- export interface ListHostsCommandOutput extends ListHostsOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListHostsCommand extends $Command<ListHostsCommandInput, ListHostsCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: ListHostsCommandInput;
12
- constructor(input: ListHostsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListHostsCommandInput, ListHostsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import { ListHostsInput, ListHostsOutput } from "../models/models_0";
14
+ export interface ListHostsCommandInput extends ListHostsInput {}
15
+ export interface ListHostsCommandOutput
16
+ extends ListHostsOutput,
17
+ __MetadataBearer {}
18
+ export declare class ListHostsCommand extends $Command<
19
+ ListHostsCommandInput,
20
+ ListHostsCommandOutput,
21
+ CodeStarConnectionsClientResolvedConfig
22
+ > {
23
+ readonly input: ListHostsCommandInput;
24
+ constructor(input: ListHostsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CodeStarConnectionsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListHostsCommandInput, ListHostsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import {
14
+ ListTagsForResourceInput,
15
+ ListTagsForResourceOutput,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceInput {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceOutput,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ CodeStarConnectionsClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: CodeStarConnectionsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { TagResourceInput, TagResourceOutput } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceInput {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import { TagResourceInput, TagResourceOutput } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceInput {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceOutput,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ CodeStarConnectionsClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CodeStarConnectionsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceInput {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
14
+ export interface UntagResourceCommandInput extends UntagResourceInput {}
15
+ export interface UntagResourceCommandOutput
16
+ extends UntagResourceOutput,
17
+ __MetadataBearer {}
18
+ export declare class UntagResourceCommand extends $Command<
19
+ UntagResourceCommandInput,
20
+ UntagResourceCommandOutput,
21
+ CodeStarConnectionsClientResolvedConfig
22
+ > {
23
+ readonly input: UntagResourceCommandInput;
24
+ constructor(input: UntagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CodeStarConnectionsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeStarConnectionsClient";
4
- import { UpdateHostInput, UpdateHostOutput } from "../models/models_0";
5
- export interface UpdateHostCommandInput extends UpdateHostInput {
6
- }
7
- export interface UpdateHostCommandOutput extends UpdateHostOutput, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateHostCommand extends $Command<UpdateHostCommandInput, UpdateHostCommandOutput, CodeStarConnectionsClientResolvedConfig> {
11
- readonly input: UpdateHostCommandInput;
12
- constructor(input: UpdateHostCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeStarConnectionsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateHostCommandInput, UpdateHostCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ CodeStarConnectionsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../CodeStarConnectionsClient";
13
+ import { UpdateHostInput, UpdateHostOutput } from "../models/models_0";
14
+ export interface UpdateHostCommandInput extends UpdateHostInput {}
15
+ export interface UpdateHostCommandOutput
16
+ extends UpdateHostOutput,
17
+ __MetadataBearer {}
18
+ export declare class UpdateHostCommand extends $Command<
19
+ UpdateHostCommandInput,
20
+ UpdateHostCommandOutput,
21
+ CodeStarConnectionsClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateHostCommandInput;
24
+ constructor(input: UpdateHostCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: CodeStarConnectionsClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateHostCommandInput, UpdateHostCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,12 +1,12 @@
1
- export * from "./CreateConnectionCommand";
2
- export * from "./CreateHostCommand";
3
- export * from "./DeleteConnectionCommand";
4
- export * from "./DeleteHostCommand";
5
- export * from "./GetConnectionCommand";
6
- export * from "./GetHostCommand";
7
- export * from "./ListConnectionsCommand";
8
- export * from "./ListHostsCommand";
9
- export * from "./ListTagsForResourceCommand";
10
- export * from "./TagResourceCommand";
11
- export * from "./UntagResourceCommand";
12
- export * from "./UpdateHostCommand";
1
+ export * from "./CreateConnectionCommand";
2
+ export * from "./CreateHostCommand";
3
+ export * from "./DeleteConnectionCommand";
4
+ export * from "./DeleteHostCommand";
5
+ export * from "./GetConnectionCommand";
6
+ export * from "./GetHostCommand";
7
+ export * from "./ListConnectionsCommand";
8
+ export * from "./ListHostsCommand";
9
+ export * from "./ListTagsForResourceCommand";
10
+ export * from "./TagResourceCommand";
11
+ export * from "./UntagResourceCommand";
12
+ export * from "./UpdateHostCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./CodeStarConnections";
2
- export * from "./CodeStarConnectionsClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { CodeStarConnectionsServiceException } from "./models/CodeStarConnectionsServiceException";
1
+ export * from "./CodeStarConnections";
2
+ export * from "./CodeStarConnectionsClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { CodeStarConnectionsServiceException } from "./models/CodeStarConnectionsServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class CodeStarConnectionsServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class CodeStarConnectionsServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";