@aws-sdk/client-groundstation 3.952.0 → 3.953.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.
- package/dist-cjs/index.js +589 -382
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CancelContactCommand.js +2 -2
- package/dist-es/commands/CreateConfigCommand.js +2 -2
- package/dist-es/commands/CreateDataflowEndpointGroupCommand.js +2 -2
- package/dist-es/commands/CreateDataflowEndpointGroupV2Command.js +2 -2
- package/dist-es/commands/CreateEphemerisCommand.js +2 -2
- package/dist-es/commands/CreateMissionProfileCommand.js +2 -2
- package/dist-es/commands/DeleteConfigCommand.js +2 -2
- package/dist-es/commands/DeleteDataflowEndpointGroupCommand.js +2 -2
- package/dist-es/commands/DeleteEphemerisCommand.js +2 -2
- package/dist-es/commands/DeleteMissionProfileCommand.js +2 -2
- package/dist-es/commands/DescribeContactCommand.js +2 -2
- package/dist-es/commands/DescribeEphemerisCommand.js +2 -2
- package/dist-es/commands/GetAgentConfigurationCommand.js +2 -2
- package/dist-es/commands/GetAgentTaskResponseUrlCommand.js +2 -2
- package/dist-es/commands/GetConfigCommand.js +2 -2
- package/dist-es/commands/GetDataflowEndpointGroupCommand.js +2 -2
- package/dist-es/commands/GetMinuteUsageCommand.js +2 -2
- package/dist-es/commands/GetMissionProfileCommand.js +2 -2
- package/dist-es/commands/GetSatelliteCommand.js +2 -2
- package/dist-es/commands/ListConfigsCommand.js +2 -2
- package/dist-es/commands/ListContactsCommand.js +2 -2
- package/dist-es/commands/ListDataflowEndpointGroupsCommand.js +2 -2
- package/dist-es/commands/ListEphemeridesCommand.js +2 -2
- package/dist-es/commands/ListGroundStationsCommand.js +2 -2
- package/dist-es/commands/ListMissionProfilesCommand.js +2 -2
- package/dist-es/commands/ListSatellitesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RegisterAgentCommand.js +2 -2
- package/dist-es/commands/ReserveContactCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAgentStatusCommand.js +2 -2
- package/dist-es/commands/UpdateConfigCommand.js +2 -2
- package/dist-es/commands/UpdateEphemerisCommand.js +2 -2
- package/dist-es/commands/UpdateMissionProfileCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +371 -343
- package/dist-types/GroundStationClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +180 -211
- package/dist-types/ts3.4/GroundStationClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +179 -211
- 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 ??
|
|
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