@aws-sdk/client-api-gateway 3.43.0 → 3.45.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.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-types/models/models_0.d.ts +9 -6
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2021/12/23 ([#3110](https://github.com/aws/aws-sdk-js-v3/issues/3110)) ([5d638e1](https://github.com/aws/aws-sdk-js-v3/commit/5d638e188ce64fa80fe36b8cba79ba63b80b50b7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.43.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.42.0...v3.43.0) (2021-11-29)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-api-gateway
|
package/dist-cjs/endpoints.js
CHANGED
package/dist-es/endpoints.js
CHANGED
|
@@ -23,11 +23,11 @@ export declare namespace AccessLogSettings {
|
|
|
23
23
|
*/
|
|
24
24
|
export interface ThrottleSettings {
|
|
25
25
|
/**
|
|
26
|
-
* <p>The API request burst
|
|
26
|
+
* <p>The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.</p>
|
|
27
27
|
*/
|
|
28
28
|
burstLimit?: number;
|
|
29
29
|
/**
|
|
30
|
-
* <p>The API request
|
|
30
|
+
* <p>The API target request rate limit.</p>
|
|
31
31
|
*/
|
|
32
32
|
rateLimit?: number;
|
|
33
33
|
}
|
|
@@ -2518,7 +2518,7 @@ export declare enum QuotaPeriodType {
|
|
|
2518
2518
|
*/
|
|
2519
2519
|
export interface QuotaSettings {
|
|
2520
2520
|
/**
|
|
2521
|
-
* <p>The maximum number of requests that can be made in a given time period.</p>
|
|
2521
|
+
* <p>The target maximum number of requests that can be made in a given time period.</p>
|
|
2522
2522
|
*/
|
|
2523
2523
|
limit?: number;
|
|
2524
2524
|
/**
|
|
@@ -2574,7 +2574,10 @@ export declare namespace CreateUsagePlanRequest {
|
|
|
2574
2574
|
const filterSensitiveLog: (obj: CreateUsagePlanRequest) => any;
|
|
2575
2575
|
}
|
|
2576
2576
|
/**
|
|
2577
|
-
* <p>Represents a usage plan
|
|
2577
|
+
* <p>Represents a usage plan used to specify who can assess associated API stages. Optionally, target request rate and quota limits can be set.
|
|
2578
|
+
* In some cases clients can exceed the targets that you set. Don’t rely on usage plans to control costs.
|
|
2579
|
+
* Consider using <a href="https://docs.aws.amazon.com/cost-management/latest/userguide/budgets-managing-costs.html">AWS Budgets</a> to monitor costs
|
|
2580
|
+
* and <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html">AWS WAF</a> to manage API requests.</p>
|
|
2578
2581
|
* <div class="remarks">
|
|
2579
2582
|
* <p>In a usage plan, you associate an API by specifying the API's Id and a stage name of the specified API. You add plan customers by adding API keys to the plan. </p>
|
|
2580
2583
|
* </div>
|
|
@@ -2600,11 +2603,11 @@ export interface UsagePlan {
|
|
|
2600
2603
|
*/
|
|
2601
2604
|
apiStages?: ApiStage[];
|
|
2602
2605
|
/**
|
|
2603
|
-
* <p>
|
|
2606
|
+
* <p>Map containing method level throttling information for API stage in a usage plan.</p>
|
|
2604
2607
|
*/
|
|
2605
2608
|
throttle?: ThrottleSettings;
|
|
2606
2609
|
/**
|
|
2607
|
-
* <p>The maximum number of permitted requests per a given unit time interval.</p>
|
|
2610
|
+
* <p>The target maximum number of permitted requests per a given unit time interval.</p>
|
|
2608
2611
|
*/
|
|
2609
2612
|
quota?: QuotaSettings;
|
|
2610
2613
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-api-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Api Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.45.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.45.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.45.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.45.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.40.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
34
|
"@aws-sdk/middleware-sdk-api-gateway": "3.40.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.40.0",
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.45.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.40.0",
|
|
38
38
|
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.40.0",
|