@aws-sdk/client-global-accelerator 3.289.0 → 3.290.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 (50) hide show
  1. package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +22 -0
  2. package/dist-types/commands/AddEndpointsCommand.d.ts +19 -0
  3. package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +17 -0
  4. package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +10 -0
  5. package/dist-types/commands/CreateAcceleratorCommand.d.ts +10 -0
  6. package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +13 -0
  7. package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +25 -0
  8. package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateEndpointGroupCommand.d.ts +22 -0
  10. package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteAcceleratorCommand.d.ts +17 -0
  12. package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +17 -0
  13. package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +10 -0
  14. package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +14 -0
  15. package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +10 -0
  16. package/dist-types/commands/DeleteListenerCommand.d.ts +14 -0
  17. package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +10 -0
  18. package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +17 -0
  19. package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +10 -0
  20. package/dist-types/commands/DescribeAcceleratorCommand.d.ts +10 -0
  21. package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +10 -0
  22. package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +10 -0
  23. package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +10 -0
  24. package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +10 -0
  25. package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +10 -0
  26. package/dist-types/commands/DescribeListenerCommand.d.ts +10 -0
  27. package/dist-types/commands/ListAcceleratorsCommand.d.ts +10 -0
  28. package/dist-types/commands/ListByoipCidrsCommand.d.ts +13 -0
  29. package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +10 -0
  30. package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +13 -0
  31. package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +13 -0
  32. package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +13 -0
  33. package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +16 -0
  34. package/dist-types/commands/ListEndpointGroupsCommand.d.ts +13 -0
  35. package/dist-types/commands/ListListenersCommand.d.ts +13 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
  37. package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +17 -0
  38. package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +19 -0
  39. package/dist-types/commands/RemoveEndpointsCommand.d.ts +16 -0
  40. package/dist-types/commands/TagResourceCommand.d.ts +10 -0
  41. package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
  42. package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +13 -0
  43. package/dist-types/commands/UpdateAcceleratorCommand.d.ts +13 -0
  44. package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +13 -0
  45. package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +10 -0
  46. package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +16 -0
  47. package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +16 -0
  48. package/dist-types/commands/UpdateListenerCommand.d.ts +16 -0
  49. package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +17 -0
  50. package/package.json +29 -29
@@ -39,6 +39,28 @@ export interface AddCustomRoutingEndpointsCommandOutput extends AddCustomRouting
39
39
  * @see {@link AddCustomRoutingEndpointsCommandOutput} for command's `response` shape.
40
40
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
41
41
  *
42
+ * @throws {@link AccessDeniedException} (client fault)
43
+ * <p>You don't have access permission.</p>
44
+ *
45
+ * @throws {@link ConflictException} (client fault)
46
+ * <p>You can't use both of those options.</p>
47
+ *
48
+ * @throws {@link EndpointAlreadyExistsException} (client fault)
49
+ * <p>The endpoint that you specified doesn't exist.</p>
50
+ *
51
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
52
+ * <p>The endpoint group that you specified doesn't exist.</p>
53
+ *
54
+ * @throws {@link InternalServiceErrorException} (server fault)
55
+ * <p>There was an internal error for Global Accelerator.</p>
56
+ *
57
+ * @throws {@link InvalidArgumentException} (client fault)
58
+ * <p>An argument that you specified is invalid.</p>
59
+ *
60
+ * @throws {@link LimitExceededException} (client fault)
61
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
62
+ *
63
+ *
42
64
  */
43
65
  export declare class AddCustomRoutingEndpointsCommand extends $Command<AddCustomRoutingEndpointsCommandInput, AddCustomRoutingEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
44
66
  readonly input: AddCustomRoutingEndpointsCommandInput;
@@ -44,6 +44,25 @@ export interface AddEndpointsCommandOutput extends AddEndpointsResponse, __Metad
44
44
  * @see {@link AddEndpointsCommandOutput} for command's `response` shape.
45
45
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
46
46
  *
47
+ * @throws {@link AccessDeniedException} (client fault)
48
+ * <p>You don't have access permission.</p>
49
+ *
50
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
51
+ * <p>The endpoint group that you specified doesn't exist.</p>
52
+ *
53
+ * @throws {@link InternalServiceErrorException} (server fault)
54
+ * <p>There was an internal error for Global Accelerator.</p>
55
+ *
56
+ * @throws {@link InvalidArgumentException} (client fault)
57
+ * <p>An argument that you specified is invalid.</p>
58
+ *
59
+ * @throws {@link LimitExceededException} (client fault)
60
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
61
+ *
62
+ * @throws {@link TransactionInProgressException} (client fault)
63
+ * <p>There's already a transaction in progress. Another transaction can't be processed.</p>
64
+ *
65
+ *
47
66
  */
48
67
  export declare class AddEndpointsCommand extends $Command<AddEndpointsCommandInput, AddEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
49
68
  readonly input: AddEndpointsCommandInput;
@@ -35,6 +35,23 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrRespo
35
35
  * @see {@link AdvertiseByoipCidrCommandOutput} for command's `response` shape.
36
36
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
37
37
  *
38
+ * @throws {@link AccessDeniedException} (client fault)
39
+ * <p>You don't have access permission.</p>
40
+ *
41
+ * @throws {@link ByoipCidrNotFoundException} (client fault)
42
+ * <p>The CIDR that you specified was not found or is incorrect.</p>
43
+ *
44
+ * @throws {@link IncorrectCidrStateException} (client fault)
45
+ * <p>The CIDR that you specified is not valid for this action. For example, the state of the CIDR might be
46
+ * incorrect for this action.</p>
47
+ *
48
+ * @throws {@link InternalServiceErrorException} (server fault)
49
+ * <p>There was an internal error for Global Accelerator.</p>
50
+ *
51
+ * @throws {@link InvalidArgumentException} (client fault)
52
+ * <p>An argument that you specified is invalid.</p>
53
+ *
54
+ *
38
55
  */
39
56
  export declare class AdvertiseByoipCidrCommand extends $Command<AdvertiseByoipCidrCommandInput, AdvertiseByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
40
57
  readonly input: AdvertiseByoipCidrCommandInput;
@@ -34,6 +34,16 @@ export interface AllowCustomRoutingTrafficCommandOutput extends __MetadataBearer
34
34
  * @see {@link AllowCustomRoutingTrafficCommandOutput} for command's `response` shape.
35
35
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
36
36
  *
37
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
38
+ * <p>The endpoint group that you specified doesn't exist.</p>
39
+ *
40
+ * @throws {@link InternalServiceErrorException} (server fault)
41
+ * <p>There was an internal error for Global Accelerator.</p>
42
+ *
43
+ * @throws {@link InvalidArgumentException} (client fault)
44
+ * <p>An argument that you specified is invalid.</p>
45
+ *
46
+ *
37
47
  */
38
48
  export declare class AllowCustomRoutingTrafficCommand extends $Command<AllowCustomRoutingTrafficCommandInput, AllowCustomRoutingTrafficCommandOutput, GlobalAcceleratorClientResolvedConfig> {
39
49
  readonly input: AllowCustomRoutingTrafficCommandInput;
@@ -35,6 +35,16 @@ export interface CreateAcceleratorCommandOutput extends CreateAcceleratorRespons
35
35
  * @see {@link CreateAcceleratorCommandOutput} for command's `response` shape.
36
36
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
37
37
  *
38
+ * @throws {@link InternalServiceErrorException} (server fault)
39
+ * <p>There was an internal error for Global Accelerator.</p>
40
+ *
41
+ * @throws {@link InvalidArgumentException} (client fault)
42
+ * <p>An argument that you specified is invalid.</p>
43
+ *
44
+ * @throws {@link LimitExceededException} (client fault)
45
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
46
+ *
47
+ *
38
48
  */
39
49
  export declare class CreateAcceleratorCommand extends $Command<CreateAcceleratorCommandInput, CreateAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
40
50
  readonly input: CreateAcceleratorCommandInput;
@@ -39,6 +39,19 @@ export interface CreateCustomRoutingAcceleratorCommandOutput extends CreateCusto
39
39
  * @see {@link CreateCustomRoutingAcceleratorCommandOutput} for command's `response` shape.
40
40
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
41
41
  *
42
+ * @throws {@link AccessDeniedException} (client fault)
43
+ * <p>You don't have access permission.</p>
44
+ *
45
+ * @throws {@link InternalServiceErrorException} (server fault)
46
+ * <p>There was an internal error for Global Accelerator.</p>
47
+ *
48
+ * @throws {@link InvalidArgumentException} (client fault)
49
+ * <p>An argument that you specified is invalid.</p>
50
+ *
51
+ * @throws {@link LimitExceededException} (client fault)
52
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
53
+ *
54
+ *
42
55
  */
43
56
  export declare class CreateCustomRoutingAcceleratorCommand extends $Command<CreateCustomRoutingAcceleratorCommandInput, CreateCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
44
57
  readonly input: CreateCustomRoutingAcceleratorCommandInput;
@@ -31,6 +31,31 @@ export interface CreateCustomRoutingEndpointGroupCommandOutput extends CreateCus
31
31
  * @see {@link CreateCustomRoutingEndpointGroupCommandOutput} for command's `response` shape.
32
32
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
33
33
  *
34
+ * @throws {@link AcceleratorNotFoundException} (client fault)
35
+ * <p>The accelerator that you specified doesn't exist.</p>
36
+ *
37
+ * @throws {@link AccessDeniedException} (client fault)
38
+ * <p>You don't have access permission.</p>
39
+ *
40
+ * @throws {@link EndpointGroupAlreadyExistsException} (client fault)
41
+ * <p>The endpoint group that you specified already exists.</p>
42
+ *
43
+ * @throws {@link InternalServiceErrorException} (server fault)
44
+ * <p>There was an internal error for Global Accelerator.</p>
45
+ *
46
+ * @throws {@link InvalidArgumentException} (client fault)
47
+ * <p>An argument that you specified is invalid.</p>
48
+ *
49
+ * @throws {@link InvalidPortRangeException} (client fault)
50
+ * <p>The port numbers that you specified are not valid numbers or are not unique for this accelerator.</p>
51
+ *
52
+ * @throws {@link LimitExceededException} (client fault)
53
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
54
+ *
55
+ * @throws {@link ListenerNotFoundException} (client fault)
56
+ * <p>The listener that you specified doesn't exist.</p>
57
+ *
58
+ *
34
59
  */
35
60
  export declare class CreateCustomRoutingEndpointGroupCommand extends $Command<CreateCustomRoutingEndpointGroupCommandInput, CreateCustomRoutingEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
36
61
  readonly input: CreateCustomRoutingEndpointGroupCommandInput;
@@ -30,6 +30,22 @@ export interface CreateCustomRoutingListenerCommandOutput extends CreateCustomRo
30
30
  * @see {@link CreateCustomRoutingListenerCommandOutput} for command's `response` shape.
31
31
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
32
32
  *
33
+ * @throws {@link AcceleratorNotFoundException} (client fault)
34
+ * <p>The accelerator that you specified doesn't exist.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>There was an internal error for Global Accelerator.</p>
38
+ *
39
+ * @throws {@link InvalidArgumentException} (client fault)
40
+ * <p>An argument that you specified is invalid.</p>
41
+ *
42
+ * @throws {@link InvalidPortRangeException} (client fault)
43
+ * <p>The port numbers that you specified are not valid numbers or are not unique for this accelerator.</p>
44
+ *
45
+ * @throws {@link LimitExceededException} (client fault)
46
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class CreateCustomRoutingListenerCommand extends $Command<CreateCustomRoutingListenerCommandInput, CreateCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
35
51
  readonly input: CreateCustomRoutingListenerCommandInput;
@@ -30,6 +30,28 @@ export interface CreateEndpointGroupCommandOutput extends CreateEndpointGroupRes
30
30
  * @see {@link CreateEndpointGroupCommandOutput} for command's `response` shape.
31
31
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
32
32
  *
33
+ * @throws {@link AcceleratorNotFoundException} (client fault)
34
+ * <p>The accelerator that you specified doesn't exist.</p>
35
+ *
36
+ * @throws {@link AccessDeniedException} (client fault)
37
+ * <p>You don't have access permission.</p>
38
+ *
39
+ * @throws {@link EndpointGroupAlreadyExistsException} (client fault)
40
+ * <p>The endpoint group that you specified already exists.</p>
41
+ *
42
+ * @throws {@link InternalServiceErrorException} (server fault)
43
+ * <p>There was an internal error for Global Accelerator.</p>
44
+ *
45
+ * @throws {@link InvalidArgumentException} (client fault)
46
+ * <p>An argument that you specified is invalid.</p>
47
+ *
48
+ * @throws {@link LimitExceededException} (client fault)
49
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
50
+ *
51
+ * @throws {@link ListenerNotFoundException} (client fault)
52
+ * <p>The listener that you specified doesn't exist.</p>
53
+ *
54
+ *
33
55
  */
34
56
  export declare class CreateEndpointGroupCommand extends $Command<CreateEndpointGroupCommandInput, CreateEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
35
57
  readonly input: CreateEndpointGroupCommandInput;
@@ -30,6 +30,22 @@ export interface CreateListenerCommandOutput extends CreateListenerResponse, __M
30
30
  * @see {@link CreateListenerCommandOutput} for command's `response` shape.
31
31
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
32
32
  *
33
+ * @throws {@link AcceleratorNotFoundException} (client fault)
34
+ * <p>The accelerator that you specified doesn't exist.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>There was an internal error for Global Accelerator.</p>
38
+ *
39
+ * @throws {@link InvalidArgumentException} (client fault)
40
+ * <p>An argument that you specified is invalid.</p>
41
+ *
42
+ * @throws {@link InvalidPortRangeException} (client fault)
43
+ * <p>The port numbers that you specified are not valid numbers or are not unique for this accelerator.</p>
44
+ *
45
+ * @throws {@link LimitExceededException} (client fault)
46
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
47
+ *
48
+ *
33
49
  */
34
50
  export declare class CreateListenerCommand extends $Command<CreateListenerCommandInput, CreateListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
35
51
  readonly input: CreateListenerCommandInput;
@@ -42,6 +42,23 @@ export interface DeleteAcceleratorCommandOutput extends __MetadataBearer {
42
42
  * @see {@link DeleteAcceleratorCommandOutput} for command's `response` shape.
43
43
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
44
44
  *
45
+ * @throws {@link AcceleratorNotDisabledException} (client fault)
46
+ * <p>The accelerator that you specified could not be disabled.</p>
47
+ *
48
+ * @throws {@link AcceleratorNotFoundException} (client fault)
49
+ * <p>The accelerator that you specified doesn't exist.</p>
50
+ *
51
+ * @throws {@link AssociatedListenerFoundException} (client fault)
52
+ * <p>The accelerator that you specified has a listener associated with it. You must remove all dependent resources from an
53
+ * accelerator before you can delete it.</p>
54
+ *
55
+ * @throws {@link InternalServiceErrorException} (server fault)
56
+ * <p>There was an internal error for Global Accelerator.</p>
57
+ *
58
+ * @throws {@link InvalidArgumentException} (client fault)
59
+ * <p>An argument that you specified is invalid.</p>
60
+ *
61
+ *
45
62
  */
46
63
  export declare class DeleteAcceleratorCommand extends $Command<DeleteAcceleratorCommandInput, DeleteAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
47
64
  readonly input: DeleteAcceleratorCommandInput;
@@ -42,6 +42,23 @@ export interface DeleteCustomRoutingAcceleratorCommandOutput extends __MetadataB
42
42
  * @see {@link DeleteCustomRoutingAcceleratorCommandOutput} for command's `response` shape.
43
43
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
44
44
  *
45
+ * @throws {@link AcceleratorNotDisabledException} (client fault)
46
+ * <p>The accelerator that you specified could not be disabled.</p>
47
+ *
48
+ * @throws {@link AcceleratorNotFoundException} (client fault)
49
+ * <p>The accelerator that you specified doesn't exist.</p>
50
+ *
51
+ * @throws {@link AssociatedListenerFoundException} (client fault)
52
+ * <p>The accelerator that you specified has a listener associated with it. You must remove all dependent resources from an
53
+ * accelerator before you can delete it.</p>
54
+ *
55
+ * @throws {@link InternalServiceErrorException} (server fault)
56
+ * <p>There was an internal error for Global Accelerator.</p>
57
+ *
58
+ * @throws {@link InvalidArgumentException} (client fault)
59
+ * <p>An argument that you specified is invalid.</p>
60
+ *
61
+ *
45
62
  */
46
63
  export declare class DeleteCustomRoutingAcceleratorCommand extends $Command<DeleteCustomRoutingAcceleratorCommandInput, DeleteCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
47
64
  readonly input: DeleteCustomRoutingAcceleratorCommandInput;
@@ -29,6 +29,16 @@ export interface DeleteCustomRoutingEndpointGroupCommandOutput extends __Metadat
29
29
  * @see {@link DeleteCustomRoutingEndpointGroupCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
33
+ * <p>The endpoint group that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DeleteCustomRoutingEndpointGroupCommand extends $Command<DeleteCustomRoutingEndpointGroupCommandInput, DeleteCustomRoutingEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DeleteCustomRoutingEndpointGroupCommandInput;
@@ -29,6 +29,20 @@ export interface DeleteCustomRoutingListenerCommandOutput extends __MetadataBear
29
29
  * @see {@link DeleteCustomRoutingListenerCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AssociatedEndpointGroupFoundException} (client fault)
33
+ * <p>The listener that you specified has an endpoint group associated with it. You must remove all dependent resources
34
+ * from a listener before you can delete it.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>There was an internal error for Global Accelerator.</p>
38
+ *
39
+ * @throws {@link InvalidArgumentException} (client fault)
40
+ * <p>An argument that you specified is invalid.</p>
41
+ *
42
+ * @throws {@link ListenerNotFoundException} (client fault)
43
+ * <p>The listener that you specified doesn't exist.</p>
44
+ *
45
+ *
32
46
  */
33
47
  export declare class DeleteCustomRoutingListenerCommand extends $Command<DeleteCustomRoutingListenerCommandInput, DeleteCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
48
  readonly input: DeleteCustomRoutingListenerCommandInput;
@@ -29,6 +29,16 @@ export interface DeleteEndpointGroupCommandOutput extends __MetadataBearer {
29
29
  * @see {@link DeleteEndpointGroupCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
33
+ * <p>The endpoint group that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DeleteEndpointGroupCommand extends $Command<DeleteEndpointGroupCommandInput, DeleteEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DeleteEndpointGroupCommandInput;
@@ -29,6 +29,20 @@ export interface DeleteListenerCommandOutput extends __MetadataBearer {
29
29
  * @see {@link DeleteListenerCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AssociatedEndpointGroupFoundException} (client fault)
33
+ * <p>The listener that you specified has an endpoint group associated with it. You must remove all dependent resources
34
+ * from a listener before you can delete it.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>There was an internal error for Global Accelerator.</p>
38
+ *
39
+ * @throws {@link InvalidArgumentException} (client fault)
40
+ * <p>An argument that you specified is invalid.</p>
41
+ *
42
+ * @throws {@link ListenerNotFoundException} (client fault)
43
+ * <p>The listener that you specified doesn't exist.</p>
44
+ *
45
+ *
32
46
  */
33
47
  export declare class DeleteListenerCommand extends $Command<DeleteListenerCommandInput, DeleteListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
48
  readonly input: DeleteListenerCommandInput;
@@ -34,6 +34,16 @@ export interface DenyCustomRoutingTrafficCommandOutput extends __MetadataBearer
34
34
  * @see {@link DenyCustomRoutingTrafficCommandOutput} for command's `response` shape.
35
35
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
36
36
  *
37
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
38
+ * <p>The endpoint group that you specified doesn't exist.</p>
39
+ *
40
+ * @throws {@link InternalServiceErrorException} (server fault)
41
+ * <p>There was an internal error for Global Accelerator.</p>
42
+ *
43
+ * @throws {@link InvalidArgumentException} (client fault)
44
+ * <p>An argument that you specified is invalid.</p>
45
+ *
46
+ *
37
47
  */
38
48
  export declare class DenyCustomRoutingTrafficCommand extends $Command<DenyCustomRoutingTrafficCommandInput, DenyCustomRoutingTrafficCommandOutput, GlobalAcceleratorClientResolvedConfig> {
39
49
  readonly input: DenyCustomRoutingTrafficCommandInput;
@@ -35,6 +35,23 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR
35
35
  * @see {@link DeprovisionByoipCidrCommandOutput} for command's `response` shape.
36
36
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
37
37
  *
38
+ * @throws {@link AccessDeniedException} (client fault)
39
+ * <p>You don't have access permission.</p>
40
+ *
41
+ * @throws {@link ByoipCidrNotFoundException} (client fault)
42
+ * <p>The CIDR that you specified was not found or is incorrect.</p>
43
+ *
44
+ * @throws {@link IncorrectCidrStateException} (client fault)
45
+ * <p>The CIDR that you specified is not valid for this action. For example, the state of the CIDR might be
46
+ * incorrect for this action.</p>
47
+ *
48
+ * @throws {@link InternalServiceErrorException} (server fault)
49
+ * <p>There was an internal error for Global Accelerator.</p>
50
+ *
51
+ * @throws {@link InvalidArgumentException} (client fault)
52
+ * <p>An argument that you specified is invalid.</p>
53
+ *
54
+ *
38
55
  */
39
56
  export declare class DeprovisionByoipCidrCommand extends $Command<DeprovisionByoipCidrCommandInput, DeprovisionByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
40
57
  readonly input: DeprovisionByoipCidrCommandInput;
@@ -30,6 +30,16 @@ export interface DescribeAcceleratorAttributesCommandOutput extends DescribeAcce
30
30
  * @see {@link DescribeAcceleratorAttributesCommandOutput} for command's `response` shape.
31
31
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
32
32
  *
33
+ * @throws {@link AcceleratorNotFoundException} (client fault)
34
+ * <p>The accelerator that you specified doesn't exist.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>There was an internal error for Global Accelerator.</p>
38
+ *
39
+ * @throws {@link InvalidArgumentException} (client fault)
40
+ * <p>An argument that you specified is invalid.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class DescribeAcceleratorAttributesCommand extends $Command<DescribeAcceleratorAttributesCommandInput, DescribeAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
35
45
  readonly input: DescribeAcceleratorAttributesCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeAcceleratorCommandOutput extends DescribeAcceleratorRes
29
29
  * @see {@link DescribeAcceleratorCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AcceleratorNotFoundException} (client fault)
33
+ * <p>The accelerator that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeAcceleratorCommand extends $Command<DescribeAcceleratorCommandInput, DescribeAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DescribeAcceleratorCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeCustomRoutingAcceleratorAttributesCommandOutput extends
29
29
  * @see {@link DescribeCustomRoutingAcceleratorAttributesCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AcceleratorNotFoundException} (client fault)
33
+ * <p>The accelerator that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeCustomRoutingAcceleratorAttributesCommand extends $Command<DescribeCustomRoutingAcceleratorAttributesCommandInput, DescribeCustomRoutingAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DescribeCustomRoutingAcceleratorAttributesCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeCustomRoutingAcceleratorCommandOutput extends DescribeC
29
29
  * @see {@link DescribeCustomRoutingAcceleratorCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AcceleratorNotFoundException} (client fault)
33
+ * <p>The accelerator that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeCustomRoutingAcceleratorCommand extends $Command<DescribeCustomRoutingAcceleratorCommandInput, DescribeCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DescribeCustomRoutingAcceleratorCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeCustomRoutingEndpointGroupCommandOutput extends Describ
29
29
  * @see {@link DescribeCustomRoutingEndpointGroupCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
33
+ * <p>The endpoint group that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeCustomRoutingEndpointGroupCommand extends $Command<DescribeCustomRoutingEndpointGroupCommandInput, DescribeCustomRoutingEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DescribeCustomRoutingEndpointGroupCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeCustomRoutingListenerCommandOutput extends DescribeCust
29
29
  * @see {@link DescribeCustomRoutingListenerCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceErrorException} (server fault)
33
+ * <p>There was an internal error for Global Accelerator.</p>
34
+ *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>An argument that you specified is invalid.</p>
37
+ *
38
+ * @throws {@link ListenerNotFoundException} (client fault)
39
+ * <p>The listener that you specified doesn't exist.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeCustomRoutingListenerCommand extends $Command<DescribeCustomRoutingListenerCommandInput, DescribeCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DescribeCustomRoutingListenerCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeEndpointGroupCommandOutput extends DescribeEndpointGrou
29
29
  * @see {@link DescribeEndpointGroupCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
33
+ * <p>The endpoint group that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeEndpointGroupCommand extends $Command<DescribeEndpointGroupCommandInput, DescribeEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DescribeEndpointGroupCommandInput;
@@ -29,6 +29,16 @@ export interface DescribeListenerCommandOutput extends DescribeListenerResponse,
29
29
  * @see {@link DescribeListenerCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceErrorException} (server fault)
33
+ * <p>There was an internal error for Global Accelerator.</p>
34
+ *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>An argument that you specified is invalid.</p>
37
+ *
38
+ * @throws {@link ListenerNotFoundException} (client fault)
39
+ * <p>The listener that you specified doesn't exist.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class DescribeListenerCommand extends $Command<DescribeListenerCommandInput, DescribeListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: DescribeListenerCommandInput;
@@ -29,6 +29,16 @@ export interface ListAcceleratorsCommandOutput extends ListAcceleratorsResponse,
29
29
  * @see {@link ListAcceleratorsCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceErrorException} (server fault)
33
+ * <p>There was an internal error for Global Accelerator.</p>
34
+ *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>An argument that you specified is invalid.</p>
37
+ *
38
+ * @throws {@link InvalidNextTokenException} (client fault)
39
+ * <p>There isn't another item to return.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListAcceleratorsCommand extends $Command<ListAcceleratorsCommandInput, ListAcceleratorsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: ListAcceleratorsCommandInput;
@@ -30,6 +30,19 @@ export interface ListByoipCidrsCommandOutput extends ListByoipCidrsResponse, __M
30
30
  * @see {@link ListByoipCidrsCommandOutput} for command's `response` shape.
31
31
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You don't have access permission.</p>
35
+ *
36
+ * @throws {@link InternalServiceErrorException} (server fault)
37
+ * <p>There was an internal error for Global Accelerator.</p>
38
+ *
39
+ * @throws {@link InvalidArgumentException} (client fault)
40
+ * <p>An argument that you specified is invalid.</p>
41
+ *
42
+ * @throws {@link InvalidNextTokenException} (client fault)
43
+ * <p>There isn't another item to return.</p>
44
+ *
45
+ *
33
46
  */
34
47
  export declare class ListByoipCidrsCommand extends $Command<ListByoipCidrsCommandInput, ListByoipCidrsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
35
48
  readonly input: ListByoipCidrsCommandInput;
@@ -29,6 +29,16 @@ export interface ListCustomRoutingAcceleratorsCommandOutput extends ListCustomRo
29
29
  * @see {@link ListCustomRoutingAcceleratorsCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceErrorException} (server fault)
33
+ * <p>There was an internal error for Global Accelerator.</p>
34
+ *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>An argument that you specified is invalid.</p>
37
+ *
38
+ * @throws {@link InvalidNextTokenException} (client fault)
39
+ * <p>There isn't another item to return.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListCustomRoutingAcceleratorsCommand extends $Command<ListCustomRoutingAcceleratorsCommandInput, ListCustomRoutingAcceleratorsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: ListCustomRoutingAcceleratorsCommandInput;
@@ -29,6 +29,19 @@ export interface ListCustomRoutingEndpointGroupsCommandOutput extends ListCustom
29
29
  * @see {@link ListCustomRoutingEndpointGroupsCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceErrorException} (server fault)
33
+ * <p>There was an internal error for Global Accelerator.</p>
34
+ *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>An argument that you specified is invalid.</p>
37
+ *
38
+ * @throws {@link InvalidNextTokenException} (client fault)
39
+ * <p>There isn't another item to return.</p>
40
+ *
41
+ * @throws {@link ListenerNotFoundException} (client fault)
42
+ * <p>The listener that you specified doesn't exist.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListCustomRoutingEndpointGroupsCommand extends $Command<ListCustomRoutingEndpointGroupsCommandInput, ListCustomRoutingEndpointGroupsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
47
  readonly input: ListCustomRoutingEndpointGroupsCommandInput;
@@ -29,6 +29,19 @@ export interface ListCustomRoutingListenersCommandOutput extends ListCustomRouti
29
29
  * @see {@link ListCustomRoutingListenersCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AcceleratorNotFoundException} (client fault)
33
+ * <p>The accelerator that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ * @throws {@link InvalidNextTokenException} (client fault)
42
+ * <p>There isn't another item to return.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListCustomRoutingListenersCommand extends $Command<ListCustomRoutingListenersCommandInput, ListCustomRoutingListenersCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
47
  readonly input: ListCustomRoutingListenersCommandInput;
@@ -32,6 +32,19 @@ export interface ListCustomRoutingPortMappingsByDestinationCommandOutput extends
32
32
  * @see {@link ListCustomRoutingPortMappingsByDestinationCommandOutput} for command's `response` shape.
33
33
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
34
34
  *
35
+ * @throws {@link EndpointNotFoundException} (client fault)
36
+ * <p>The endpoint that you specified doesn't exist.</p>
37
+ *
38
+ * @throws {@link InternalServiceErrorException} (server fault)
39
+ * <p>There was an internal error for Global Accelerator.</p>
40
+ *
41
+ * @throws {@link InvalidArgumentException} (client fault)
42
+ * <p>An argument that you specified is invalid.</p>
43
+ *
44
+ * @throws {@link InvalidNextTokenException} (client fault)
45
+ * <p>There isn't another item to return.</p>
46
+ *
47
+ *
35
48
  */
36
49
  export declare class ListCustomRoutingPortMappingsByDestinationCommand extends $Command<ListCustomRoutingPortMappingsByDestinationCommandInput, ListCustomRoutingPortMappingsByDestinationCommandOutput, GlobalAcceleratorClientResolvedConfig> {
37
50
  readonly input: ListCustomRoutingPortMappingsByDestinationCommandInput;
@@ -37,6 +37,22 @@ export interface ListCustomRoutingPortMappingsCommandOutput extends ListCustomRo
37
37
  * @see {@link ListCustomRoutingPortMappingsCommandOutput} for command's `response` shape.
38
38
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
39
39
  *
40
+ * @throws {@link AcceleratorNotFoundException} (client fault)
41
+ * <p>The accelerator that you specified doesn't exist.</p>
42
+ *
43
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
44
+ * <p>The endpoint group that you specified doesn't exist.</p>
45
+ *
46
+ * @throws {@link InternalServiceErrorException} (server fault)
47
+ * <p>There was an internal error for Global Accelerator.</p>
48
+ *
49
+ * @throws {@link InvalidArgumentException} (client fault)
50
+ * <p>An argument that you specified is invalid.</p>
51
+ *
52
+ * @throws {@link InvalidNextTokenException} (client fault)
53
+ * <p>There isn't another item to return.</p>
54
+ *
55
+ *
40
56
  */
41
57
  export declare class ListCustomRoutingPortMappingsCommand extends $Command<ListCustomRoutingPortMappingsCommandInput, ListCustomRoutingPortMappingsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
42
58
  readonly input: ListCustomRoutingPortMappingsCommandInput;
@@ -29,6 +29,19 @@ export interface ListEndpointGroupsCommandOutput extends ListEndpointGroupsRespo
29
29
  * @see {@link ListEndpointGroupsCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceErrorException} (server fault)
33
+ * <p>There was an internal error for Global Accelerator.</p>
34
+ *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>An argument that you specified is invalid.</p>
37
+ *
38
+ * @throws {@link InvalidNextTokenException} (client fault)
39
+ * <p>There isn't another item to return.</p>
40
+ *
41
+ * @throws {@link ListenerNotFoundException} (client fault)
42
+ * <p>The listener that you specified doesn't exist.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListEndpointGroupsCommand extends $Command<ListEndpointGroupsCommandInput, ListEndpointGroupsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
47
  readonly input: ListEndpointGroupsCommandInput;
@@ -29,6 +29,19 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met
29
29
  * @see {@link ListListenersCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AcceleratorNotFoundException} (client fault)
33
+ * <p>The accelerator that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ * @throws {@link InvalidNextTokenException} (client fault)
42
+ * <p>There isn't another item to return.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListListenersCommand extends $Command<ListListenersCommandInput, ListListenersCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
47
  readonly input: ListListenersCommandInput;
@@ -31,6 +31,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
32
32
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
33
33
  *
34
+ * @throws {@link AcceleratorNotFoundException} (client fault)
35
+ * <p>The accelerator that you specified doesn't exist.</p>
36
+ *
37
+ * @throws {@link InternalServiceErrorException} (server fault)
38
+ * <p>There was an internal error for Global Accelerator.</p>
39
+ *
40
+ * @throws {@link InvalidArgumentException} (client fault)
41
+ * <p>An argument that you specified is invalid.</p>
42
+ *
43
+ *
34
44
  */
35
45
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
36
46
  readonly input: ListTagsForResourceCommandInput;
@@ -34,6 +34,23 @@ export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrRespo
34
34
  * @see {@link ProvisionByoipCidrCommandOutput} for command's `response` shape.
35
35
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
36
36
  *
37
+ * @throws {@link AccessDeniedException} (client fault)
38
+ * <p>You don't have access permission.</p>
39
+ *
40
+ * @throws {@link IncorrectCidrStateException} (client fault)
41
+ * <p>The CIDR that you specified is not valid for this action. For example, the state of the CIDR might be
42
+ * incorrect for this action.</p>
43
+ *
44
+ * @throws {@link InternalServiceErrorException} (server fault)
45
+ * <p>There was an internal error for Global Accelerator.</p>
46
+ *
47
+ * @throws {@link InvalidArgumentException} (client fault)
48
+ * <p>An argument that you specified is invalid.</p>
49
+ *
50
+ * @throws {@link LimitExceededException} (client fault)
51
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
52
+ *
53
+ *
37
54
  */
38
55
  export declare class ProvisionByoipCidrCommand extends $Command<ProvisionByoipCidrCommandInput, ProvisionByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
39
56
  readonly input: ProvisionByoipCidrCommandInput;
@@ -29,6 +29,25 @@ export interface RemoveCustomRoutingEndpointsCommandOutput extends __MetadataBea
29
29
  * @see {@link RemoveCustomRoutingEndpointsCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>You don't have access permission.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>You can't use both of those options.</p>
37
+ *
38
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
39
+ * <p>The endpoint group that you specified doesn't exist.</p>
40
+ *
41
+ * @throws {@link EndpointNotFoundException} (client fault)
42
+ * <p>The endpoint that you specified doesn't exist.</p>
43
+ *
44
+ * @throws {@link InternalServiceErrorException} (server fault)
45
+ * <p>There was an internal error for Global Accelerator.</p>
46
+ *
47
+ * @throws {@link InvalidArgumentException} (client fault)
48
+ * <p>An argument that you specified is invalid.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class RemoveCustomRoutingEndpointsCommand extends $Command<RemoveCustomRoutingEndpointsCommandInput, RemoveCustomRoutingEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
53
  readonly input: RemoveCustomRoutingEndpointsCommandInput;
@@ -45,6 +45,22 @@ export interface RemoveEndpointsCommandOutput extends __MetadataBearer {
45
45
  * @see {@link RemoveEndpointsCommandOutput} for command's `response` shape.
46
46
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
47
47
  *
48
+ * @throws {@link AccessDeniedException} (client fault)
49
+ * <p>You don't have access permission.</p>
50
+ *
51
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
52
+ * <p>The endpoint group that you specified doesn't exist.</p>
53
+ *
54
+ * @throws {@link InternalServiceErrorException} (server fault)
55
+ * <p>There was an internal error for Global Accelerator.</p>
56
+ *
57
+ * @throws {@link InvalidArgumentException} (client fault)
58
+ * <p>An argument that you specified is invalid.</p>
59
+ *
60
+ * @throws {@link TransactionInProgressException} (client fault)
61
+ * <p>There's already a transaction in progress. Another transaction can't be processed.</p>
62
+ *
63
+ *
48
64
  */
49
65
  export declare class RemoveEndpointsCommand extends $Command<RemoveEndpointsCommandInput, RemoveEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
50
66
  readonly input: RemoveEndpointsCommandInput;
@@ -31,6 +31,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
31
31
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
32
32
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
33
33
  *
34
+ * @throws {@link AcceleratorNotFoundException} (client fault)
35
+ * <p>The accelerator that you specified doesn't exist.</p>
36
+ *
37
+ * @throws {@link InternalServiceErrorException} (server fault)
38
+ * <p>There was an internal error for Global Accelerator.</p>
39
+ *
40
+ * @throws {@link InvalidArgumentException} (client fault)
41
+ * <p>An argument that you specified is invalid.</p>
42
+ *
43
+ *
34
44
  */
35
45
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
36
46
  readonly input: TagResourceCommandInput;
@@ -32,6 +32,16 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
32
32
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
33
33
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
34
34
  *
35
+ * @throws {@link AcceleratorNotFoundException} (client fault)
36
+ * <p>The accelerator that you specified doesn't exist.</p>
37
+ *
38
+ * @throws {@link InternalServiceErrorException} (server fault)
39
+ * <p>There was an internal error for Global Accelerator.</p>
40
+ *
41
+ * @throws {@link InvalidArgumentException} (client fault)
42
+ * <p>An argument that you specified is invalid.</p>
43
+ *
44
+ *
35
45
  */
36
46
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
37
47
  readonly input: UntagResourceCommandInput;
@@ -29,6 +29,19 @@ export interface UpdateAcceleratorAttributesCommandOutput extends UpdateAccelera
29
29
  * @see {@link UpdateAcceleratorAttributesCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AcceleratorNotFoundException} (client fault)
33
+ * <p>The accelerator that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link AccessDeniedException} (client fault)
36
+ * <p>You don't have access permission.</p>
37
+ *
38
+ * @throws {@link InternalServiceErrorException} (server fault)
39
+ * <p>There was an internal error for Global Accelerator.</p>
40
+ *
41
+ * @throws {@link InvalidArgumentException} (client fault)
42
+ * <p>An argument that you specified is invalid.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class UpdateAcceleratorAttributesCommand extends $Command<UpdateAcceleratorAttributesCommandInput, UpdateAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
47
  readonly input: UpdateAcceleratorAttributesCommandInput;
@@ -35,6 +35,19 @@ export interface UpdateAcceleratorCommandOutput extends UpdateAcceleratorRespons
35
35
  * @see {@link UpdateAcceleratorCommandOutput} for command's `response` shape.
36
36
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
37
37
  *
38
+ * @throws {@link AcceleratorNotFoundException} (client fault)
39
+ * <p>The accelerator that you specified doesn't exist.</p>
40
+ *
41
+ * @throws {@link AccessDeniedException} (client fault)
42
+ * <p>You don't have access permission.</p>
43
+ *
44
+ * @throws {@link InternalServiceErrorException} (server fault)
45
+ * <p>There was an internal error for Global Accelerator.</p>
46
+ *
47
+ * @throws {@link InvalidArgumentException} (client fault)
48
+ * <p>An argument that you specified is invalid.</p>
49
+ *
50
+ *
38
51
  */
39
52
  export declare class UpdateAcceleratorCommand extends $Command<UpdateAcceleratorCommandInput, UpdateAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
40
53
  readonly input: UpdateAcceleratorCommandInput;
@@ -29,6 +29,19 @@ export interface UpdateCustomRoutingAcceleratorAttributesCommandOutput extends U
29
29
  * @see {@link UpdateCustomRoutingAcceleratorAttributesCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AcceleratorNotFoundException} (client fault)
33
+ * <p>The accelerator that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link AccessDeniedException} (client fault)
36
+ * <p>You don't have access permission.</p>
37
+ *
38
+ * @throws {@link InternalServiceErrorException} (server fault)
39
+ * <p>There was an internal error for Global Accelerator.</p>
40
+ *
41
+ * @throws {@link InvalidArgumentException} (client fault)
42
+ * <p>An argument that you specified is invalid.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class UpdateCustomRoutingAcceleratorAttributesCommand extends $Command<UpdateCustomRoutingAcceleratorAttributesCommandInput, UpdateCustomRoutingAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
47
  readonly input: UpdateCustomRoutingAcceleratorAttributesCommandInput;
@@ -29,6 +29,16 @@ export interface UpdateCustomRoutingAcceleratorCommandOutput extends UpdateCusto
29
29
  * @see {@link UpdateCustomRoutingAcceleratorCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AcceleratorNotFoundException} (client fault)
33
+ * <p>The accelerator that you specified doesn't exist.</p>
34
+ *
35
+ * @throws {@link InternalServiceErrorException} (server fault)
36
+ * <p>There was an internal error for Global Accelerator.</p>
37
+ *
38
+ * @throws {@link InvalidArgumentException} (client fault)
39
+ * <p>An argument that you specified is invalid.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class UpdateCustomRoutingAcceleratorCommand extends $Command<UpdateCustomRoutingAcceleratorCommandInput, UpdateCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
44
  readonly input: UpdateCustomRoutingAcceleratorCommandInput;
@@ -29,6 +29,22 @@ export interface UpdateCustomRoutingListenerCommandOutput extends UpdateCustomRo
29
29
  * @see {@link UpdateCustomRoutingListenerCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceErrorException} (server fault)
33
+ * <p>There was an internal error for Global Accelerator.</p>
34
+ *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>An argument that you specified is invalid.</p>
37
+ *
38
+ * @throws {@link InvalidPortRangeException} (client fault)
39
+ * <p>The port numbers that you specified are not valid numbers or are not unique for this accelerator.</p>
40
+ *
41
+ * @throws {@link LimitExceededException} (client fault)
42
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
43
+ *
44
+ * @throws {@link ListenerNotFoundException} (client fault)
45
+ * <p>The listener that you specified doesn't exist.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class UpdateCustomRoutingListenerCommand extends $Command<UpdateCustomRoutingListenerCommandInput, UpdateCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
50
  readonly input: UpdateCustomRoutingListenerCommandInput;
@@ -29,6 +29,22 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes
29
29
  * @see {@link UpdateEndpointGroupCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>You don't have access permission.</p>
34
+ *
35
+ * @throws {@link EndpointGroupNotFoundException} (client fault)
36
+ * <p>The endpoint group that you specified doesn't exist.</p>
37
+ *
38
+ * @throws {@link InternalServiceErrorException} (server fault)
39
+ * <p>There was an internal error for Global Accelerator.</p>
40
+ *
41
+ * @throws {@link InvalidArgumentException} (client fault)
42
+ * <p>An argument that you specified is invalid.</p>
43
+ *
44
+ * @throws {@link LimitExceededException} (client fault)
45
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class UpdateEndpointGroupCommand extends $Command<UpdateEndpointGroupCommandInput, UpdateEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
50
  readonly input: UpdateEndpointGroupCommandInput;
@@ -29,6 +29,22 @@ export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __M
29
29
  * @see {@link UpdateListenerCommandOutput} for command's `response` shape.
30
30
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
31
31
  *
32
+ * @throws {@link InternalServiceErrorException} (server fault)
33
+ * <p>There was an internal error for Global Accelerator.</p>
34
+ *
35
+ * @throws {@link InvalidArgumentException} (client fault)
36
+ * <p>An argument that you specified is invalid.</p>
37
+ *
38
+ * @throws {@link InvalidPortRangeException} (client fault)
39
+ * <p>The port numbers that you specified are not valid numbers or are not unique for this accelerator.</p>
40
+ *
41
+ * @throws {@link LimitExceededException} (client fault)
42
+ * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
43
+ *
44
+ * @throws {@link ListenerNotFoundException} (client fault)
45
+ * <p>The listener that you specified doesn't exist.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class UpdateListenerCommand extends $Command<UpdateListenerCommandInput, UpdateListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
34
50
  readonly input: UpdateListenerCommandInput;
@@ -35,6 +35,23 @@ export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrRespons
35
35
  * @see {@link WithdrawByoipCidrCommandOutput} for command's `response` shape.
36
36
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
37
37
  *
38
+ * @throws {@link AccessDeniedException} (client fault)
39
+ * <p>You don't have access permission.</p>
40
+ *
41
+ * @throws {@link ByoipCidrNotFoundException} (client fault)
42
+ * <p>The CIDR that you specified was not found or is incorrect.</p>
43
+ *
44
+ * @throws {@link IncorrectCidrStateException} (client fault)
45
+ * <p>The CIDR that you specified is not valid for this action. For example, the state of the CIDR might be
46
+ * incorrect for this action.</p>
47
+ *
48
+ * @throws {@link InternalServiceErrorException} (server fault)
49
+ * <p>There was an internal error for Global Accelerator.</p>
50
+ *
51
+ * @throws {@link InvalidArgumentException} (client fault)
52
+ * <p>An argument that you specified is invalid.</p>
53
+ *
54
+ *
38
55
  */
39
56
  export declare class WithdrawByoipCidrCommand extends $Command<WithdrawByoipCidrCommandInput, WithdrawByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
40
57
  readonly input: WithdrawByoipCidrCommandInput;
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.289.0",
4
+ "version": "3.290.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",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1",
56
56
  "uuid": "^8.3.2"