@aws-sdk/client-groundstation 3.922.0 → 3.925.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/README.md +16 -0
- package/dist-cjs/index.js +161 -1
- package/dist-es/GroundStation.js +4 -0
- package/dist-es/commands/CreateDataflowEndpointGroupV2Command.js +22 -0
- package/dist-es/commands/GetAgentTaskResponseUrlCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +40 -0
- package/dist-es/protocols/Aws_restJson1.js +83 -2
- package/dist-types/GroundStation.d.ts +14 -0
- package/dist-types/GroundStationClient.d.ts +4 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +46 -0
- package/dist-types/commands/CreateDataflowEndpointGroupV2Command.d.ts +142 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +82 -8
- package/dist-types/commands/GetAgentTaskResponseUrlCommand.d.ts +86 -0
- package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +46 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +315 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/GroundStation.d.ts +34 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateDataflowEndpointGroupV2Command.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAgentTaskResponseUrlCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +127 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +5 -5
|
@@ -10,6 +10,7 @@ import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/
|
|
|
10
10
|
import { CancelContactCommandInput, CancelContactCommandOutput } from "./commands/CancelContactCommand";
|
|
11
11
|
import { CreateConfigCommandInput, CreateConfigCommandOutput } from "./commands/CreateConfigCommand";
|
|
12
12
|
import { CreateDataflowEndpointGroupCommandInput, CreateDataflowEndpointGroupCommandOutput } from "./commands/CreateDataflowEndpointGroupCommand";
|
|
13
|
+
import { CreateDataflowEndpointGroupV2CommandInput, CreateDataflowEndpointGroupV2CommandOutput } from "./commands/CreateDataflowEndpointGroupV2Command";
|
|
13
14
|
import { CreateEphemerisCommandInput, CreateEphemerisCommandOutput } from "./commands/CreateEphemerisCommand";
|
|
14
15
|
import { CreateMissionProfileCommandInput, CreateMissionProfileCommandOutput } from "./commands/CreateMissionProfileCommand";
|
|
15
16
|
import { DeleteConfigCommandInput, DeleteConfigCommandOutput } from "./commands/DeleteConfigCommand";
|
|
@@ -19,6 +20,7 @@ import { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } f
|
|
|
19
20
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "./commands/DescribeContactCommand";
|
|
20
21
|
import { DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput } from "./commands/DescribeEphemerisCommand";
|
|
21
22
|
import { GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput } from "./commands/GetAgentConfigurationCommand";
|
|
23
|
+
import { GetAgentTaskResponseUrlCommandInput, GetAgentTaskResponseUrlCommandOutput } from "./commands/GetAgentTaskResponseUrlCommand";
|
|
22
24
|
import { GetConfigCommandInput, GetConfigCommandOutput } from "./commands/GetConfigCommand";
|
|
23
25
|
import { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput } from "./commands/GetDataflowEndpointGroupCommand";
|
|
24
26
|
import { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "./commands/GetMinuteUsageCommand";
|
|
@@ -46,11 +48,11 @@ export { __Client };
|
|
|
46
48
|
/**
|
|
47
49
|
* @public
|
|
48
50
|
*/
|
|
49
|
-
export type ServiceInputTypes = CancelContactCommandInput | CreateConfigCommandInput | CreateDataflowEndpointGroupCommandInput | CreateEphemerisCommandInput | CreateMissionProfileCommandInput | DeleteConfigCommandInput | DeleteDataflowEndpointGroupCommandInput | DeleteEphemerisCommandInput | DeleteMissionProfileCommandInput | DescribeContactCommandInput | DescribeEphemerisCommandInput | GetAgentConfigurationCommandInput | GetConfigCommandInput | GetDataflowEndpointGroupCommandInput | GetMinuteUsageCommandInput | GetMissionProfileCommandInput | GetSatelliteCommandInput | ListConfigsCommandInput | ListContactsCommandInput | ListDataflowEndpointGroupsCommandInput | ListEphemeridesCommandInput | ListGroundStationsCommandInput | ListMissionProfilesCommandInput | ListSatellitesCommandInput | ListTagsForResourceCommandInput | RegisterAgentCommandInput | ReserveContactCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateConfigCommandInput | UpdateEphemerisCommandInput | UpdateMissionProfileCommandInput;
|
|
51
|
+
export type ServiceInputTypes = CancelContactCommandInput | CreateConfigCommandInput | CreateDataflowEndpointGroupCommandInput | CreateDataflowEndpointGroupV2CommandInput | CreateEphemerisCommandInput | CreateMissionProfileCommandInput | DeleteConfigCommandInput | DeleteDataflowEndpointGroupCommandInput | DeleteEphemerisCommandInput | DeleteMissionProfileCommandInput | DescribeContactCommandInput | DescribeEphemerisCommandInput | GetAgentConfigurationCommandInput | GetAgentTaskResponseUrlCommandInput | GetConfigCommandInput | GetDataflowEndpointGroupCommandInput | GetMinuteUsageCommandInput | GetMissionProfileCommandInput | GetSatelliteCommandInput | ListConfigsCommandInput | ListContactsCommandInput | ListDataflowEndpointGroupsCommandInput | ListEphemeridesCommandInput | ListGroundStationsCommandInput | ListMissionProfilesCommandInput | ListSatellitesCommandInput | ListTagsForResourceCommandInput | RegisterAgentCommandInput | ReserveContactCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentStatusCommandInput | UpdateConfigCommandInput | UpdateEphemerisCommandInput | UpdateMissionProfileCommandInput;
|
|
50
52
|
/**
|
|
51
53
|
* @public
|
|
52
54
|
*/
|
|
53
|
-
export type ServiceOutputTypes = CancelContactCommandOutput | CreateConfigCommandOutput | CreateDataflowEndpointGroupCommandOutput | CreateEphemerisCommandOutput | CreateMissionProfileCommandOutput | DeleteConfigCommandOutput | DeleteDataflowEndpointGroupCommandOutput | DeleteEphemerisCommandOutput | DeleteMissionProfileCommandOutput | DescribeContactCommandOutput | DescribeEphemerisCommandOutput | GetAgentConfigurationCommandOutput | GetConfigCommandOutput | GetDataflowEndpointGroupCommandOutput | GetMinuteUsageCommandOutput | GetMissionProfileCommandOutput | GetSatelliteCommandOutput | ListConfigsCommandOutput | ListContactsCommandOutput | ListDataflowEndpointGroupsCommandOutput | ListEphemeridesCommandOutput | ListGroundStationsCommandOutput | ListMissionProfilesCommandOutput | ListSatellitesCommandOutput | ListTagsForResourceCommandOutput | RegisterAgentCommandOutput | ReserveContactCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateConfigCommandOutput | UpdateEphemerisCommandOutput | UpdateMissionProfileCommandOutput;
|
|
55
|
+
export type ServiceOutputTypes = CancelContactCommandOutput | CreateConfigCommandOutput | CreateDataflowEndpointGroupCommandOutput | CreateDataflowEndpointGroupV2CommandOutput | CreateEphemerisCommandOutput | CreateMissionProfileCommandOutput | DeleteConfigCommandOutput | DeleteDataflowEndpointGroupCommandOutput | DeleteEphemerisCommandOutput | DeleteMissionProfileCommandOutput | DescribeContactCommandOutput | DescribeEphemerisCommandOutput | GetAgentConfigurationCommandOutput | GetAgentTaskResponseUrlCommandOutput | GetConfigCommandOutput | GetDataflowEndpointGroupCommandOutput | GetMinuteUsageCommandOutput | GetMissionProfileCommandOutput | GetSatelliteCommandOutput | ListConfigsCommandOutput | ListContactsCommandOutput | ListDataflowEndpointGroupsCommandOutput | ListEphemeridesCommandOutput | ListGroundStationsCommandOutput | ListMissionProfilesCommandOutput | ListSatellitesCommandOutput | ListTagsForResourceCommandOutput | RegisterAgentCommandOutput | ReserveContactCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentStatusCommandOutput | UpdateConfigCommandOutput | UpdateEphemerisCommandOutput | UpdateMissionProfileCommandOutput;
|
|
54
56
|
/**
|
|
55
57
|
* @public
|
|
56
58
|
*/
|
|
@@ -26,7 +26,7 @@ export interface GroundStationHttpAuthSchemeProvider extends HttpAuthSchemeProvi
|
|
|
26
26
|
*/
|
|
27
27
|
export declare const defaultGroundStationHttpAuthSchemeProvider: GroundStationHttpAuthSchemeProvider;
|
|
28
28
|
/**
|
|
29
|
-
* @
|
|
29
|
+
* @public
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
32
|
/**
|
|
@@ -79,6 +79,52 @@ declare const CreateDataflowEndpointGroupCommand_base: {
|
|
|
79
79
|
* agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
80
80
|
* auditResults: "HEALTHY" || "UNHEALTHY",
|
|
81
81
|
* },
|
|
82
|
+
* uplinkAwsGroundStationAgentEndpoint: { // UplinkAwsGroundStationAgentEndpointDetails
|
|
83
|
+
* name: "STRING_VALUE", // required
|
|
84
|
+
* dataflowDetails: { // UplinkDataflowDetails Union: only one key present
|
|
85
|
+
* agentConnectionDetails: { // UplinkConnectionDetails
|
|
86
|
+
* ingressAddressAndPort: {
|
|
87
|
+
* socketAddress: "<SocketAddress>", // required
|
|
88
|
+
* mtu: Number("int"),
|
|
89
|
+
* },
|
|
90
|
+
* agentIpAndPortAddress: {
|
|
91
|
+
* socketAddress: {
|
|
92
|
+
* name: "STRING_VALUE", // required
|
|
93
|
+
* portRange: {
|
|
94
|
+
* minimum: Number("int"), // required
|
|
95
|
+
* maximum: Number("int"), // required
|
|
96
|
+
* },
|
|
97
|
+
* },
|
|
98
|
+
* mtu: Number("int"),
|
|
99
|
+
* },
|
|
100
|
+
* },
|
|
101
|
+
* },
|
|
102
|
+
* agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
103
|
+
* auditResults: "HEALTHY" || "UNHEALTHY",
|
|
104
|
+
* },
|
|
105
|
+
* downlinkAwsGroundStationAgentEndpoint: { // DownlinkAwsGroundStationAgentEndpointDetails
|
|
106
|
+
* name: "STRING_VALUE", // required
|
|
107
|
+
* dataflowDetails: { // DownlinkDataflowDetails Union: only one key present
|
|
108
|
+
* agentConnectionDetails: { // DownlinkConnectionDetails
|
|
109
|
+
* agentIpAndPortAddress: {
|
|
110
|
+
* socketAddress: {
|
|
111
|
+
* name: "STRING_VALUE", // required
|
|
112
|
+
* portRange: {
|
|
113
|
+
* minimum: Number("int"), // required
|
|
114
|
+
* maximum: Number("int"), // required
|
|
115
|
+
* },
|
|
116
|
+
* },
|
|
117
|
+
* mtu: Number("int"),
|
|
118
|
+
* },
|
|
119
|
+
* egressAddressAndPort: {
|
|
120
|
+
* socketAddress: "<SocketAddress>", // required
|
|
121
|
+
* mtu: Number("int"),
|
|
122
|
+
* },
|
|
123
|
+
* },
|
|
124
|
+
* },
|
|
125
|
+
* agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
126
|
+
* auditResults: "HEALTHY" || "UNHEALTHY",
|
|
127
|
+
* },
|
|
82
128
|
* healthStatus: "HEALTHY" || "UNHEALTHY",
|
|
83
129
|
* healthReasons: [ // CapabilityHealthReasonList
|
|
84
130
|
* "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { CreateDataflowEndpointGroupV2Request, CreateDataflowEndpointGroupV2Response } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateDataflowEndpointGroupV2Command}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateDataflowEndpointGroupV2CommandInput extends CreateDataflowEndpointGroupV2Request {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateDataflowEndpointGroupV2Command}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateDataflowEndpointGroupV2CommandOutput extends CreateDataflowEndpointGroupV2Response, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateDataflowEndpointGroupV2Command_base: {
|
|
25
|
+
new (input: CreateDataflowEndpointGroupV2CommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataflowEndpointGroupV2CommandInput, CreateDataflowEndpointGroupV2CommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateDataflowEndpointGroupV2CommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataflowEndpointGroupV2CommandInput, CreateDataflowEndpointGroupV2CommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a <code>DataflowEndpointGroupV2</code> containing the specified list of <code>DataflowEndpoint</code> objects.</p> <p>The <code>name</code> field in each endpoint is used in your mission profile <code>DataflowEndpointConfig</code> to specify which endpoints to use during a contact.</p> <p>When a contact uses multiple <code>DataflowEndpointConfig</code> objects, each <code>Config</code> must match a <code>DataflowEndpoint</code> in the same group.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GroundStationClient, CreateDataflowEndpointGroupV2Command } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
35
|
+
* // const { GroundStationClient, CreateDataflowEndpointGroupV2Command } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
36
|
+
* // import type { GroundStationClientConfig } from "@aws-sdk/client-groundstation";
|
|
37
|
+
* const config = {}; // type is GroundStationClientConfig
|
|
38
|
+
* const client = new GroundStationClient(config);
|
|
39
|
+
* const input = { // CreateDataflowEndpointGroupV2Request
|
|
40
|
+
* endpoints: [ // CreateEndpointDetailsList // required
|
|
41
|
+
* { // CreateEndpointDetails Union: only one key present
|
|
42
|
+
* uplinkAwsGroundStationAgentEndpoint: { // UplinkAwsGroundStationAgentEndpoint
|
|
43
|
+
* name: "STRING_VALUE", // required
|
|
44
|
+
* dataflowDetails: { // UplinkDataflowDetails Union: only one key present
|
|
45
|
+
* agentConnectionDetails: { // UplinkConnectionDetails
|
|
46
|
+
* ingressAddressAndPort: { // ConnectionDetails
|
|
47
|
+
* socketAddress: { // SocketAddress
|
|
48
|
+
* name: "STRING_VALUE", // required
|
|
49
|
+
* port: Number("int"), // required
|
|
50
|
+
* },
|
|
51
|
+
* mtu: Number("int"),
|
|
52
|
+
* },
|
|
53
|
+
* agentIpAndPortAddress: { // RangedConnectionDetails
|
|
54
|
+
* socketAddress: { // RangedSocketAddress
|
|
55
|
+
* name: "STRING_VALUE", // required
|
|
56
|
+
* portRange: { // IntegerRange
|
|
57
|
+
* minimum: Number("int"), // required
|
|
58
|
+
* maximum: Number("int"), // required
|
|
59
|
+
* },
|
|
60
|
+
* },
|
|
61
|
+
* mtu: Number("int"),
|
|
62
|
+
* },
|
|
63
|
+
* },
|
|
64
|
+
* },
|
|
65
|
+
* },
|
|
66
|
+
* downlinkAwsGroundStationAgentEndpoint: { // DownlinkAwsGroundStationAgentEndpoint
|
|
67
|
+
* name: "STRING_VALUE", // required
|
|
68
|
+
* dataflowDetails: { // DownlinkDataflowDetails Union: only one key present
|
|
69
|
+
* agentConnectionDetails: { // DownlinkConnectionDetails
|
|
70
|
+
* agentIpAndPortAddress: {
|
|
71
|
+
* socketAddress: {
|
|
72
|
+
* name: "STRING_VALUE", // required
|
|
73
|
+
* portRange: {
|
|
74
|
+
* minimum: Number("int"), // required
|
|
75
|
+
* maximum: Number("int"), // required
|
|
76
|
+
* },
|
|
77
|
+
* },
|
|
78
|
+
* mtu: Number("int"),
|
|
79
|
+
* },
|
|
80
|
+
* egressAddressAndPort: {
|
|
81
|
+
* socketAddress: {
|
|
82
|
+
* name: "STRING_VALUE", // required
|
|
83
|
+
* port: Number("int"), // required
|
|
84
|
+
* },
|
|
85
|
+
* mtu: Number("int"),
|
|
86
|
+
* },
|
|
87
|
+
* },
|
|
88
|
+
* },
|
|
89
|
+
* },
|
|
90
|
+
* },
|
|
91
|
+
* ],
|
|
92
|
+
* contactPrePassDurationSeconds: Number("int"),
|
|
93
|
+
* contactPostPassDurationSeconds: Number("int"),
|
|
94
|
+
* tags: { // TagsMap
|
|
95
|
+
* "<keys>": "STRING_VALUE",
|
|
96
|
+
* },
|
|
97
|
+
* };
|
|
98
|
+
* const command = new CreateDataflowEndpointGroupV2Command(input);
|
|
99
|
+
* const response = await client.send(command);
|
|
100
|
+
* // { // CreateDataflowEndpointGroupV2Response
|
|
101
|
+
* // dataflowEndpointGroupId: "STRING_VALUE",
|
|
102
|
+
* // };
|
|
103
|
+
*
|
|
104
|
+
* ```
|
|
105
|
+
*
|
|
106
|
+
* @param CreateDataflowEndpointGroupV2CommandInput - {@link CreateDataflowEndpointGroupV2CommandInput}
|
|
107
|
+
* @returns {@link CreateDataflowEndpointGroupV2CommandOutput}
|
|
108
|
+
* @see {@link CreateDataflowEndpointGroupV2CommandInput} for command's `input` shape.
|
|
109
|
+
* @see {@link CreateDataflowEndpointGroupV2CommandOutput} for command's `response` shape.
|
|
110
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link DependencyException} (server fault)
|
|
113
|
+
* <p>Dependency encountered an error.</p>
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
116
|
+
* <p>One or more parameters are not valid.</p>
|
|
117
|
+
*
|
|
118
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
119
|
+
* <p>Resource was not found.</p>
|
|
120
|
+
*
|
|
121
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
122
|
+
* <p>Request would cause a service quota to be exceeded.</p>
|
|
123
|
+
*
|
|
124
|
+
* @throws {@link GroundStationServiceException}
|
|
125
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
126
|
+
*
|
|
127
|
+
*
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export declare class CreateDataflowEndpointGroupV2Command extends CreateDataflowEndpointGroupV2Command_base {
|
|
131
|
+
/** @internal type navigation helper, not in runtime. */
|
|
132
|
+
protected static __types: {
|
|
133
|
+
api: {
|
|
134
|
+
input: CreateDataflowEndpointGroupV2Request;
|
|
135
|
+
output: CreateDataflowEndpointGroupV2Response;
|
|
136
|
+
};
|
|
137
|
+
sdk: {
|
|
138
|
+
input: CreateDataflowEndpointGroupV2CommandInput;
|
|
139
|
+
output: CreateDataflowEndpointGroupV2CommandOutput;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
}
|
|
@@ -107,6 +107,52 @@ declare const DescribeContactCommand_base: {
|
|
|
107
107
|
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
108
108
|
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
109
109
|
* // },
|
|
110
|
+
* // uplinkAwsGroundStationAgentEndpoint: { // UplinkAwsGroundStationAgentEndpointDetails
|
|
111
|
+
* // name: "STRING_VALUE", // required
|
|
112
|
+
* // dataflowDetails: { // UplinkDataflowDetails Union: only one key present
|
|
113
|
+
* // agentConnectionDetails: { // UplinkConnectionDetails
|
|
114
|
+
* // ingressAddressAndPort: {
|
|
115
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
116
|
+
* // mtu: Number("int"),
|
|
117
|
+
* // },
|
|
118
|
+
* // agentIpAndPortAddress: {
|
|
119
|
+
* // socketAddress: {
|
|
120
|
+
* // name: "STRING_VALUE", // required
|
|
121
|
+
* // portRange: {
|
|
122
|
+
* // minimum: Number("int"), // required
|
|
123
|
+
* // maximum: Number("int"), // required
|
|
124
|
+
* // },
|
|
125
|
+
* // },
|
|
126
|
+
* // mtu: Number("int"),
|
|
127
|
+
* // },
|
|
128
|
+
* // },
|
|
129
|
+
* // },
|
|
130
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
131
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
132
|
+
* // },
|
|
133
|
+
* // downlinkAwsGroundStationAgentEndpoint: { // DownlinkAwsGroundStationAgentEndpointDetails
|
|
134
|
+
* // name: "STRING_VALUE", // required
|
|
135
|
+
* // dataflowDetails: { // DownlinkDataflowDetails Union: only one key present
|
|
136
|
+
* // agentConnectionDetails: { // DownlinkConnectionDetails
|
|
137
|
+
* // agentIpAndPortAddress: {
|
|
138
|
+
* // socketAddress: {
|
|
139
|
+
* // name: "STRING_VALUE", // required
|
|
140
|
+
* // portRange: {
|
|
141
|
+
* // minimum: Number("int"), // required
|
|
142
|
+
* // maximum: Number("int"), // required
|
|
143
|
+
* // },
|
|
144
|
+
* // },
|
|
145
|
+
* // mtu: Number("int"),
|
|
146
|
+
* // },
|
|
147
|
+
* // egressAddressAndPort: {
|
|
148
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
149
|
+
* // mtu: Number("int"),
|
|
150
|
+
* // },
|
|
151
|
+
* // },
|
|
152
|
+
* // },
|
|
153
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
154
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
155
|
+
* // },
|
|
110
156
|
* // healthStatus: "HEALTHY" || "UNHEALTHY",
|
|
111
157
|
* // healthReasons: [ // CapabilityHealthReasonList
|
|
112
158
|
* // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
|
|
@@ -138,20 +184,14 @@ declare const DescribeContactCommand_base: {
|
|
|
138
184
|
* // },
|
|
139
185
|
* // endpoint: {
|
|
140
186
|
* // name: "STRING_VALUE",
|
|
141
|
-
* // address:
|
|
142
|
-
* // name: "STRING_VALUE", // required
|
|
143
|
-
* // port: Number("int"), // required
|
|
144
|
-
* // },
|
|
187
|
+
* // address: "<SocketAddress>",
|
|
145
188
|
* // status: "created" || "creating" || "deleted" || "deleting" || "failed",
|
|
146
189
|
* // mtu: Number("int"),
|
|
147
190
|
* // },
|
|
148
191
|
* // awsGroundStationAgentEndpoint: {
|
|
149
192
|
* // name: "STRING_VALUE", // required
|
|
150
193
|
* // egressAddress: {
|
|
151
|
-
* // socketAddress:
|
|
152
|
-
* // name: "STRING_VALUE", // required
|
|
153
|
-
* // port: Number("int"), // required
|
|
154
|
-
* // },
|
|
194
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
155
195
|
* // mtu: Number("int"),
|
|
156
196
|
* // },
|
|
157
197
|
* // ingressAddress: {
|
|
@@ -167,6 +207,40 @@ declare const DescribeContactCommand_base: {
|
|
|
167
207
|
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
168
208
|
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
169
209
|
* // },
|
|
210
|
+
* // uplinkAwsGroundStationAgentEndpoint: {
|
|
211
|
+
* // name: "STRING_VALUE", // required
|
|
212
|
+
* // dataflowDetails: {// Union: only one key present
|
|
213
|
+
* // agentConnectionDetails: {
|
|
214
|
+
* // ingressAddressAndPort: {
|
|
215
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
216
|
+
* // mtu: Number("int"),
|
|
217
|
+
* // },
|
|
218
|
+
* // agentIpAndPortAddress: {
|
|
219
|
+
* // socketAddress: {
|
|
220
|
+
* // name: "STRING_VALUE", // required
|
|
221
|
+
* // portRange: {
|
|
222
|
+
* // minimum: Number("int"), // required
|
|
223
|
+
* // maximum: Number("int"), // required
|
|
224
|
+
* // },
|
|
225
|
+
* // },
|
|
226
|
+
* // mtu: Number("int"),
|
|
227
|
+
* // },
|
|
228
|
+
* // },
|
|
229
|
+
* // },
|
|
230
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
231
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
232
|
+
* // },
|
|
233
|
+
* // downlinkAwsGroundStationAgentEndpoint: {
|
|
234
|
+
* // name: "STRING_VALUE", // required
|
|
235
|
+
* // dataflowDetails: {// Union: only one key present
|
|
236
|
+
* // agentConnectionDetails: {
|
|
237
|
+
* // agentIpAndPortAddress: "<RangedConnectionDetails>", // required
|
|
238
|
+
* // egressAddressAndPort: "<ConnectionDetails>", // required
|
|
239
|
+
* // },
|
|
240
|
+
* // },
|
|
241
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
242
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
243
|
+
* // },
|
|
170
244
|
* // healthStatus: "HEALTHY" || "UNHEALTHY",
|
|
171
245
|
* // healthReasons: [
|
|
172
246
|
* // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient";
|
|
4
|
+
import { GetAgentTaskResponseUrlRequest, GetAgentTaskResponseUrlResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetAgentTaskResponseUrlCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetAgentTaskResponseUrlCommandInput extends GetAgentTaskResponseUrlRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetAgentTaskResponseUrlCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetAgentTaskResponseUrlCommandOutput extends GetAgentTaskResponseUrlResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetAgentTaskResponseUrlCommand_base: {
|
|
25
|
+
new (input: GetAgentTaskResponseUrlCommandInput): import("@smithy/smithy-client").CommandImpl<GetAgentTaskResponseUrlCommandInput, GetAgentTaskResponseUrlCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetAgentTaskResponseUrlCommandInput): import("@smithy/smithy-client").CommandImpl<GetAgentTaskResponseUrlCommandInput, GetAgentTaskResponseUrlCommandOutput, GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <note> <p> For use by AWS Ground Station Agent and shouldn't be called directly.</p> </note> <p>Gets a presigned URL for uploading agent task response logs.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GroundStationClient, GetAgentTaskResponseUrlCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
35
|
+
* // const { GroundStationClient, GetAgentTaskResponseUrlCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
36
|
+
* // import type { GroundStationClientConfig } from "@aws-sdk/client-groundstation";
|
|
37
|
+
* const config = {}; // type is GroundStationClientConfig
|
|
38
|
+
* const client = new GroundStationClient(config);
|
|
39
|
+
* const input = { // GetAgentTaskResponseUrlRequest
|
|
40
|
+
* agentId: "STRING_VALUE", // required
|
|
41
|
+
* taskId: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new GetAgentTaskResponseUrlCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // GetAgentTaskResponseUrlResponse
|
|
46
|
+
* // agentId: "STRING_VALUE", // required
|
|
47
|
+
* // taskId: "STRING_VALUE", // required
|
|
48
|
+
* // presignedLogUrl: "STRING_VALUE", // required
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param GetAgentTaskResponseUrlCommandInput - {@link GetAgentTaskResponseUrlCommandInput}
|
|
54
|
+
* @returns {@link GetAgentTaskResponseUrlCommandOutput}
|
|
55
|
+
* @see {@link GetAgentTaskResponseUrlCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link GetAgentTaskResponseUrlCommandOutput} for command's `response` shape.
|
|
57
|
+
* @see {@link GroundStationClientResolvedConfig | config} for GroundStationClient's `config` shape.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link DependencyException} (server fault)
|
|
60
|
+
* <p>Dependency encountered an error.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
63
|
+
* <p>One or more parameters are not valid.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
|
+
* <p>Resource was not found.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link GroundStationServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from GroundStation service.</p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class GetAgentTaskResponseUrlCommand extends GetAgentTaskResponseUrlCommand_base {
|
|
75
|
+
/** @internal type navigation helper, not in runtime. */
|
|
76
|
+
protected static __types: {
|
|
77
|
+
api: {
|
|
78
|
+
input: GetAgentTaskResponseUrlRequest;
|
|
79
|
+
output: GetAgentTaskResponseUrlResponse;
|
|
80
|
+
};
|
|
81
|
+
sdk: {
|
|
82
|
+
input: GetAgentTaskResponseUrlCommandInput;
|
|
83
|
+
output: GetAgentTaskResponseUrlCommandOutput;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
}
|
|
@@ -86,6 +86,52 @@ declare const GetDataflowEndpointGroupCommand_base: {
|
|
|
86
86
|
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
87
87
|
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
88
88
|
* // },
|
|
89
|
+
* // uplinkAwsGroundStationAgentEndpoint: { // UplinkAwsGroundStationAgentEndpointDetails
|
|
90
|
+
* // name: "STRING_VALUE", // required
|
|
91
|
+
* // dataflowDetails: { // UplinkDataflowDetails Union: only one key present
|
|
92
|
+
* // agentConnectionDetails: { // UplinkConnectionDetails
|
|
93
|
+
* // ingressAddressAndPort: {
|
|
94
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
95
|
+
* // mtu: Number("int"),
|
|
96
|
+
* // },
|
|
97
|
+
* // agentIpAndPortAddress: {
|
|
98
|
+
* // socketAddress: {
|
|
99
|
+
* // name: "STRING_VALUE", // required
|
|
100
|
+
* // portRange: {
|
|
101
|
+
* // minimum: Number("int"), // required
|
|
102
|
+
* // maximum: Number("int"), // required
|
|
103
|
+
* // },
|
|
104
|
+
* // },
|
|
105
|
+
* // mtu: Number("int"),
|
|
106
|
+
* // },
|
|
107
|
+
* // },
|
|
108
|
+
* // },
|
|
109
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
110
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
111
|
+
* // },
|
|
112
|
+
* // downlinkAwsGroundStationAgentEndpoint: { // DownlinkAwsGroundStationAgentEndpointDetails
|
|
113
|
+
* // name: "STRING_VALUE", // required
|
|
114
|
+
* // dataflowDetails: { // DownlinkDataflowDetails Union: only one key present
|
|
115
|
+
* // agentConnectionDetails: { // DownlinkConnectionDetails
|
|
116
|
+
* // agentIpAndPortAddress: {
|
|
117
|
+
* // socketAddress: {
|
|
118
|
+
* // name: "STRING_VALUE", // required
|
|
119
|
+
* // portRange: {
|
|
120
|
+
* // minimum: Number("int"), // required
|
|
121
|
+
* // maximum: Number("int"), // required
|
|
122
|
+
* // },
|
|
123
|
+
* // },
|
|
124
|
+
* // mtu: Number("int"),
|
|
125
|
+
* // },
|
|
126
|
+
* // egressAddressAndPort: {
|
|
127
|
+
* // socketAddress: "<SocketAddress>", // required
|
|
128
|
+
* // mtu: Number("int"),
|
|
129
|
+
* // },
|
|
130
|
+
* // },
|
|
131
|
+
* // },
|
|
132
|
+
* // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
|
|
133
|
+
* // auditResults: "HEALTHY" || "UNHEALTHY",
|
|
134
|
+
* // },
|
|
89
135
|
* // healthStatus: "HEALTHY" || "UNHEALTHY",
|
|
90
136
|
* // healthReasons: [ // CapabilityHealthReasonList
|
|
91
137
|
* // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./CancelContactCommand";
|
|
2
2
|
export * from "./CreateConfigCommand";
|
|
3
3
|
export * from "./CreateDataflowEndpointGroupCommand";
|
|
4
|
+
export * from "./CreateDataflowEndpointGroupV2Command";
|
|
4
5
|
export * from "./CreateEphemerisCommand";
|
|
5
6
|
export * from "./CreateMissionProfileCommand";
|
|
6
7
|
export * from "./DeleteConfigCommand";
|
|
@@ -10,6 +11,7 @@ export * from "./DeleteMissionProfileCommand";
|
|
|
10
11
|
export * from "./DescribeContactCommand";
|
|
11
12
|
export * from "./DescribeEphemerisCommand";
|
|
12
13
|
export * from "./GetAgentConfigurationCommand";
|
|
14
|
+
export * from "./GetAgentTaskResponseUrlCommand";
|
|
13
15
|
export * from "./GetConfigCommand";
|
|
14
16
|
export * from "./GetDataflowEndpointGroupCommand";
|
|
15
17
|
export * from "./GetMinuteUsageCommand";
|