@aws-sdk/client-route53globalresolver 3.1039.0 → 3.1040.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/dist-cjs/schemas/schemas_0.js +2 -2
- package/dist-es/schemas/schemas_0.js +2 -2
- package/dist-types/commands/DeleteAccessTokenCommand.d.ts +3 -0
- package/dist-types/commands/UpdateGlobalResolverCommand.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +1 -1
|
@@ -868,8 +868,8 @@ exports.UpdateFirewallRuleOutput$ = [3, n0, _UFRO,
|
|
|
868
868
|
];
|
|
869
869
|
exports.UpdateGlobalResolverInput$ = [3, n0, _UGRI,
|
|
870
870
|
0,
|
|
871
|
-
[_gRI, _n, _oR, _d, _iAT],
|
|
872
|
-
[[0, 1], 0, 0, 0, 0], 1
|
|
871
|
+
[_gRI, _n, _oR, _d, _iAT, _re],
|
|
872
|
+
[[0, 1], 0, 0, 0, 0, 64 | 0], 1
|
|
873
873
|
];
|
|
874
874
|
exports.UpdateGlobalResolverOutput$ = [3, n0, _UGRO,
|
|
875
875
|
0,
|
|
@@ -862,8 +862,8 @@ export var UpdateFirewallRuleOutput$ = [3, n0, _UFRO,
|
|
|
862
862
|
];
|
|
863
863
|
export var UpdateGlobalResolverInput$ = [3, n0, _UGRI,
|
|
864
864
|
0,
|
|
865
|
-
[_gRI, _n, _oR, _d, _iAT],
|
|
866
|
-
[[0, 1], 0, 0, 0, 0], 1
|
|
865
|
+
[_gRI, _n, _oR, _d, _iAT, _re],
|
|
866
|
+
[[0, 1], 0, 0, 0, 0, 64 | 0], 1
|
|
867
867
|
];
|
|
868
868
|
export var UpdateGlobalResolverOutput$ = [3, n0, _UGRO,
|
|
869
869
|
0,
|
|
@@ -58,6 +58,9 @@ declare const DeleteAccessTokenCommand_base: {
|
|
|
58
58
|
* @throws {@link AccessDeniedException} (client fault)
|
|
59
59
|
* <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
|
|
60
60
|
*
|
|
61
|
+
* @throws {@link ConflictException} (client fault)
|
|
62
|
+
* <p>The request conflicts with the current state of the resource. This can occur when trying to modify a resource that is not in a valid state for the requested operation.</p>
|
|
63
|
+
*
|
|
61
64
|
* @throws {@link InternalServerException} (server fault)
|
|
62
65
|
* <p>An internal server error occurred. Try again later.</p>
|
|
63
66
|
*
|
|
@@ -42,6 +42,9 @@ declare const UpdateGlobalResolverCommand_base: {
|
|
|
42
42
|
* observabilityRegion: "STRING_VALUE",
|
|
43
43
|
* description: "STRING_VALUE",
|
|
44
44
|
* ipAddressType: "IPV4" || "DUAL_STACK",
|
|
45
|
+
* regions: [ // Regions
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
45
48
|
* };
|
|
46
49
|
* const command = new UpdateGlobalResolverCommand(input);
|
|
47
50
|
* const response = await client.send(command);
|
|
@@ -3414,6 +3414,11 @@ export interface UpdateGlobalResolverInput {
|
|
|
3414
3414
|
* @public
|
|
3415
3415
|
*/
|
|
3416
3416
|
ipAddressType?: GlobalResolverIpAddressType | undefined;
|
|
3417
|
+
/**
|
|
3418
|
+
* <p>The list of Amazon Web Services Regions where the Global Resolver will operate. The resolver will be distributed across these Regions to provide global availability and low-latency DNS resolution.</p>
|
|
3419
|
+
* @public
|
|
3420
|
+
*/
|
|
3421
|
+
regions?: string[] | undefined;
|
|
3417
3422
|
}
|
|
3418
3423
|
/**
|
|
3419
3424
|
* @public
|
|
@@ -787,6 +787,7 @@ export interface UpdateGlobalResolverInput {
|
|
|
787
787
|
observabilityRegion?: string | undefined;
|
|
788
788
|
description?: string | undefined;
|
|
789
789
|
ipAddressType?: GlobalResolverIpAddressType | undefined;
|
|
790
|
+
regions?: string[] | undefined;
|
|
790
791
|
}
|
|
791
792
|
export interface UpdateGlobalResolverOutput {
|
|
792
793
|
id: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route53globalresolver",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route53globalresolver Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1040.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-route53globalresolver",
|