@aws-sdk/client-global-accelerator 3.296.0 → 3.297.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 (64) hide show
  1. package/dist-types/GlobalAccelerator.d.ts +50 -0
  2. package/dist-types/GlobalAcceleratorClient.d.ts +24 -4
  3. package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +16 -0
  4. package/dist-types/commands/AddEndpointsCommand.d.ts +16 -0
  5. package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +16 -0
  6. package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateAcceleratorCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +16 -0
  11. package/dist-types/commands/CreateEndpointGroupCommand.d.ts +16 -0
  12. package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteAcceleratorCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +16 -0
  18. package/dist-types/commands/DeleteListenerCommand.d.ts +16 -0
  19. package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +16 -0
  20. package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeAcceleratorCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +16 -0
  24. package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +16 -0
  25. package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +16 -0
  26. package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +16 -0
  27. package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +16 -0
  28. package/dist-types/commands/DescribeListenerCommand.d.ts +16 -0
  29. package/dist-types/commands/ListAcceleratorsCommand.d.ts +16 -0
  30. package/dist-types/commands/ListByoipCidrsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +16 -0
  33. package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +16 -0
  34. package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +16 -0
  35. package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +16 -0
  36. package/dist-types/commands/ListEndpointGroupsCommand.d.ts +16 -0
  37. package/dist-types/commands/ListListenersCommand.d.ts +16 -0
  38. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +16 -0
  40. package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +16 -0
  41. package/dist-types/commands/RemoveEndpointsCommand.d.ts +16 -0
  42. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  44. package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +16 -0
  45. package/dist-types/commands/UpdateAcceleratorCommand.d.ts +16 -0
  46. package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +16 -0
  47. package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +16 -0
  48. package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +16 -0
  49. package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +16 -0
  50. package/dist-types/commands/UpdateListenerCommand.d.ts +16 -0
  51. package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +16 -0
  52. package/dist-types/models/GlobalAcceleratorServiceException.d.ts +2 -0
  53. package/dist-types/models/models_0.d.ts +342 -0
  54. package/dist-types/pagination/Interfaces.d.ts +3 -0
  55. package/dist-types/pagination/ListAcceleratorsPaginator.d.ts +3 -0
  56. package/dist-types/pagination/ListByoipCidrsPaginator.d.ts +3 -0
  57. package/dist-types/pagination/ListCustomRoutingAcceleratorsPaginator.d.ts +3 -0
  58. package/dist-types/pagination/ListCustomRoutingEndpointGroupsPaginator.d.ts +3 -0
  59. package/dist-types/pagination/ListCustomRoutingListenersPaginator.d.ts +3 -0
  60. package/dist-types/pagination/ListCustomRoutingPortMappingsByDestinationPaginator.d.ts +3 -0
  61. package/dist-types/pagination/ListCustomRoutingPortMappingsPaginator.d.ts +3 -0
  62. package/dist-types/pagination/ListEndpointGroupsPaginator.d.ts +3 -0
  63. package/dist-types/pagination/ListListenersPaginator.d.ts +3 -0
  64. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Add tags to an accelerator resource. </p>
18
23
  * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html">Tagging
19
24
  * in Global Accelerator</a> in the <i>Global Accelerator Developer Guide</i>. </p>
@@ -27,6 +32,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
36
+ * @returns {@link TagResourceCommandOutput}
30
37
  * @see {@link TagResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -45,11 +52,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
45
52
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
46
53
  readonly input: TagResourceCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: TagResourceCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Remove tags from a Global Accelerator resource. When you specify a tag key, the action removes both that key and its associated value.
18
23
  * The operation succeeds even if you attempt to remove tags from an accelerator that was already removed.</p>
19
24
  * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html">Tagging
@@ -28,6 +33,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
37
+ * @returns {@link UntagResourceCommandOutput}
31
38
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
32
39
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
33
40
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -46,11 +53,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
46
53
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
47
54
  readonly input: UntagResourceCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: UntagResourceCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { UpdateAcceleratorAttributesRequest, UpdateAcceleratorAttributesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAcceleratorAttributesCommand}.
8
10
  */
9
11
  export interface UpdateAcceleratorAttributesCommandInput extends UpdateAcceleratorAttributesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAcceleratorAttributesCommand}.
13
17
  */
14
18
  export interface UpdateAcceleratorAttributesCommandOutput extends UpdateAcceleratorAttributesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update the attributes for an accelerator. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateAcceleratorAttributesCommandOutput extends UpdateAccelera
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateAcceleratorAttributesCommandInput - {@link UpdateAcceleratorAttributesCommandInput}
34
+ * @returns {@link UpdateAcceleratorAttributesCommandOutput}
28
35
  * @see {@link UpdateAcceleratorAttributesCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateAcceleratorAttributesCommandOutput} for command's `response` shape.
30
37
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -46,11 +53,20 @@ export interface UpdateAcceleratorAttributesCommandOutput extends UpdateAccelera
46
53
  export declare class UpdateAcceleratorAttributesCommand extends $Command<UpdateAcceleratorAttributesCommandInput, UpdateAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
47
54
  readonly input: UpdateAcceleratorAttributesCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: UpdateAcceleratorAttributesCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAcceleratorAttributesCommandInput, UpdateAcceleratorAttributesCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { UpdateAcceleratorRequest, UpdateAcceleratorResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAcceleratorCommand}.
8
10
  */
9
11
  export interface UpdateAcceleratorCommandInput extends UpdateAcceleratorRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAcceleratorCommand}.
13
17
  */
14
18
  export interface UpdateAcceleratorCommandOutput extends UpdateAcceleratorResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update an accelerator. </p>
18
23
  *
19
24
  * <important>
@@ -31,6 +36,8 @@ export interface UpdateAcceleratorCommandOutput extends UpdateAcceleratorRespons
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param UpdateAcceleratorCommandInput - {@link UpdateAcceleratorCommandInput}
40
+ * @returns {@link UpdateAcceleratorCommandOutput}
34
41
  * @see {@link UpdateAcceleratorCommandInput} for command's `input` shape.
35
42
  * @see {@link UpdateAcceleratorCommandOutput} for command's `response` shape.
36
43
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateAcceleratorCommandOutput extends UpdateAcceleratorRespons
52
59
  export declare class UpdateAcceleratorCommand extends $Command<UpdateAcceleratorCommandInput, UpdateAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
53
60
  readonly input: UpdateAcceleratorCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateAcceleratorCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAcceleratorCommandInput, UpdateAcceleratorCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { UpdateCustomRoutingAcceleratorAttributesRequest, UpdateCustomRoutingAcceleratorAttributesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateCustomRoutingAcceleratorAttributesCommand}.
8
10
  */
9
11
  export interface UpdateCustomRoutingAcceleratorAttributesCommandInput extends UpdateCustomRoutingAcceleratorAttributesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateCustomRoutingAcceleratorAttributesCommand}.
13
17
  */
14
18
  export interface UpdateCustomRoutingAcceleratorAttributesCommandOutput extends UpdateCustomRoutingAcceleratorAttributesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update the attributes for a custom routing accelerator. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateCustomRoutingAcceleratorAttributesCommandOutput extends U
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateCustomRoutingAcceleratorAttributesCommandInput - {@link UpdateCustomRoutingAcceleratorAttributesCommandInput}
34
+ * @returns {@link UpdateCustomRoutingAcceleratorAttributesCommandOutput}
28
35
  * @see {@link UpdateCustomRoutingAcceleratorAttributesCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateCustomRoutingAcceleratorAttributesCommandOutput} for command's `response` shape.
30
37
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -46,11 +53,20 @@ export interface UpdateCustomRoutingAcceleratorAttributesCommandOutput extends U
46
53
  export declare class UpdateCustomRoutingAcceleratorAttributesCommand extends $Command<UpdateCustomRoutingAcceleratorAttributesCommandInput, UpdateCustomRoutingAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
47
54
  readonly input: UpdateCustomRoutingAcceleratorAttributesCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: UpdateCustomRoutingAcceleratorAttributesCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCustomRoutingAcceleratorAttributesCommandInput, UpdateCustomRoutingAcceleratorAttributesCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { UpdateCustomRoutingAcceleratorRequest, UpdateCustomRoutingAcceleratorResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateCustomRoutingAcceleratorCommand}.
8
10
  */
9
11
  export interface UpdateCustomRoutingAcceleratorCommandInput extends UpdateCustomRoutingAcceleratorRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateCustomRoutingAcceleratorCommand}.
13
17
  */
14
18
  export interface UpdateCustomRoutingAcceleratorCommandOutput extends UpdateCustomRoutingAcceleratorResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update a custom routing accelerator. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateCustomRoutingAcceleratorCommandOutput extends UpdateCusto
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateCustomRoutingAcceleratorCommandInput - {@link UpdateCustomRoutingAcceleratorCommandInput}
34
+ * @returns {@link UpdateCustomRoutingAcceleratorCommandOutput}
28
35
  * @see {@link UpdateCustomRoutingAcceleratorCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateCustomRoutingAcceleratorCommandOutput} for command's `response` shape.
30
37
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UpdateCustomRoutingAcceleratorCommandOutput extends UpdateCusto
43
50
  export declare class UpdateCustomRoutingAcceleratorCommand extends $Command<UpdateCustomRoutingAcceleratorCommandInput, UpdateCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
44
51
  readonly input: UpdateCustomRoutingAcceleratorCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UpdateCustomRoutingAcceleratorCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCustomRoutingAcceleratorCommandInput, UpdateCustomRoutingAcceleratorCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { UpdateCustomRoutingListenerRequest, UpdateCustomRoutingListenerResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateCustomRoutingListenerCommand}.
8
10
  */
9
11
  export interface UpdateCustomRoutingListenerCommandInput extends UpdateCustomRoutingListenerRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateCustomRoutingListenerCommand}.
13
17
  */
14
18
  export interface UpdateCustomRoutingListenerCommandOutput extends UpdateCustomRoutingListenerResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update a listener for a custom routing accelerator. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateCustomRoutingListenerCommandOutput extends UpdateCustomRo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateCustomRoutingListenerCommandInput - {@link UpdateCustomRoutingListenerCommandInput}
34
+ * @returns {@link UpdateCustomRoutingListenerCommandOutput}
28
35
  * @see {@link UpdateCustomRoutingListenerCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateCustomRoutingListenerCommandOutput} for command's `response` shape.
30
37
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateCustomRoutingListenerCommandOutput extends UpdateCustomRo
49
56
  export declare class UpdateCustomRoutingListenerCommand extends $Command<UpdateCustomRoutingListenerCommandInput, UpdateCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
50
57
  readonly input: UpdateCustomRoutingListenerCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateCustomRoutingListenerCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCustomRoutingListenerCommandInput, UpdateCustomRoutingListenerCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { UpdateEndpointGroupRequest, UpdateEndpointGroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateEndpointGroupCommand}.
8
10
  */
9
11
  export interface UpdateEndpointGroupCommandInput extends UpdateEndpointGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateEndpointGroupCommand}.
13
17
  */
14
18
  export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update an endpoint group. A resource must be valid and active when you add it as an endpoint.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateEndpointGroupCommandInput - {@link UpdateEndpointGroupCommandInput}
34
+ * @returns {@link UpdateEndpointGroupCommandOutput}
28
35
  * @see {@link UpdateEndpointGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateEndpointGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateEndpointGroupCommandOutput extends UpdateEndpointGroupRes
49
56
  export declare class UpdateEndpointGroupCommand extends $Command<UpdateEndpointGroupCommandInput, UpdateEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
50
57
  readonly input: UpdateEndpointGroupCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateEndpointGroupCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEndpointGroupCommandInput, UpdateEndpointGroupCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { UpdateListenerRequest, UpdateListenerResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateListenerCommand}.
8
10
  */
9
11
  export interface UpdateListenerCommandInput extends UpdateListenerRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateListenerCommand}.
13
17
  */
14
18
  export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update a listener. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateListenerCommandInput - {@link UpdateListenerCommandInput}
34
+ * @returns {@link UpdateListenerCommandOutput}
28
35
  * @see {@link UpdateListenerCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateListenerCommandOutput} for command's `response` shape.
30
37
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UpdateListenerCommandOutput extends UpdateListenerResponse, __M
49
56
  export declare class UpdateListenerCommand extends $Command<UpdateListenerCommandInput, UpdateListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
50
57
  readonly input: UpdateListenerCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UpdateListenerCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateListenerCommandInput, UpdateListenerCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
5
5
  import { WithdrawByoipCidrRequest, WithdrawByoipCidrResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link WithdrawByoipCidrCommand}.
8
10
  */
9
11
  export interface WithdrawByoipCidrCommandInput extends WithdrawByoipCidrRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link WithdrawByoipCidrCommand}.
13
17
  */
14
18
  export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Stops advertising an address range that is provisioned as an address pool.
18
23
  * You can perform this operation at most once every 10 seconds, even if you specify different address
19
24
  * ranges each time.</p>
@@ -31,6 +36,8 @@ export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrRespons
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param WithdrawByoipCidrCommandInput - {@link WithdrawByoipCidrCommandInput}
40
+ * @returns {@link WithdrawByoipCidrCommandOutput}
34
41
  * @see {@link WithdrawByoipCidrCommandInput} for command's `input` shape.
35
42
  * @see {@link WithdrawByoipCidrCommandOutput} for command's `response` shape.
36
43
  * @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
@@ -56,11 +63,20 @@ export interface WithdrawByoipCidrCommandOutput extends WithdrawByoipCidrRespons
56
63
  export declare class WithdrawByoipCidrCommand extends $Command<WithdrawByoipCidrCommandInput, WithdrawByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
57
64
  readonly input: WithdrawByoipCidrCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: WithdrawByoipCidrCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<WithdrawByoipCidrCommandInput, WithdrawByoipCidrCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from GlobalAccelerator service.
4
6
  */
5
7
  export declare class GlobalAcceleratorServiceException extends __ServiceException {