@aws-sdk/client-service-quotas 3.926.0 → 3.928.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 (45) hide show
  1. package/dist-cjs/index.js +922 -1080
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/ServiceQuotasClient.js +2 -0
  4. package/dist-es/commands/AssociateServiceQuotaTemplateCommand.js +3 -9
  5. package/dist-es/commands/CreateSupportCaseCommand.js +3 -9
  6. package/dist-es/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.js +3 -9
  7. package/dist-es/commands/DisassociateServiceQuotaTemplateCommand.js +3 -9
  8. package/dist-es/commands/GetAWSDefaultServiceQuotaCommand.js +3 -9
  9. package/dist-es/commands/GetAssociationForServiceQuotaTemplateCommand.js +3 -9
  10. package/dist-es/commands/GetAutoManagementConfigurationCommand.js +3 -9
  11. package/dist-es/commands/GetRequestedServiceQuotaChangeCommand.js +3 -9
  12. package/dist-es/commands/GetServiceQuotaCommand.js +3 -9
  13. package/dist-es/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.js +3 -9
  14. package/dist-es/commands/ListAWSDefaultServiceQuotasCommand.js +3 -9
  15. package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.js +3 -9
  16. package/dist-es/commands/ListRequestedServiceQuotaChangeHistoryCommand.js +3 -9
  17. package/dist-es/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.js +3 -9
  18. package/dist-es/commands/ListServiceQuotasCommand.js +3 -9
  19. package/dist-es/commands/ListServicesCommand.js +3 -9
  20. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  21. package/dist-es/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.js +3 -9
  22. package/dist-es/commands/RequestServiceQuotaIncreaseCommand.js +3 -9
  23. package/dist-es/commands/StartAutoManagementCommand.js +3 -9
  24. package/dist-es/commands/StopAutoManagementCommand.js +3 -9
  25. package/dist-es/commands/TagResourceCommand.js +3 -9
  26. package/dist-es/commands/UntagResourceCommand.js +3 -9
  27. package/dist-es/commands/UpdateAutoManagementCommand.js +3 -9
  28. package/dist-es/runtimeConfig.shared.js +7 -0
  29. package/dist-es/schemas/schemas_0.js +826 -0
  30. package/dist-types/ServiceQuotasClient.d.ts +10 -1
  31. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  32. package/dist-types/runtimeConfig.d.ts +1 -0
  33. package/dist-types/runtimeConfig.native.d.ts +1 -0
  34. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  35. package/dist-types/schemas/schemas_0.d.ts +114 -0
  36. package/dist-types/ts3.4/ServiceQuotasClient.d.ts +4 -0
  37. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  38. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  39. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  40. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +120 -0
  42. package/package.json +5 -5
  43. package/dist-es/protocols/Aws_json1_1.js +0 -865
  44. package/dist-types/protocols/Aws_json1_1.d.ts +0 -218
  45. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -293
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { AssociateServiceQuotaTemplateCommandInput, AssociateServiceQuotaTemplateCommandOutput } from "./commands/AssociateServiceQuotaTemplateCommand";
11
11
  import { CreateSupportCaseCommandInput, CreateSupportCaseCommandOutput } from "./commands/CreateSupportCaseCommand";
@@ -165,6 +165,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
165
165
  * Optional extensions
166
166
  */
167
167
  extensions?: RuntimeExtension[];
168
+ /**
169
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
170
+ * may be overridden. A default will always be set by the client.
171
+ * Available options depend on the service's supported protocols and will not be validated by
172
+ * the client.
173
+ * @alpha
174
+ *
175
+ */
176
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
168
177
  /**
169
178
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
170
179
  */
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ServiceQuotasHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,114 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AccessDeniedException: StaticErrorSchema;
3
+ export declare var AssociateServiceQuotaTemplateRequest: StaticStructureSchema;
4
+ export declare var AssociateServiceQuotaTemplateResponse: StaticStructureSchema;
5
+ export declare var AWSServiceAccessNotEnabledException: StaticErrorSchema;
6
+ export declare var CreateSupportCaseRequest: StaticStructureSchema;
7
+ export declare var CreateSupportCaseResponse: StaticStructureSchema;
8
+ export declare var DeleteServiceQuotaIncreaseRequestFromTemplateRequest: StaticStructureSchema;
9
+ export declare var DeleteServiceQuotaIncreaseRequestFromTemplateResponse: StaticStructureSchema;
10
+ export declare var DependencyAccessDeniedException: StaticErrorSchema;
11
+ export declare var DisassociateServiceQuotaTemplateRequest: StaticStructureSchema;
12
+ export declare var DisassociateServiceQuotaTemplateResponse: StaticStructureSchema;
13
+ export declare var ErrorReason: StaticStructureSchema;
14
+ export declare var GetAssociationForServiceQuotaTemplateRequest: StaticStructureSchema;
15
+ export declare var GetAssociationForServiceQuotaTemplateResponse: StaticStructureSchema;
16
+ export declare var GetAutoManagementConfigurationRequest: StaticStructureSchema;
17
+ export declare var GetAutoManagementConfigurationResponse: StaticStructureSchema;
18
+ export declare var GetAWSDefaultServiceQuotaRequest: StaticStructureSchema;
19
+ export declare var GetAWSDefaultServiceQuotaResponse: StaticStructureSchema;
20
+ export declare var GetRequestedServiceQuotaChangeRequest: StaticStructureSchema;
21
+ export declare var GetRequestedServiceQuotaChangeResponse: StaticStructureSchema;
22
+ export declare var GetServiceQuotaIncreaseRequestFromTemplateRequest: StaticStructureSchema;
23
+ export declare var GetServiceQuotaIncreaseRequestFromTemplateResponse: StaticStructureSchema;
24
+ export declare var GetServiceQuotaRequest: StaticStructureSchema;
25
+ export declare var GetServiceQuotaResponse: StaticStructureSchema;
26
+ export declare var IllegalArgumentException: StaticErrorSchema;
27
+ export declare var InvalidPaginationTokenException: StaticErrorSchema;
28
+ export declare var InvalidResourceStateException: StaticErrorSchema;
29
+ export declare var ListAWSDefaultServiceQuotasRequest: StaticStructureSchema;
30
+ export declare var ListAWSDefaultServiceQuotasResponse: StaticStructureSchema;
31
+ export declare var ListRequestedServiceQuotaChangeHistoryByQuotaRequest: StaticStructureSchema;
32
+ export declare var ListRequestedServiceQuotaChangeHistoryByQuotaResponse: StaticStructureSchema;
33
+ export declare var ListRequestedServiceQuotaChangeHistoryRequest: StaticStructureSchema;
34
+ export declare var ListRequestedServiceQuotaChangeHistoryResponse: StaticStructureSchema;
35
+ export declare var ListServiceQuotaIncreaseRequestsInTemplateRequest: StaticStructureSchema;
36
+ export declare var ListServiceQuotaIncreaseRequestsInTemplateResponse: StaticStructureSchema;
37
+ export declare var ListServiceQuotasRequest: StaticStructureSchema;
38
+ export declare var ListServiceQuotasResponse: StaticStructureSchema;
39
+ export declare var ListServicesRequest: StaticStructureSchema;
40
+ export declare var ListServicesResponse: StaticStructureSchema;
41
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
42
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
43
+ export declare var MetricInfo: StaticStructureSchema;
44
+ export declare var NoAvailableOrganizationException: StaticErrorSchema;
45
+ export declare var NoSuchResourceException: StaticErrorSchema;
46
+ export declare var OrganizationNotInAllFeaturesModeException: StaticErrorSchema;
47
+ export declare var PutServiceQuotaIncreaseRequestIntoTemplateRequest: StaticStructureSchema;
48
+ export declare var PutServiceQuotaIncreaseRequestIntoTemplateResponse: StaticStructureSchema;
49
+ export declare var QuotaContextInfo: StaticStructureSchema;
50
+ export declare var QuotaExceededException: StaticErrorSchema;
51
+ export declare var QuotaInfo: StaticStructureSchema;
52
+ export declare var QuotaPeriod: StaticStructureSchema;
53
+ export declare var RequestedServiceQuotaChange: StaticStructureSchema;
54
+ export declare var RequestServiceQuotaIncreaseRequest: StaticStructureSchema;
55
+ export declare var RequestServiceQuotaIncreaseResponse: StaticStructureSchema;
56
+ export declare var ResourceAlreadyExistsException: StaticErrorSchema;
57
+ export declare var ServiceException: StaticErrorSchema;
58
+ export declare var ServiceInfo: StaticStructureSchema;
59
+ export declare var ServiceQuota: StaticStructureSchema;
60
+ export declare var ServiceQuotaIncreaseRequestInTemplate: StaticStructureSchema;
61
+ export declare var ServiceQuotaTemplateNotInUseException: StaticErrorSchema;
62
+ export declare var StartAutoManagementRequest: StaticStructureSchema;
63
+ export declare var StartAutoManagementResponse: StaticStructureSchema;
64
+ export declare var StopAutoManagementRequest: StaticStructureSchema;
65
+ export declare var StopAutoManagementResponse: StaticStructureSchema;
66
+ export declare var Tag: StaticStructureSchema;
67
+ export declare var TagPolicyViolationException: StaticErrorSchema;
68
+ export declare var TagResourceRequest: StaticStructureSchema;
69
+ export declare var TagResourceResponse: StaticStructureSchema;
70
+ export declare var TemplatesNotAvailableInRegionException: StaticErrorSchema;
71
+ export declare var TooManyRequestsException: StaticErrorSchema;
72
+ export declare var TooManyTagsException: StaticErrorSchema;
73
+ export declare var UntagResourceRequest: StaticStructureSchema;
74
+ export declare var UntagResourceResponse: StaticStructureSchema;
75
+ export declare var UpdateAutoManagementRequest: StaticStructureSchema;
76
+ export declare var UpdateAutoManagementResponse: StaticStructureSchema;
77
+ export declare var __Unit: "unit";
78
+ export declare var ServiceQuotasServiceException: StaticErrorSchema;
79
+ export declare var ExcludedQuotaList: number;
80
+ export declare var InputTagKeys: number;
81
+ export declare var InputTags: StaticListSchema;
82
+ export declare var OutputTags: StaticListSchema;
83
+ export declare var QuotaInfoList: StaticListSchema;
84
+ export declare var RequestedServiceQuotaChangeHistoryListDefinition: StaticListSchema;
85
+ export declare var ServiceInfoListDefinition: StaticListSchema;
86
+ export declare var ServiceQuotaIncreaseRequestInTemplateList: StaticListSchema;
87
+ export declare var ServiceQuotaListDefinition: StaticListSchema;
88
+ export declare var ExclusionList: StaticMapSchema;
89
+ export declare var ExclusionQuotaList: StaticMapSchema;
90
+ export declare var MetricDimensionsMapDefinition: number;
91
+ export declare var AssociateServiceQuotaTemplate: StaticOperationSchema;
92
+ export declare var CreateSupportCase: StaticOperationSchema;
93
+ export declare var DeleteServiceQuotaIncreaseRequestFromTemplate: StaticOperationSchema;
94
+ export declare var DisassociateServiceQuotaTemplate: StaticOperationSchema;
95
+ export declare var GetAssociationForServiceQuotaTemplate: StaticOperationSchema;
96
+ export declare var GetAutoManagementConfiguration: StaticOperationSchema;
97
+ export declare var GetAWSDefaultServiceQuota: StaticOperationSchema;
98
+ export declare var GetRequestedServiceQuotaChange: StaticOperationSchema;
99
+ export declare var GetServiceQuota: StaticOperationSchema;
100
+ export declare var GetServiceQuotaIncreaseRequestFromTemplate: StaticOperationSchema;
101
+ export declare var ListAWSDefaultServiceQuotas: StaticOperationSchema;
102
+ export declare var ListRequestedServiceQuotaChangeHistory: StaticOperationSchema;
103
+ export declare var ListRequestedServiceQuotaChangeHistoryByQuota: StaticOperationSchema;
104
+ export declare var ListServiceQuotaIncreaseRequestsInTemplate: StaticOperationSchema;
105
+ export declare var ListServiceQuotas: StaticOperationSchema;
106
+ export declare var ListServices: StaticOperationSchema;
107
+ export declare var ListTagsForResource: StaticOperationSchema;
108
+ export declare var PutServiceQuotaIncreaseRequestIntoTemplate: StaticOperationSchema;
109
+ export declare var RequestServiceQuotaIncrease: StaticOperationSchema;
110
+ export declare var StartAutoManagement: StaticOperationSchema;
111
+ export declare var StopAutoManagement: StaticOperationSchema;
112
+ export declare var TagResource: StaticOperationSchema;
113
+ export declare var UntagResource: StaticOperationSchema;
114
+ export declare var UpdateAutoManagement: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -222,6 +225,7 @@ export interface ClientDefaults
222
225
  retryMode?: string | __Provider<string>;
223
226
  logger?: __Logger;
224
227
  extensions?: RuntimeExtension[];
228
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
225
229
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
226
230
  }
227
231
  export type ServiceQuotasClientConfigType = Partial<
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  userAgentAppId?:
43
47
  | string
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
38
38
  profile?: string;
39
39
  logger: import("@smithy/types").Logger;
40
40
  extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ protocol: import("@smithy/types").ClientProtocol<
42
+ import("@smithy/types").HttpRequest,
43
+ import("@smithy/types").HttpResponse
44
+ >;
41
45
  customUserAgent?: string | import("@smithy/types").UserAgent;
42
46
  retryStrategy?:
43
47
  | import("@smithy/types").RetryStrategy
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
37
37
  retryMode: string | import("@smithy/types").Provider<string>;
38
38
  logger: import("@smithy/types").Logger;
39
39
  extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ protocol: import("@smithy/types").ClientProtocol<
41
+ import("@smithy/types").HttpRequest,
42
+ import("@smithy/types").HttpResponse
43
+ >;
40
44
  defaultsMode:
41
45
  | import("@smithy/smithy-client").DefaultsMode
42
46
  | import("@smithy/types").Provider<
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: ServiceQuotasClientConfig) => {
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ServiceQuotasHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<
18
+ import("@smithy/types").HttpRequest,
19
+ import("@smithy/types").HttpResponse
20
+ >;
17
21
  serviceId: string;
18
22
  urlParser: import("@smithy/types").UrlParser;
19
23
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,120 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticMapSchema,
5
+ StaticOperationSchema,
6
+ StaticStructureSchema,
7
+ } from "@smithy/types";
8
+ export declare var AccessDeniedException: StaticErrorSchema;
9
+ export declare var AssociateServiceQuotaTemplateRequest: StaticStructureSchema;
10
+ export declare var AssociateServiceQuotaTemplateResponse: StaticStructureSchema;
11
+ export declare var AWSServiceAccessNotEnabledException: StaticErrorSchema;
12
+ export declare var CreateSupportCaseRequest: StaticStructureSchema;
13
+ export declare var CreateSupportCaseResponse: StaticStructureSchema;
14
+ export declare var DeleteServiceQuotaIncreaseRequestFromTemplateRequest: StaticStructureSchema;
15
+ export declare var DeleteServiceQuotaIncreaseRequestFromTemplateResponse: StaticStructureSchema;
16
+ export declare var DependencyAccessDeniedException: StaticErrorSchema;
17
+ export declare var DisassociateServiceQuotaTemplateRequest: StaticStructureSchema;
18
+ export declare var DisassociateServiceQuotaTemplateResponse: StaticStructureSchema;
19
+ export declare var ErrorReason: StaticStructureSchema;
20
+ export declare var GetAssociationForServiceQuotaTemplateRequest: StaticStructureSchema;
21
+ export declare var GetAssociationForServiceQuotaTemplateResponse: StaticStructureSchema;
22
+ export declare var GetAutoManagementConfigurationRequest: StaticStructureSchema;
23
+ export declare var GetAutoManagementConfigurationResponse: StaticStructureSchema;
24
+ export declare var GetAWSDefaultServiceQuotaRequest: StaticStructureSchema;
25
+ export declare var GetAWSDefaultServiceQuotaResponse: StaticStructureSchema;
26
+ export declare var GetRequestedServiceQuotaChangeRequest: StaticStructureSchema;
27
+ export declare var GetRequestedServiceQuotaChangeResponse: StaticStructureSchema;
28
+ export declare var GetServiceQuotaIncreaseRequestFromTemplateRequest: StaticStructureSchema;
29
+ export declare var GetServiceQuotaIncreaseRequestFromTemplateResponse: StaticStructureSchema;
30
+ export declare var GetServiceQuotaRequest: StaticStructureSchema;
31
+ export declare var GetServiceQuotaResponse: StaticStructureSchema;
32
+ export declare var IllegalArgumentException: StaticErrorSchema;
33
+ export declare var InvalidPaginationTokenException: StaticErrorSchema;
34
+ export declare var InvalidResourceStateException: StaticErrorSchema;
35
+ export declare var ListAWSDefaultServiceQuotasRequest: StaticStructureSchema;
36
+ export declare var ListAWSDefaultServiceQuotasResponse: StaticStructureSchema;
37
+ export declare var ListRequestedServiceQuotaChangeHistoryByQuotaRequest: StaticStructureSchema;
38
+ export declare var ListRequestedServiceQuotaChangeHistoryByQuotaResponse: StaticStructureSchema;
39
+ export declare var ListRequestedServiceQuotaChangeHistoryRequest: StaticStructureSchema;
40
+ export declare var ListRequestedServiceQuotaChangeHistoryResponse: StaticStructureSchema;
41
+ export declare var ListServiceQuotaIncreaseRequestsInTemplateRequest: StaticStructureSchema;
42
+ export declare var ListServiceQuotaIncreaseRequestsInTemplateResponse: StaticStructureSchema;
43
+ export declare var ListServiceQuotasRequest: StaticStructureSchema;
44
+ export declare var ListServiceQuotasResponse: StaticStructureSchema;
45
+ export declare var ListServicesRequest: StaticStructureSchema;
46
+ export declare var ListServicesResponse: StaticStructureSchema;
47
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
48
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
49
+ export declare var MetricInfo: StaticStructureSchema;
50
+ export declare var NoAvailableOrganizationException: StaticErrorSchema;
51
+ export declare var NoSuchResourceException: StaticErrorSchema;
52
+ export declare var OrganizationNotInAllFeaturesModeException: StaticErrorSchema;
53
+ export declare var PutServiceQuotaIncreaseRequestIntoTemplateRequest: StaticStructureSchema;
54
+ export declare var PutServiceQuotaIncreaseRequestIntoTemplateResponse: StaticStructureSchema;
55
+ export declare var QuotaContextInfo: StaticStructureSchema;
56
+ export declare var QuotaExceededException: StaticErrorSchema;
57
+ export declare var QuotaInfo: StaticStructureSchema;
58
+ export declare var QuotaPeriod: StaticStructureSchema;
59
+ export declare var RequestedServiceQuotaChange: StaticStructureSchema;
60
+ export declare var RequestServiceQuotaIncreaseRequest: StaticStructureSchema;
61
+ export declare var RequestServiceQuotaIncreaseResponse: StaticStructureSchema;
62
+ export declare var ResourceAlreadyExistsException: StaticErrorSchema;
63
+ export declare var ServiceException: StaticErrorSchema;
64
+ export declare var ServiceInfo: StaticStructureSchema;
65
+ export declare var ServiceQuota: StaticStructureSchema;
66
+ export declare var ServiceQuotaIncreaseRequestInTemplate: StaticStructureSchema;
67
+ export declare var ServiceQuotaTemplateNotInUseException: StaticErrorSchema;
68
+ export declare var StartAutoManagementRequest: StaticStructureSchema;
69
+ export declare var StartAutoManagementResponse: StaticStructureSchema;
70
+ export declare var StopAutoManagementRequest: StaticStructureSchema;
71
+ export declare var StopAutoManagementResponse: StaticStructureSchema;
72
+ export declare var Tag: StaticStructureSchema;
73
+ export declare var TagPolicyViolationException: StaticErrorSchema;
74
+ export declare var TagResourceRequest: StaticStructureSchema;
75
+ export declare var TagResourceResponse: StaticStructureSchema;
76
+ export declare var TemplatesNotAvailableInRegionException: StaticErrorSchema;
77
+ export declare var TooManyRequestsException: StaticErrorSchema;
78
+ export declare var TooManyTagsException: StaticErrorSchema;
79
+ export declare var UntagResourceRequest: StaticStructureSchema;
80
+ export declare var UntagResourceResponse: StaticStructureSchema;
81
+ export declare var UpdateAutoManagementRequest: StaticStructureSchema;
82
+ export declare var UpdateAutoManagementResponse: StaticStructureSchema;
83
+ export declare var __Unit: "unit";
84
+ export declare var ServiceQuotasServiceException: StaticErrorSchema;
85
+ export declare var ExcludedQuotaList: number;
86
+ export declare var InputTagKeys: number;
87
+ export declare var InputTags: StaticListSchema;
88
+ export declare var OutputTags: StaticListSchema;
89
+ export declare var QuotaInfoList: StaticListSchema;
90
+ export declare var RequestedServiceQuotaChangeHistoryListDefinition: StaticListSchema;
91
+ export declare var ServiceInfoListDefinition: StaticListSchema;
92
+ export declare var ServiceQuotaIncreaseRequestInTemplateList: StaticListSchema;
93
+ export declare var ServiceQuotaListDefinition: StaticListSchema;
94
+ export declare var ExclusionList: StaticMapSchema;
95
+ export declare var ExclusionQuotaList: StaticMapSchema;
96
+ export declare var MetricDimensionsMapDefinition: number;
97
+ export declare var AssociateServiceQuotaTemplate: StaticOperationSchema;
98
+ export declare var CreateSupportCase: StaticOperationSchema;
99
+ export declare var DeleteServiceQuotaIncreaseRequestFromTemplate: StaticOperationSchema;
100
+ export declare var DisassociateServiceQuotaTemplate: StaticOperationSchema;
101
+ export declare var GetAssociationForServiceQuotaTemplate: StaticOperationSchema;
102
+ export declare var GetAutoManagementConfiguration: StaticOperationSchema;
103
+ export declare var GetAWSDefaultServiceQuota: StaticOperationSchema;
104
+ export declare var GetRequestedServiceQuotaChange: StaticOperationSchema;
105
+ export declare var GetServiceQuota: StaticOperationSchema;
106
+ export declare var GetServiceQuotaIncreaseRequestFromTemplate: StaticOperationSchema;
107
+ export declare var ListAWSDefaultServiceQuotas: StaticOperationSchema;
108
+ export declare var ListRequestedServiceQuotaChangeHistory: StaticOperationSchema;
109
+ export declare var ListRequestedServiceQuotaChangeHistoryByQuota: StaticOperationSchema;
110
+ export declare var ListServiceQuotaIncreaseRequestsInTemplate: StaticOperationSchema;
111
+ export declare var ListServiceQuotas: StaticOperationSchema;
112
+ export declare var ListServices: StaticOperationSchema;
113
+ export declare var ListTagsForResource: StaticOperationSchema;
114
+ export declare var PutServiceQuotaIncreaseRequestIntoTemplate: StaticOperationSchema;
115
+ export declare var RequestServiceQuotaIncrease: StaticOperationSchema;
116
+ export declare var StartAutoManagement: StaticOperationSchema;
117
+ export declare var StopAutoManagement: StaticOperationSchema;
118
+ export declare var TagResource: StaticOperationSchema;
119
+ export declare var UntagResource: StaticOperationSchema;
120
+ export declare var UpdateAutoManagement: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-service-quotas",
3
3
  "description": "AWS SDK for JavaScript Service Quotas Client for Node.js, Browser and React Native",
4
- "version": "3.926.0",
4
+ "version": "3.928.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-service-quotas",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.926.0",
24
- "@aws-sdk/credential-provider-node": "3.926.0",
23
+ "@aws-sdk/core": "3.928.0",
24
+ "@aws-sdk/credential-provider-node": "3.928.0",
25
25
  "@aws-sdk/middleware-host-header": "3.922.0",
26
26
  "@aws-sdk/middleware-logger": "3.922.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.926.0",
28
+ "@aws-sdk/middleware-user-agent": "3.928.0",
29
29
  "@aws-sdk/region-config-resolver": "3.925.0",
30
30
  "@aws-sdk/types": "3.922.0",
31
31
  "@aws-sdk/util-endpoints": "3.922.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.926.0",
33
+ "@aws-sdk/util-user-agent-node": "3.928.0",
34
34
  "@smithy/config-resolver": "^4.4.2",
35
35
  "@smithy/core": "^3.17.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.5",