@aws-sdk/client-cloud9 3.533.0 → 3.540.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/dist-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/Cloud9.d.ts +3 -1
- package/dist-types/Cloud9Client.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentEC2Command.d.ts +2 -1
- package/dist-types/commands/CreateEnvironmentMembershipCommand.d.ts +2 -1
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +2 -1
- package/dist-types/commands/DeleteEnvironmentMembershipCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEnvironmentMembershipsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEnvironmentStatusCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +2 -1
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEnvironmentMembershipCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +80 -80
- package/dist-types/ts3.4/Cloud9.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentEC2Command.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentMembershipCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentMembershipCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeEnvironmentMembershipsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeEnvironmentStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeEnvironmentsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentMembershipCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1147,9 +1147,6 @@ var paginateDescribeEnvironmentMemberships = (0, import_core.createPaginator)(Cl
|
|
|
1147
1147
|
// src/pagination/ListEnvironmentsPaginator.ts
|
|
1148
1148
|
|
|
1149
1149
|
var paginateListEnvironments = (0, import_core.createPaginator)(Cloud9Client, ListEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1150
|
-
|
|
1151
|
-
// src/index.ts
|
|
1152
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1153
1150
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1154
1151
|
|
|
1155
1152
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
package/dist-types/Cloud9.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export interface Cloud9 {
|
|
|
41
41
|
/**
|
|
42
42
|
* @see {@link DescribeEnvironmentMembershipsCommand}
|
|
43
43
|
*/
|
|
44
|
+
describeEnvironmentMemberships(): Promise<DescribeEnvironmentMembershipsCommandOutput>;
|
|
44
45
|
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentMembershipsCommandOutput>;
|
|
45
46
|
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
|
|
46
47
|
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
|
|
@@ -59,6 +60,7 @@ export interface Cloud9 {
|
|
|
59
60
|
/**
|
|
60
61
|
* @see {@link ListEnvironmentsCommand}
|
|
61
62
|
*/
|
|
63
|
+
listEnvironments(): Promise<ListEnvironmentsCommandOutput>;
|
|
62
64
|
listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
|
|
63
65
|
listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
64
66
|
listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
@@ -94,7 +96,6 @@ export interface Cloud9 {
|
|
|
94
96
|
updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void): void;
|
|
95
97
|
}
|
|
96
98
|
/**
|
|
97
|
-
* @public
|
|
98
99
|
* <fullname>Cloud9</fullname>
|
|
99
100
|
* <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and
|
|
100
101
|
* release software in the cloud.</p>
|
|
@@ -162,6 +163,7 @@ export interface Cloud9 {
|
|
|
162
163
|
* environment member for an environment.</p>
|
|
163
164
|
* </li>
|
|
164
165
|
* </ul>
|
|
166
|
+
* @public
|
|
165
167
|
*/
|
|
166
168
|
export declare class Cloud9 extends Cloud9Client implements Cloud9 {
|
|
167
169
|
}
|
|
@@ -164,7 +164,6 @@ export type Cloud9ClientResolvedConfigType = __SmithyResolvedConfiguration<__Htt
|
|
|
164
164
|
export interface Cloud9ClientResolvedConfig extends Cloud9ClientResolvedConfigType {
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
|
-
* @public
|
|
168
167
|
* <fullname>Cloud9</fullname>
|
|
169
168
|
* <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and
|
|
170
169
|
* release software in the cloud.</p>
|
|
@@ -232,6 +231,7 @@ export interface Cloud9ClientResolvedConfig extends Cloud9ClientResolvedConfigTy
|
|
|
232
231
|
* environment member for an environment.</p>
|
|
233
232
|
* </li>
|
|
234
233
|
* </ul>
|
|
234
|
+
* @public
|
|
235
235
|
*/
|
|
236
236
|
export declare class Cloud9Client extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Cloud9ClientResolvedConfig> {
|
|
237
237
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateEnvironmentEC2CommandOutput extends CreateEnvironmentEC2R
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateEnvironmentEC2Command_base: {
|
|
24
24
|
new (input: CreateEnvironmentEC2CommandInput): import("@smithy/smithy-client").CommandImpl<CreateEnvironmentEC2CommandInput, CreateEnvironmentEC2CommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateEnvironmentEC2CommandInput): import("@smithy/smithy-client").CommandImpl<CreateEnvironmentEC2CommandInput, CreateEnvironmentEC2CommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates an Cloud9 development environment, launches an Amazon Elastic Compute Cloud (Amazon EC2) instance, and
|
|
30
30
|
* then connects from the instance to the environment.</p>
|
|
31
31
|
* @example
|
|
@@ -90,6 +90,7 @@ declare const CreateEnvironmentEC2Command_base: {
|
|
|
90
90
|
* @throws {@link Cloud9ServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
92
92
|
*
|
|
93
|
+
* @public
|
|
93
94
|
* @example CreateEnvironmentEC2
|
|
94
95
|
* ```javascript
|
|
95
96
|
* //
|
|
@@ -22,10 +22,10 @@ export interface CreateEnvironmentMembershipCommandOutput extends CreateEnvironm
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateEnvironmentMembershipCommand_base: {
|
|
24
24
|
new (input: CreateEnvironmentMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEnvironmentMembershipCommandInput, CreateEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateEnvironmentMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEnvironmentMembershipCommandInput, CreateEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds an environment member to an Cloud9 development environment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const CreateEnvironmentMembershipCommand_base: {
|
|
|
82
82
|
* @throws {@link Cloud9ServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
* @example CreateEnvironmentMembership
|
|
86
87
|
* ```javascript
|
|
87
88
|
* //
|
|
@@ -22,10 +22,10 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResult,
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteEnvironmentCommand_base: {
|
|
24
24
|
new (input: DeleteEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an Cloud9 development environment. If an Amazon EC2 instance is connected to the
|
|
30
30
|
* environment, also terminates the instance.</p>
|
|
31
31
|
* @example
|
|
@@ -73,6 +73,7 @@ declare const DeleteEnvironmentCommand_base: {
|
|
|
73
73
|
* @throws {@link Cloud9ServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
* @example DeleteEnvironment
|
|
77
78
|
* ```javascript
|
|
78
79
|
* //
|
|
@@ -22,10 +22,10 @@ export interface DeleteEnvironmentMembershipCommandOutput extends DeleteEnvironm
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteEnvironmentMembershipCommand_base: {
|
|
24
24
|
new (input: DeleteEnvironmentMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEnvironmentMembershipCommandInput, DeleteEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteEnvironmentMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEnvironmentMembershipCommandInput, DeleteEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes an environment member from a development environment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -73,6 +73,7 @@ declare const DeleteEnvironmentMembershipCommand_base: {
|
|
|
73
73
|
* @throws {@link Cloud9ServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
* @example DeleteEnvironmentMembership
|
|
77
78
|
* ```javascript
|
|
78
79
|
* //
|
|
@@ -22,10 +22,10 @@ export interface DescribeEnvironmentMembershipsCommandOutput extends DescribeEnv
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeEnvironmentMembershipsCommand_base: {
|
|
24
24
|
new (input: DescribeEnvironmentMembershipsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEnvironmentMembershipsCommandInput, DescribeEnvironmentMembershipsCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeEnvironmentMembershipsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeEnvironmentMembershipsCommandInput, DescribeEnvironmentMembershipsCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets information about environment members for an Cloud9 development environment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -89,6 +89,7 @@ declare const DescribeEnvironmentMembershipsCommand_base: {
|
|
|
89
89
|
* @throws {@link Cloud9ServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
* @example DescribeEnvironmentMemberships1
|
|
93
94
|
* ```javascript
|
|
94
95
|
* // The following example gets information about all of the environment members for the specified development environment.
|
|
@@ -22,10 +22,10 @@ export interface DescribeEnvironmentStatusCommandOutput extends DescribeEnvironm
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeEnvironmentStatusCommand_base: {
|
|
24
24
|
new (input: DescribeEnvironmentStatusCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEnvironmentStatusCommandInput, DescribeEnvironmentStatusCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeEnvironmentStatusCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEnvironmentStatusCommandInput, DescribeEnvironmentStatusCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets status information for an Cloud9 development environment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const DescribeEnvironmentStatusCommand_base: {
|
|
|
75
75
|
* @throws {@link Cloud9ServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
* @example DescribeEnvironmentStatus
|
|
79
80
|
* ```javascript
|
|
80
81
|
* //
|
|
@@ -22,10 +22,10 @@ export interface DescribeEnvironmentsCommandOutput extends DescribeEnvironmentsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeEnvironmentsCommand_base: {
|
|
24
24
|
new (input: DescribeEnvironmentsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEnvironmentsCommandInput, DescribeEnvironmentsCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeEnvironmentsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEnvironmentsCommandInput, DescribeEnvironmentsCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets information about Cloud9 development environments.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -92,6 +92,7 @@ declare const DescribeEnvironmentsCommand_base: {
|
|
|
92
92
|
* @throws {@link Cloud9ServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
* @example DescribeEnvironments
|
|
96
97
|
* ```javascript
|
|
97
98
|
* //
|
|
@@ -22,10 +22,10 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResult, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListEnvironmentsCommand_base: {
|
|
24
24
|
new (input: ListEnvironmentsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListEnvironmentsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets a list of Cloud9 development environment identifiers.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -78,6 +78,7 @@ declare const ListEnvironmentsCommand_base: {
|
|
|
78
78
|
* @throws {@link Cloud9ServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
80
80
|
*
|
|
81
|
+
* @public
|
|
81
82
|
* @example ListEnvironments
|
|
82
83
|
* ```javascript
|
|
83
84
|
* //
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets a list of the tags associated with an Cloud9 development environment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
67
67
|
* @throws {@link Cloud9ServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds tags to an Cloud9 development environment.</p>
|
|
30
30
|
* <important>
|
|
31
31
|
* <p>Tags that you add to an Cloud9 environment by using this method will NOT be
|
|
@@ -73,6 +73,7 @@ declare const TagResourceCommand_base: {
|
|
|
73
73
|
* @throws {@link Cloud9ServiceException}
|
|
74
74
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
75
75
|
*
|
|
76
|
+
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
78
79
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes tags from an Cloud9 development environment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const UntagResourceCommand_base: {
|
|
|
66
66
|
* @throws {@link Cloud9ServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResult,
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateEnvironmentCommand_base: {
|
|
24
24
|
new (input: UpdateEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateEnvironmentCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Changes the settings of an existing Cloud9 development environment.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const UpdateEnvironmentCommand_base: {
|
|
|
75
75
|
* @throws {@link Cloud9ServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
* @example UpdateEnvironment
|
|
79
80
|
* ```javascript
|
|
80
81
|
* //
|
|
@@ -22,10 +22,10 @@ export interface UpdateEnvironmentMembershipCommandOutput extends UpdateEnvironm
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateEnvironmentMembershipCommand_base: {
|
|
24
24
|
new (input: UpdateEnvironmentMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateEnvironmentMembershipCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Changes the settings of an existing environment member for an Cloud9 development
|
|
30
30
|
* environment.</p>
|
|
31
31
|
* @example
|
|
@@ -83,6 +83,7 @@ declare const UpdateEnvironmentMembershipCommand_base: {
|
|
|
83
83
|
* @throws {@link Cloud9ServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from Cloud9 service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
* @example UpdateEnvironmentMembership
|
|
87
88
|
* ```javascript
|
|
88
89
|
* //
|
package/dist-types/index.d.ts
CHANGED
|
@@ -77,5 +77,4 @@ export { Cloud9ExtensionConfiguration } from "./extensionConfiguration";
|
|
|
77
77
|
export * from "./commands";
|
|
78
78
|
export * from "./pagination";
|
|
79
79
|
export * from "./models";
|
|
80
|
-
import "@aws-sdk/util-endpoints";
|
|
81
80
|
export { Cloud9ServiceException } from "./models/Cloud9ServiceException";
|