@aws-sdk/client-elastic-beanstalk 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 (48) hide show
  1. package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +5 -0
  2. package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +7 -0
  3. package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +5 -0
  4. package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +1 -0
  5. package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +8 -0
  6. package/dist-types/commands/CreateApplicationCommand.d.ts +4 -0
  7. package/dist-types/commands/CreateApplicationVersionCommand.d.ts +29 -0
  8. package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +11 -0
  9. package/dist-types/commands/CreateEnvironmentCommand.d.ts +8 -0
  10. package/dist-types/commands/CreatePlatformVersionCommand.d.ts +11 -0
  11. package/dist-types/commands/CreateStorageLocationCommand.d.ts +11 -0
  12. package/dist-types/commands/DeleteApplicationCommand.d.ts +5 -0
  13. package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +28 -0
  14. package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +5 -0
  15. package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +1 -0
  16. package/dist-types/commands/DeletePlatformVersionCommand.d.ts +15 -0
  17. package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +5 -0
  18. package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +1 -0
  19. package/dist-types/commands/DescribeApplicationsCommand.d.ts +1 -0
  20. package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +4 -0
  21. package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +4 -0
  22. package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +8 -0
  23. package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +4 -0
  24. package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +4 -0
  25. package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +5 -0
  26. package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +1 -0
  27. package/dist-types/commands/DescribeEventsCommand.d.ts +1 -0
  28. package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +8 -0
  29. package/dist-types/commands/DescribePlatformVersionCommand.d.ts +8 -0
  30. package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +5 -0
  31. package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +1 -0
  32. package/dist-types/commands/ListPlatformBranchesCommand.d.ts +1 -0
  33. package/dist-types/commands/ListPlatformVersionsCommand.d.ts +8 -0
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  35. package/dist-types/commands/RebuildEnvironmentCommand.d.ts +5 -0
  36. package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +1 -0
  37. package/dist-types/commands/RestartAppServerCommand.d.ts +1 -0
  38. package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +1 -0
  39. package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +1 -0
  40. package/dist-types/commands/TerminateEnvironmentCommand.d.ts +5 -0
  41. package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -0
  42. package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +5 -0
  43. package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +1 -0
  44. package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +8 -0
  45. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +8 -0
  46. package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +21 -0
  47. package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +8 -0
  48. package/package.json +36 -41
@@ -30,6 +30,11 @@ export interface AbortEnvironmentUpdateCommandOutput extends __MetadataBearer {
30
30
  * @see {@link AbortEnvironmentUpdateCommandOutput} for command's `response` shape.
31
31
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
32
32
  *
33
+ * @throws {@link InsufficientPrivilegesException} (client fault)
34
+ * <p>The specified account does not have sufficient privileges for one or more AWS
35
+ * services.</p>
36
+ *
37
+ *
33
38
  * @example To abort a deployment
34
39
  * ```javascript
35
40
  * // The following code aborts a running application version deployment for an environment named my-env:
@@ -31,6 +31,13 @@ export interface ApplyEnvironmentManagedActionCommandOutput extends ApplyEnviron
31
31
  * @see {@link ApplyEnvironmentManagedActionCommandOutput} for command's `response` shape.
32
32
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
33
33
  *
34
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
35
+ * <p>A generic service exception has occurred.</p>
36
+ *
37
+ * @throws {@link ManagedActionInvalidStateException} (client fault)
38
+ * <p>Cannot modify the managed action in its current state.</p>
39
+ *
40
+ *
34
41
  */
35
42
  export declare class ApplyEnvironmentManagedActionCommand extends $Command<ApplyEnvironmentManagedActionCommandInput, ApplyEnvironmentManagedActionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
36
43
  readonly input: ApplyEnvironmentManagedActionCommandInput;
@@ -32,6 +32,11 @@ export interface AssociateEnvironmentOperationsRoleCommandOutput extends __Metad
32
32
  * @see {@link AssociateEnvironmentOperationsRoleCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
34
34
  *
35
+ * @throws {@link InsufficientPrivilegesException} (client fault)
36
+ * <p>The specified account does not have sufficient privileges for one or more AWS
37
+ * services.</p>
38
+ *
39
+ *
35
40
  */
36
41
  export declare class AssociateEnvironmentOperationsRoleCommand extends $Command<AssociateEnvironmentOperationsRoleCommandInput, AssociateEnvironmentOperationsRoleCommandOutput, ElasticBeanstalkClientResolvedConfig> {
37
42
  readonly input: AssociateEnvironmentOperationsRoleCommandInput;
@@ -29,6 +29,7 @@ export interface CheckDNSAvailabilityCommandOutput extends CheckDNSAvailabilityR
29
29
  * @see {@link CheckDNSAvailabilityCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ *
32
33
  * @example To check the availability of a CNAME
33
34
  * ```javascript
34
35
  * // The following operation checks the availability of the subdomain my-cname:
@@ -34,6 +34,14 @@ export interface ComposeEnvironmentsCommandOutput extends EnvironmentDescription
34
34
  * @see {@link ComposeEnvironmentsCommandOutput} for command's `response` shape.
35
35
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
36
36
  *
37
+ * @throws {@link InsufficientPrivilegesException} (client fault)
38
+ * <p>The specified account does not have sufficient privileges for one or more AWS
39
+ * services.</p>
40
+ *
41
+ * @throws {@link TooManyEnvironmentsException} (client fault)
42
+ * <p>The specified account has reached its limit of environments.</p>
43
+ *
44
+ *
37
45
  */
38
46
  export declare class ComposeEnvironmentsCommand extends $Command<ComposeEnvironmentsCommandInput, ComposeEnvironmentsCommandOutput, ElasticBeanstalkClientResolvedConfig> {
39
47
  readonly input: ComposeEnvironmentsCommandInput;
@@ -30,6 +30,10 @@ export interface CreateApplicationCommandOutput extends ApplicationDescriptionMe
30
30
  * @see {@link CreateApplicationCommandOutput} for command's `response` shape.
31
31
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
32
32
  *
33
+ * @throws {@link TooManyApplicationsException} (client fault)
34
+ * <p>The specified account has reached its limit of applications.</p>
35
+ *
36
+ *
33
37
  * @example To create a new application
34
38
  * ```javascript
35
39
  * // The following operation creates a new application named my-app:
@@ -45,6 +45,35 @@ export interface CreateApplicationVersionCommandOutput extends ApplicationVersio
45
45
  * @see {@link CreateApplicationVersionCommandOutput} for command's `response` shape.
46
46
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
47
47
  *
48
+ * @throws {@link CodeBuildNotInServiceRegionException} (client fault)
49
+ * <p>AWS CodeBuild is not available in the specified region.</p>
50
+ *
51
+ * @throws {@link InsufficientPrivilegesException} (client fault)
52
+ * <p>The specified account does not have sufficient privileges for one or more AWS
53
+ * services.</p>
54
+ *
55
+ * @throws {@link S3LocationNotInServiceRegionException} (client fault)
56
+ * <p>The specified S3 bucket does not belong to the S3 region in which the service is
57
+ * running. The following regions are supported:</p>
58
+ * <ul>
59
+ * <li>
60
+ * <p>IAD/us-east-1</p>
61
+ * </li>
62
+ * <li>
63
+ * <p>PDX/us-west-2</p>
64
+ * </li>
65
+ * <li>
66
+ * <p>DUB/eu-west-1</p>
67
+ * </li>
68
+ * </ul>
69
+ *
70
+ * @throws {@link TooManyApplicationsException} (client fault)
71
+ * <p>The specified account has reached its limit of applications.</p>
72
+ *
73
+ * @throws {@link TooManyApplicationVersionsException} (client fault)
74
+ * <p>The specified account has reached its limit of application versions.</p>
75
+ *
76
+ *
48
77
  * @example To create a new application
49
78
  * ```javascript
50
79
  * // The following operation creates a new version (v1) of an application named my-app:
@@ -52,6 +52,17 @@ export interface CreateConfigurationTemplateCommandOutput extends ConfigurationS
52
52
  * @see {@link CreateConfigurationTemplateCommandOutput} for command's `response` shape.
53
53
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
54
54
  *
55
+ * @throws {@link InsufficientPrivilegesException} (client fault)
56
+ * <p>The specified account does not have sufficient privileges for one or more AWS
57
+ * services.</p>
58
+ *
59
+ * @throws {@link TooManyBucketsException} (client fault)
60
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
61
+ *
62
+ * @throws {@link TooManyConfigurationTemplatesException} (client fault)
63
+ * <p>The specified account has reached its limit of configuration templates.</p>
64
+ *
65
+ *
55
66
  * @example To create a configuration template
56
67
  * ```javascript
57
68
  * // The following operation creates a configuration template named my-app-v1 from the settings applied to an environment with the id e-rpqsewtp2j:
@@ -30,6 +30,14 @@ export interface CreateEnvironmentCommandOutput extends EnvironmentDescription,
30
30
  * @see {@link CreateEnvironmentCommandOutput} for command's `response` shape.
31
31
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
32
32
  *
33
+ * @throws {@link InsufficientPrivilegesException} (client fault)
34
+ * <p>The specified account does not have sufficient privileges for one or more AWS
35
+ * services.</p>
36
+ *
37
+ * @throws {@link TooManyEnvironmentsException} (client fault)
38
+ * <p>The specified account has reached its limit of environments.</p>
39
+ *
40
+ *
33
41
  * @example To create a new environment for an application
34
42
  * ```javascript
35
43
  * // The following operation creates a new environment for version v1 of a java application named my-app:
@@ -29,6 +29,17 @@ export interface CreatePlatformVersionCommandOutput extends CreatePlatformVersio
29
29
  * @see {@link CreatePlatformVersionCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
33
+ * <p>A generic service exception has occurred.</p>
34
+ *
35
+ * @throws {@link InsufficientPrivilegesException} (client fault)
36
+ * <p>The specified account does not have sufficient privileges for one or more AWS
37
+ * services.</p>
38
+ *
39
+ * @throws {@link TooManyPlatformsException} (client fault)
40
+ * <p>You have exceeded the maximum number of allowed platforms associated with the account.</p>
41
+ *
42
+ *
32
43
  */
33
44
  export declare class CreatePlatformVersionCommand extends $Command<CreatePlatformVersionCommandInput, CreatePlatformVersionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
34
45
  readonly input: CreatePlatformVersionCommandInput;
@@ -33,6 +33,17 @@ export interface CreateStorageLocationCommandOutput extends CreateStorageLocatio
33
33
  * @see {@link CreateStorageLocationCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
35
35
  *
36
+ * @throws {@link InsufficientPrivilegesException} (client fault)
37
+ * <p>The specified account does not have sufficient privileges for one or more AWS
38
+ * services.</p>
39
+ *
40
+ * @throws {@link S3SubscriptionRequiredException} (client fault)
41
+ * <p>The specified account does not have a subscription to Amazon S3.</p>
42
+ *
43
+ * @throws {@link TooManyBucketsException} (client fault)
44
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
45
+ *
46
+ *
36
47
  * @example To create a new environment for an application
37
48
  * ```javascript
38
49
  * // The following operation creates a new environment for version v1 of a java application named my-app:
@@ -34,6 +34,11 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
34
34
  * @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
35
35
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
36
36
  *
37
+ * @throws {@link OperationInProgressException} (client fault)
38
+ * <p>Unable to perform the specified operation because another operation that effects an
39
+ * element in this activity is already in progress.</p>
40
+ *
41
+ *
37
42
  * @example To delete an application
38
43
  * ```javascript
39
44
  * // The following operation deletes an application named my-app:
@@ -33,6 +33,34 @@ export interface DeleteApplicationVersionCommandOutput extends __MetadataBearer
33
33
  * @see {@link DeleteApplicationVersionCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
35
35
  *
36
+ * @throws {@link InsufficientPrivilegesException} (client fault)
37
+ * <p>The specified account does not have sufficient privileges for one or more AWS
38
+ * services.</p>
39
+ *
40
+ * @throws {@link OperationInProgressException} (client fault)
41
+ * <p>Unable to perform the specified operation because another operation that effects an
42
+ * element in this activity is already in progress.</p>
43
+ *
44
+ * @throws {@link S3LocationNotInServiceRegionException} (client fault)
45
+ * <p>The specified S3 bucket does not belong to the S3 region in which the service is
46
+ * running. The following regions are supported:</p>
47
+ * <ul>
48
+ * <li>
49
+ * <p>IAD/us-east-1</p>
50
+ * </li>
51
+ * <li>
52
+ * <p>PDX/us-west-2</p>
53
+ * </li>
54
+ * <li>
55
+ * <p>DUB/eu-west-1</p>
56
+ * </li>
57
+ * </ul>
58
+ *
59
+ * @throws {@link SourceBundleDeletionException} (client fault)
60
+ * <p>Unable to delete the Amazon S3 source bundle associated with the application version.
61
+ * The application version was deleted successfully.</p>
62
+ *
63
+ *
36
64
  * @example To delete an application version
37
65
  * ```javascript
38
66
  * // The following operation deletes an application version named 22a0-stage-150819_182129 for an application named my-app:
@@ -34,6 +34,11 @@ export interface DeleteConfigurationTemplateCommandOutput extends __MetadataBear
34
34
  * @see {@link DeleteConfigurationTemplateCommandOutput} for command's `response` shape.
35
35
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
36
36
  *
37
+ * @throws {@link OperationInProgressException} (client fault)
38
+ * <p>Unable to perform the specified operation because another operation that effects an
39
+ * element in this activity is already in progress.</p>
40
+ *
41
+ *
37
42
  * @example To delete a configuration template
38
43
  * ```javascript
39
44
  * // The following operation deletes a configuration template named my-template for an application named my-app:
@@ -34,6 +34,7 @@ export interface DeleteEnvironmentConfigurationCommandOutput extends __MetadataB
34
34
  * @see {@link DeleteEnvironmentConfigurationCommandOutput} for command's `response` shape.
35
35
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
36
36
  *
37
+ *
37
38
  * @example To delete a draft configuration
38
39
  * ```javascript
39
40
  * // The following operation deletes a draft configuration for an environment named my-env:
@@ -29,6 +29,21 @@ export interface DeletePlatformVersionCommandOutput extends DeletePlatformVersio
29
29
  * @see {@link DeletePlatformVersionCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
33
+ * <p>A generic service exception has occurred.</p>
34
+ *
35
+ * @throws {@link InsufficientPrivilegesException} (client fault)
36
+ * <p>The specified account does not have sufficient privileges for one or more AWS
37
+ * services.</p>
38
+ *
39
+ * @throws {@link OperationInProgressException} (client fault)
40
+ * <p>Unable to perform the specified operation because another operation that effects an
41
+ * element in this activity is already in progress.</p>
42
+ *
43
+ * @throws {@link PlatformVersionStillReferencedException} (client fault)
44
+ * <p>You cannot delete the platform version because there are still environments running on it.</p>
45
+ *
46
+ *
32
47
  */
33
48
  export declare class DeletePlatformVersionCommand extends $Command<DeletePlatformVersionCommandInput, DeletePlatformVersionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
34
49
  readonly input: DeletePlatformVersionCommandInput;
@@ -31,6 +31,11 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA
31
31
  * @see {@link DescribeAccountAttributesCommandOutput} for command's `response` shape.
32
32
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
33
33
  *
34
+ * @throws {@link InsufficientPrivilegesException} (client fault)
35
+ * <p>The specified account does not have sufficient privileges for one or more AWS
36
+ * services.</p>
37
+ *
38
+ *
34
39
  */
35
40
  export declare class DescribeAccountAttributesCommand extends $Command<DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput, ElasticBeanstalkClientResolvedConfig> {
36
41
  readonly input: DescribeAccountAttributesCommandInput;
@@ -29,6 +29,7 @@ export interface DescribeApplicationVersionsCommandOutput extends ApplicationVer
29
29
  * @see {@link DescribeApplicationVersionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ *
32
33
  * @example To view information about an application version
33
34
  * ```javascript
34
35
  * // The following operation retrieves information about an application version labeled v2:
@@ -29,6 +29,7 @@ export interface DescribeApplicationsCommandOutput extends ApplicationDescriptio
29
29
  * @see {@link DescribeApplicationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ *
32
33
  * @example To view a list of applications
33
34
  * ```javascript
34
35
  * // The following operation retrieves information about applications in the current region:
@@ -32,6 +32,10 @@ export interface DescribeConfigurationOptionsCommandOutput extends Configuration
32
32
  * @see {@link DescribeConfigurationOptionsCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
34
34
  *
35
+ * @throws {@link TooManyBucketsException} (client fault)
36
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
37
+ *
38
+ *
35
39
  * @example To view configuration options for an environment
36
40
  * ```javascript
37
41
  * // The following operation retrieves descriptions of all available configuration options for an environment named my-env:
@@ -43,6 +43,10 @@ export interface DescribeConfigurationSettingsCommandOutput extends Configuratio
43
43
  * @see {@link DescribeConfigurationSettingsCommandOutput} for command's `response` shape.
44
44
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
45
45
  *
46
+ * @throws {@link TooManyBucketsException} (client fault)
47
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
48
+ *
49
+ *
46
50
  * @example To view configurations settings for an environment
47
51
  * ```javascript
48
52
  * // The following operation retrieves configuration settings for an environment named my-env:
@@ -31,6 +31,14 @@ export interface DescribeEnvironmentHealthCommandOutput extends DescribeEnvironm
31
31
  * @see {@link DescribeEnvironmentHealthCommandOutput} for command's `response` shape.
32
32
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
33
33
  *
34
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
35
+ * <p>A generic service exception has occurred.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>One or more input parameters is not valid. Please correct the input parameters and try
39
+ * the operation again.</p>
40
+ *
41
+ *
34
42
  * @example To view environment health
35
43
  * ```javascript
36
44
  * // The following operation retrieves overall health information for an environment named my-env:
@@ -29,6 +29,10 @@ export interface DescribeEnvironmentManagedActionHistoryCommandOutput extends De
29
29
  * @see {@link DescribeEnvironmentManagedActionHistoryCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
33
+ * <p>A generic service exception has occurred.</p>
34
+ *
35
+ *
32
36
  */
33
37
  export declare class DescribeEnvironmentManagedActionHistoryCommand extends $Command<DescribeEnvironmentManagedActionHistoryCommandInput, DescribeEnvironmentManagedActionHistoryCommandOutput, ElasticBeanstalkClientResolvedConfig> {
34
38
  readonly input: DescribeEnvironmentManagedActionHistoryCommandInput;
@@ -29,6 +29,10 @@ export interface DescribeEnvironmentManagedActionsCommandOutput extends Describe
29
29
  * @see {@link DescribeEnvironmentManagedActionsCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
33
+ * <p>A generic service exception has occurred.</p>
34
+ *
35
+ *
32
36
  */
33
37
  export declare class DescribeEnvironmentManagedActionsCommand extends $Command<DescribeEnvironmentManagedActionsCommandInput, DescribeEnvironmentManagedActionsCommandOutput, ElasticBeanstalkClientResolvedConfig> {
34
38
  readonly input: DescribeEnvironmentManagedActionsCommandInput;
@@ -29,6 +29,11 @@ export interface DescribeEnvironmentResourcesCommandOutput extends EnvironmentRe
29
29
  * @see {@link DescribeEnvironmentResourcesCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link InsufficientPrivilegesException} (client fault)
33
+ * <p>The specified account does not have sufficient privileges for one or more AWS
34
+ * services.</p>
35
+ *
36
+ *
32
37
  * @example To view information about the AWS resources in your environment
33
38
  * ```javascript
34
39
  * // The following operation retrieves information about resources in an environment named my-env:
@@ -29,6 +29,7 @@ export interface DescribeEnvironmentsCommandOutput extends EnvironmentDescriptio
29
29
  * @see {@link DescribeEnvironmentsCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ *
32
33
  * @example To view information about an environment
33
34
  * ```javascript
34
35
  * // The following operation retrieves information about an environment named my-env:
@@ -33,6 +33,7 @@ export interface DescribeEventsCommandOutput extends EventDescriptionsMessage, _
33
33
  * @see {@link DescribeEventsCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
35
35
  *
36
+ *
36
37
  * @example To view events for an environment
37
38
  * ```javascript
38
39
  * // The following operation retrieves events for an environment named my-env:
@@ -31,6 +31,14 @@ export interface DescribeInstancesHealthCommandOutput extends DescribeInstancesH
31
31
  * @see {@link DescribeInstancesHealthCommandOutput} for command's `response` shape.
32
32
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
33
33
  *
34
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
35
+ * <p>A generic service exception has occurred.</p>
36
+ *
37
+ * @throws {@link InvalidRequestException} (client fault)
38
+ * <p>One or more input parameters is not valid. Please correct the input parameters and try
39
+ * the operation again.</p>
40
+ *
41
+ *
34
42
  * @example To view environment health
35
43
  * ```javascript
36
44
  * // The following operation retrieves health information for instances in an environment named my-env:
@@ -32,6 +32,14 @@ export interface DescribePlatformVersionCommandOutput extends DescribePlatformVe
32
32
  * @see {@link DescribePlatformVersionCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
34
34
  *
35
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
36
+ * <p>A generic service exception has occurred.</p>
37
+ *
38
+ * @throws {@link InsufficientPrivilegesException} (client fault)
39
+ * <p>The specified account does not have sufficient privileges for one or more AWS
40
+ * services.</p>
41
+ *
42
+ *
35
43
  */
36
44
  export declare class DescribePlatformVersionCommand extends $Command<DescribePlatformVersionCommandInput, DescribePlatformVersionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
37
45
  readonly input: DescribePlatformVersionCommandInput;
@@ -32,6 +32,11 @@ export interface DisassociateEnvironmentOperationsRoleCommandOutput extends __Me
32
32
  * @see {@link DisassociateEnvironmentOperationsRoleCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
34
34
  *
35
+ * @throws {@link InsufficientPrivilegesException} (client fault)
36
+ * <p>The specified account does not have sufficient privileges for one or more AWS
37
+ * services.</p>
38
+ *
39
+ *
35
40
  */
36
41
  export declare class DisassociateEnvironmentOperationsRoleCommand extends $Command<DisassociateEnvironmentOperationsRoleCommandInput, DisassociateEnvironmentOperationsRoleCommandOutput, ElasticBeanstalkClientResolvedConfig> {
37
42
  readonly input: DisassociateEnvironmentOperationsRoleCommandInput;
@@ -30,6 +30,7 @@ export interface ListAvailableSolutionStacksCommandOutput extends ListAvailableS
30
30
  * @see {@link ListAvailableSolutionStacksCommandOutput} for command's `response` shape.
31
31
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
32
32
  *
33
+ *
33
34
  * @example To view solution stacks
34
35
  * ```javascript
35
36
  * // The following operation lists solution stacks for all currently available platform configurations and any that you have used in the past:
@@ -32,6 +32,7 @@ export interface ListPlatformBranchesCommandOutput extends ListPlatformBranchesR
32
32
  * @see {@link ListPlatformBranchesCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
34
34
  *
35
+ *
35
36
  */
36
37
  export declare class ListPlatformBranchesCommand extends $Command<ListPlatformBranchesCommandInput, ListPlatformBranchesCommandOutput, ElasticBeanstalkClientResolvedConfig> {
37
38
  readonly input: ListPlatformBranchesCommandInput;
@@ -33,6 +33,14 @@ export interface ListPlatformVersionsCommandOutput extends ListPlatformVersionsR
33
33
  * @see {@link ListPlatformVersionsCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
35
35
  *
36
+ * @throws {@link ElasticBeanstalkServiceException} (client fault)
37
+ * <p>A generic service exception has occurred.</p>
38
+ *
39
+ * @throws {@link InsufficientPrivilegesException} (client fault)
40
+ * <p>The specified account does not have sufficient privileges for one or more AWS
41
+ * services.</p>
42
+ *
43
+ *
36
44
  */
37
45
  export declare class ListPlatformVersionsCommand extends $Command<ListPlatformVersionsCommandInput, ListPlatformVersionsCommandOutput, ElasticBeanstalkClientResolvedConfig> {
38
46
  readonly input: ListPlatformVersionsCommandInput;
@@ -32,6 +32,17 @@ export interface ListTagsForResourceCommandOutput extends ResourceTagsDescriptio
32
32
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
34
34
  *
35
+ * @throws {@link InsufficientPrivilegesException} (client fault)
36
+ * <p>The specified account does not have sufficient privileges for one or more AWS
37
+ * services.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN).</p>
41
+ *
42
+ * @throws {@link ResourceTypeNotSupportedException} (client fault)
43
+ * <p>The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.</p>
44
+ *
45
+ *
35
46
  */
36
47
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ElasticBeanstalkClientResolvedConfig> {
37
48
  readonly input: ListTagsForResourceCommandInput;
@@ -30,6 +30,11 @@ export interface RebuildEnvironmentCommandOutput extends __MetadataBearer {
30
30
  * @see {@link RebuildEnvironmentCommandOutput} for command's `response` shape.
31
31
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
32
32
  *
33
+ * @throws {@link InsufficientPrivilegesException} (client fault)
34
+ * <p>The specified account does not have sufficient privileges for one or more AWS
35
+ * services.</p>
36
+ *
37
+ *
33
38
  * @example To rebuild an environment
34
39
  * ```javascript
35
40
  * // The following operation terminates and recreates the resources in an environment named my-env:
@@ -44,6 +44,7 @@ export interface RequestEnvironmentInfoCommandOutput extends __MetadataBearer {
44
44
  * @see {@link RequestEnvironmentInfoCommandOutput} for command's `response` shape.
45
45
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
46
46
  *
47
+ *
47
48
  * @example To request tailed logs
48
49
  * ```javascript
49
50
  * // The following operation requests logs from an environment named my-env:
@@ -30,6 +30,7 @@ export interface RestartAppServerCommandOutput extends __MetadataBearer {
30
30
  * @see {@link RestartAppServerCommandOutput} for command's `response` shape.
31
31
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
32
32
  *
33
+ *
33
34
  * @example To restart application servers
34
35
  * ```javascript
35
36
  * // The following operation restarts application servers on all instances in an environment named my-env:
@@ -38,6 +38,7 @@ export interface RetrieveEnvironmentInfoCommandOutput extends RetrieveEnvironmen
38
38
  * @see {@link RetrieveEnvironmentInfoCommandOutput} for command's `response` shape.
39
39
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
40
40
  *
41
+ *
41
42
  * @example To retrieve tailed logs
42
43
  * ```javascript
43
44
  * // The following operation retrieves a link to logs from an environment named my-env:
@@ -29,6 +29,7 @@ export interface SwapEnvironmentCNAMEsCommandOutput extends __MetadataBearer {
29
29
  * @see {@link SwapEnvironmentCNAMEsCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ *
32
33
  * @example To swap environment CNAMES
33
34
  * ```javascript
34
35
  * // The following operation swaps the assigned subdomains of two environments:
@@ -29,6 +29,11 @@ export interface TerminateEnvironmentCommandOutput extends EnvironmentDescriptio
29
29
  * @see {@link TerminateEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link InsufficientPrivilegesException} (client fault)
33
+ * <p>The specified account does not have sufficient privileges for one or more AWS
34
+ * services.</p>
35
+ *
36
+ *
32
37
  * @example To terminate an environment
33
38
  * ```javascript
34
39
  * // The following operation terminates an Elastic Beanstalk environment named my-env:
@@ -33,6 +33,7 @@ export interface UpdateApplicationCommandOutput extends ApplicationDescriptionMe
33
33
  * @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
35
35
  *
36
+ *
36
37
  * @example To change an application's description
37
38
  * ```javascript
38
39
  * // The following operation updates the description of an application named my-app:
@@ -29,6 +29,11 @@ export interface UpdateApplicationResourceLifecycleCommandOutput extends Applica
29
29
  * @see {@link UpdateApplicationResourceLifecycleCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
31
31
  *
32
+ * @throws {@link InsufficientPrivilegesException} (client fault)
33
+ * <p>The specified account does not have sufficient privileges for one or more AWS
34
+ * services.</p>
35
+ *
36
+ *
32
37
  */
33
38
  export declare class UpdateApplicationResourceLifecycleCommand extends $Command<UpdateApplicationResourceLifecycleCommandInput, UpdateApplicationResourceLifecycleCommandOutput, ElasticBeanstalkClientResolvedConfig> {
34
39
  readonly input: UpdateApplicationResourceLifecycleCommandInput;
@@ -33,6 +33,7 @@ export interface UpdateApplicationVersionCommandOutput extends ApplicationVersio
33
33
  * @see {@link UpdateApplicationVersionCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
35
35
  *
36
+ *
36
37
  * @example To change an application version's description
37
38
  * ```javascript
38
39
  * // The following operation updates the description of an application version named 22a0-stage-150819_185942:
@@ -42,6 +42,14 @@ export interface UpdateConfigurationTemplateCommandOutput extends ConfigurationS
42
42
  * @see {@link UpdateConfigurationTemplateCommandOutput} for command's `response` shape.
43
43
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
44
44
  *
45
+ * @throws {@link InsufficientPrivilegesException} (client fault)
46
+ * <p>The specified account does not have sufficient privileges for one or more AWS
47
+ * services.</p>
48
+ *
49
+ * @throws {@link TooManyBucketsException} (client fault)
50
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
51
+ *
52
+ *
45
53
  * @example To update a configuration template
46
54
  * ```javascript
47
55
  * // The following operation removes the configured CloudWatch custom health metrics configuration ConfigDocument from a saved configuration template named my-template:
@@ -37,6 +37,14 @@ export interface UpdateEnvironmentCommandOutput extends EnvironmentDescription,
37
37
  * @see {@link UpdateEnvironmentCommandOutput} for command's `response` shape.
38
38
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
39
39
  *
40
+ * @throws {@link InsufficientPrivilegesException} (client fault)
41
+ * <p>The specified account does not have sufficient privileges for one or more AWS
42
+ * services.</p>
43
+ *
44
+ * @throws {@link TooManyBucketsException} (client fault)
45
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
46
+ *
47
+ *
40
48
  * @example To update an environment to a new version
41
49
  * ```javascript
42
50
  * // The following operation updates an environment named "my-env" to version "v2" of the application to which it belongs:
@@ -48,6 +48,27 @@ export interface UpdateTagsForResourceCommandOutput extends __MetadataBearer {
48
48
  * @see {@link UpdateTagsForResourceCommandOutput} for command's `response` shape.
49
49
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
50
50
  *
51
+ * @throws {@link InsufficientPrivilegesException} (client fault)
52
+ * <p>The specified account does not have sufficient privileges for one or more AWS
53
+ * services.</p>
54
+ *
55
+ * @throws {@link OperationInProgressException} (client fault)
56
+ * <p>Unable to perform the specified operation because another operation that effects an
57
+ * element in this activity is already in progress.</p>
58
+ *
59
+ * @throws {@link ResourceNotFoundException} (client fault)
60
+ * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN).</p>
61
+ *
62
+ * @throws {@link ResourceTypeNotSupportedException} (client fault)
63
+ * <p>The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.</p>
64
+ *
65
+ * @throws {@link TooManyTagsException} (client fault)
66
+ * <p>The number of tags in the resource would exceed the number of tags that each resource
67
+ * can have.</p>
68
+ * <p>To calculate this, the operation considers both the number of tags the resource already has
69
+ * and the tags this operation would add if it succeeded.</p>
70
+ *
71
+ *
51
72
  */
52
73
  export declare class UpdateTagsForResourceCommand extends $Command<UpdateTagsForResourceCommandInput, UpdateTagsForResourceCommandOutput, ElasticBeanstalkClientResolvedConfig> {
53
74
  readonly input: UpdateTagsForResourceCommandInput;
@@ -32,6 +32,14 @@ export interface ValidateConfigurationSettingsCommandOutput extends Configuratio
32
32
  * @see {@link ValidateConfigurationSettingsCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
34
34
  *
35
+ * @throws {@link InsufficientPrivilegesException} (client fault)
36
+ * <p>The specified account does not have sufficient privileges for one or more AWS
37
+ * services.</p>
38
+ *
39
+ * @throws {@link TooManyBucketsException} (client fault)
40
+ * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
41
+ *
42
+ *
35
43
  * @example To validate configuration settings
36
44
  * ```javascript
37
45
  * // The following operation validates a CloudWatch custom metrics config document:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-beanstalk",
3
3
  "description": "AWS SDK for JavaScript Elastic Beanstalk 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,57 +20,52 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
45
- "@aws-sdk/util-base64": "3.208.0",
46
- "@aws-sdk/util-body-length-browser": "3.188.0",
47
- "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
54
- "@aws-sdk/util-utf8": "3.254.0",
55
- "@aws-sdk/util-waiter": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.292.0",
24
+ "@aws-sdk/config-resolver": "3.292.0",
25
+ "@aws-sdk/credential-provider-node": "3.292.0",
26
+ "@aws-sdk/fetch-http-handler": "3.292.0",
27
+ "@aws-sdk/hash-node": "3.292.0",
28
+ "@aws-sdk/invalid-dependency": "3.292.0",
29
+ "@aws-sdk/middleware-content-length": "3.292.0",
30
+ "@aws-sdk/middleware-endpoint": "3.292.0",
31
+ "@aws-sdk/middleware-host-header": "3.292.0",
32
+ "@aws-sdk/middleware-logger": "3.292.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
34
+ "@aws-sdk/middleware-retry": "3.292.0",
35
+ "@aws-sdk/middleware-serde": "3.292.0",
36
+ "@aws-sdk/middleware-signing": "3.292.0",
37
+ "@aws-sdk/middleware-stack": "3.292.0",
38
+ "@aws-sdk/middleware-user-agent": "3.292.0",
39
+ "@aws-sdk/node-config-provider": "3.292.0",
40
+ "@aws-sdk/node-http-handler": "3.292.0",
41
+ "@aws-sdk/protocol-http": "3.292.0",
42
+ "@aws-sdk/smithy-client": "3.292.0",
43
+ "@aws-sdk/types": "3.292.0",
44
+ "@aws-sdk/url-parser": "3.292.0",
45
+ "@aws-sdk/util-base64": "3.292.0",
46
+ "@aws-sdk/util-body-length-browser": "3.292.0",
47
+ "@aws-sdk/util-body-length-node": "3.292.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
50
+ "@aws-sdk/util-endpoints": "3.292.0",
51
+ "@aws-sdk/util-retry": "3.292.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
53
+ "@aws-sdk/util-user-agent-node": "3.292.0",
54
+ "@aws-sdk/util-utf8": "3.292.0",
55
+ "@aws-sdk/util-waiter": "3.292.0",
56
56
  "fast-xml-parser": "4.1.2",
57
57
  "tslib": "^2.3.1"
58
58
  },
59
59
  "devDependencies": {
60
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
60
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
61
61
  "@tsconfig/node14": "1.0.3",
62
62
  "@types/node": "^14.14.31",
63
63
  "concurrently": "7.0.0",
64
64
  "downlevel-dts": "0.10.1",
65
65
  "rimraf": "3.0.2",
66
- "typedoc": "0.19.2",
66
+ "typedoc": "0.23.23",
67
67
  "typescript": "~4.6.2"
68
68
  },
69
- "overrides": {
70
- "typedoc": {
71
- "typescript": "~4.6.2"
72
- }
73
- },
74
69
  "engines": {
75
70
  "node": ">=14.0.0"
76
71
  },