@aws-sdk/client-vpc-lattice 3.926.0 → 3.928.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 (44) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +250 -0
  3. package/dist-es/VPCLattice.js +8 -0
  4. package/dist-es/commands/DeleteDomainVerificationCommand.js +22 -0
  5. package/dist-es/commands/GetDomainVerificationCommand.js +22 -0
  6. package/dist-es/commands/ListDomainVerificationsCommand.js +22 -0
  7. package/dist-es/commands/StartDomainVerificationCommand.js +22 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +11 -0
  10. package/dist-es/pagination/ListDomainVerificationsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_restJson1.js +158 -0
  13. package/dist-types/VPCLattice.d.ts +29 -0
  14. package/dist-types/VPCLatticeClient.d.ts +6 -2
  15. package/dist-types/commands/CreateResourceConfigurationCommand.d.ts +7 -0
  16. package/dist-types/commands/CreateServiceNetworkResourceAssociationCommand.d.ts +2 -0
  17. package/dist-types/commands/CreateServiceNetworkVpcAssociationCommand.d.ts +14 -0
  18. package/dist-types/commands/DeleteDomainVerificationCommand.d.ts +87 -0
  19. package/dist-types/commands/GetDomainVerificationCommand.d.ts +101 -0
  20. package/dist-types/commands/GetResourceConfigurationCommand.d.ts +4 -0
  21. package/dist-types/commands/GetServiceNetworkResourceAssociationCommand.d.ts +2 -0
  22. package/dist-types/commands/GetServiceNetworkVpcAssociationCommand.d.ts +7 -0
  23. package/dist-types/commands/ListDomainVerificationsCommand.d.ts +107 -0
  24. package/dist-types/commands/ListResourceConfigurationsCommand.d.ts +4 -0
  25. package/dist-types/commands/ListServiceNetworkResourceAssociationsCommand.d.ts +1 -0
  26. package/dist-types/commands/ListServiceNetworkVpcAssociationsCommand.d.ts +7 -0
  27. package/dist-types/commands/StartDomainVerificationCommand.d.ts +103 -0
  28. package/dist-types/commands/index.d.ts +4 -0
  29. package/dist-types/models/models_0.d.ts +395 -0
  30. package/dist-types/pagination/ListDomainVerificationsPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  33. package/dist-types/ts3.4/VPCLattice.d.ts +69 -0
  34. package/dist-types/ts3.4/VPCLatticeClient.d.ts +24 -0
  35. package/dist-types/ts3.4/commands/DeleteDomainVerificationCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/GetDomainVerificationCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/ListDomainVerificationsCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/StartDomainVerificationCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +98 -0
  41. package/dist-types/ts3.4/pagination/ListDomainVerificationsPaginator.d.ts +11 -0
  42. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  44. package/package.json +5 -5
@@ -1,5 +1,6 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListAccessLogSubscriptionsPaginator";
3
+ export * from "./ListDomainVerificationsPaginator";
3
4
  export * from "./ListListenersPaginator";
4
5
  export * from "./ListResourceConfigurationsPaginator";
5
6
  export * from "./ListResourceEndpointAssociationsPaginator";
@@ -59,6 +59,10 @@ import {
59
59
  DeleteAuthPolicyCommandInput,
60
60
  DeleteAuthPolicyCommandOutput,
61
61
  } from "../commands/DeleteAuthPolicyCommand";
62
+ import {
63
+ DeleteDomainVerificationCommandInput,
64
+ DeleteDomainVerificationCommandOutput,
65
+ } from "../commands/DeleteDomainVerificationCommand";
62
66
  import {
63
67
  DeleteListenerCommandInput,
64
68
  DeleteListenerCommandOutput,
@@ -119,6 +123,10 @@ import {
119
123
  GetAuthPolicyCommandInput,
120
124
  GetAuthPolicyCommandOutput,
121
125
  } from "../commands/GetAuthPolicyCommand";
126
+ import {
127
+ GetDomainVerificationCommandInput,
128
+ GetDomainVerificationCommandOutput,
129
+ } from "../commands/GetDomainVerificationCommand";
122
130
  import {
123
131
  GetListenerCommandInput,
124
132
  GetListenerCommandOutput,
@@ -167,6 +175,10 @@ import {
167
175
  ListAccessLogSubscriptionsCommandInput,
168
176
  ListAccessLogSubscriptionsCommandOutput,
169
177
  } from "../commands/ListAccessLogSubscriptionsCommand";
178
+ import {
179
+ ListDomainVerificationsCommandInput,
180
+ ListDomainVerificationsCommandOutput,
181
+ } from "../commands/ListDomainVerificationsCommand";
170
182
  import {
171
183
  ListListenersCommandInput,
172
184
  ListListenersCommandOutput,
@@ -235,6 +247,10 @@ import {
235
247
  RegisterTargetsCommandInput,
236
248
  RegisterTargetsCommandOutput,
237
249
  } from "../commands/RegisterTargetsCommand";
250
+ import {
251
+ StartDomainVerificationCommandInput,
252
+ StartDomainVerificationCommandOutput,
253
+ } from "../commands/StartDomainVerificationCommand";
238
254
  import {
239
255
  TagResourceCommandInput,
240
256
  TagResourceCommandOutput,
@@ -335,6 +351,10 @@ export declare const se_DeleteAuthPolicyCommand: (
335
351
  input: DeleteAuthPolicyCommandInput,
336
352
  context: __SerdeContext
337
353
  ) => Promise<__HttpRequest>;
354
+ export declare const se_DeleteDomainVerificationCommand: (
355
+ input: DeleteDomainVerificationCommandInput,
356
+ context: __SerdeContext
357
+ ) => Promise<__HttpRequest>;
338
358
  export declare const se_DeleteListenerCommand: (
339
359
  input: DeleteListenerCommandInput,
340
360
  context: __SerdeContext
@@ -395,6 +415,10 @@ export declare const se_GetAuthPolicyCommand: (
395
415
  input: GetAuthPolicyCommandInput,
396
416
  context: __SerdeContext
397
417
  ) => Promise<__HttpRequest>;
418
+ export declare const se_GetDomainVerificationCommand: (
419
+ input: GetDomainVerificationCommandInput,
420
+ context: __SerdeContext
421
+ ) => Promise<__HttpRequest>;
398
422
  export declare const se_GetListenerCommand: (
399
423
  input: GetListenerCommandInput,
400
424
  context: __SerdeContext
@@ -443,6 +467,10 @@ export declare const se_ListAccessLogSubscriptionsCommand: (
443
467
  input: ListAccessLogSubscriptionsCommandInput,
444
468
  context: __SerdeContext
445
469
  ) => Promise<__HttpRequest>;
470
+ export declare const se_ListDomainVerificationsCommand: (
471
+ input: ListDomainVerificationsCommandInput,
472
+ context: __SerdeContext
473
+ ) => Promise<__HttpRequest>;
446
474
  export declare const se_ListListenersCommand: (
447
475
  input: ListListenersCommandInput,
448
476
  context: __SerdeContext
@@ -511,6 +539,10 @@ export declare const se_RegisterTargetsCommand: (
511
539
  input: RegisterTargetsCommandInput,
512
540
  context: __SerdeContext
513
541
  ) => Promise<__HttpRequest>;
542
+ export declare const se_StartDomainVerificationCommand: (
543
+ input: StartDomainVerificationCommandInput,
544
+ context: __SerdeContext
545
+ ) => Promise<__HttpRequest>;
514
546
  export declare const se_TagResourceCommand: (
515
547
  input: TagResourceCommandInput,
516
548
  context: __SerdeContext
@@ -611,6 +643,10 @@ export declare const de_DeleteAuthPolicyCommand: (
611
643
  output: __HttpResponse,
612
644
  context: __SerdeContext
613
645
  ) => Promise<DeleteAuthPolicyCommandOutput>;
646
+ export declare const de_DeleteDomainVerificationCommand: (
647
+ output: __HttpResponse,
648
+ context: __SerdeContext
649
+ ) => Promise<DeleteDomainVerificationCommandOutput>;
614
650
  export declare const de_DeleteListenerCommand: (
615
651
  output: __HttpResponse,
616
652
  context: __SerdeContext
@@ -671,6 +707,10 @@ export declare const de_GetAuthPolicyCommand: (
671
707
  output: __HttpResponse,
672
708
  context: __SerdeContext
673
709
  ) => Promise<GetAuthPolicyCommandOutput>;
710
+ export declare const de_GetDomainVerificationCommand: (
711
+ output: __HttpResponse,
712
+ context: __SerdeContext
713
+ ) => Promise<GetDomainVerificationCommandOutput>;
674
714
  export declare const de_GetListenerCommand: (
675
715
  output: __HttpResponse,
676
716
  context: __SerdeContext
@@ -719,6 +759,10 @@ export declare const de_ListAccessLogSubscriptionsCommand: (
719
759
  output: __HttpResponse,
720
760
  context: __SerdeContext
721
761
  ) => Promise<ListAccessLogSubscriptionsCommandOutput>;
762
+ export declare const de_ListDomainVerificationsCommand: (
763
+ output: __HttpResponse,
764
+ context: __SerdeContext
765
+ ) => Promise<ListDomainVerificationsCommandOutput>;
722
766
  export declare const de_ListListenersCommand: (
723
767
  output: __HttpResponse,
724
768
  context: __SerdeContext
@@ -787,6 +831,10 @@ export declare const de_RegisterTargetsCommand: (
787
831
  output: __HttpResponse,
788
832
  context: __SerdeContext
789
833
  ) => Promise<RegisterTargetsCommandOutput>;
834
+ export declare const de_StartDomainVerificationCommand: (
835
+ output: __HttpResponse,
836
+ context: __SerdeContext
837
+ ) => Promise<StartDomainVerificationCommandOutput>;
790
838
  export declare const de_TagResourceCommand: (
791
839
  output: __HttpResponse,
792
840
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-vpc-lattice",
3
3
  "description": "AWS SDK for JavaScript Vpc Lattice Client for Node.js, Browser and React Native",
4
- "version": "3.926.0",
4
+ "version": "3.928.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-vpc-lattice",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.926.0",
24
- "@aws-sdk/credential-provider-node": "3.926.0",
23
+ "@aws-sdk/core": "3.928.0",
24
+ "@aws-sdk/credential-provider-node": "3.928.0",
25
25
  "@aws-sdk/middleware-host-header": "3.922.0",
26
26
  "@aws-sdk/middleware-logger": "3.922.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.922.0",
28
- "@aws-sdk/middleware-user-agent": "3.926.0",
28
+ "@aws-sdk/middleware-user-agent": "3.928.0",
29
29
  "@aws-sdk/region-config-resolver": "3.925.0",
30
30
  "@aws-sdk/types": "3.922.0",
31
31
  "@aws-sdk/util-endpoints": "3.922.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.922.0",
33
- "@aws-sdk/util-user-agent-node": "3.926.0",
33
+ "@aws-sdk/util-user-agent-node": "3.928.0",
34
34
  "@smithy/config-resolver": "^4.4.2",
35
35
  "@smithy/core": "^3.17.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.5",