@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
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { GlobalAcceleratorClient } from "../GlobalAcceleratorClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface GlobalAcceleratorPaginationConfiguration extends PaginationConfiguration {
4
7
  client: GlobalAcceleratorClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAcceleratorsCommandInput, ListAcceleratorsCommandOutput } from "../commands/ListAcceleratorsCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAccelerators(config: GlobalAcceleratorPaginationConfiguration, input: ListAcceleratorsCommandInput, ...additionalArguments: any): Paginator<ListAcceleratorsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListByoipCidrsCommandInput, ListByoipCidrsCommandOutput } from "../commands/ListByoipCidrsCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListByoipCidrs(config: GlobalAcceleratorPaginationConfiguration, input: ListByoipCidrsCommandInput, ...additionalArguments: any): Paginator<ListByoipCidrsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListCustomRoutingAcceleratorsCommandInput, ListCustomRoutingAcceleratorsCommandOutput } from "../commands/ListCustomRoutingAcceleratorsCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListCustomRoutingAccelerators(config: GlobalAcceleratorPaginationConfiguration, input: ListCustomRoutingAcceleratorsCommandInput, ...additionalArguments: any): Paginator<ListCustomRoutingAcceleratorsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListCustomRoutingEndpointGroupsCommandInput, ListCustomRoutingEndpointGroupsCommandOutput } from "../commands/ListCustomRoutingEndpointGroupsCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListCustomRoutingEndpointGroups(config: GlobalAcceleratorPaginationConfiguration, input: ListCustomRoutingEndpointGroupsCommandInput, ...additionalArguments: any): Paginator<ListCustomRoutingEndpointGroupsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListCustomRoutingListenersCommandInput, ListCustomRoutingListenersCommandOutput } from "../commands/ListCustomRoutingListenersCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListCustomRoutingListeners(config: GlobalAcceleratorPaginationConfiguration, input: ListCustomRoutingListenersCommandInput, ...additionalArguments: any): Paginator<ListCustomRoutingListenersCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListCustomRoutingPortMappingsByDestinationCommandInput, ListCustomRoutingPortMappingsByDestinationCommandOutput } from "../commands/ListCustomRoutingPortMappingsByDestinationCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListCustomRoutingPortMappingsByDestination(config: GlobalAcceleratorPaginationConfiguration, input: ListCustomRoutingPortMappingsByDestinationCommandInput, ...additionalArguments: any): Paginator<ListCustomRoutingPortMappingsByDestinationCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListCustomRoutingPortMappingsCommandInput, ListCustomRoutingPortMappingsCommandOutput } from "../commands/ListCustomRoutingPortMappingsCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListCustomRoutingPortMappings(config: GlobalAcceleratorPaginationConfiguration, input: ListCustomRoutingPortMappingsCommandInput, ...additionalArguments: any): Paginator<ListCustomRoutingPortMappingsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListEndpointGroupsCommandInput, ListEndpointGroupsCommandOutput } from "../commands/ListEndpointGroupsCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListEndpointGroups(config: GlobalAcceleratorPaginationConfiguration, input: ListEndpointGroupsCommandInput, ...additionalArguments: any): Paginator<ListEndpointGroupsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListListenersCommandInput, ListListenersCommandOutput } from "../commands/ListListenersCommand";
3
3
  import { GlobalAcceleratorPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListListeners(config: GlobalAcceleratorPaginationConfiguration, input: ListListenersCommandInput, ...additionalArguments: any): Paginator<ListListenersCommandOutput>;
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.296.0",
4
+ "version": "3.297.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,9 +20,9 @@
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.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",