@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/CodeStarConnections.d.ts +208 -65
- package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +177 -85
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +12 -12
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/CodeStarConnectionsServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +238 -288
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +149 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|