@aws-sdk/client-codecatalyst 3.321.1 → 3.326.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 (26) hide show
  1. package/dist-types/commands/CreateAccessTokenCommand.d.ts +9 -0
  2. package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +8 -0
  3. package/dist-types/commands/CreateProjectCommand.d.ts +9 -0
  4. package/dist-types/commands/CreateSourceRepositoryBranchCommand.d.ts +9 -0
  5. package/dist-types/commands/DeleteAccessTokenCommand.d.ts +4 -0
  6. package/dist-types/commands/DeleteDevEnvironmentCommand.d.ts +8 -0
  7. package/dist-types/commands/GetDevEnvironmentCommand.d.ts +30 -0
  8. package/dist-types/commands/GetProjectCommand.d.ts +9 -0
  9. package/dist-types/commands/GetSourceRepositoryCloneUrlsCommand.d.ts +6 -0
  10. package/dist-types/commands/GetSpaceCommand.d.ts +9 -0
  11. package/dist-types/commands/GetSubscriptionCommand.d.ts +7 -0
  12. package/dist-types/commands/GetUserDetailsCommand.d.ts +13 -0
  13. package/dist-types/commands/ListAccessTokensCommand.d.ts +13 -0
  14. package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +35 -0
  15. package/dist-types/commands/ListEventLogsCommand.d.ts +39 -0
  16. package/dist-types/commands/ListProjectsCommand.d.ts +13 -0
  17. package/dist-types/commands/ListSourceRepositoriesCommand.d.ts +15 -0
  18. package/dist-types/commands/ListSourceRepositoryBranchesCommand.d.ts +14 -0
  19. package/dist-types/commands/ListSpacesCommand.d.ts +14 -0
  20. package/dist-types/commands/StartDevEnvironmentCommand.d.ts +9 -0
  21. package/dist-types/commands/StartDevEnvironmentSessionCommand.d.ts +13 -0
  22. package/dist-types/commands/StopDevEnvironmentCommand.d.ts +9 -0
  23. package/dist-types/commands/StopDevEnvironmentSessionCommand.d.ts +9 -0
  24. package/dist-types/commands/UpdateDevEnvironmentCommand.d.ts +18 -0
  25. package/dist-types/commands/VerifySessionCommand.d.ts +6 -0
  26. package/package.json +14 -14
@@ -36,6 +36,13 @@ export interface CreateAccessTokenCommandOutput extends CreateAccessTokenRespons
36
36
  * };
37
37
  * const command = new CreateAccessTokenCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // CreateAccessTokenResponse
40
+ * // secret: "STRING_VALUE", // required
41
+ * // name: "STRING_VALUE", // required
42
+ * // expiresTime: new Date("TIMESTAMP"), // required
43
+ * // accessTokenId: "STRING_VALUE", // required
44
+ * // };
45
+ *
39
46
  * ```
40
47
  *
41
48
  * @param CreateAccessTokenCommandInput - {@link CreateAccessTokenCommandInput}
@@ -64,6 +71,8 @@ export interface CreateAccessTokenCommandOutput extends CreateAccessTokenRespons
64
71
  * @throws {@link ValidationException} (client fault)
65
72
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
66
73
  *
74
+ * @throws {@link CodeCatalystServiceException}
75
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
67
76
  *
68
77
  */
69
78
  export declare class CreateAccessTokenCommand extends $Command<CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -56,6 +56,12 @@ export interface CreateDevEnvironmentCommandOutput extends CreateDevEnvironmentR
56
56
  * };
57
57
  * const command = new CreateDevEnvironmentCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // CreateDevEnvironmentResponse
60
+ * // spaceName: "STRING_VALUE", // required
61
+ * // projectName: "STRING_VALUE", // required
62
+ * // id: "STRING_VALUE", // required
63
+ * // };
64
+ *
59
65
  * ```
60
66
  *
61
67
  * @param CreateDevEnvironmentCommandInput - {@link CreateDevEnvironmentCommandInput}
@@ -84,6 +90,8 @@ export interface CreateDevEnvironmentCommandOutput extends CreateDevEnvironmentR
84
90
  * @throws {@link ValidationException} (client fault)
85
91
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
86
92
  *
93
+ * @throws {@link CodeCatalystServiceException}
94
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
87
95
  *
88
96
  */
89
97
  export declare class CreateDevEnvironmentCommand extends $Command<CreateDevEnvironmentCommandInput, CreateDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -33,6 +33,13 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
33
33
  * };
34
34
  * const command = new CreateProjectCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // CreateProjectResponse
37
+ * // spaceName: "STRING_VALUE",
38
+ * // name: "STRING_VALUE", // required
39
+ * // displayName: "STRING_VALUE",
40
+ * // description: "STRING_VALUE",
41
+ * // };
42
+ *
36
43
  * ```
37
44
  *
38
45
  * @param CreateProjectCommandInput - {@link CreateProjectCommandInput}
@@ -61,6 +68,8 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
61
68
  * @throws {@link ValidationException} (client fault)
62
69
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
63
70
  *
71
+ * @throws {@link CodeCatalystServiceException}
72
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
64
73
  *
65
74
  */
66
75
  export declare class CreateProjectCommand extends $Command<CreateProjectCommandInput, CreateProjectCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -38,6 +38,13 @@ export interface CreateSourceRepositoryBranchCommandOutput extends CreateSourceR
38
38
  * };
39
39
  * const command = new CreateSourceRepositoryBranchCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // CreateSourceRepositoryBranchResponse
42
+ * // ref: "STRING_VALUE",
43
+ * // name: "STRING_VALUE",
44
+ * // lastUpdatedTime: new Date("TIMESTAMP"),
45
+ * // headCommitId: "STRING_VALUE",
46
+ * // };
47
+ *
41
48
  * ```
42
49
  *
43
50
  * @param CreateSourceRepositoryBranchCommandInput - {@link CreateSourceRepositoryBranchCommandInput}
@@ -66,6 +73,8 @@ export interface CreateSourceRepositoryBranchCommandOutput extends CreateSourceR
66
73
  * @throws {@link ValidationException} (client fault)
67
74
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
68
75
  *
76
+ * @throws {@link CodeCatalystServiceException}
77
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
69
78
  *
70
79
  */
71
80
  export declare class CreateSourceRepositoryBranchCommand extends $Command<CreateSourceRepositoryBranchCommandInput, CreateSourceRepositoryBranchCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteAccessTokenCommandOutput extends DeleteAccessTokenRespons
31
31
  * };
32
32
  * const command = new DeleteAccessTokenCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteAccessTokenCommandInput - {@link DeleteAccessTokenCommandInput}
@@ -59,6 +61,8 @@ export interface DeleteAccessTokenCommandOutput extends DeleteAccessTokenRespons
59
61
  * @throws {@link ValidationException} (client fault)
60
62
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
61
63
  *
64
+ * @throws {@link CodeCatalystServiceException}
65
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
62
66
  *
63
67
  */
64
68
  export declare class DeleteAccessTokenCommand extends $Command<DeleteAccessTokenCommandInput, DeleteAccessTokenCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -33,6 +33,12 @@ export interface DeleteDevEnvironmentCommandOutput extends DeleteDevEnvironmentR
33
33
  * };
34
34
  * const command = new DeleteDevEnvironmentCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DeleteDevEnvironmentResponse
37
+ * // spaceName: "STRING_VALUE", // required
38
+ * // projectName: "STRING_VALUE", // required
39
+ * // id: "STRING_VALUE", // required
40
+ * // };
41
+ *
36
42
  * ```
37
43
  *
38
44
  * @param DeleteDevEnvironmentCommandInput - {@link DeleteDevEnvironmentCommandInput}
@@ -61,6 +67,8 @@ export interface DeleteDevEnvironmentCommandOutput extends DeleteDevEnvironmentR
61
67
  * @throws {@link ValidationException} (client fault)
62
68
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
63
69
  *
70
+ * @throws {@link CodeCatalystServiceException}
71
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
64
72
  *
65
73
  */
66
74
  export declare class DeleteDevEnvironmentCommand extends $Command<DeleteDevEnvironmentCommandInput, DeleteDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -33,6 +33,34 @@ export interface GetDevEnvironmentCommandOutput extends GetDevEnvironmentRespons
33
33
  * };
34
34
  * const command = new GetDevEnvironmentCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // GetDevEnvironmentResponse
37
+ * // spaceName: "STRING_VALUE", // required
38
+ * // projectName: "STRING_VALUE", // required
39
+ * // id: "STRING_VALUE", // required
40
+ * // lastUpdatedTime: new Date("TIMESTAMP"), // required
41
+ * // creatorId: "STRING_VALUE", // required
42
+ * // status: "STRING_VALUE", // required
43
+ * // statusReason: "STRING_VALUE",
44
+ * // repositories: [ // DevEnvironmentRepositorySummaries // required
45
+ * // { // DevEnvironmentRepositorySummary
46
+ * // repositoryName: "STRING_VALUE", // required
47
+ * // branchName: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // alias: "STRING_VALUE",
51
+ * // ides: [ // Ides
52
+ * // { // Ide
53
+ * // runtime: "STRING_VALUE",
54
+ * // name: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // instanceType: "STRING_VALUE", // required
58
+ * // inactivityTimeoutMinutes: Number("int"), // required
59
+ * // persistentStorage: { // PersistentStorage
60
+ * // sizeInGiB: Number("int"), // required
61
+ * // },
62
+ * // };
63
+ *
36
64
  * ```
37
65
  *
38
66
  * @param GetDevEnvironmentCommandInput - {@link GetDevEnvironmentCommandInput}
@@ -61,6 +89,8 @@ export interface GetDevEnvironmentCommandOutput extends GetDevEnvironmentRespons
61
89
  * @throws {@link ValidationException} (client fault)
62
90
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
63
91
  *
92
+ * @throws {@link CodeCatalystServiceException}
93
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
64
94
  *
65
95
  */
66
96
  export declare class GetDevEnvironmentCommand extends $Command<GetDevEnvironmentCommandInput, GetDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -32,6 +32,13 @@ export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataB
32
32
  * };
33
33
  * const command = new GetProjectCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetProjectResponse
36
+ * // spaceName: "STRING_VALUE",
37
+ * // name: "STRING_VALUE", // required
38
+ * // displayName: "STRING_VALUE",
39
+ * // description: "STRING_VALUE",
40
+ * // };
41
+ *
35
42
  * ```
36
43
  *
37
44
  * @param GetProjectCommandInput - {@link GetProjectCommandInput}
@@ -60,6 +67,8 @@ export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataB
60
67
  * @throws {@link ValidationException} (client fault)
61
68
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
62
69
  *
70
+ * @throws {@link CodeCatalystServiceException}
71
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
63
72
  *
64
73
  */
65
74
  export declare class GetProjectCommand extends $Command<GetProjectCommandInput, GetProjectCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -34,6 +34,10 @@ export interface GetSourceRepositoryCloneUrlsCommandOutput extends GetSourceRepo
34
34
  * };
35
35
  * const command = new GetSourceRepositoryCloneUrlsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // GetSourceRepositoryCloneUrlsResponse
38
+ * // https: "STRING_VALUE", // required
39
+ * // };
40
+ *
37
41
  * ```
38
42
  *
39
43
  * @param GetSourceRepositoryCloneUrlsCommandInput - {@link GetSourceRepositoryCloneUrlsCommandInput}
@@ -62,6 +66,8 @@ export interface GetSourceRepositoryCloneUrlsCommandOutput extends GetSourceRepo
62
66
  * @throws {@link ValidationException} (client fault)
63
67
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
64
68
  *
69
+ * @throws {@link CodeCatalystServiceException}
70
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
65
71
  *
66
72
  */
67
73
  export declare class GetSourceRepositoryCloneUrlsCommand extends $Command<GetSourceRepositoryCloneUrlsCommandInput, GetSourceRepositoryCloneUrlsCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -31,6 +31,13 @@ export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBeare
31
31
  * };
32
32
  * const command = new GetSpaceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetSpaceResponse
35
+ * // name: "STRING_VALUE", // required
36
+ * // regionName: "STRING_VALUE", // required
37
+ * // displayName: "STRING_VALUE",
38
+ * // description: "STRING_VALUE",
39
+ * // };
40
+ *
34
41
  * ```
35
42
  *
36
43
  * @param GetSpaceCommandInput - {@link GetSpaceCommandInput}
@@ -59,6 +66,8 @@ export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBeare
59
66
  * @throws {@link ValidationException} (client fault)
60
67
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
61
68
  *
69
+ * @throws {@link CodeCatalystServiceException}
70
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
62
71
  *
63
72
  */
64
73
  export declare class GetSpaceCommand extends $Command<GetSpaceCommandInput, GetSpaceCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -32,6 +32,11 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, _
32
32
  * };
33
33
  * const command = new GetSubscriptionCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetSubscriptionResponse
36
+ * // subscriptionType: "STRING_VALUE",
37
+ * // awsAccountName: "STRING_VALUE",
38
+ * // };
39
+ *
35
40
  * ```
36
41
  *
37
42
  * @param GetSubscriptionCommandInput - {@link GetSubscriptionCommandInput}
@@ -60,6 +65,8 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, _
60
65
  * @throws {@link ValidationException} (client fault)
61
66
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
62
67
  *
68
+ * @throws {@link CodeCatalystServiceException}
69
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
63
70
  *
64
71
  */
65
72
  export declare class GetSubscriptionCommand extends $Command<GetSubscriptionCommandInput, GetSubscriptionCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __M
32
32
  * };
33
33
  * const command = new GetUserDetailsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetUserDetailsResponse
36
+ * // userId: "STRING_VALUE",
37
+ * // userName: "STRING_VALUE",
38
+ * // displayName: "STRING_VALUE",
39
+ * // primaryEmail: { // EmailAddress
40
+ * // email: "STRING_VALUE",
41
+ * // verified: true || false,
42
+ * // },
43
+ * // version: "STRING_VALUE",
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param GetUserDetailsCommandInput - {@link GetUserDetailsCommandInput}
@@ -60,6 +71,8 @@ export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __M
60
71
  * @throws {@link ValidationException} (client fault)
61
72
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
62
73
  *
74
+ * @throws {@link CodeCatalystServiceException}
75
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
63
76
  *
64
77
  */
65
78
  export declare class GetUserDetailsCommand extends $Command<GetUserDetailsCommandInput, GetUserDetailsCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse,
32
32
  * };
33
33
  * const command = new ListAccessTokensCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListAccessTokensResponse
36
+ * // items: [ // AccessTokenSummaries // required
37
+ * // { // AccessTokenSummary
38
+ * // id: "STRING_VALUE", // required
39
+ * // name: "STRING_VALUE", // required
40
+ * // expiresTime: new Date("TIMESTAMP"),
41
+ * // },
42
+ * // ],
43
+ * // nextToken: "STRING_VALUE",
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param ListAccessTokensCommandInput - {@link ListAccessTokensCommandInput}
@@ -60,6 +71,8 @@ export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse,
60
71
  * @throws {@link ValidationException} (client fault)
61
72
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
62
73
  *
74
+ * @throws {@link CodeCatalystServiceException}
75
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
63
76
  *
64
77
  */
65
78
  export declare class ListAccessTokensCommand extends $Command<ListAccessTokensCommandInput, ListAccessTokensCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -43,6 +43,39 @@ export interface ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsRes
43
43
  * };
44
44
  * const command = new ListDevEnvironmentsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // ListDevEnvironmentsResponse
47
+ * // items: [ // DevEnvironmentSummaryList // required
48
+ * // { // DevEnvironmentSummary
49
+ * // spaceName: "STRING_VALUE",
50
+ * // projectName: "STRING_VALUE",
51
+ * // id: "STRING_VALUE", // required
52
+ * // lastUpdatedTime: new Date("TIMESTAMP"), // required
53
+ * // creatorId: "STRING_VALUE", // required
54
+ * // status: "STRING_VALUE", // required
55
+ * // statusReason: "STRING_VALUE",
56
+ * // repositories: [ // DevEnvironmentRepositorySummaries // required
57
+ * // { // DevEnvironmentRepositorySummary
58
+ * // repositoryName: "STRING_VALUE", // required
59
+ * // branchName: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // alias: "STRING_VALUE",
63
+ * // ides: [ // Ides
64
+ * // { // Ide
65
+ * // runtime: "STRING_VALUE",
66
+ * // name: "STRING_VALUE",
67
+ * // },
68
+ * // ],
69
+ * // instanceType: "STRING_VALUE", // required
70
+ * // inactivityTimeoutMinutes: Number("int"), // required
71
+ * // persistentStorage: { // PersistentStorage
72
+ * // sizeInGiB: Number("int"), // required
73
+ * // },
74
+ * // },
75
+ * // ],
76
+ * // nextToken: "STRING_VALUE",
77
+ * // };
78
+ *
46
79
  * ```
47
80
  *
48
81
  * @param ListDevEnvironmentsCommandInput - {@link ListDevEnvironmentsCommandInput}
@@ -71,6 +104,8 @@ export interface ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsRes
71
104
  * @throws {@link ValidationException} (client fault)
72
105
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
73
106
  *
107
+ * @throws {@link CodeCatalystServiceException}
108
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
74
109
  *
75
110
  */
76
111
  export declare class ListDevEnvironmentsCommand extends $Command<ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -36,6 +36,43 @@ export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __Met
36
36
  * };
37
37
  * const command = new ListEventLogsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListEventLogsResponse
40
+ * // nextToken: "STRING_VALUE",
41
+ * // items: [ // EventLogEntries // required
42
+ * // { // EventLogEntry
43
+ * // id: "STRING_VALUE", // required
44
+ * // eventName: "STRING_VALUE", // required
45
+ * // eventType: "STRING_VALUE", // required
46
+ * // eventCategory: "STRING_VALUE", // required
47
+ * // eventSource: "STRING_VALUE", // required
48
+ * // eventTime: new Date("TIMESTAMP"), // required
49
+ * // operationType: "STRING_VALUE", // required
50
+ * // userIdentity: { // UserIdentity
51
+ * // userType: "STRING_VALUE", // required
52
+ * // principalId: "STRING_VALUE", // required
53
+ * // userName: "STRING_VALUE",
54
+ * // awsAccountId: "STRING_VALUE",
55
+ * // },
56
+ * // projectInformation: { // ProjectInformation
57
+ * // name: "STRING_VALUE",
58
+ * // projectId: "STRING_VALUE",
59
+ * // },
60
+ * // requestId: "STRING_VALUE",
61
+ * // requestPayload: { // EventPayload
62
+ * // contentType: "STRING_VALUE",
63
+ * // data: "STRING_VALUE",
64
+ * // },
65
+ * // responsePayload: {
66
+ * // contentType: "STRING_VALUE",
67
+ * // data: "STRING_VALUE",
68
+ * // },
69
+ * // errorCode: "STRING_VALUE",
70
+ * // sourceIpAddress: "STRING_VALUE",
71
+ * // userAgent: "STRING_VALUE",
72
+ * // },
73
+ * // ],
74
+ * // };
75
+ *
39
76
  * ```
40
77
  *
41
78
  * @param ListEventLogsCommandInput - {@link ListEventLogsCommandInput}
@@ -64,6 +101,8 @@ export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __Met
64
101
  * @throws {@link ValidationException} (client fault)
65
102
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
66
103
  *
104
+ * @throws {@link CodeCatalystServiceException}
105
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
67
106
  *
68
107
  */
69
108
  export declare class ListEventLogsCommand extends $Command<ListEventLogsCommandInput, ListEventLogsCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -42,6 +42,17 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
42
42
  * };
43
43
  * const command = new ListProjectsCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // ListProjectsResponse
46
+ * // nextToken: "STRING_VALUE",
47
+ * // items: [ // ProjectSummaries
48
+ * // { // ProjectSummary
49
+ * // name: "STRING_VALUE", // required
50
+ * // displayName: "STRING_VALUE",
51
+ * // description: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // };
55
+ *
45
56
  * ```
46
57
  *
47
58
  * @param ListProjectsCommandInput - {@link ListProjectsCommandInput}
@@ -70,6 +81,8 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
70
81
  * @throws {@link ValidationException} (client fault)
71
82
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
72
83
  *
84
+ * @throws {@link CodeCatalystServiceException}
85
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
73
86
  *
74
87
  */
75
88
  export declare class ListProjectsCommand extends $Command<ListProjectsCommandInput, ListProjectsCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -34,6 +34,19 @@ export interface ListSourceRepositoriesCommandOutput extends ListSourceRepositor
34
34
  * };
35
35
  * const command = new ListSourceRepositoriesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListSourceRepositoriesResponse
38
+ * // items: [ // ListSourceRepositoriesItems
39
+ * // { // ListSourceRepositoriesItem
40
+ * // id: "STRING_VALUE", // required
41
+ * // name: "STRING_VALUE", // required
42
+ * // description: "STRING_VALUE",
43
+ * // lastUpdatedTime: new Date("TIMESTAMP"), // required
44
+ * // createdTime: new Date("TIMESTAMP"), // required
45
+ * // },
46
+ * // ],
47
+ * // nextToken: "STRING_VALUE",
48
+ * // };
49
+ *
37
50
  * ```
38
51
  *
39
52
  * @param ListSourceRepositoriesCommandInput - {@link ListSourceRepositoriesCommandInput}
@@ -62,6 +75,8 @@ export interface ListSourceRepositoriesCommandOutput extends ListSourceRepositor
62
75
  * @throws {@link ValidationException} (client fault)
63
76
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
64
77
  *
78
+ * @throws {@link CodeCatalystServiceException}
79
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
65
80
  *
66
81
  */
67
82
  export declare class ListSourceRepositoriesCommand extends $Command<ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -35,6 +35,18 @@ export interface ListSourceRepositoryBranchesCommandOutput extends ListSourceRep
35
35
  * };
36
36
  * const command = new ListSourceRepositoryBranchesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListSourceRepositoryBranchesResponse
39
+ * // nextToken: "STRING_VALUE",
40
+ * // items: [ // ListSourceRepositoryBranchesItems // required
41
+ * // { // ListSourceRepositoryBranchesItem
42
+ * // ref: "STRING_VALUE",
43
+ * // name: "STRING_VALUE",
44
+ * // lastUpdatedTime: new Date("TIMESTAMP"),
45
+ * // headCommitId: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // };
49
+ *
38
50
  * ```
39
51
  *
40
52
  * @param ListSourceRepositoryBranchesCommandInput - {@link ListSourceRepositoryBranchesCommandInput}
@@ -63,6 +75,8 @@ export interface ListSourceRepositoryBranchesCommandOutput extends ListSourceRep
63
75
  * @throws {@link ValidationException} (client fault)
64
76
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
65
77
  *
78
+ * @throws {@link CodeCatalystServiceException}
79
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
66
80
  *
67
81
  */
68
82
  export declare class ListSourceRepositoryBranchesCommand extends $Command<ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -31,6 +31,18 @@ export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB
31
31
  * };
32
32
  * const command = new ListSpacesCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListSpacesResponse
35
+ * // nextToken: "STRING_VALUE",
36
+ * // items: [ // SpaceSummaries
37
+ * // { // SpaceSummary
38
+ * // name: "STRING_VALUE", // required
39
+ * // regionName: "STRING_VALUE", // required
40
+ * // displayName: "STRING_VALUE",
41
+ * // description: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // };
45
+ *
34
46
  * ```
35
47
  *
36
48
  * @param ListSpacesCommandInput - {@link ListSpacesCommandInput}
@@ -59,6 +71,8 @@ export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB
59
71
  * @throws {@link ValidationException} (client fault)
60
72
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
61
73
  *
74
+ * @throws {@link CodeCatalystServiceException}
75
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
62
76
  *
63
77
  */
64
78
  export declare class ListSpacesCommand extends $Command<ListSpacesCommandInput, ListSpacesCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -41,6 +41,13 @@ export interface StartDevEnvironmentCommandOutput extends StartDevEnvironmentRes
41
41
  * };
42
42
  * const command = new StartDevEnvironmentCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // StartDevEnvironmentResponse
45
+ * // spaceName: "STRING_VALUE", // required
46
+ * // projectName: "STRING_VALUE", // required
47
+ * // id: "STRING_VALUE", // required
48
+ * // status: "STRING_VALUE", // required
49
+ * // };
50
+ *
44
51
  * ```
45
52
  *
46
53
  * @param StartDevEnvironmentCommandInput - {@link StartDevEnvironmentCommandInput}
@@ -69,6 +76,8 @@ export interface StartDevEnvironmentCommandOutput extends StartDevEnvironmentRes
69
76
  * @throws {@link ValidationException} (client fault)
70
77
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
71
78
  *
79
+ * @throws {@link CodeCatalystServiceException}
80
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
72
81
  *
73
82
  */
74
83
  export declare class StartDevEnvironmentCommand extends $Command<StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -42,6 +42,17 @@ export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnviron
42
42
  * };
43
43
  * const command = new StartDevEnvironmentSessionCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // StartDevEnvironmentSessionResponse
46
+ * // accessDetails: { // DevEnvironmentAccessDetails
47
+ * // streamUrl: "STRING_VALUE", // required
48
+ * // tokenValue: "STRING_VALUE", // required
49
+ * // },
50
+ * // sessionId: "STRING_VALUE",
51
+ * // spaceName: "STRING_VALUE", // required
52
+ * // projectName: "STRING_VALUE", // required
53
+ * // id: "STRING_VALUE", // required
54
+ * // };
55
+ *
45
56
  * ```
46
57
  *
47
58
  * @param StartDevEnvironmentSessionCommandInput - {@link StartDevEnvironmentSessionCommandInput}
@@ -70,6 +81,8 @@ export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnviron
70
81
  * @throws {@link ValidationException} (client fault)
71
82
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
72
83
  *
84
+ * @throws {@link CodeCatalystServiceException}
85
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
73
86
  *
74
87
  */
75
88
  export declare class StartDevEnvironmentSessionCommand extends $Command<StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -33,6 +33,13 @@ export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentRespo
33
33
  * };
34
34
  * const command = new StopDevEnvironmentCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // StopDevEnvironmentResponse
37
+ * // spaceName: "STRING_VALUE", // required
38
+ * // projectName: "STRING_VALUE", // required
39
+ * // id: "STRING_VALUE", // required
40
+ * // status: "STRING_VALUE", // required
41
+ * // };
42
+ *
36
43
  * ```
37
44
  *
38
45
  * @param StopDevEnvironmentCommandInput - {@link StopDevEnvironmentCommandInput}
@@ -61,6 +68,8 @@ export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentRespo
61
68
  * @throws {@link ValidationException} (client fault)
62
69
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
63
70
  *
71
+ * @throws {@link CodeCatalystServiceException}
72
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
64
73
  *
65
74
  */
66
75
  export declare class StopDevEnvironmentCommand extends $Command<StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -34,6 +34,13 @@ export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironme
34
34
  * };
35
35
  * const command = new StopDevEnvironmentSessionCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // StopDevEnvironmentSessionResponse
38
+ * // spaceName: "STRING_VALUE", // required
39
+ * // projectName: "STRING_VALUE", // required
40
+ * // id: "STRING_VALUE", // required
41
+ * // sessionId: "STRING_VALUE", // required
42
+ * // };
43
+ *
37
44
  * ```
38
45
  *
39
46
  * @param StopDevEnvironmentSessionCommandInput - {@link StopDevEnvironmentSessionCommandInput}
@@ -62,6 +69,8 @@ export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironme
62
69
  * @throws {@link ValidationException} (client fault)
63
70
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
64
71
  *
72
+ * @throws {@link CodeCatalystServiceException}
73
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
65
74
  *
66
75
  */
67
76
  export declare class StopDevEnvironmentSessionCommand extends $Command<StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -43,6 +43,22 @@ export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentR
43
43
  * };
44
44
  * const command = new UpdateDevEnvironmentCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // UpdateDevEnvironmentResponse
47
+ * // id: "STRING_VALUE", // required
48
+ * // spaceName: "STRING_VALUE", // required
49
+ * // projectName: "STRING_VALUE", // required
50
+ * // alias: "STRING_VALUE",
51
+ * // ides: [ // IdeConfigurationList
52
+ * // { // IdeConfiguration
53
+ * // runtime: "STRING_VALUE",
54
+ * // name: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // instanceType: "STRING_VALUE",
58
+ * // inactivityTimeoutMinutes: Number("int"),
59
+ * // clientToken: "STRING_VALUE",
60
+ * // };
61
+ *
46
62
  * ```
47
63
  *
48
64
  * @param UpdateDevEnvironmentCommandInput - {@link UpdateDevEnvironmentCommandInput}
@@ -71,6 +87,8 @@ export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentR
71
87
  * @throws {@link ValidationException} (client fault)
72
88
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
73
89
  *
90
+ * @throws {@link CodeCatalystServiceException}
91
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
74
92
  *
75
93
  */
76
94
  export declare class UpdateDevEnvironmentCommand extends $Command<UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
@@ -29,6 +29,10 @@ export interface VerifySessionCommandOutput extends VerifySessionResponse, __Met
29
29
  * const input = {};
30
30
  * const command = new VerifySessionCommand(input);
31
31
  * const response = await client.send(command);
32
+ * // { // VerifySessionResponse
33
+ * // identity: "STRING_VALUE",
34
+ * // };
35
+ *
32
36
  * ```
33
37
  *
34
38
  * @param VerifySessionCommandInput - {@link VerifySessionCommandInput}
@@ -57,6 +61,8 @@ export interface VerifySessionCommandOutput extends VerifySessionResponse, __Met
57
61
  * @throws {@link ValidationException} (client fault)
58
62
  * <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
59
63
  *
64
+ * @throws {@link CodeCatalystServiceException}
65
+ * <p>Base exception class for all service exceptions from CodeCatalyst service.</p>
60
66
  *
61
67
  */
62
68
  export declare class VerifySessionCommand extends $Command<VerifySessionCommandInput, VerifySessionCommandOutput, CodeCatalystClientResolvedConfig> {
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.321.1",
4
+ "version": "3.326.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",
@@ -25,27 +25,27 @@
25
25
  "@aws-sdk/fetch-http-handler": "3.310.0",
26
26
  "@aws-sdk/hash-node": "3.310.0",
27
27
  "@aws-sdk/invalid-dependency": "3.310.0",
28
- "@aws-sdk/middleware-content-length": "3.310.0",
29
- "@aws-sdk/middleware-endpoint": "3.310.0",
30
- "@aws-sdk/middleware-host-header": "3.310.0",
31
- "@aws-sdk/middleware-logger": "3.310.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
33
- "@aws-sdk/middleware-retry": "3.310.0",
34
- "@aws-sdk/middleware-serde": "3.310.0",
35
- "@aws-sdk/middleware-stack": "3.310.0",
36
- "@aws-sdk/middleware-token": "3.321.1",
37
- "@aws-sdk/middleware-user-agent": "3.319.0",
28
+ "@aws-sdk/middleware-content-length": "3.325.0",
29
+ "@aws-sdk/middleware-endpoint": "3.325.0",
30
+ "@aws-sdk/middleware-host-header": "3.325.0",
31
+ "@aws-sdk/middleware-logger": "3.325.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
33
+ "@aws-sdk/middleware-retry": "3.325.0",
34
+ "@aws-sdk/middleware-serde": "3.325.0",
35
+ "@aws-sdk/middleware-stack": "3.325.0",
36
+ "@aws-sdk/middleware-token": "3.326.0",
37
+ "@aws-sdk/middleware-user-agent": "3.325.0",
38
38
  "@aws-sdk/node-config-provider": "3.310.0",
39
39
  "@aws-sdk/node-http-handler": "3.321.1",
40
40
  "@aws-sdk/protocol-http": "3.310.0",
41
- "@aws-sdk/smithy-client": "3.316.0",
41
+ "@aws-sdk/smithy-client": "3.325.0",
42
42
  "@aws-sdk/types": "3.310.0",
43
43
  "@aws-sdk/url-parser": "3.310.0",
44
44
  "@aws-sdk/util-base64": "3.310.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.310.0",
46
46
  "@aws-sdk/util-body-length-node": "3.310.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
49
49
  "@aws-sdk/util-endpoints": "3.319.0",
50
50
  "@aws-sdk/util-retry": "3.310.0",
51
51
  "@aws-sdk/util-user-agent-browser": "3.310.0",