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