@aws-sdk/client-codecatalyst 3.289.0 → 3.292.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 +21 -0
  2. package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +21 -0
  3. package/dist-types/commands/CreateProjectCommand.d.ts +21 -0
  4. package/dist-types/commands/CreateSourceRepositoryBranchCommand.d.ts +21 -0
  5. package/dist-types/commands/DeleteAccessTokenCommand.d.ts +21 -0
  6. package/dist-types/commands/DeleteDevEnvironmentCommand.d.ts +21 -0
  7. package/dist-types/commands/GetDevEnvironmentCommand.d.ts +21 -0
  8. package/dist-types/commands/GetProjectCommand.d.ts +21 -0
  9. package/dist-types/commands/GetSourceRepositoryCloneUrlsCommand.d.ts +21 -0
  10. package/dist-types/commands/GetSpaceCommand.d.ts +21 -0
  11. package/dist-types/commands/GetSubscriptionCommand.d.ts +21 -0
  12. package/dist-types/commands/GetUserDetailsCommand.d.ts +21 -0
  13. package/dist-types/commands/ListAccessTokensCommand.d.ts +21 -0
  14. package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +21 -0
  15. package/dist-types/commands/ListEventLogsCommand.d.ts +21 -0
  16. package/dist-types/commands/ListProjectsCommand.d.ts +21 -0
  17. package/dist-types/commands/ListSourceRepositoriesCommand.d.ts +21 -0
  18. package/dist-types/commands/ListSourceRepositoryBranchesCommand.d.ts +21 -0
  19. package/dist-types/commands/ListSpacesCommand.d.ts +21 -0
  20. package/dist-types/commands/StartDevEnvironmentCommand.d.ts +21 -0
  21. package/dist-types/commands/StartDevEnvironmentSessionCommand.d.ts +21 -0
  22. package/dist-types/commands/StopDevEnvironmentCommand.d.ts +21 -0
  23. package/dist-types/commands/StopDevEnvironmentSessionCommand.d.ts +21 -0
  24. package/dist-types/commands/UpdateDevEnvironmentCommand.d.ts +21 -0
  25. package/dist-types/commands/VerifySessionCommand.d.ts +21 -0
  26. package/package.json +33 -38
@@ -32,6 +32,27 @@ export interface CreateAccessTokenCommandOutput extends CreateAccessTokenRespons
32
32
  * @see {@link CreateAccessTokenCommandOutput} for command's `response` shape.
33
33
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
34
34
  *
35
+ * @throws {@link AccessDeniedException} (client fault)
36
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
40
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
44
+ *
45
+ * @throws {@link ServiceQuotaExceededException} (client fault)
46
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
47
+ * the number of resources, or change the tier if applicable.</p>
48
+ *
49
+ * @throws {@link ThrottlingException} (client fault)
50
+ * <p>The request was denied due to request throttling.</p>
51
+ *
52
+ * @throws {@link ValidationException} (client fault)
53
+ * <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>
54
+ *
55
+ *
35
56
  */
36
57
  export declare class CreateAccessTokenCommand extends $Command<CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput, CodeCatalystClientResolvedConfig> {
37
58
  readonly input: CreateAccessTokenCommandInput;
@@ -34,6 +34,27 @@ export interface CreateDevEnvironmentCommandOutput extends CreateDevEnvironmentR
34
34
  * @see {@link CreateDevEnvironmentCommandOutput} for command's `response` shape.
35
35
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
36
36
  *
37
+ * @throws {@link AccessDeniedException} (client fault)
38
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
39
+ *
40
+ * @throws {@link ConflictException} (client fault)
41
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
42
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
43
+ *
44
+ * @throws {@link ResourceNotFoundException} (client fault)
45
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
46
+ *
47
+ * @throws {@link ServiceQuotaExceededException} (client fault)
48
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
49
+ * the number of resources, or change the tier if applicable.</p>
50
+ *
51
+ * @throws {@link ThrottlingException} (client fault)
52
+ * <p>The request was denied due to request throttling.</p>
53
+ *
54
+ * @throws {@link ValidationException} (client fault)
55
+ * <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>
56
+ *
57
+ *
37
58
  */
38
59
  export declare class CreateDevEnvironmentCommand extends $Command<CreateDevEnvironmentCommandInput, CreateDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
39
60
  readonly input: CreateDevEnvironmentCommandInput;
@@ -29,6 +29,27 @@ export interface CreateProjectCommandOutput extends CreateProjectResponse, __Met
29
29
  * @see {@link CreateProjectCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class CreateProjectCommand extends $Command<CreateProjectCommandInput, CreateProjectCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: CreateProjectCommandInput;
@@ -32,6 +32,27 @@ export interface CreateSourceRepositoryBranchCommandOutput extends CreateSourceR
32
32
  * @see {@link CreateSourceRepositoryBranchCommandOutput} for command's `response` shape.
33
33
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
34
34
  *
35
+ * @throws {@link AccessDeniedException} (client fault)
36
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
40
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
44
+ *
45
+ * @throws {@link ServiceQuotaExceededException} (client fault)
46
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
47
+ * the number of resources, or change the tier if applicable.</p>
48
+ *
49
+ * @throws {@link ThrottlingException} (client fault)
50
+ * <p>The request was denied due to request throttling.</p>
51
+ *
52
+ * @throws {@link ValidationException} (client fault)
53
+ * <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>
54
+ *
55
+ *
35
56
  */
36
57
  export declare class CreateSourceRepositoryBranchCommand extends $Command<CreateSourceRepositoryBranchCommandInput, CreateSourceRepositoryBranchCommandOutput, CodeCatalystClientResolvedConfig> {
37
58
  readonly input: CreateSourceRepositoryBranchCommandInput;
@@ -29,6 +29,27 @@ export interface DeleteAccessTokenCommandOutput extends DeleteAccessTokenRespons
29
29
  * @see {@link DeleteAccessTokenCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class DeleteAccessTokenCommand extends $Command<DeleteAccessTokenCommandInput, DeleteAccessTokenCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: DeleteAccessTokenCommandInput;
@@ -29,6 +29,27 @@ export interface DeleteDevEnvironmentCommandOutput extends DeleteDevEnvironmentR
29
29
  * @see {@link DeleteDevEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class DeleteDevEnvironmentCommand extends $Command<DeleteDevEnvironmentCommandInput, DeleteDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: DeleteDevEnvironmentCommandInput;
@@ -29,6 +29,27 @@ export interface GetDevEnvironmentCommandOutput extends GetDevEnvironmentRespons
29
29
  * @see {@link GetDevEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class GetDevEnvironmentCommand extends $Command<GetDevEnvironmentCommandInput, GetDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: GetDevEnvironmentCommandInput;
@@ -29,6 +29,27 @@ export interface GetProjectCommandOutput extends GetProjectResponse, __MetadataB
29
29
  * @see {@link GetProjectCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class GetProjectCommand extends $Command<GetProjectCommandInput, GetProjectCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: GetProjectCommandInput;
@@ -30,6 +30,27 @@ export interface GetSourceRepositoryCloneUrlsCommandOutput extends GetSourceRepo
30
30
  * @see {@link GetSourceRepositoryCloneUrlsCommandOutput} for command's `response` shape.
31
31
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
38
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
42
+ *
43
+ * @throws {@link ServiceQuotaExceededException} (client fault)
44
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
45
+ * the number of resources, or change the tier if applicable.</p>
46
+ *
47
+ * @throws {@link ThrottlingException} (client fault)
48
+ * <p>The request was denied due to request throttling.</p>
49
+ *
50
+ * @throws {@link ValidationException} (client fault)
51
+ * <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>
52
+ *
53
+ *
33
54
  */
34
55
  export declare class GetSourceRepositoryCloneUrlsCommand extends $Command<GetSourceRepositoryCloneUrlsCommandInput, GetSourceRepositoryCloneUrlsCommandOutput, CodeCatalystClientResolvedConfig> {
35
56
  readonly input: GetSourceRepositoryCloneUrlsCommandInput;
@@ -29,6 +29,27 @@ export interface GetSpaceCommandOutput extends GetSpaceResponse, __MetadataBeare
29
29
  * @see {@link GetSpaceCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class GetSpaceCommand extends $Command<GetSpaceCommandInput, GetSpaceCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: GetSpaceCommandInput;
@@ -30,6 +30,27 @@ export interface GetSubscriptionCommandOutput extends GetSubscriptionResponse, _
30
30
  * @see {@link GetSubscriptionCommandOutput} for command's `response` shape.
31
31
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
38
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
42
+ *
43
+ * @throws {@link ServiceQuotaExceededException} (client fault)
44
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
45
+ * the number of resources, or change the tier if applicable.</p>
46
+ *
47
+ * @throws {@link ThrottlingException} (client fault)
48
+ * <p>The request was denied due to request throttling.</p>
49
+ *
50
+ * @throws {@link ValidationException} (client fault)
51
+ * <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>
52
+ *
53
+ *
33
54
  */
34
55
  export declare class GetSubscriptionCommand extends $Command<GetSubscriptionCommandInput, GetSubscriptionCommandOutput, CodeCatalystClientResolvedConfig> {
35
56
  readonly input: GetSubscriptionCommandInput;
@@ -29,6 +29,27 @@ export interface GetUserDetailsCommandOutput extends GetUserDetailsResponse, __M
29
29
  * @see {@link GetUserDetailsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class GetUserDetailsCommand extends $Command<GetUserDetailsCommandInput, GetUserDetailsCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: GetUserDetailsCommandInput;
@@ -29,6 +29,27 @@ export interface ListAccessTokensCommandOutput extends ListAccessTokensResponse,
29
29
  * @see {@link ListAccessTokensCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class ListAccessTokensCommand extends $Command<ListAccessTokensCommandInput, ListAccessTokensCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: ListAccessTokensCommandInput;
@@ -29,6 +29,27 @@ export interface ListDevEnvironmentsCommandOutput extends ListDevEnvironmentsRes
29
29
  * @see {@link ListDevEnvironmentsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class ListDevEnvironmentsCommand extends $Command<ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: ListDevEnvironmentsCommandInput;
@@ -29,6 +29,27 @@ export interface ListEventLogsCommandOutput extends ListEventLogsResponse, __Met
29
29
  * @see {@link ListEventLogsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class ListEventLogsCommand extends $Command<ListEventLogsCommandInput, ListEventLogsCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: ListEventLogsCommandInput;
@@ -29,6 +29,27 @@ export interface ListProjectsCommandOutput extends ListProjectsResponse, __Metad
29
29
  * @see {@link ListProjectsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class ListProjectsCommand extends $Command<ListProjectsCommandInput, ListProjectsCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: ListProjectsCommandInput;
@@ -29,6 +29,27 @@ export interface ListSourceRepositoriesCommandOutput extends ListSourceRepositor
29
29
  * @see {@link ListSourceRepositoriesCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class ListSourceRepositoriesCommand extends $Command<ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: ListSourceRepositoriesCommandInput;
@@ -29,6 +29,27 @@ export interface ListSourceRepositoryBranchesCommandOutput extends ListSourceRep
29
29
  * @see {@link ListSourceRepositoryBranchesCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class ListSourceRepositoryBranchesCommand extends $Command<ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: ListSourceRepositoryBranchesCommandInput;
@@ -29,6 +29,27 @@ export interface ListSpacesCommandOutput extends ListSpacesResponse, __MetadataB
29
29
  * @see {@link ListSpacesCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class ListSpacesCommand extends $Command<ListSpacesCommandInput, ListSpacesCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: ListSpacesCommandInput;
@@ -29,6 +29,27 @@ export interface StartDevEnvironmentCommandOutput extends StartDevEnvironmentRes
29
29
  * @see {@link StartDevEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class StartDevEnvironmentCommand extends $Command<StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: StartDevEnvironmentCommandInput;
@@ -29,6 +29,27 @@ export interface StartDevEnvironmentSessionCommandOutput extends StartDevEnviron
29
29
  * @see {@link StartDevEnvironmentSessionCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class StartDevEnvironmentSessionCommand extends $Command<StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: StartDevEnvironmentSessionCommandInput;
@@ -29,6 +29,27 @@ export interface StopDevEnvironmentCommandOutput extends StopDevEnvironmentRespo
29
29
  * @see {@link StopDevEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class StopDevEnvironmentCommand extends $Command<StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: StopDevEnvironmentCommandInput;
@@ -29,6 +29,27 @@ export interface StopDevEnvironmentSessionCommandOutput extends StopDevEnvironme
29
29
  * @see {@link StopDevEnvironmentSessionCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class StopDevEnvironmentSessionCommand extends $Command<StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: StopDevEnvironmentSessionCommandInput;
@@ -29,6 +29,27 @@ export interface UpdateDevEnvironmentCommandOutput extends UpdateDevEnvironmentR
29
29
  * @see {@link UpdateDevEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class UpdateDevEnvironmentCommand extends $Command<UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: UpdateDevEnvironmentCommandInput;
@@ -29,6 +29,27 @@ export interface VerifySessionCommandOutput extends VerifySessionResponse, __Met
29
29
  * @see {@link VerifySessionCommandOutput} for command's `response` shape.
30
30
  * @see {@link CodeCatalystClientResolvedConfig | config} for CodeCatalystClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
37
+ * Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
41
+ *
42
+ * @throws {@link ServiceQuotaExceededException} (client fault)
43
+ * <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
44
+ * the number of resources, or change the tier if applicable.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>The request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <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>
51
+ *
52
+ *
32
53
  */
33
54
  export declare class VerifySessionCommand extends $Command<VerifySessionCommandInput, VerifySessionCommandOutput, CodeCatalystClientResolvedConfig> {
34
55
  readonly input: VerifySessionCommandInput;
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.289.0",
4
+ "version": "3.292.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",
@@ -20,53 +20,48 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/config-resolver": "3.289.0",
24
- "@aws-sdk/fetch-http-handler": "3.289.0",
25
- "@aws-sdk/hash-node": "3.289.0",
26
- "@aws-sdk/invalid-dependency": "3.289.0",
27
- "@aws-sdk/middleware-content-length": "3.289.0",
28
- "@aws-sdk/middleware-endpoint": "3.289.0",
29
- "@aws-sdk/middleware-host-header": "3.289.0",
30
- "@aws-sdk/middleware-logger": "3.289.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
32
- "@aws-sdk/middleware-retry": "3.289.0",
33
- "@aws-sdk/middleware-serde": "3.289.0",
34
- "@aws-sdk/middleware-stack": "3.289.0",
35
- "@aws-sdk/middleware-token": "3.289.0",
36
- "@aws-sdk/middleware-user-agent": "3.289.0",
37
- "@aws-sdk/node-config-provider": "3.289.0",
38
- "@aws-sdk/node-http-handler": "3.289.0",
39
- "@aws-sdk/protocol-http": "3.289.0",
40
- "@aws-sdk/smithy-client": "3.289.0",
41
- "@aws-sdk/types": "3.289.0",
42
- "@aws-sdk/url-parser": "3.289.0",
43
- "@aws-sdk/util-base64": "3.208.0",
44
- "@aws-sdk/util-body-length-browser": "3.188.0",
45
- "@aws-sdk/util-body-length-node": "3.208.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
48
- "@aws-sdk/util-endpoints": "3.289.0",
49
- "@aws-sdk/util-retry": "3.289.0",
50
- "@aws-sdk/util-user-agent-browser": "3.289.0",
51
- "@aws-sdk/util-user-agent-node": "3.289.0",
52
- "@aws-sdk/util-utf8": "3.254.0",
23
+ "@aws-sdk/config-resolver": "3.292.0",
24
+ "@aws-sdk/fetch-http-handler": "3.292.0",
25
+ "@aws-sdk/hash-node": "3.292.0",
26
+ "@aws-sdk/invalid-dependency": "3.292.0",
27
+ "@aws-sdk/middleware-content-length": "3.292.0",
28
+ "@aws-sdk/middleware-endpoint": "3.292.0",
29
+ "@aws-sdk/middleware-host-header": "3.292.0",
30
+ "@aws-sdk/middleware-logger": "3.292.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
32
+ "@aws-sdk/middleware-retry": "3.292.0",
33
+ "@aws-sdk/middleware-serde": "3.292.0",
34
+ "@aws-sdk/middleware-stack": "3.292.0",
35
+ "@aws-sdk/middleware-token": "3.292.0",
36
+ "@aws-sdk/middleware-user-agent": "3.292.0",
37
+ "@aws-sdk/node-config-provider": "3.292.0",
38
+ "@aws-sdk/node-http-handler": "3.292.0",
39
+ "@aws-sdk/protocol-http": "3.292.0",
40
+ "@aws-sdk/smithy-client": "3.292.0",
41
+ "@aws-sdk/types": "3.292.0",
42
+ "@aws-sdk/url-parser": "3.292.0",
43
+ "@aws-sdk/util-base64": "3.292.0",
44
+ "@aws-sdk/util-body-length-browser": "3.292.0",
45
+ "@aws-sdk/util-body-length-node": "3.292.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
48
+ "@aws-sdk/util-endpoints": "3.292.0",
49
+ "@aws-sdk/util-retry": "3.292.0",
50
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
51
+ "@aws-sdk/util-user-agent-node": "3.292.0",
52
+ "@aws-sdk/util-utf8": "3.292.0",
53
53
  "tslib": "^2.3.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
56
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
57
57
  "@tsconfig/node14": "1.0.3",
58
58
  "@types/node": "^14.14.31",
59
59
  "concurrently": "7.0.0",
60
60
  "downlevel-dts": "0.10.1",
61
61
  "rimraf": "3.0.2",
62
- "typedoc": "0.19.2",
62
+ "typedoc": "0.23.23",
63
63
  "typescript": "~4.6.2"
64
64
  },
65
- "overrides": {
66
- "typedoc": {
67
- "typescript": "~4.6.2"
68
- }
69
- },
70
65
  "engines": {
71
66
  "node": ">=14.0.0"
72
67
  },