@aws-sdk/client-compute-optimizer-automation 3.938.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 (173) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +392 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1668 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/ComputeOptimizerAutomation.js +53 -0
  12. package/dist-es/ComputeOptimizerAutomationClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AssociateAccountsCommand.js +16 -0
  16. package/dist-es/commands/CreateAutomationRuleCommand.js +16 -0
  17. package/dist-es/commands/DeleteAutomationRuleCommand.js +16 -0
  18. package/dist-es/commands/DisassociateAccountsCommand.js +16 -0
  19. package/dist-es/commands/GetAutomationEventCommand.js +16 -0
  20. package/dist-es/commands/GetAutomationRuleCommand.js +16 -0
  21. package/dist-es/commands/GetEnrollmentConfigurationCommand.js +16 -0
  22. package/dist-es/commands/ListAccountsCommand.js +16 -0
  23. package/dist-es/commands/ListAutomationEventStepsCommand.js +16 -0
  24. package/dist-es/commands/ListAutomationEventSummariesCommand.js +16 -0
  25. package/dist-es/commands/ListAutomationEventsCommand.js +16 -0
  26. package/dist-es/commands/ListAutomationRulePreviewCommand.js +16 -0
  27. package/dist-es/commands/ListAutomationRulePreviewSummariesCommand.js +16 -0
  28. package/dist-es/commands/ListAutomationRulesCommand.js +16 -0
  29. package/dist-es/commands/ListRecommendedActionSummariesCommand.js +16 -0
  30. package/dist-es/commands/ListRecommendedActionsCommand.js +16 -0
  31. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  32. package/dist-es/commands/RollbackAutomationEventCommand.js +16 -0
  33. package/dist-es/commands/StartAutomationEventCommand.js +16 -0
  34. package/dist-es/commands/TagResourceCommand.js +16 -0
  35. package/dist-es/commands/UntagResourceCommand.js +16 -0
  36. package/dist-es/commands/UpdateAutomationRuleCommand.js +16 -0
  37. package/dist-es/commands/UpdateEnrollmentConfigurationCommand.js +16 -0
  38. package/dist-es/commands/index.js +23 -0
  39. package/dist-es/endpoint/EndpointParameters.js +13 -0
  40. package/dist-es/endpoint/endpointResolver.js +14 -0
  41. package/dist-es/endpoint/ruleset.js +4 -0
  42. package/dist-es/extensionConfiguration.js +1 -0
  43. package/dist-es/index.js +7 -0
  44. package/dist-es/models/ComputeOptimizerAutomationServiceException.js +8 -0
  45. package/dist-es/models/enums.js +74 -0
  46. package/dist-es/models/errors.js +145 -0
  47. package/dist-es/models/models_0.js +28 -0
  48. package/dist-es/pagination/Interfaces.js +1 -0
  49. package/dist-es/pagination/ListAccountsPaginator.js +4 -0
  50. package/dist-es/pagination/ListAutomationEventStepsPaginator.js +4 -0
  51. package/dist-es/pagination/ListAutomationEventSummariesPaginator.js +4 -0
  52. package/dist-es/pagination/ListAutomationEventsPaginator.js +4 -0
  53. package/dist-es/pagination/ListAutomationRulePreviewPaginator.js +4 -0
  54. package/dist-es/pagination/ListAutomationRulePreviewSummariesPaginator.js +4 -0
  55. package/dist-es/pagination/ListAutomationRulesPaginator.js +4 -0
  56. package/dist-es/pagination/ListRecommendedActionSummariesPaginator.js +4 -0
  57. package/dist-es/pagination/ListRecommendedActionsPaginator.js +4 -0
  58. package/dist-es/pagination/index.js +10 -0
  59. package/dist-es/runtimeConfig.browser.js +34 -0
  60. package/dist-es/runtimeConfig.js +51 -0
  61. package/dist-es/runtimeConfig.native.js +11 -0
  62. package/dist-es/runtimeConfig.shared.js +37 -0
  63. package/dist-es/runtimeExtensions.js +9 -0
  64. package/dist-es/schemas/schemas_0.js +950 -0
  65. package/dist-types/ComputeOptimizerAutomation.d.ts +178 -0
  66. package/dist-types/ComputeOptimizerAutomationClient.d.ts +219 -0
  67. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  68. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  69. package/dist-types/commands/AssociateAccountsCommand.d.ts +112 -0
  70. package/dist-types/commands/CreateAutomationRuleCommand.d.ts +294 -0
  71. package/dist-types/commands/DeleteAutomationRuleCommand.d.ts +104 -0
  72. package/dist-types/commands/DisassociateAccountsCommand.d.ts +112 -0
  73. package/dist-types/commands/GetAutomationEventCommand.d.ts +117 -0
  74. package/dist-types/commands/GetAutomationRuleCommand.d.ts +195 -0
  75. package/dist-types/commands/GetEnrollmentConfigurationCommand.d.ts +99 -0
  76. package/dist-types/commands/ListAccountsCommand.d.ts +108 -0
  77. package/dist-types/commands/ListAutomationEventStepsCommand.d.ts +117 -0
  78. package/dist-types/commands/ListAutomationEventSummariesCommand.d.ts +130 -0
  79. package/dist-types/commands/ListAutomationEventsCommand.d.ts +130 -0
  80. package/dist-types/commands/ListAutomationRulePreviewCommand.d.ts +219 -0
  81. package/dist-types/commands/ListAutomationRulePreviewSummariesCommand.d.ts +186 -0
  82. package/dist-types/commands/ListAutomationRulesCommand.d.ts +133 -0
  83. package/dist-types/commands/ListRecommendedActionSummariesCommand.d.ts +118 -0
  84. package/dist-types/commands/ListRecommendedActionsCommand.d.ts +151 -0
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +103 -0
  86. package/dist-types/commands/RollbackAutomationEventCommand.d.ts +106 -0
  87. package/dist-types/commands/StartAutomationEventCommand.d.ts +110 -0
  88. package/dist-types/commands/TagResourceCommand.d.ts +110 -0
  89. package/dist-types/commands/UntagResourceCommand.d.ts +107 -0
  90. package/dist-types/commands/UpdateAutomationRuleCommand.d.ts +281 -0
  91. package/dist-types/commands/UpdateEnrollmentConfigurationCommand.d.ts +110 -0
  92. package/dist-types/commands/index.d.ts +23 -0
  93. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  94. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  95. package/dist-types/endpoint/ruleset.d.ts +2 -0
  96. package/dist-types/extensionConfiguration.d.ts +9 -0
  97. package/dist-types/index.d.ts +16 -0
  98. package/dist-types/models/ComputeOptimizerAutomationServiceException.d.ts +14 -0
  99. package/dist-types/models/enums.d.ts +178 -0
  100. package/dist-types/models/errors.d.ts +146 -0
  101. package/dist-types/models/models_0.d.ts +2028 -0
  102. package/dist-types/pagination/Interfaces.d.ts +8 -0
  103. package/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/ListAutomationEventStepsPaginator.d.ts +7 -0
  105. package/dist-types/pagination/ListAutomationEventSummariesPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListAutomationEventsPaginator.d.ts +7 -0
  107. package/dist-types/pagination/ListAutomationRulePreviewPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListAutomationRulePreviewSummariesPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListAutomationRulesPaginator.d.ts +7 -0
  110. package/dist-types/pagination/ListRecommendedActionSummariesPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListRecommendedActionsPaginator.d.ts +7 -0
  112. package/dist-types/pagination/index.d.ts +10 -0
  113. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  114. package/dist-types/runtimeConfig.d.ts +51 -0
  115. package/dist-types/runtimeConfig.native.d.ts +50 -0
  116. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  117. package/dist-types/runtimeExtensions.d.ts +17 -0
  118. package/dist-types/schemas/schemas_0.d.ts +141 -0
  119. package/dist-types/ts3.4/ComputeOptimizerAutomation.d.ts +411 -0
  120. package/dist-types/ts3.4/ComputeOptimizerAutomationClient.d.ts +264 -0
  121. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  122. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  123. package/dist-types/ts3.4/commands/AssociateAccountsCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateAutomationRuleCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/DeleteAutomationRuleCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetAutomationEventCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/GetAutomationRuleCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/GetEnrollmentConfigurationCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
  131. package/dist-types/ts3.4/commands/ListAutomationEventStepsCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/ListAutomationEventSummariesCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/ListAutomationEventsCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListAutomationRulePreviewCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListAutomationRulePreviewSummariesCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/ListAutomationRulesCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ListRecommendedActionSummariesCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/ListRecommendedActionsCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  140. package/dist-types/ts3.4/commands/RollbackAutomationEventCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/StartAutomationEventCommand.d.ts +51 -0
  142. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  143. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  144. package/dist-types/ts3.4/commands/UpdateAutomationRuleCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/UpdateEnrollmentConfigurationCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/index.d.ts +23 -0
  147. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  148. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  149. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  150. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  151. package/dist-types/ts3.4/index.d.ts +11 -0
  152. package/dist-types/ts3.4/models/ComputeOptimizerAutomationServiceException.d.ts +9 -0
  153. package/dist-types/ts3.4/models/enums.d.ts +93 -0
  154. package/dist-types/ts3.4/models/errors.d.ts +87 -0
  155. package/dist-types/ts3.4/models/models_0.d.ts +520 -0
  156. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  157. package/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
  158. package/dist-types/ts3.4/pagination/ListAutomationEventStepsPaginator.d.ts +11 -0
  159. package/dist-types/ts3.4/pagination/ListAutomationEventSummariesPaginator.d.ts +11 -0
  160. package/dist-types/ts3.4/pagination/ListAutomationEventsPaginator.d.ts +11 -0
  161. package/dist-types/ts3.4/pagination/ListAutomationRulePreviewPaginator.d.ts +11 -0
  162. package/dist-types/ts3.4/pagination/ListAutomationRulePreviewSummariesPaginator.d.ts +11 -0
  163. package/dist-types/ts3.4/pagination/ListAutomationRulesPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListRecommendedActionSummariesPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListRecommendedActionsPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  167. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +98 -0
  168. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  169. package/dist-types/ts3.4/runtimeConfig.native.d.ts +102 -0
  170. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
  171. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  172. package/dist-types/ts3.4/schemas/schemas_0.d.ts +146 -0
  173. package/package.json +99 -0
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class ComputeOptimizerAutomationServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1,93 @@
1
+ export declare const OrganizationRuleMode: {
2
+ readonly ANY_ALLOWED: "AnyAllowed";
3
+ readonly NONE_ALLOWED: "NoneAllowed";
4
+ };
5
+ export type OrganizationRuleMode =
6
+ (typeof OrganizationRuleMode)[keyof typeof OrganizationRuleMode];
7
+ export declare const EnrollmentStatus: {
8
+ readonly ACTIVE: "Active";
9
+ readonly FAILED: "Failed";
10
+ readonly INACTIVE: "Inactive";
11
+ readonly PENDING: "Pending";
12
+ };
13
+ export type EnrollmentStatus =
14
+ (typeof EnrollmentStatus)[keyof typeof EnrollmentStatus];
15
+ export declare const SavingsEstimationMode: {
16
+ readonly AFTER_DISCOUNT: "AfterDiscount";
17
+ readonly BEFORE_DISCOUNT: "BeforeDiscount";
18
+ };
19
+ export type SavingsEstimationMode =
20
+ (typeof SavingsEstimationMode)[keyof typeof SavingsEstimationMode];
21
+ export declare const EventStatus: {
22
+ readonly CANCELLED: "Cancelled";
23
+ readonly COMPLETE: "Complete";
24
+ readonly FAILED: "Failed";
25
+ readonly IN_PROGRESS: "InProgress";
26
+ readonly READY: "Ready";
27
+ readonly ROLLBACK_COMPLETE: "RollbackComplete";
28
+ readonly ROLLBACK_FAILED: "RollbackFailed";
29
+ readonly ROLLBACK_IN_PROGRESS: "RollbackInProgress";
30
+ readonly ROLLBACK_READY: "RollbackReady";
31
+ };
32
+ export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus];
33
+ export declare const EventType: {
34
+ readonly SNAPSHOT_AND_DELETE_UNATTACHED_EBS_VOLUME: "SnapshotAndDeleteUnattachedEbsVolume";
35
+ readonly UPGRADE_EBS_VOLUME_TYPE: "UpgradeEbsVolumeType";
36
+ };
37
+ export type EventType = (typeof EventType)[keyof typeof EventType];
38
+ export declare const ResourceType: {
39
+ readonly EBS_VOLUME: "EbsVolume";
40
+ };
41
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
42
+ export declare const StepStatus: {
43
+ readonly COMPLETE: "Complete";
44
+ readonly FAILED: "Failed";
45
+ readonly IN_PROGRESS: "InProgress";
46
+ readonly READY: "Ready";
47
+ };
48
+ export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
49
+ export declare const StepType: {
50
+ readonly CREATE_EBS_SNAPSHOT: "CreateEbsSnapshot";
51
+ readonly CREATE_EBS_VOLUME: "CreateEbsVolume";
52
+ readonly DELETE_EBS_VOLUME: "DeleteEbsVolume";
53
+ readonly MODIFY_EBS_VOLUME: "ModifyEbsVolume";
54
+ };
55
+ export type StepType = (typeof StepType)[keyof typeof StepType];
56
+ export declare const RuleApplyOrder: {
57
+ readonly AFTER_ACCOUNT_RULES: "AfterAccountRules";
58
+ readonly BEFORE_ACCOUNT_RULES: "BeforeAccountRules";
59
+ };
60
+ export type RuleApplyOrder =
61
+ (typeof RuleApplyOrder)[keyof typeof RuleApplyOrder];
62
+ export declare const RecommendedActionType: {
63
+ readonly SNAPSHOT_AND_DELETE_UNATTACHED_EBS_VOLUME: "SnapshotAndDeleteUnattachedEbsVolume";
64
+ readonly UPGRADE_EBS_VOLUME_TYPE: "UpgradeEbsVolumeType";
65
+ };
66
+ export type RecommendedActionType =
67
+ (typeof RecommendedActionType)[keyof typeof RecommendedActionType];
68
+ export declare const RuleType: {
69
+ readonly ACCOUNT_RULE: "AccountRule";
70
+ readonly ORGANIZATIONAL_RULE: "OrganizationRule";
71
+ };
72
+ export type RuleType = (typeof RuleType)[keyof typeof RuleType];
73
+ export declare const RuleStatus: {
74
+ readonly ACTIVE: "Active";
75
+ readonly INACTIVE: "Inactive";
76
+ };
77
+ export type RuleStatus = (typeof RuleStatus)[keyof typeof RuleStatus];
78
+ export declare const ComparisonOperator: {
79
+ readonly NUMERIC_EQUALS: "NumericEquals";
80
+ readonly NUMERIC_GREATER_THAN: "NumericGreaterThan";
81
+ readonly NUMERIC_GREATER_THAN_EQUALS: "NumericGreaterThanEquals";
82
+ readonly NUMERIC_LESS_THAN: "NumericLessThan";
83
+ readonly NUMERIC_LESS_THAN_EQUALS: "NumericLessThanEquals";
84
+ readonly NUMERIC_NOT_EQUALS: "NumericNotEquals";
85
+ readonly STRING_EQUALS: "StringEquals";
86
+ readonly STRING_EQUALS_IGNORE_CASE: "StringEqualsIgnoreCase";
87
+ readonly STRING_LIKE: "StringLike";
88
+ readonly STRING_NOT_EQUALS: "StringNotEquals";
89
+ readonly STRING_NOT_EQUALS_IGNORE_CASE: "StringNotEqualsIgnoreCase";
90
+ readonly STRING_NOT_LIKE: "StringNotLike";
91
+ };
92
+ export type ComparisonOperator =
93
+ (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
@@ -0,0 +1,87 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ComputeOptimizerAutomationServiceException as __BaseException } from "./ComputeOptimizerAutomationServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ForbiddenException extends __BaseException {
11
+ readonly name: "ForbiddenException";
12
+ readonly $fault: "client";
13
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
14
+ }
15
+ export declare class IdempotencyTokenInUseException extends __BaseException {
16
+ readonly name: "IdempotencyTokenInUseException";
17
+ readonly $fault: "client";
18
+ constructor(
19
+ opts: __ExceptionOptionType<IdempotencyTokenInUseException, __BaseException>
20
+ );
21
+ }
22
+ export declare class IdempotentParameterMismatchException extends __BaseException {
23
+ readonly name: "IdempotentParameterMismatchException";
24
+ readonly $fault: "client";
25
+ constructor(
26
+ opts: __ExceptionOptionType<
27
+ IdempotentParameterMismatchException,
28
+ __BaseException
29
+ >
30
+ );
31
+ }
32
+ export declare class InternalServerException extends __BaseException {
33
+ readonly name: "InternalServerException";
34
+ readonly $fault: "server";
35
+ constructor(
36
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
37
+ );
38
+ }
39
+ export declare class InvalidParameterValueException extends __BaseException {
40
+ readonly name: "InvalidParameterValueException";
41
+ readonly $fault: "client";
42
+ constructor(
43
+ opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
44
+ );
45
+ }
46
+ export declare class NotManagementAccountException extends __BaseException {
47
+ readonly name: "NotManagementAccountException";
48
+ readonly $fault: "client";
49
+ constructor(
50
+ opts: __ExceptionOptionType<NotManagementAccountException, __BaseException>
51
+ );
52
+ }
53
+ export declare class OptInRequiredException extends __BaseException {
54
+ readonly name: "OptInRequiredException";
55
+ readonly $fault: "client";
56
+ constructor(
57
+ opts: __ExceptionOptionType<OptInRequiredException, __BaseException>
58
+ );
59
+ }
60
+ export declare class ServiceUnavailableException extends __BaseException {
61
+ readonly name: "ServiceUnavailableException";
62
+ readonly $fault: "server";
63
+ constructor(
64
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
65
+ );
66
+ }
67
+ export declare class ThrottlingException extends __BaseException {
68
+ readonly name: "ThrottlingException";
69
+ readonly $fault: "client";
70
+ constructor(
71
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
72
+ );
73
+ }
74
+ export declare class ResourceNotFoundException extends __BaseException {
75
+ readonly name: "ResourceNotFoundException";
76
+ readonly $fault: "client";
77
+ constructor(
78
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
79
+ );
80
+ }
81
+ export declare class ServiceQuotaExceededException extends __BaseException {
82
+ readonly name: "ServiceQuotaExceededException";
83
+ readonly $fault: "client";
84
+ constructor(
85
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
86
+ );
87
+ }