@aws-sdk/client-cloud9 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/Cloud9.d.ts +225 -70
- package/dist-types/ts3.4/Cloud9Client.d.ts +182 -86
- package/dist-types/ts3.4/commands/CreateEnvironmentEC2Command.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateEnvironmentMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteEnvironmentMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEnvironmentMembershipsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEnvironmentStatusCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEnvironmentsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +35 -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 +35 -17
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateEnvironmentMembershipCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/index.d.ts +13 -13
- 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/Cloud9ServiceException.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 +327 -384
- package/dist-types/ts3.4/pagination/DescribeEnvironmentMembershipsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +161 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
CreateEnvironmentMembershipRequest,
|
|
15
|
+
CreateEnvironmentMembershipResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateEnvironmentMembershipCommandInput
|
|
18
|
+
extends CreateEnvironmentMembershipRequest {}
|
|
19
|
+
export interface CreateEnvironmentMembershipCommandOutput
|
|
20
|
+
extends CreateEnvironmentMembershipResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateEnvironmentMembershipCommand extends $Command<
|
|
23
|
+
CreateEnvironmentMembershipCommandInput,
|
|
24
|
+
CreateEnvironmentMembershipCommandOutput,
|
|
25
|
+
Cloud9ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateEnvironmentMembershipCommandInput;
|
|
28
|
+
constructor(input: CreateEnvironmentMembershipCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateEnvironmentMembershipCommandInput,
|
|
35
|
+
CreateEnvironmentMembershipCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
DeleteEnvironmentRequest,
|
|
15
|
+
DeleteEnvironmentResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteEnvironmentCommandInput
|
|
18
|
+
extends DeleteEnvironmentRequest {}
|
|
19
|
+
export interface DeleteEnvironmentCommandOutput
|
|
20
|
+
extends DeleteEnvironmentResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteEnvironmentCommand extends $Command<
|
|
23
|
+
DeleteEnvironmentCommandInput,
|
|
24
|
+
DeleteEnvironmentCommandOutput,
|
|
25
|
+
Cloud9ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteEnvironmentCommandInput;
|
|
28
|
+
constructor(input: DeleteEnvironmentCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
DeleteEnvironmentMembershipRequest,
|
|
15
|
+
DeleteEnvironmentMembershipResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteEnvironmentMembershipCommandInput
|
|
18
|
+
extends DeleteEnvironmentMembershipRequest {}
|
|
19
|
+
export interface DeleteEnvironmentMembershipCommandOutput
|
|
20
|
+
extends DeleteEnvironmentMembershipResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteEnvironmentMembershipCommand extends $Command<
|
|
23
|
+
DeleteEnvironmentMembershipCommandInput,
|
|
24
|
+
DeleteEnvironmentMembershipCommandOutput,
|
|
25
|
+
Cloud9ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteEnvironmentMembershipCommandInput;
|
|
28
|
+
constructor(input: DeleteEnvironmentMembershipCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteEnvironmentMembershipCommandInput,
|
|
35
|
+
DeleteEnvironmentMembershipCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEnvironmentMembershipsRequest,
|
|
15
|
+
DescribeEnvironmentMembershipsResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEnvironmentMembershipsCommandInput
|
|
18
|
+
extends DescribeEnvironmentMembershipsRequest {}
|
|
19
|
+
export interface DescribeEnvironmentMembershipsCommandOutput
|
|
20
|
+
extends DescribeEnvironmentMembershipsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEnvironmentMembershipsCommand extends $Command<
|
|
23
|
+
DescribeEnvironmentMembershipsCommandInput,
|
|
24
|
+
DescribeEnvironmentMembershipsCommandOutput,
|
|
25
|
+
Cloud9ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEnvironmentMembershipsCommandInput;
|
|
28
|
+
constructor(input: DescribeEnvironmentMembershipsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeEnvironmentMembershipsCommandInput,
|
|
35
|
+
DescribeEnvironmentMembershipsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEnvironmentStatusRequest,
|
|
15
|
+
DescribeEnvironmentStatusResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEnvironmentStatusCommandInput
|
|
18
|
+
extends DescribeEnvironmentStatusRequest {}
|
|
19
|
+
export interface DescribeEnvironmentStatusCommandOutput
|
|
20
|
+
extends DescribeEnvironmentStatusResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEnvironmentStatusCommand extends $Command<
|
|
23
|
+
DescribeEnvironmentStatusCommandInput,
|
|
24
|
+
DescribeEnvironmentStatusCommandOutput,
|
|
25
|
+
Cloud9ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEnvironmentStatusCommandInput;
|
|
28
|
+
constructor(input: DescribeEnvironmentStatusCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeEnvironmentStatusCommandInput,
|
|
35
|
+
DescribeEnvironmentStatusCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEnvironmentsRequest,
|
|
15
|
+
DescribeEnvironmentsResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEnvironmentsCommandInput
|
|
18
|
+
extends DescribeEnvironmentsRequest {}
|
|
19
|
+
export interface DescribeEnvironmentsCommandOutput
|
|
20
|
+
extends DescribeEnvironmentsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEnvironmentsCommand extends $Command<
|
|
23
|
+
DescribeEnvironmentsCommandInput,
|
|
24
|
+
DescribeEnvironmentsCommandOutput,
|
|
25
|
+
Cloud9ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEnvironmentsCommandInput;
|
|
28
|
+
constructor(input: DescribeEnvironmentsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeEnvironmentsCommandInput,
|
|
35
|
+
DescribeEnvironmentsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
ListEnvironmentsRequest,
|
|
15
|
+
ListEnvironmentsResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {}
|
|
18
|
+
export interface ListEnvironmentsCommandOutput
|
|
19
|
+
extends ListEnvironmentsResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListEnvironmentsCommand extends $Command<
|
|
22
|
+
ListEnvironmentsCommandInput,
|
|
23
|
+
ListEnvironmentsCommandOutput,
|
|
24
|
+
Cloud9ClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListEnvironmentsCommandInput;
|
|
27
|
+
constructor(input: ListEnvironmentsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
Cloud9ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
14
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
15
|
+
export interface TagResourceCommandOutput
|
|
16
|
+
extends TagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class TagResourceCommand extends $Command<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
Cloud9ClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: TagResourceCommandInput;
|
|
24
|
+
constructor(input: TagResourceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
UntagResourceRequest,
|
|
15
|
+
UntagResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
18
|
+
export interface UntagResourceCommandOutput
|
|
19
|
+
extends UntagResourceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class UntagResourceCommand extends $Command<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
Cloud9ClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: UntagResourceCommandInput;
|
|
27
|
+
constructor(input: UntagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
Cloud9ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../Cloud9Client";
|
|
13
|
+
import {
|
|
14
|
+
UpdateEnvironmentRequest,
|
|
15
|
+
UpdateEnvironmentResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateEnvironmentCommandInput
|
|
18
|
+
extends UpdateEnvironmentRequest {}
|
|
19
|
+
export interface UpdateEnvironmentCommandOutput
|
|
20
|
+
extends UpdateEnvironmentResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UpdateEnvironmentCommand extends $Command<
|
|
23
|
+
UpdateEnvironmentCommandInput,
|
|
24
|
+
UpdateEnvironmentCommandOutput,
|
|
25
|
+
Cloud9ClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateEnvironmentCommandInput;
|
|
28
|
+
constructor(input: UpdateEnvironmentCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: Cloud9ClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|