@aws-sdk/client-codecatalyst 3.300.0 → 3.301.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 (25) hide show
  1. package/dist-types/commands/CreateAccessTokenCommand.d.ts +1 -1
  2. package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +6 -6
  3. package/dist-types/commands/CreateProjectCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateSourceRepositoryBranchCommand.d.ts +1 -1
  5. package/dist-types/commands/DeleteAccessTokenCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteDevEnvironmentCommand.d.ts +1 -1
  7. package/dist-types/commands/GetDevEnvironmentCommand.d.ts +1 -1
  8. package/dist-types/commands/GetProjectCommand.d.ts +1 -1
  9. package/dist-types/commands/GetSourceRepositoryCloneUrlsCommand.d.ts +1 -1
  10. package/dist-types/commands/GetSpaceCommand.d.ts +1 -1
  11. package/dist-types/commands/GetSubscriptionCommand.d.ts +1 -1
  12. package/dist-types/commands/GetUserDetailsCommand.d.ts +1 -1
  13. package/dist-types/commands/ListAccessTokensCommand.d.ts +1 -1
  14. package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +4 -4
  15. package/dist-types/commands/ListEventLogsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListProjectsCommand.d.ts +4 -4
  17. package/dist-types/commands/ListSourceRepositoriesCommand.d.ts +1 -1
  18. package/dist-types/commands/ListSourceRepositoryBranchesCommand.d.ts +1 -1
  19. package/dist-types/commands/ListSpacesCommand.d.ts +1 -1
  20. package/dist-types/commands/StartDevEnvironmentCommand.d.ts +3 -3
  21. package/dist-types/commands/StartDevEnvironmentSessionCommand.d.ts +4 -4
  22. package/dist-types/commands/StopDevEnvironmentCommand.d.ts +1 -1
  23. package/dist-types/commands/StopDevEnvironmentSessionCommand.d.ts +1 -1
  24. package/dist-types/commands/UpdateDevEnvironmentCommand.d.ts +3 -3
  25. package/package.json +2 -2
@@ -29,7 +29,7 @@ export interface CreateAccessTokenCommandOutput extends CreateAccessTokenRespons
29
29
  * import { CodeCatalystClient, CreateAccessTokenCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
30
30
  * // const { CodeCatalystClient, CreateAccessTokenCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
31
31
  * const client = new CodeCatalystClient(config);
32
- * const input = {
32
+ * const input = { // CreateAccessTokenRequest
33
33
  * name: "STRING_VALUE", // required
34
34
  * expiresTime: new Date("TIMESTAMP"),
35
35
  * };
@@ -31,26 +31,26 @@ export interface CreateDevEnvironmentCommandOutput extends CreateDevEnvironmentR
31
31
  * import { CodeCatalystClient, CreateDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
32
32
  * // const { CodeCatalystClient, CreateDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
33
33
  * const client = new CodeCatalystClient(config);
34
- * const input = {
34
+ * const input = { // CreateDevEnvironmentRequest
35
35
  * spaceName: "STRING_VALUE", // required
36
36
  * projectName: "STRING_VALUE", // required
37
- * repositories: [
38
- * {
37
+ * repositories: [ // RepositoriesInput
38
+ * { // RepositoryInput
39
39
  * repositoryName: "STRING_VALUE", // required
40
40
  * branchName: "STRING_VALUE",
41
41
  * },
42
42
  * ],
43
43
  * clientToken: "STRING_VALUE",
44
44
  * alias: "STRING_VALUE",
45
- * ides: [
46
- * {
45
+ * ides: [ // IdeConfigurationList
46
+ * { // IdeConfiguration
47
47
  * runtime: "STRING_VALUE",
48
48
  * name: "STRING_VALUE",
49
49
  * },
50
50
  * ],
51
51
  * instanceType: "STRING_VALUE", // required
52
52
  * inactivityTimeoutMinutes: Number("int"),
53
- * persistentStorage: {
53
+ * persistentStorage: { // PersistentStorageConfiguration
54
54
  * sizeInGiB: Number("int"), // required
55
55
  * },
56
56
  * };
@@ -26,7 +26,7 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
26
26
  * import { CodeCatalystClient, CreateProjectCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, CreateProjectCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // CreateProjectRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * displayName: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
@@ -29,7 +29,7 @@ export interface CreateSourceRepositoryBranchCommandOutput extends CreateSourceR
29
29
  * import { CodeCatalystClient, CreateSourceRepositoryBranchCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
30
30
  * // const { CodeCatalystClient, CreateSourceRepositoryBranchCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
31
31
  * const client = new CodeCatalystClient(config);
32
- * const input = {
32
+ * const input = { // CreateSourceRepositoryBranchRequest
33
33
  * spaceName: "STRING_VALUE", // required
34
34
  * projectName: "STRING_VALUE", // required
35
35
  * sourceRepositoryName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteAccessTokenCommandOutput extends DeleteAccessTokenRespons
26
26
  * import { CodeCatalystClient, DeleteAccessTokenCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, DeleteAccessTokenCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // DeleteAccessTokenRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteAccessTokenCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteDevEnvironmentCommandOutput extends DeleteDevEnvironmentR
26
26
  * import { CodeCatalystClient, DeleteDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, DeleteDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // DeleteDevEnvironmentRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetDevEnvironmentCommandOutput extends GetDevEnvironmentRespons
26
26
  * import { CodeCatalystClient, GetDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, GetDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // GetDevEnvironmentRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataB
26
26
  * import { CodeCatalystClient, GetProjectCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, GetProjectCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // GetProjectRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * };
@@ -27,7 +27,7 @@ export interface GetSourceRepositoryCloneUrlsCommandOutput extends GetSourceRepo
27
27
  * import { CodeCatalystClient, GetSourceRepositoryCloneUrlsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
28
28
  * // const { CodeCatalystClient, GetSourceRepositoryCloneUrlsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
29
29
  * const client = new CodeCatalystClient(config);
30
- * const input = {
30
+ * const input = { // GetSourceRepositoryCloneUrlsRequest
31
31
  * spaceName: "STRING_VALUE", // required
32
32
  * projectName: "STRING_VALUE", // required
33
33
  * sourceRepositoryName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBeare
26
26
  * import { CodeCatalystClient, GetSpaceCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, GetSpaceCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // GetSpaceRequest
30
30
  * name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetSpaceCommand(input);
@@ -27,7 +27,7 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, _
27
27
  * import { CodeCatalystClient, GetSubscriptionCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
28
28
  * // const { CodeCatalystClient, GetSubscriptionCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
29
29
  * const client = new CodeCatalystClient(config);
30
- * const input = {
30
+ * const input = { // GetSubscriptionRequest
31
31
  * spaceName: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetSubscriptionCommand(input);
@@ -26,7 +26,7 @@ export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __M
26
26
  * import { CodeCatalystClient, GetUserDetailsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, GetUserDetailsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // GetUserDetailsRequest
30
30
  * id: "STRING_VALUE",
31
31
  * userName: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse,
26
26
  * import { CodeCatalystClient, ListAccessTokensCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, ListAccessTokensCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // ListAccessTokensRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * };
@@ -26,13 +26,13 @@ export interface ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsRes
26
26
  * import { CodeCatalystClient, ListDevEnvironmentsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, ListDevEnvironmentsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // ListDevEnvironmentsRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
- * filters: [
33
- * {
32
+ * filters: [ // Filters
33
+ * { // Filter
34
34
  * key: "STRING_VALUE", // required
35
- * values: [ // required
35
+ * values: [ // StringList // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * comparisonOperator: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __Met
26
26
  * import { CodeCatalystClient, ListEventLogsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, ListEventLogsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // ListEventLogsRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * startTime: new Date("TIMESTAMP"), // required
32
32
  * endTime: new Date("TIMESTAMP"), // required
@@ -26,14 +26,14 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
26
26
  * import { CodeCatalystClient, ListProjectsCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, ListProjectsCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // ListProjectsRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
33
- * filters: [
34
- * {
33
+ * filters: [ // ProjectListFilters
34
+ * { // ProjectListFilter
35
35
  * key: "STRING_VALUE", // required
36
- * values: [ // required
36
+ * values: [ // StringList // required
37
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * comparisonOperator: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListSourceRepositoriesCommandOutput extends ListSourceRepositor
26
26
  * import { CodeCatalystClient, ListSourceRepositoriesCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, ListSourceRepositoriesCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // ListSourceRepositoriesRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListSourceRepositoryBranchesCommandOutput extends ListSourceRep
26
26
  * import { CodeCatalystClient, ListSourceRepositoryBranchesCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, ListSourceRepositoryBranchesCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // ListSourceRepositoryBranchesRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * sourceRepositoryName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB
26
26
  * import { CodeCatalystClient, ListSpacesCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, ListSpacesCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // ListSpacesRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new ListSpacesCommand(input);
@@ -26,12 +26,12 @@ export interface StartDevEnvironmentCommandOutput extends StartDevEnvironmentRes
26
26
  * import { CodeCatalystClient, StartDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, StartDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // StartDevEnvironmentRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
33
- * ides: [
34
- * {
33
+ * ides: [ // IdeConfigurationList
34
+ * { // IdeConfiguration
35
35
  * runtime: "STRING_VALUE",
36
36
  * name: "STRING_VALUE",
37
37
  * },
@@ -26,15 +26,15 @@ export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnviron
26
26
  * import { CodeCatalystClient, StartDevEnvironmentSessionCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, StartDevEnvironmentSessionCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // StartDevEnvironmentSessionRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
33
- * sessionConfiguration: {
33
+ * sessionConfiguration: { // DevEnvironmentSessionConfiguration
34
34
  * sessionType: "STRING_VALUE", // required
35
- * executeCommandSessionConfiguration: {
35
+ * executeCommandSessionConfiguration: { // ExecuteCommandSessionConfiguration
36
36
  * command: "STRING_VALUE", // required
37
- * arguments: [
37
+ * arguments: [ // ExecuteCommandSessionConfigurationArguments
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * },
@@ -26,7 +26,7 @@ export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentRespo
26
26
  * import { CodeCatalystClient, StopDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, StopDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // StopDevEnvironmentRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironme
26
26
  * import { CodeCatalystClient, StopDevEnvironmentSessionCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, StopDevEnvironmentSessionCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // StopDevEnvironmentSessionRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
@@ -26,13 +26,13 @@ export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentR
26
26
  * import { CodeCatalystClient, UpdateDevEnvironmentCommand } from "@aws-sdk/client-codecatalyst"; // ES Modules import
27
27
  * // const { CodeCatalystClient, UpdateDevEnvironmentCommand } = require("@aws-sdk/client-codecatalyst"); // CommonJS import
28
28
  * const client = new CodeCatalystClient(config);
29
- * const input = {
29
+ * const input = { // UpdateDevEnvironmentRequest
30
30
  * spaceName: "STRING_VALUE", // required
31
31
  * projectName: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
33
33
  * alias: "STRING_VALUE",
34
- * ides: [
35
- * {
34
+ * ides: [ // IdeConfigurationList
35
+ * { // IdeConfiguration
36
36
  * runtime: "STRING_VALUE",
37
37
  * name: "STRING_VALUE",
38
38
  * },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codecatalyst",
3
3
  "description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -33,7 +33,7 @@
33
33
  "@aws-sdk/middleware-retry": "3.300.0",
34
34
  "@aws-sdk/middleware-serde": "3.296.0",
35
35
  "@aws-sdk/middleware-stack": "3.296.0",
36
- "@aws-sdk/middleware-token": "3.300.0",
36
+ "@aws-sdk/middleware-token": "3.301.0",
37
37
  "@aws-sdk/middleware-user-agent": "3.299.0",
38
38
  "@aws-sdk/node-config-provider": "3.300.0",
39
39
  "@aws-sdk/node-http-handler": "3.296.0",