@aws-sdk/client-groundstation 3.952.0 → 3.954.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 (55) hide show
  1. package/dist-cjs/index.js +589 -382
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelContactCommand.js +2 -2
  4. package/dist-es/commands/CreateConfigCommand.js +2 -2
  5. package/dist-es/commands/CreateDataflowEndpointGroupCommand.js +2 -2
  6. package/dist-es/commands/CreateDataflowEndpointGroupV2Command.js +2 -2
  7. package/dist-es/commands/CreateEphemerisCommand.js +2 -2
  8. package/dist-es/commands/CreateMissionProfileCommand.js +2 -2
  9. package/dist-es/commands/DeleteConfigCommand.js +2 -2
  10. package/dist-es/commands/DeleteDataflowEndpointGroupCommand.js +2 -2
  11. package/dist-es/commands/DeleteEphemerisCommand.js +2 -2
  12. package/dist-es/commands/DeleteMissionProfileCommand.js +2 -2
  13. package/dist-es/commands/DescribeContactCommand.js +2 -2
  14. package/dist-es/commands/DescribeEphemerisCommand.js +2 -2
  15. package/dist-es/commands/GetAgentConfigurationCommand.js +2 -2
  16. package/dist-es/commands/GetAgentTaskResponseUrlCommand.js +2 -2
  17. package/dist-es/commands/GetConfigCommand.js +2 -2
  18. package/dist-es/commands/GetDataflowEndpointGroupCommand.js +2 -2
  19. package/dist-es/commands/GetMinuteUsageCommand.js +2 -2
  20. package/dist-es/commands/GetMissionProfileCommand.js +2 -2
  21. package/dist-es/commands/GetSatelliteCommand.js +2 -2
  22. package/dist-es/commands/ListConfigsCommand.js +2 -2
  23. package/dist-es/commands/ListContactsCommand.js +2 -2
  24. package/dist-es/commands/ListDataflowEndpointGroupsCommand.js +2 -2
  25. package/dist-es/commands/ListEphemeridesCommand.js +2 -2
  26. package/dist-es/commands/ListGroundStationsCommand.js +2 -2
  27. package/dist-es/commands/ListMissionProfilesCommand.js +2 -2
  28. package/dist-es/commands/ListSatellitesCommand.js +2 -2
  29. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  30. package/dist-es/commands/RegisterAgentCommand.js +2 -2
  31. package/dist-es/commands/ReserveContactCommand.js +2 -2
  32. package/dist-es/commands/TagResourceCommand.js +2 -2
  33. package/dist-es/commands/UntagResourceCommand.js +2 -2
  34. package/dist-es/commands/UpdateAgentStatusCommand.js +2 -2
  35. package/dist-es/commands/UpdateConfigCommand.js +2 -2
  36. package/dist-es/commands/UpdateEphemerisCommand.js +2 -2
  37. package/dist-es/commands/UpdateMissionProfileCommand.js +2 -2
  38. package/dist-es/index.js +1 -0
  39. package/dist-es/runtimeConfig.shared.js +6 -1
  40. package/dist-es/schemas/schemas_0.js +371 -343
  41. package/dist-types/GroundStationClient.d.ts +1 -10
  42. package/dist-types/index.d.ts +1 -0
  43. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  44. package/dist-types/runtimeConfig.d.ts +6 -2
  45. package/dist-types/runtimeConfig.native.d.ts +6 -2
  46. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  47. package/dist-types/schemas/schemas_0.d.ts +180 -211
  48. package/dist-types/ts3.4/GroundStationClient.d.ts +0 -4
  49. package/dist-types/ts3.4/index.d.ts +1 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +179 -211
  55. package/package.json +35 -35
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.groundstation" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.groundstation",
32
+ version: "2019-05-23",
33
+ serviceTarget: "GroundStation",
34
+ },
30
35
  serviceId: config?.serviceId ?? "GroundStation",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CancelContact } from "../schemas/schemas_0";
4
+ import { CancelContact$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CancelContactCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CancelContactCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "CancelContact", {})
13
13
  .n("GroundStationClient", "CancelContactCommand")
14
- .sc(CancelContact)
14
+ .sc(CancelContact$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateConfig } from "../schemas/schemas_0";
4
+ import { CreateConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateConfigCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "CreateConfig", {})
13
13
  .n("GroundStationClient", "CreateConfigCommand")
14
- .sc(CreateConfig)
14
+ .sc(CreateConfig$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateDataflowEndpointGroup } from "../schemas/schemas_0";
4
+ import { CreateDataflowEndpointGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateDataflowEndpointGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateDataflowEndpointGroupCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "CreateDataflowEndpointGroup", {})
13
13
  .n("GroundStationClient", "CreateDataflowEndpointGroupCommand")
14
- .sc(CreateDataflowEndpointGroup)
14
+ .sc(CreateDataflowEndpointGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateDataflowEndpointGroupV2 } from "../schemas/schemas_0";
4
+ import { CreateDataflowEndpointGroupV2$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateDataflowEndpointGroupV2Command extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateDataflowEndpointGroupV2Command extends $Command
11
11
  })
12
12
  .s("GroundStation", "CreateDataflowEndpointGroupV2", {})
13
13
  .n("GroundStationClient", "CreateDataflowEndpointGroupV2Command")
14
- .sc(CreateDataflowEndpointGroupV2)
14
+ .sc(CreateDataflowEndpointGroupV2$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateEphemeris } from "../schemas/schemas_0";
4
+ import { CreateEphemeris$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateEphemerisCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateEphemerisCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "CreateEphemeris", {})
13
13
  .n("GroundStationClient", "CreateEphemerisCommand")
14
- .sc(CreateEphemeris)
14
+ .sc(CreateEphemeris$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateMissionProfile } from "../schemas/schemas_0";
4
+ import { CreateMissionProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateMissionProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateMissionProfileCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "CreateMissionProfile", {})
13
13
  .n("GroundStationClient", "CreateMissionProfileCommand")
14
- .sc(CreateMissionProfile)
14
+ .sc(CreateMissionProfile$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteConfig } from "../schemas/schemas_0";
4
+ import { DeleteConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteConfigCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "DeleteConfig", {})
13
13
  .n("GroundStationClient", "DeleteConfigCommand")
14
- .sc(DeleteConfig)
14
+ .sc(DeleteConfig$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteDataflowEndpointGroup } from "../schemas/schemas_0";
4
+ import { DeleteDataflowEndpointGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteDataflowEndpointGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteDataflowEndpointGroupCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "DeleteDataflowEndpointGroup", {})
13
13
  .n("GroundStationClient", "DeleteDataflowEndpointGroupCommand")
14
- .sc(DeleteDataflowEndpointGroup)
14
+ .sc(DeleteDataflowEndpointGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteEphemeris } from "../schemas/schemas_0";
4
+ import { DeleteEphemeris$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteEphemerisCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteEphemerisCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "DeleteEphemeris", {})
13
13
  .n("GroundStationClient", "DeleteEphemerisCommand")
14
- .sc(DeleteEphemeris)
14
+ .sc(DeleteEphemeris$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteMissionProfile } from "../schemas/schemas_0";
4
+ import { DeleteMissionProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteMissionProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteMissionProfileCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "DeleteMissionProfile", {})
13
13
  .n("GroundStationClient", "DeleteMissionProfileCommand")
14
- .sc(DeleteMissionProfile)
14
+ .sc(DeleteMissionProfile$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeContact } from "../schemas/schemas_0";
4
+ import { DescribeContact$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeContactCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeContactCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "DescribeContact", {})
13
13
  .n("GroundStationClient", "DescribeContactCommand")
14
- .sc(DescribeContact)
14
+ .sc(DescribeContact$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeEphemeris } from "../schemas/schemas_0";
4
+ import { DescribeEphemeris$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeEphemerisCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeEphemerisCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "DescribeEphemeris", {})
13
13
  .n("GroundStationClient", "DescribeEphemerisCommand")
14
- .sc(DescribeEphemeris)
14
+ .sc(DescribeEphemeris$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAgentConfiguration } from "../schemas/schemas_0";
4
+ import { GetAgentConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAgentConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAgentConfigurationCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "GetAgentConfiguration", {})
13
13
  .n("GroundStationClient", "GetAgentConfigurationCommand")
14
- .sc(GetAgentConfiguration)
14
+ .sc(GetAgentConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAgentTaskResponseUrl } from "../schemas/schemas_0";
4
+ import { GetAgentTaskResponseUrl$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAgentTaskResponseUrlCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAgentTaskResponseUrlCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "GetAgentTaskResponseUrl", {})
13
13
  .n("GroundStationClient", "GetAgentTaskResponseUrlCommand")
14
- .sc(GetAgentTaskResponseUrl)
14
+ .sc(GetAgentTaskResponseUrl$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetConfig } from "../schemas/schemas_0";
4
+ import { GetConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetConfigCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "GetConfig", {})
13
13
  .n("GroundStationClient", "GetConfigCommand")
14
- .sc(GetConfig)
14
+ .sc(GetConfig$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetDataflowEndpointGroup } from "../schemas/schemas_0";
4
+ import { GetDataflowEndpointGroup$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetDataflowEndpointGroupCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetDataflowEndpointGroupCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "GetDataflowEndpointGroup", {})
13
13
  .n("GroundStationClient", "GetDataflowEndpointGroupCommand")
14
- .sc(GetDataflowEndpointGroup)
14
+ .sc(GetDataflowEndpointGroup$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMinuteUsage } from "../schemas/schemas_0";
4
+ import { GetMinuteUsage$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMinuteUsageCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMinuteUsageCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "GetMinuteUsage", {})
13
13
  .n("GroundStationClient", "GetMinuteUsageCommand")
14
- .sc(GetMinuteUsage)
14
+ .sc(GetMinuteUsage$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetMissionProfile } from "../schemas/schemas_0";
4
+ import { GetMissionProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetMissionProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetMissionProfileCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "GetMissionProfile", {})
13
13
  .n("GroundStationClient", "GetMissionProfileCommand")
14
- .sc(GetMissionProfile)
14
+ .sc(GetMissionProfile$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetSatellite } from "../schemas/schemas_0";
4
+ import { GetSatellite$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetSatelliteCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetSatelliteCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "GetSatellite", {})
13
13
  .n("GroundStationClient", "GetSatelliteCommand")
14
- .sc(GetSatellite)
14
+ .sc(GetSatellite$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListConfigs } from "../schemas/schemas_0";
4
+ import { ListConfigs$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListConfigsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListConfigsCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ListConfigs", {})
13
13
  .n("GroundStationClient", "ListConfigsCommand")
14
- .sc(ListConfigs)
14
+ .sc(ListConfigs$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListContacts } from "../schemas/schemas_0";
4
+ import { ListContacts$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListContactsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListContactsCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ListContacts", {})
13
13
  .n("GroundStationClient", "ListContactsCommand")
14
- .sc(ListContacts)
14
+ .sc(ListContacts$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListDataflowEndpointGroups } from "../schemas/schemas_0";
4
+ import { ListDataflowEndpointGroups$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListDataflowEndpointGroupsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListDataflowEndpointGroupsCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ListDataflowEndpointGroups", {})
13
13
  .n("GroundStationClient", "ListDataflowEndpointGroupsCommand")
14
- .sc(ListDataflowEndpointGroups)
14
+ .sc(ListDataflowEndpointGroups$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListEphemerides } from "../schemas/schemas_0";
4
+ import { ListEphemerides$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListEphemeridesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListEphemeridesCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ListEphemerides", {})
13
13
  .n("GroundStationClient", "ListEphemeridesCommand")
14
- .sc(ListEphemerides)
14
+ .sc(ListEphemerides$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListGroundStations } from "../schemas/schemas_0";
4
+ import { ListGroundStations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListGroundStationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListGroundStationsCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ListGroundStations", {})
13
13
  .n("GroundStationClient", "ListGroundStationsCommand")
14
- .sc(ListGroundStations)
14
+ .sc(ListGroundStations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListMissionProfiles } from "../schemas/schemas_0";
4
+ import { ListMissionProfiles$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListMissionProfilesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListMissionProfilesCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ListMissionProfiles", {})
13
13
  .n("GroundStationClient", "ListMissionProfilesCommand")
14
- .sc(ListMissionProfiles)
14
+ .sc(ListMissionProfiles$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSatellites } from "../schemas/schemas_0";
4
+ import { ListSatellites$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSatellitesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSatellitesCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ListSatellites", {})
13
13
  .n("GroundStationClient", "ListSatellitesCommand")
14
- .sc(ListSatellites)
14
+ .sc(ListSatellites$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ListTagsForResource", {})
13
13
  .n("GroundStationClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RegisterAgent } from "../schemas/schemas_0";
4
+ import { RegisterAgent$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RegisterAgentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RegisterAgentCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "RegisterAgent", {})
13
13
  .n("GroundStationClient", "RegisterAgentCommand")
14
- .sc(RegisterAgent)
14
+ .sc(RegisterAgent$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ReserveContact } from "../schemas/schemas_0";
4
+ import { ReserveContact$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ReserveContactCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ReserveContactCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "ReserveContact", {})
13
13
  .n("GroundStationClient", "ReserveContactCommand")
14
- .sc(ReserveContact)
14
+ .sc(ReserveContact$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "TagResource", {})
13
13
  .n("GroundStationClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "UntagResource", {})
13
13
  .n("GroundStationClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateAgentStatus } from "../schemas/schemas_0";
4
+ import { UpdateAgentStatus$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateAgentStatusCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateAgentStatusCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "UpdateAgentStatus", {})
13
13
  .n("GroundStationClient", "UpdateAgentStatusCommand")
14
- .sc(UpdateAgentStatus)
14
+ .sc(UpdateAgentStatus$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateConfig } from "../schemas/schemas_0";
4
+ import { UpdateConfig$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateConfigCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateConfigCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "UpdateConfig", {})
13
13
  .n("GroundStationClient", "UpdateConfigCommand")
14
- .sc(UpdateConfig)
14
+ .sc(UpdateConfig$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateEphemeris } from "../schemas/schemas_0";
4
+ import { UpdateEphemeris$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateEphemerisCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateEphemerisCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "UpdateEphemeris", {})
13
13
  .n("GroundStationClient", "UpdateEphemerisCommand")
14
- .sc(UpdateEphemeris)
14
+ .sc(UpdateEphemeris$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateMissionProfile } from "../schemas/schemas_0";
4
+ import { UpdateMissionProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateMissionProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateMissionProfileCommand extends $Command
11
11
  })
12
12
  .s("GroundStation", "UpdateMissionProfile", {})
13
13
  .n("GroundStationClient", "UpdateMissionProfileCommand")
14
- .sc(UpdateMissionProfile)
14
+ .sc(UpdateMissionProfile$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./GroundStationClient";
2
2
  export * from "./GroundStation";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./waiters";
6
7
  export * from "./models/enums";