@aws-sdk/client-global-accelerator 3.438.0 → 3.445.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/README.md +57 -1
- package/dist-cjs/GlobalAccelerator.js +14 -0
- package/dist-cjs/commands/CreateCrossAccountAttachmentCommand.js +51 -0
- package/dist-cjs/commands/DeleteCrossAccountAttachmentCommand.js +51 -0
- package/dist-cjs/commands/DescribeCrossAccountAttachmentCommand.js +51 -0
- package/dist-cjs/commands/ListCrossAccountAttachmentsCommand.js +51 -0
- package/dist-cjs/commands/ListCrossAccountResourceAccountsCommand.js +51 -0
- package/dist-cjs/commands/ListCrossAccountResourcesCommand.js +51 -0
- package/dist-cjs/commands/UpdateCrossAccountAttachmentCommand.js +51 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +15 -1
- package/dist-cjs/pagination/ListCrossAccountAttachmentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListCrossAccountResourcesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +409 -2
- package/dist-es/GlobalAccelerator.js +14 -0
- package/dist-es/commands/CreateCrossAccountAttachmentCommand.js +47 -0
- package/dist-es/commands/DeleteCrossAccountAttachmentCommand.js +47 -0
- package/dist-es/commands/DescribeCrossAccountAttachmentCommand.js +47 -0
- package/dist-es/commands/ListCrossAccountAttachmentsCommand.js +47 -0
- package/dist-es/commands/ListCrossAccountResourceAccountsCommand.js +47 -0
- package/dist-es/commands/ListCrossAccountResourcesCommand.js +47 -0
- package/dist-es/commands/UpdateCrossAccountAttachmentCommand.js +47 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/pagination/ListCrossAccountAttachmentsPaginator.js +25 -0
- package/dist-es/pagination/ListCrossAccountResourcesPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +393 -1
- package/dist-types/GlobalAccelerator.d.ts +50 -1
- package/dist-types/GlobalAcceleratorClient.d.ts +10 -3
- package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +1 -0
- package/dist-types/commands/AddEndpointsCommand.d.ts +1 -0
- package/dist-types/commands/CreateCrossAccountAttachmentCommand.d.ts +126 -0
- package/dist-types/commands/CreateEndpointGroupCommand.d.ts +1 -0
- package/dist-types/commands/DeleteCrossAccountAttachmentCommand.d.ts +103 -0
- package/dist-types/commands/DescribeCrossAccountAttachmentCommand.d.ts +99 -0
- package/dist-types/commands/ListCrossAccountAttachmentsCommand.d.ts +103 -0
- package/dist-types/commands/ListCrossAccountResourceAccountsCommand.d.ts +79 -0
- package/dist-types/commands/ListCrossAccountResourcesCommand.d.ts +97 -0
- package/dist-types/commands/UpdateCrossAccountAttachmentCommand.d.ts +141 -0
- package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/models_0.d.ts +316 -4
- package/dist-types/pagination/ListCrossAccountAttachmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListCrossAccountResourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +63 -0
- package/dist-types/ts3.4/GlobalAccelerator.d.ts +119 -0
- package/dist-types/ts3.4/GlobalAcceleratorClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateCrossAccountAttachmentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteCrossAccountAttachmentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeCrossAccountAttachmentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCrossAccountAttachmentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCrossAccountResourceAccountsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListCrossAccountResourcesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateCrossAccountAttachmentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -0
- package/dist-types/ts3.4/pagination/ListCrossAccountAttachmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCrossAccountResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +84 -0
- package/package.json +4 -4
|
@@ -73,6 +73,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
73
73
|
}
|
|
74
74
|
export interface CustomRoutingEndpointConfiguration {
|
|
75
75
|
EndpointId?: string;
|
|
76
|
+
AttachmentArn?: string;
|
|
76
77
|
}
|
|
77
78
|
export interface AddCustomRoutingEndpointsRequest {
|
|
78
79
|
EndpointConfigurations: CustomRoutingEndpointConfiguration[] | undefined;
|
|
@@ -135,6 +136,7 @@ export interface EndpointConfiguration {
|
|
|
135
136
|
EndpointId?: string;
|
|
136
137
|
Weight?: number;
|
|
137
138
|
ClientIPPreservationEnabled?: boolean;
|
|
139
|
+
AttachmentArn?: string;
|
|
138
140
|
}
|
|
139
141
|
export interface AddEndpointsRequest {
|
|
140
142
|
EndpointConfigurations: EndpointConfiguration[] | undefined;
|
|
@@ -240,6 +242,26 @@ export declare class AssociatedListenerFoundException extends __BaseException {
|
|
|
240
242
|
>
|
|
241
243
|
);
|
|
242
244
|
}
|
|
245
|
+
export interface Resource {
|
|
246
|
+
EndpointId: string | undefined;
|
|
247
|
+
Region?: string;
|
|
248
|
+
}
|
|
249
|
+
export interface Attachment {
|
|
250
|
+
AttachmentArn?: string;
|
|
251
|
+
Name?: string;
|
|
252
|
+
Principals?: string[];
|
|
253
|
+
Resources?: Resource[];
|
|
254
|
+
LastModifiedTime?: Date;
|
|
255
|
+
CreatedTime?: Date;
|
|
256
|
+
}
|
|
257
|
+
export declare class AttachmentNotFoundException extends __BaseException {
|
|
258
|
+
readonly name: "AttachmentNotFoundException";
|
|
259
|
+
readonly $fault: "client";
|
|
260
|
+
Message?: string;
|
|
261
|
+
constructor(
|
|
262
|
+
opts: __ExceptionOptionType<AttachmentNotFoundException, __BaseException>
|
|
263
|
+
);
|
|
264
|
+
}
|
|
243
265
|
export interface CidrAuthorizationContext {
|
|
244
266
|
Message: string | undefined;
|
|
245
267
|
Signature: string | undefined;
|
|
@@ -265,6 +287,16 @@ export interface CreateAcceleratorRequest {
|
|
|
265
287
|
export interface CreateAcceleratorResponse {
|
|
266
288
|
Accelerator?: Accelerator;
|
|
267
289
|
}
|
|
290
|
+
export interface CreateCrossAccountAttachmentRequest {
|
|
291
|
+
Name: string | undefined;
|
|
292
|
+
Principals?: string[];
|
|
293
|
+
Resources?: Resource[];
|
|
294
|
+
IdempotencyToken?: string;
|
|
295
|
+
Tags?: Tag[];
|
|
296
|
+
}
|
|
297
|
+
export interface CreateCrossAccountAttachmentResponse {
|
|
298
|
+
CrossAccountAttachment?: Attachment;
|
|
299
|
+
}
|
|
268
300
|
export interface CreateCustomRoutingAcceleratorRequest {
|
|
269
301
|
Name: string | undefined;
|
|
270
302
|
IpAddressType?: IpAddressType;
|
|
@@ -429,6 +461,10 @@ export interface Listener {
|
|
|
429
461
|
export interface CreateListenerResponse {
|
|
430
462
|
Listener?: Listener;
|
|
431
463
|
}
|
|
464
|
+
export interface CrossAccountResource {
|
|
465
|
+
EndpointId?: string;
|
|
466
|
+
AttachmentArn?: string;
|
|
467
|
+
}
|
|
432
468
|
export interface CustomRoutingAcceleratorAttributes {
|
|
433
469
|
FlowLogsEnabled?: boolean;
|
|
434
470
|
FlowLogsS3Bucket?: string;
|
|
@@ -443,6 +479,9 @@ export type CustomRoutingDestinationTrafficState =
|
|
|
443
479
|
export interface DeleteAcceleratorRequest {
|
|
444
480
|
AcceleratorArn: string | undefined;
|
|
445
481
|
}
|
|
482
|
+
export interface DeleteCrossAccountAttachmentRequest {
|
|
483
|
+
AttachmentArn: string | undefined;
|
|
484
|
+
}
|
|
446
485
|
export interface DeleteCustomRoutingAcceleratorRequest {
|
|
447
486
|
AcceleratorArn: string | undefined;
|
|
448
487
|
}
|
|
@@ -483,6 +522,12 @@ export interface DescribeAcceleratorAttributesRequest {
|
|
|
483
522
|
export interface DescribeAcceleratorAttributesResponse {
|
|
484
523
|
AcceleratorAttributes?: AcceleratorAttributes;
|
|
485
524
|
}
|
|
525
|
+
export interface DescribeCrossAccountAttachmentRequest {
|
|
526
|
+
AttachmentArn: string | undefined;
|
|
527
|
+
}
|
|
528
|
+
export interface DescribeCrossAccountAttachmentResponse {
|
|
529
|
+
CrossAccountAttachment?: Attachment;
|
|
530
|
+
}
|
|
486
531
|
export interface DescribeCustomRoutingAcceleratorRequest {
|
|
487
532
|
AcceleratorArn: string | undefined;
|
|
488
533
|
}
|
|
@@ -569,6 +614,28 @@ export interface ListByoipCidrsResponse {
|
|
|
569
614
|
ByoipCidrs?: ByoipCidr[];
|
|
570
615
|
NextToken?: string;
|
|
571
616
|
}
|
|
617
|
+
export interface ListCrossAccountAttachmentsRequest {
|
|
618
|
+
MaxResults?: number;
|
|
619
|
+
NextToken?: string;
|
|
620
|
+
}
|
|
621
|
+
export interface ListCrossAccountAttachmentsResponse {
|
|
622
|
+
CrossAccountAttachments?: Attachment[];
|
|
623
|
+
NextToken?: string;
|
|
624
|
+
}
|
|
625
|
+
export interface ListCrossAccountResourceAccountsRequest {}
|
|
626
|
+
export interface ListCrossAccountResourceAccountsResponse {
|
|
627
|
+
ResourceOwnerAwsAccountIds?: string[];
|
|
628
|
+
}
|
|
629
|
+
export interface ListCrossAccountResourcesRequest {
|
|
630
|
+
AcceleratorArn?: string;
|
|
631
|
+
ResourceOwnerAwsAccountId: string | undefined;
|
|
632
|
+
MaxResults?: number;
|
|
633
|
+
NextToken?: string;
|
|
634
|
+
}
|
|
635
|
+
export interface ListCrossAccountResourcesResponse {
|
|
636
|
+
CrossAccountResources?: CrossAccountResource[];
|
|
637
|
+
NextToken?: string;
|
|
638
|
+
}
|
|
572
639
|
export interface ListCustomRoutingAcceleratorsRequest {
|
|
573
640
|
MaxResults?: number;
|
|
574
641
|
NextToken?: string;
|
|
@@ -690,6 +757,17 @@ export interface UpdateAcceleratorAttributesRequest {
|
|
|
690
757
|
export interface UpdateAcceleratorAttributesResponse {
|
|
691
758
|
AcceleratorAttributes?: AcceleratorAttributes;
|
|
692
759
|
}
|
|
760
|
+
export interface UpdateCrossAccountAttachmentRequest {
|
|
761
|
+
AttachmentArn: string | undefined;
|
|
762
|
+
Name?: string;
|
|
763
|
+
AddPrincipals?: string[];
|
|
764
|
+
RemovePrincipals?: string[];
|
|
765
|
+
AddResources?: Resource[];
|
|
766
|
+
RemoveResources?: Resource[];
|
|
767
|
+
}
|
|
768
|
+
export interface UpdateCrossAccountAttachmentResponse {
|
|
769
|
+
CrossAccountAttachment?: Attachment;
|
|
770
|
+
}
|
|
693
771
|
export interface UpdateCustomRoutingAcceleratorRequest {
|
|
694
772
|
AcceleratorArn: string | undefined;
|
|
695
773
|
Name?: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCrossAccountAttachmentsCommandInput,
|
|
4
|
+
ListCrossAccountAttachmentsCommandOutput,
|
|
5
|
+
} from "../commands/ListCrossAccountAttachmentsCommand";
|
|
6
|
+
import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCrossAccountAttachments(
|
|
8
|
+
config: GlobalAcceleratorPaginationConfiguration,
|
|
9
|
+
input: ListCrossAccountAttachmentsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCrossAccountAttachmentsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCrossAccountResourcesCommandInput,
|
|
4
|
+
ListCrossAccountResourcesCommandOutput,
|
|
5
|
+
} from "../commands/ListCrossAccountResourcesCommand";
|
|
6
|
+
import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCrossAccountResources(
|
|
8
|
+
config: GlobalAcceleratorPaginationConfiguration,
|
|
9
|
+
input: ListCrossAccountResourcesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCrossAccountResourcesCommandOutput>;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAcceleratorsPaginator";
|
|
3
3
|
export * from "./ListByoipCidrsPaginator";
|
|
4
|
+
export * from "./ListCrossAccountAttachmentsPaginator";
|
|
5
|
+
export * from "./ListCrossAccountResourcesPaginator";
|
|
4
6
|
export * from "./ListCustomRoutingAcceleratorsPaginator";
|
|
5
7
|
export * from "./ListCustomRoutingEndpointGroupsPaginator";
|
|
6
8
|
export * from "./ListCustomRoutingListenersPaginator";
|
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
CreateAcceleratorCommandInput,
|
|
24
24
|
CreateAcceleratorCommandOutput,
|
|
25
25
|
} from "../commands/CreateAcceleratorCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateCrossAccountAttachmentCommandInput,
|
|
28
|
+
CreateCrossAccountAttachmentCommandOutput,
|
|
29
|
+
} from "../commands/CreateCrossAccountAttachmentCommand";
|
|
26
30
|
import {
|
|
27
31
|
CreateCustomRoutingAcceleratorCommandInput,
|
|
28
32
|
CreateCustomRoutingAcceleratorCommandOutput,
|
|
@@ -47,6 +51,10 @@ import {
|
|
|
47
51
|
DeleteAcceleratorCommandInput,
|
|
48
52
|
DeleteAcceleratorCommandOutput,
|
|
49
53
|
} from "../commands/DeleteAcceleratorCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeleteCrossAccountAttachmentCommandInput,
|
|
56
|
+
DeleteCrossAccountAttachmentCommandOutput,
|
|
57
|
+
} from "../commands/DeleteCrossAccountAttachmentCommand";
|
|
50
58
|
import {
|
|
51
59
|
DeleteCustomRoutingAcceleratorCommandInput,
|
|
52
60
|
DeleteCustomRoutingAcceleratorCommandOutput,
|
|
@@ -83,6 +91,10 @@ import {
|
|
|
83
91
|
DescribeAcceleratorCommandInput,
|
|
84
92
|
DescribeAcceleratorCommandOutput,
|
|
85
93
|
} from "../commands/DescribeAcceleratorCommand";
|
|
94
|
+
import {
|
|
95
|
+
DescribeCrossAccountAttachmentCommandInput,
|
|
96
|
+
DescribeCrossAccountAttachmentCommandOutput,
|
|
97
|
+
} from "../commands/DescribeCrossAccountAttachmentCommand";
|
|
86
98
|
import {
|
|
87
99
|
DescribeCustomRoutingAcceleratorAttributesCommandInput,
|
|
88
100
|
DescribeCustomRoutingAcceleratorAttributesCommandOutput,
|
|
@@ -115,6 +127,18 @@ import {
|
|
|
115
127
|
ListByoipCidrsCommandInput,
|
|
116
128
|
ListByoipCidrsCommandOutput,
|
|
117
129
|
} from "../commands/ListByoipCidrsCommand";
|
|
130
|
+
import {
|
|
131
|
+
ListCrossAccountAttachmentsCommandInput,
|
|
132
|
+
ListCrossAccountAttachmentsCommandOutput,
|
|
133
|
+
} from "../commands/ListCrossAccountAttachmentsCommand";
|
|
134
|
+
import {
|
|
135
|
+
ListCrossAccountResourceAccountsCommandInput,
|
|
136
|
+
ListCrossAccountResourceAccountsCommandOutput,
|
|
137
|
+
} from "../commands/ListCrossAccountResourceAccountsCommand";
|
|
138
|
+
import {
|
|
139
|
+
ListCrossAccountResourcesCommandInput,
|
|
140
|
+
ListCrossAccountResourcesCommandOutput,
|
|
141
|
+
} from "../commands/ListCrossAccountResourcesCommand";
|
|
118
142
|
import {
|
|
119
143
|
ListCustomRoutingAcceleratorsCommandInput,
|
|
120
144
|
ListCustomRoutingAcceleratorsCommandOutput,
|
|
@@ -175,6 +199,10 @@ import {
|
|
|
175
199
|
UpdateAcceleratorCommandInput,
|
|
176
200
|
UpdateAcceleratorCommandOutput,
|
|
177
201
|
} from "../commands/UpdateAcceleratorCommand";
|
|
202
|
+
import {
|
|
203
|
+
UpdateCrossAccountAttachmentCommandInput,
|
|
204
|
+
UpdateCrossAccountAttachmentCommandOutput,
|
|
205
|
+
} from "../commands/UpdateCrossAccountAttachmentCommand";
|
|
178
206
|
import {
|
|
179
207
|
UpdateCustomRoutingAcceleratorAttributesCommandInput,
|
|
180
208
|
UpdateCustomRoutingAcceleratorAttributesCommandOutput,
|
|
@@ -219,6 +247,10 @@ export declare const se_CreateAcceleratorCommand: (
|
|
|
219
247
|
input: CreateAcceleratorCommandInput,
|
|
220
248
|
context: __SerdeContext
|
|
221
249
|
) => Promise<__HttpRequest>;
|
|
250
|
+
export declare const se_CreateCrossAccountAttachmentCommand: (
|
|
251
|
+
input: CreateCrossAccountAttachmentCommandInput,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<__HttpRequest>;
|
|
222
254
|
export declare const se_CreateCustomRoutingAcceleratorCommand: (
|
|
223
255
|
input: CreateCustomRoutingAcceleratorCommandInput,
|
|
224
256
|
context: __SerdeContext
|
|
@@ -243,6 +275,10 @@ export declare const se_DeleteAcceleratorCommand: (
|
|
|
243
275
|
input: DeleteAcceleratorCommandInput,
|
|
244
276
|
context: __SerdeContext
|
|
245
277
|
) => Promise<__HttpRequest>;
|
|
278
|
+
export declare const se_DeleteCrossAccountAttachmentCommand: (
|
|
279
|
+
input: DeleteCrossAccountAttachmentCommandInput,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<__HttpRequest>;
|
|
246
282
|
export declare const se_DeleteCustomRoutingAcceleratorCommand: (
|
|
247
283
|
input: DeleteCustomRoutingAcceleratorCommandInput,
|
|
248
284
|
context: __SerdeContext
|
|
@@ -279,6 +315,10 @@ export declare const se_DescribeAcceleratorAttributesCommand: (
|
|
|
279
315
|
input: DescribeAcceleratorAttributesCommandInput,
|
|
280
316
|
context: __SerdeContext
|
|
281
317
|
) => Promise<__HttpRequest>;
|
|
318
|
+
export declare const se_DescribeCrossAccountAttachmentCommand: (
|
|
319
|
+
input: DescribeCrossAccountAttachmentCommandInput,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<__HttpRequest>;
|
|
282
322
|
export declare const se_DescribeCustomRoutingAcceleratorCommand: (
|
|
283
323
|
input: DescribeCustomRoutingAcceleratorCommandInput,
|
|
284
324
|
context: __SerdeContext
|
|
@@ -311,6 +351,18 @@ export declare const se_ListByoipCidrsCommand: (
|
|
|
311
351
|
input: ListByoipCidrsCommandInput,
|
|
312
352
|
context: __SerdeContext
|
|
313
353
|
) => Promise<__HttpRequest>;
|
|
354
|
+
export declare const se_ListCrossAccountAttachmentsCommand: (
|
|
355
|
+
input: ListCrossAccountAttachmentsCommandInput,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<__HttpRequest>;
|
|
358
|
+
export declare const se_ListCrossAccountResourceAccountsCommand: (
|
|
359
|
+
input: ListCrossAccountResourceAccountsCommandInput,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<__HttpRequest>;
|
|
362
|
+
export declare const se_ListCrossAccountResourcesCommand: (
|
|
363
|
+
input: ListCrossAccountResourcesCommandInput,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<__HttpRequest>;
|
|
314
366
|
export declare const se_ListCustomRoutingAcceleratorsCommand: (
|
|
315
367
|
input: ListCustomRoutingAcceleratorsCommandInput,
|
|
316
368
|
context: __SerdeContext
|
|
@@ -371,6 +423,10 @@ export declare const se_UpdateAcceleratorAttributesCommand: (
|
|
|
371
423
|
input: UpdateAcceleratorAttributesCommandInput,
|
|
372
424
|
context: __SerdeContext
|
|
373
425
|
) => Promise<__HttpRequest>;
|
|
426
|
+
export declare const se_UpdateCrossAccountAttachmentCommand: (
|
|
427
|
+
input: UpdateCrossAccountAttachmentCommandInput,
|
|
428
|
+
context: __SerdeContext
|
|
429
|
+
) => Promise<__HttpRequest>;
|
|
374
430
|
export declare const se_UpdateCustomRoutingAcceleratorCommand: (
|
|
375
431
|
input: UpdateCustomRoutingAcceleratorCommandInput,
|
|
376
432
|
context: __SerdeContext
|
|
@@ -415,6 +471,10 @@ export declare const de_CreateAcceleratorCommand: (
|
|
|
415
471
|
output: __HttpResponse,
|
|
416
472
|
context: __SerdeContext
|
|
417
473
|
) => Promise<CreateAcceleratorCommandOutput>;
|
|
474
|
+
export declare const de_CreateCrossAccountAttachmentCommand: (
|
|
475
|
+
output: __HttpResponse,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<CreateCrossAccountAttachmentCommandOutput>;
|
|
418
478
|
export declare const de_CreateCustomRoutingAcceleratorCommand: (
|
|
419
479
|
output: __HttpResponse,
|
|
420
480
|
context: __SerdeContext
|
|
@@ -439,6 +499,10 @@ export declare const de_DeleteAcceleratorCommand: (
|
|
|
439
499
|
output: __HttpResponse,
|
|
440
500
|
context: __SerdeContext
|
|
441
501
|
) => Promise<DeleteAcceleratorCommandOutput>;
|
|
502
|
+
export declare const de_DeleteCrossAccountAttachmentCommand: (
|
|
503
|
+
output: __HttpResponse,
|
|
504
|
+
context: __SerdeContext
|
|
505
|
+
) => Promise<DeleteCrossAccountAttachmentCommandOutput>;
|
|
442
506
|
export declare const de_DeleteCustomRoutingAcceleratorCommand: (
|
|
443
507
|
output: __HttpResponse,
|
|
444
508
|
context: __SerdeContext
|
|
@@ -475,6 +539,10 @@ export declare const de_DescribeAcceleratorAttributesCommand: (
|
|
|
475
539
|
output: __HttpResponse,
|
|
476
540
|
context: __SerdeContext
|
|
477
541
|
) => Promise<DescribeAcceleratorAttributesCommandOutput>;
|
|
542
|
+
export declare const de_DescribeCrossAccountAttachmentCommand: (
|
|
543
|
+
output: __HttpResponse,
|
|
544
|
+
context: __SerdeContext
|
|
545
|
+
) => Promise<DescribeCrossAccountAttachmentCommandOutput>;
|
|
478
546
|
export declare const de_DescribeCustomRoutingAcceleratorCommand: (
|
|
479
547
|
output: __HttpResponse,
|
|
480
548
|
context: __SerdeContext
|
|
@@ -507,6 +575,18 @@ export declare const de_ListByoipCidrsCommand: (
|
|
|
507
575
|
output: __HttpResponse,
|
|
508
576
|
context: __SerdeContext
|
|
509
577
|
) => Promise<ListByoipCidrsCommandOutput>;
|
|
578
|
+
export declare const de_ListCrossAccountAttachmentsCommand: (
|
|
579
|
+
output: __HttpResponse,
|
|
580
|
+
context: __SerdeContext
|
|
581
|
+
) => Promise<ListCrossAccountAttachmentsCommandOutput>;
|
|
582
|
+
export declare const de_ListCrossAccountResourceAccountsCommand: (
|
|
583
|
+
output: __HttpResponse,
|
|
584
|
+
context: __SerdeContext
|
|
585
|
+
) => Promise<ListCrossAccountResourceAccountsCommandOutput>;
|
|
586
|
+
export declare const de_ListCrossAccountResourcesCommand: (
|
|
587
|
+
output: __HttpResponse,
|
|
588
|
+
context: __SerdeContext
|
|
589
|
+
) => Promise<ListCrossAccountResourcesCommandOutput>;
|
|
510
590
|
export declare const de_ListCustomRoutingAcceleratorsCommand: (
|
|
511
591
|
output: __HttpResponse,
|
|
512
592
|
context: __SerdeContext
|
|
@@ -567,6 +647,10 @@ export declare const de_UpdateAcceleratorAttributesCommand: (
|
|
|
567
647
|
output: __HttpResponse,
|
|
568
648
|
context: __SerdeContext
|
|
569
649
|
) => Promise<UpdateAcceleratorAttributesCommandOutput>;
|
|
650
|
+
export declare const de_UpdateCrossAccountAttachmentCommand: (
|
|
651
|
+
output: __HttpResponse,
|
|
652
|
+
context: __SerdeContext
|
|
653
|
+
) => Promise<UpdateCrossAccountAttachmentCommandOutput>;
|
|
570
654
|
export declare const de_UpdateCustomRoutingAcceleratorCommand: (
|
|
571
655
|
output: __HttpResponse,
|
|
572
656
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-global-accelerator",
|
|
3
3
|
"description": "AWS SDK for JavaScript Global Accelerator Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.445.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.445.0",
|
|
25
|
+
"@aws-sdk/core": "3.445.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.445.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.433.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.433.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.433.0",
|