@aws-sdk/client-groundstation 3.922.0 → 3.926.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 (27) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +161 -1
  3. package/dist-es/GroundStation.js +4 -0
  4. package/dist-es/commands/CreateDataflowEndpointGroupV2Command.js +22 -0
  5. package/dist-es/commands/GetAgentTaskResponseUrlCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_0.js +40 -0
  8. package/dist-es/protocols/Aws_restJson1.js +83 -2
  9. package/dist-types/GroundStation.d.ts +14 -0
  10. package/dist-types/GroundStationClient.d.ts +4 -2
  11. package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  12. package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +46 -0
  13. package/dist-types/commands/CreateDataflowEndpointGroupV2Command.d.ts +142 -0
  14. package/dist-types/commands/DescribeContactCommand.d.ts +82 -8
  15. package/dist-types/commands/GetAgentTaskResponseUrlCommand.d.ts +86 -0
  16. package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +46 -0
  17. package/dist-types/commands/index.d.ts +2 -0
  18. package/dist-types/models/models_0.d.ts +315 -0
  19. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  20. package/dist-types/ts3.4/GroundStation.d.ts +34 -0
  21. package/dist-types/ts3.4/GroundStationClient.d.ts +12 -0
  22. package/dist-types/ts3.4/commands/CreateDataflowEndpointGroupV2Command.d.ts +51 -0
  23. package/dist-types/ts3.4/commands/GetAgentTaskResponseUrlCommand.d.ts +51 -0
  24. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  25. package/dist-types/ts3.4/models/models_0.d.ts +127 -0
  26. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  27. package/package.json +8 -8
@@ -462,6 +462,34 @@ export interface UpdateConfigRequest {
462
462
  configType: ConfigCapabilityType | undefined;
463
463
  configData: ConfigTypeData | undefined;
464
464
  }
465
+ export interface DownlinkConnectionDetails {
466
+ agentIpAndPortAddress: RangedConnectionDetails | undefined;
467
+ egressAddressAndPort: ConnectionDetails | undefined;
468
+ }
469
+ export type DownlinkDataflowDetails =
470
+ | DownlinkDataflowDetails.AgentConnectionDetailsMember
471
+ | DownlinkDataflowDetails.$UnknownMember;
472
+ export declare namespace DownlinkDataflowDetails {
473
+ interface AgentConnectionDetailsMember {
474
+ agentConnectionDetails: DownlinkConnectionDetails;
475
+ $unknown?: never;
476
+ }
477
+ interface $UnknownMember {
478
+ agentConnectionDetails?: never;
479
+ $unknown: [string, any];
480
+ }
481
+ interface Visitor<T> {
482
+ agentConnectionDetails: (value: DownlinkConnectionDetails) => T;
483
+ _: (name: string, value: any) => T;
484
+ }
485
+ const visit: <T>(value: DownlinkDataflowDetails, visitor: Visitor<T>) => T;
486
+ }
487
+ export interface DownlinkAwsGroundStationAgentEndpointDetails {
488
+ name: string | undefined;
489
+ dataflowDetails: DownlinkDataflowDetails | undefined;
490
+ agentStatus?: AgentStatus | undefined;
491
+ auditResults?: AuditResults | undefined;
492
+ }
465
493
  export declare const EndpointStatus: {
466
494
  readonly created: "created";
467
495
  readonly creating: "creating";
@@ -482,10 +510,44 @@ export interface SecurityDetails {
482
510
  securityGroupIds: string[] | undefined;
483
511
  roleArn: string | undefined;
484
512
  }
513
+ export interface UplinkConnectionDetails {
514
+ ingressAddressAndPort: ConnectionDetails | undefined;
515
+ agentIpAndPortAddress: RangedConnectionDetails | undefined;
516
+ }
517
+ export type UplinkDataflowDetails =
518
+ | UplinkDataflowDetails.AgentConnectionDetailsMember
519
+ | UplinkDataflowDetails.$UnknownMember;
520
+ export declare namespace UplinkDataflowDetails {
521
+ interface AgentConnectionDetailsMember {
522
+ agentConnectionDetails: UplinkConnectionDetails;
523
+ $unknown?: never;
524
+ }
525
+ interface $UnknownMember {
526
+ agentConnectionDetails?: never;
527
+ $unknown: [string, any];
528
+ }
529
+ interface Visitor<T> {
530
+ agentConnectionDetails: (value: UplinkConnectionDetails) => T;
531
+ _: (name: string, value: any) => T;
532
+ }
533
+ const visit: <T>(value: UplinkDataflowDetails, visitor: Visitor<T>) => T;
534
+ }
535
+ export interface UplinkAwsGroundStationAgentEndpointDetails {
536
+ name: string | undefined;
537
+ dataflowDetails: UplinkDataflowDetails | undefined;
538
+ agentStatus?: AgentStatus | undefined;
539
+ auditResults?: AuditResults | undefined;
540
+ }
485
541
  export interface EndpointDetails {
486
542
  securityDetails?: SecurityDetails | undefined;
487
543
  endpoint?: DataflowEndpoint | undefined;
488
544
  awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint | undefined;
545
+ uplinkAwsGroundStationAgentEndpoint?:
546
+ | UplinkAwsGroundStationAgentEndpointDetails
547
+ | undefined;
548
+ downlinkAwsGroundStationAgentEndpoint?:
549
+ | DownlinkAwsGroundStationAgentEndpointDetails
550
+ | undefined;
489
551
  healthStatus?: CapabilityHealth | undefined;
490
552
  healthReasons?: CapabilityHealthReason[] | undefined;
491
553
  }
@@ -692,6 +754,62 @@ export interface CreateDataflowEndpointGroupRequest {
692
754
  export interface DataflowEndpointGroupIdResponse {
693
755
  dataflowEndpointGroupId?: string | undefined;
694
756
  }
757
+ export interface DownlinkAwsGroundStationAgentEndpoint {
758
+ name: string | undefined;
759
+ dataflowDetails: DownlinkDataflowDetails | undefined;
760
+ }
761
+ export interface UplinkAwsGroundStationAgentEndpoint {
762
+ name: string | undefined;
763
+ dataflowDetails: UplinkDataflowDetails | undefined;
764
+ }
765
+ export type CreateEndpointDetails =
766
+ | CreateEndpointDetails.DownlinkAwsGroundStationAgentEndpointMember
767
+ | CreateEndpointDetails.UplinkAwsGroundStationAgentEndpointMember
768
+ | CreateEndpointDetails.$UnknownMember;
769
+ export declare namespace CreateEndpointDetails {
770
+ interface UplinkAwsGroundStationAgentEndpointMember {
771
+ uplinkAwsGroundStationAgentEndpoint: UplinkAwsGroundStationAgentEndpoint;
772
+ downlinkAwsGroundStationAgentEndpoint?: never;
773
+ $unknown?: never;
774
+ }
775
+ interface DownlinkAwsGroundStationAgentEndpointMember {
776
+ uplinkAwsGroundStationAgentEndpoint?: never;
777
+ downlinkAwsGroundStationAgentEndpoint: DownlinkAwsGroundStationAgentEndpoint;
778
+ $unknown?: never;
779
+ }
780
+ interface $UnknownMember {
781
+ uplinkAwsGroundStationAgentEndpoint?: never;
782
+ downlinkAwsGroundStationAgentEndpoint?: never;
783
+ $unknown: [string, any];
784
+ }
785
+ interface Visitor<T> {
786
+ uplinkAwsGroundStationAgentEndpoint: (
787
+ value: UplinkAwsGroundStationAgentEndpoint
788
+ ) => T;
789
+ downlinkAwsGroundStationAgentEndpoint: (
790
+ value: DownlinkAwsGroundStationAgentEndpoint
791
+ ) => T;
792
+ _: (name: string, value: any) => T;
793
+ }
794
+ const visit: <T>(value: CreateEndpointDetails, visitor: Visitor<T>) => T;
795
+ }
796
+ export interface CreateDataflowEndpointGroupV2Request {
797
+ endpoints: CreateEndpointDetails[] | undefined;
798
+ contactPrePassDurationSeconds?: number | undefined;
799
+ contactPostPassDurationSeconds?: number | undefined;
800
+ tags?: Record<string, string> | undefined;
801
+ }
802
+ export interface CreateDataflowEndpointGroupV2Response {
803
+ dataflowEndpointGroupId?: string | undefined;
804
+ }
805
+ export declare class ServiceQuotaExceededException extends __BaseException {
806
+ readonly name: "ServiceQuotaExceededException";
807
+ readonly $fault: "client";
808
+ parameterName?: string | undefined;
809
+ constructor(
810
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
811
+ );
812
+ }
695
813
  export interface OEMEphemeris {
696
814
  s3Object?: S3Object | undefined;
697
815
  oemData?: string | undefined;
@@ -1015,6 +1133,15 @@ export interface EphemerisMetaData {
1015
1133
  epoch?: Date | undefined;
1016
1134
  name?: string | undefined;
1017
1135
  }
1136
+ export interface GetAgentTaskResponseUrlRequest {
1137
+ agentId: string | undefined;
1138
+ taskId: string | undefined;
1139
+ }
1140
+ export interface GetAgentTaskResponseUrlResponse {
1141
+ agentId: string | undefined;
1142
+ taskId: string | undefined;
1143
+ presignedLogUrl: string | undefined;
1144
+ }
1018
1145
  export interface GetMinuteUsageRequest {
1019
1146
  month: number | undefined;
1020
1147
  year: number | undefined;
@@ -15,6 +15,10 @@ import {
15
15
  CreateDataflowEndpointGroupCommandInput,
16
16
  CreateDataflowEndpointGroupCommandOutput,
17
17
  } from "../commands/CreateDataflowEndpointGroupCommand";
18
+ import {
19
+ CreateDataflowEndpointGroupV2CommandInput,
20
+ CreateDataflowEndpointGroupV2CommandOutput,
21
+ } from "../commands/CreateDataflowEndpointGroupV2Command";
18
22
  import {
19
23
  CreateEphemerisCommandInput,
20
24
  CreateEphemerisCommandOutput,
@@ -51,6 +55,10 @@ import {
51
55
  GetAgentConfigurationCommandInput,
52
56
  GetAgentConfigurationCommandOutput,
53
57
  } from "../commands/GetAgentConfigurationCommand";
58
+ import {
59
+ GetAgentTaskResponseUrlCommandInput,
60
+ GetAgentTaskResponseUrlCommandOutput,
61
+ } from "../commands/GetAgentTaskResponseUrlCommand";
54
62
  import {
55
63
  GetConfigCommandInput,
56
64
  GetConfigCommandOutput,
@@ -147,6 +155,10 @@ export declare const se_CreateDataflowEndpointGroupCommand: (
147
155
  input: CreateDataflowEndpointGroupCommandInput,
148
156
  context: __SerdeContext
149
157
  ) => Promise<__HttpRequest>;
158
+ export declare const se_CreateDataflowEndpointGroupV2Command: (
159
+ input: CreateDataflowEndpointGroupV2CommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
150
162
  export declare const se_CreateEphemerisCommand: (
151
163
  input: CreateEphemerisCommandInput,
152
164
  context: __SerdeContext
@@ -183,6 +195,10 @@ export declare const se_GetAgentConfigurationCommand: (
183
195
  input: GetAgentConfigurationCommandInput,
184
196
  context: __SerdeContext
185
197
  ) => Promise<__HttpRequest>;
198
+ export declare const se_GetAgentTaskResponseUrlCommand: (
199
+ input: GetAgentTaskResponseUrlCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
186
202
  export declare const se_GetConfigCommand: (
187
203
  input: GetConfigCommandInput,
188
204
  context: __SerdeContext
@@ -279,6 +295,10 @@ export declare const de_CreateDataflowEndpointGroupCommand: (
279
295
  output: __HttpResponse,
280
296
  context: __SerdeContext
281
297
  ) => Promise<CreateDataflowEndpointGroupCommandOutput>;
298
+ export declare const de_CreateDataflowEndpointGroupV2Command: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<CreateDataflowEndpointGroupV2CommandOutput>;
282
302
  export declare const de_CreateEphemerisCommand: (
283
303
  output: __HttpResponse,
284
304
  context: __SerdeContext
@@ -315,6 +335,10 @@ export declare const de_GetAgentConfigurationCommand: (
315
335
  output: __HttpResponse,
316
336
  context: __SerdeContext
317
337
  ) => Promise<GetAgentConfigurationCommandOutput>;
338
+ export declare const de_GetAgentTaskResponseUrlCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<GetAgentTaskResponseUrlCommandOutput>;
318
342
  export declare const de_GetConfigCommand: (
319
343
  output: __HttpResponse,
320
344
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-groundstation",
3
3
  "description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
4
- "version": "3.922.0",
4
+ "version": "3.926.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-groundstation",
@@ -20,18 +20,18 @@
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.922.0",
24
- "@aws-sdk/credential-provider-node": "3.922.0",
23
+ "@aws-sdk/core": "3.926.0",
24
+ "@aws-sdk/credential-provider-node": "3.926.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.922.0",
29
- "@aws-sdk/region-config-resolver": "3.922.0",
28
+ "@aws-sdk/middleware-user-agent": "3.926.0",
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.922.0",
34
- "@smithy/config-resolver": "^4.4.1",
33
+ "@aws-sdk/util-user-agent-node": "3.926.0",
34
+ "@smithy/config-resolver": "^4.4.2",
35
35
  "@smithy/core": "^3.17.2",
36
36
  "@smithy/fetch-http-handler": "^5.3.5",
37
37
  "@smithy/hash-node": "^4.2.4",
@@ -51,7 +51,7 @@
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
53
  "@smithy/util-defaults-mode-browser": "^4.3.5",
54
- "@smithy/util-defaults-mode-node": "^4.2.7",
54
+ "@smithy/util-defaults-mode-node": "^4.2.8",
55
55
  "@smithy/util-endpoints": "^3.2.4",
56
56
  "@smithy/util-middleware": "^4.2.4",
57
57
  "@smithy/util-retry": "^4.2.4",