@aws-sdk/client-groundstation 3.261.0 → 3.264.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/GroundStation.js +45 -0
- package/dist-cjs/commands/GetAgentConfigurationCommand.js +46 -0
- package/dist-cjs/commands/RegisterAgentCommand.js +46 -0
- package/dist-cjs/commands/UpdateAgentStatusCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +138 -34
- package/dist-cjs/protocols/Aws_restJson1.js +410 -2
- package/dist-es/GroundStation.js +45 -0
- package/dist-es/commands/GetAgentConfigurationCommand.js +42 -0
- package/dist-es/commands/RegisterAgentCommand.js +42 -0
- package/dist-es/commands/UpdateAgentStatusCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +117 -30
- package/dist-es/protocols/Aws_restJson1.js +403 -1
- package/dist-types/GroundStation.d.ts +21 -0
- package/dist-types/GroundStationClient.d.ts +5 -2
- package/dist-types/commands/GetAgentConfigurationCommand.d.ts +37 -0
- package/dist-types/commands/RegisterAgentCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAgentStatusCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +425 -47
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/GroundStation.d.ts +51 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetAgentConfigurationCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/RegisterAgentCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAgentStatusCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +199 -30
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +4 -4
|
@@ -1,5 +1,214 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Dependency encountered an error.</p>
|
|
5
|
+
*/
|
|
6
|
+
export declare class DependencyException extends __BaseException {
|
|
7
|
+
readonly name: "DependencyException";
|
|
8
|
+
readonly $fault: "server";
|
|
9
|
+
/**
|
|
10
|
+
* <p/>
|
|
11
|
+
*/
|
|
12
|
+
parameterName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @internal
|
|
15
|
+
*/
|
|
16
|
+
constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
|
|
17
|
+
}
|
|
18
|
+
export interface GetAgentConfigurationRequest {
|
|
19
|
+
/**
|
|
20
|
+
* <p>UUID of agent to get configuration information for.</p>
|
|
21
|
+
*/
|
|
22
|
+
agentId: string | undefined;
|
|
23
|
+
}
|
|
24
|
+
export interface GetAgentConfigurationResponse {
|
|
25
|
+
/**
|
|
26
|
+
* <p>UUID of agent.</p>
|
|
27
|
+
*/
|
|
28
|
+
agentId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* <p>Tasking document for agent.</p>
|
|
31
|
+
*/
|
|
32
|
+
taskingDocument?: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* <p>One or more parameters are not valid.</p>
|
|
36
|
+
*/
|
|
37
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
38
|
+
readonly name: "InvalidParameterException";
|
|
39
|
+
readonly $fault: "client";
|
|
40
|
+
/**
|
|
41
|
+
* <p/>
|
|
42
|
+
*/
|
|
43
|
+
parameterName?: string;
|
|
44
|
+
/**
|
|
45
|
+
* @internal
|
|
46
|
+
*/
|
|
47
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* <p>Resource was not found.</p>
|
|
51
|
+
*/
|
|
52
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
53
|
+
readonly name: "ResourceNotFoundException";
|
|
54
|
+
readonly $fault: "client";
|
|
55
|
+
/**
|
|
56
|
+
* @internal
|
|
57
|
+
*/
|
|
58
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
59
|
+
}
|
|
60
|
+
export declare enum ComponentType {
|
|
61
|
+
DIGITIZER = "DIGITIZER",
|
|
62
|
+
LAMINAR_FLOW = "LAMINAR_FLOW",
|
|
63
|
+
PRISM = "PRISM"
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* <p>Version information for agent components.</p>
|
|
67
|
+
*/
|
|
68
|
+
export interface ComponentVersion {
|
|
69
|
+
/**
|
|
70
|
+
* <p>Component type.</p>
|
|
71
|
+
*/
|
|
72
|
+
componentType: ComponentType | string | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>List of versions.</p>
|
|
75
|
+
*/
|
|
76
|
+
versions: string[] | undefined;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* <p>Detailed information about the agent.</p>
|
|
80
|
+
*/
|
|
81
|
+
export interface AgentDetails {
|
|
82
|
+
/**
|
|
83
|
+
* <p>Current agent version.</p>
|
|
84
|
+
*/
|
|
85
|
+
agentVersion: string | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>ID of EC2 instance agent is running on.</p>
|
|
88
|
+
*/
|
|
89
|
+
instanceId: string | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* <p>Type of EC2 instance agent is running on.</p>
|
|
92
|
+
*/
|
|
93
|
+
instanceType: string | undefined;
|
|
94
|
+
/**
|
|
95
|
+
* <p>Number of Cpu cores reserved for agent.</p>
|
|
96
|
+
*/
|
|
97
|
+
reservedCpuCores: number[] | undefined;
|
|
98
|
+
/**
|
|
99
|
+
* <p>List of versions being used by agent components.</p>
|
|
100
|
+
*/
|
|
101
|
+
componentVersions: ComponentVersion[] | undefined;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* <p>Data for agent discovery.</p>
|
|
105
|
+
*/
|
|
106
|
+
export interface DiscoveryData {
|
|
107
|
+
/**
|
|
108
|
+
* <p>List of public IP addresses to associate with agent.</p>
|
|
109
|
+
*/
|
|
110
|
+
publicIpAddresses: string[] | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>List of private IP addresses to associate with agent.</p>
|
|
113
|
+
*/
|
|
114
|
+
privateIpAddresses: string[] | undefined;
|
|
115
|
+
/**
|
|
116
|
+
* <p>List of capabilities to associate with agent.</p>
|
|
117
|
+
*/
|
|
118
|
+
capabilityArns: string[] | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface RegisterAgentRequest {
|
|
121
|
+
/**
|
|
122
|
+
* <p>Data for associating and agent with the capabilities it is managing.</p>
|
|
123
|
+
*/
|
|
124
|
+
discoveryData: DiscoveryData | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* <p>Detailed information about the agent being registered.</p>
|
|
127
|
+
*/
|
|
128
|
+
agentDetails: AgentDetails | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface RegisterAgentResponse {
|
|
131
|
+
/**
|
|
132
|
+
* <p>UUID of registered agent.</p>
|
|
133
|
+
*/
|
|
134
|
+
agentId?: string;
|
|
135
|
+
}
|
|
136
|
+
export declare enum AgentStatus {
|
|
137
|
+
ACTIVE = "ACTIVE",
|
|
138
|
+
FAILED = "FAILED",
|
|
139
|
+
INACTIVE = "INACTIVE",
|
|
140
|
+
SUCCESS = "SUCCESS"
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* <p>Aggregate status of Agent components.</p>
|
|
144
|
+
*/
|
|
145
|
+
export interface AggregateStatus {
|
|
146
|
+
/**
|
|
147
|
+
* <p>Aggregate status.</p>
|
|
148
|
+
*/
|
|
149
|
+
status: AgentStatus | string | undefined;
|
|
150
|
+
/**
|
|
151
|
+
* <p>Sparse map of failure signatures.</p>
|
|
152
|
+
*/
|
|
153
|
+
signatureMap?: Record<string, boolean>;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* <p>Data on the status of agent components.</p>
|
|
157
|
+
*/
|
|
158
|
+
export interface ComponentStatusData {
|
|
159
|
+
/**
|
|
160
|
+
* <p>The Component type.</p>
|
|
161
|
+
*/
|
|
162
|
+
componentType: ComponentType | string | undefined;
|
|
163
|
+
/**
|
|
164
|
+
* <p>Capability ARN of the component.</p>
|
|
165
|
+
*/
|
|
166
|
+
capabilityArn: string | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* <p>Component status.</p>
|
|
169
|
+
*/
|
|
170
|
+
status: AgentStatus | string | undefined;
|
|
171
|
+
/**
|
|
172
|
+
* <p>Bytes sent by the component.</p>
|
|
173
|
+
*/
|
|
174
|
+
bytesSent?: number;
|
|
175
|
+
/**
|
|
176
|
+
* <p>Bytes received by the component.</p>
|
|
177
|
+
*/
|
|
178
|
+
bytesReceived?: number;
|
|
179
|
+
/**
|
|
180
|
+
* <p>Packets dropped by component.</p>
|
|
181
|
+
*/
|
|
182
|
+
packetsDropped?: number;
|
|
183
|
+
/**
|
|
184
|
+
* <p>Dataflow UUID associated with the component.</p>
|
|
185
|
+
*/
|
|
186
|
+
dataflowId: string | undefined;
|
|
187
|
+
}
|
|
188
|
+
export interface UpdateAgentStatusRequest {
|
|
189
|
+
/**
|
|
190
|
+
* <p>UUID of agent to update.</p>
|
|
191
|
+
*/
|
|
192
|
+
agentId: string | undefined;
|
|
193
|
+
/**
|
|
194
|
+
* <p>GUID of agent task.</p>
|
|
195
|
+
*/
|
|
196
|
+
taskId: string | undefined;
|
|
197
|
+
/**
|
|
198
|
+
* <p>Aggregate status for agent.</p>
|
|
199
|
+
*/
|
|
200
|
+
aggregateStatus: AggregateStatus | undefined;
|
|
201
|
+
/**
|
|
202
|
+
* <p>List of component statuses for agent.</p>
|
|
203
|
+
*/
|
|
204
|
+
componentStatuses: ComponentStatusData[] | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface UpdateAgentStatusResponse {
|
|
207
|
+
/**
|
|
208
|
+
* <p>UUID of updated agent.</p>
|
|
209
|
+
*/
|
|
210
|
+
agentId: string | undefined;
|
|
211
|
+
}
|
|
3
212
|
export declare enum AngleUnits {
|
|
4
213
|
DEGREE_ANGLE = "DEGREE_ANGLE",
|
|
5
214
|
RADIAN = "RADIAN"
|
|
@@ -184,64 +393,117 @@ export interface AntennaUplinkConfig {
|
|
|
184
393
|
*/
|
|
185
394
|
targetEirp: Eirp | undefined;
|
|
186
395
|
}
|
|
396
|
+
export declare enum AuditResults {
|
|
397
|
+
HEALTHY = "HEALTHY",
|
|
398
|
+
UNHEALTHY = "UNHEALTHY"
|
|
399
|
+
}
|
|
187
400
|
/**
|
|
188
|
-
* <p
|
|
401
|
+
* <p>Information about the socket address.</p>
|
|
189
402
|
*/
|
|
190
|
-
export interface
|
|
403
|
+
export interface SocketAddress {
|
|
191
404
|
/**
|
|
192
|
-
* <p>
|
|
405
|
+
* <p>Name of a socket address.</p>
|
|
193
406
|
*/
|
|
194
|
-
|
|
407
|
+
name: string | undefined;
|
|
408
|
+
/**
|
|
409
|
+
* <p>Port of a socket address.</p>
|
|
410
|
+
*/
|
|
411
|
+
port: number | undefined;
|
|
195
412
|
}
|
|
196
413
|
/**
|
|
197
|
-
* <p
|
|
414
|
+
* <p>Egress address of AgentEndpoint with an optional mtu.</p>
|
|
198
415
|
*/
|
|
199
|
-
export interface
|
|
416
|
+
export interface ConnectionDetails {
|
|
200
417
|
/**
|
|
201
|
-
* <p>
|
|
418
|
+
* <p>A socket address.</p>
|
|
202
419
|
*/
|
|
203
|
-
|
|
420
|
+
socketAddress: SocketAddress | undefined;
|
|
421
|
+
/**
|
|
422
|
+
* <p>Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.</p>
|
|
423
|
+
*/
|
|
424
|
+
mtu?: number;
|
|
204
425
|
}
|
|
205
426
|
/**
|
|
206
|
-
* <p>
|
|
427
|
+
* <p>An integer range that has a minimum and maximum value.</p>
|
|
207
428
|
*/
|
|
208
|
-
export
|
|
209
|
-
readonly name: "DependencyException";
|
|
210
|
-
readonly $fault: "server";
|
|
429
|
+
export interface IntegerRange {
|
|
211
430
|
/**
|
|
212
|
-
* <p
|
|
431
|
+
* <p>A minimum value.</p>
|
|
213
432
|
*/
|
|
214
|
-
|
|
433
|
+
minimum: number | undefined;
|
|
215
434
|
/**
|
|
216
|
-
*
|
|
435
|
+
* <p>A maximum value.</p>
|
|
217
436
|
*/
|
|
218
|
-
|
|
437
|
+
maximum: number | undefined;
|
|
219
438
|
}
|
|
220
439
|
/**
|
|
221
|
-
* <p>
|
|
440
|
+
* <p>A socket address with a port range.</p>
|
|
222
441
|
*/
|
|
223
|
-
export
|
|
224
|
-
readonly name: "InvalidParameterException";
|
|
225
|
-
readonly $fault: "client";
|
|
442
|
+
export interface RangedSocketAddress {
|
|
226
443
|
/**
|
|
227
|
-
* <p
|
|
444
|
+
* <p>IPv4 socket address.</p>
|
|
228
445
|
*/
|
|
229
|
-
|
|
446
|
+
name: string | undefined;
|
|
230
447
|
/**
|
|
231
|
-
*
|
|
448
|
+
* <p>Port range of a socket address.</p>
|
|
232
449
|
*/
|
|
233
|
-
|
|
450
|
+
portRange: IntegerRange | undefined;
|
|
234
451
|
}
|
|
235
452
|
/**
|
|
236
|
-
* <p>
|
|
453
|
+
* <p>Ingress address of AgentEndpoint with a port range and an optional mtu.</p>
|
|
237
454
|
*/
|
|
238
|
-
export
|
|
239
|
-
readonly name: "ResourceNotFoundException";
|
|
240
|
-
readonly $fault: "client";
|
|
455
|
+
export interface RangedConnectionDetails {
|
|
241
456
|
/**
|
|
242
|
-
*
|
|
457
|
+
* <p>A ranged socket address.</p>
|
|
243
458
|
*/
|
|
244
|
-
|
|
459
|
+
socketAddress: RangedSocketAddress | undefined;
|
|
460
|
+
/**
|
|
461
|
+
* <p>Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.</p>
|
|
462
|
+
*/
|
|
463
|
+
mtu?: number;
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* <p>Information about AwsGroundStationAgentEndpoint.</p>
|
|
467
|
+
*/
|
|
468
|
+
export interface AwsGroundStationAgentEndpoint {
|
|
469
|
+
/**
|
|
470
|
+
* <p>Name string associated with AgentEndpoint. Used as a human-readable identifier for AgentEndpoint.</p>
|
|
471
|
+
*/
|
|
472
|
+
name: string | undefined;
|
|
473
|
+
/**
|
|
474
|
+
* <p>The egress address of AgentEndpoint.</p>
|
|
475
|
+
*/
|
|
476
|
+
egressAddress: ConnectionDetails | undefined;
|
|
477
|
+
/**
|
|
478
|
+
* <p>The ingress address of AgentEndpoint.</p>
|
|
479
|
+
*/
|
|
480
|
+
ingressAddress: RangedConnectionDetails | undefined;
|
|
481
|
+
/**
|
|
482
|
+
* <p>The status of AgentEndpoint.</p>
|
|
483
|
+
*/
|
|
484
|
+
agentStatus?: AgentStatus | string;
|
|
485
|
+
/**
|
|
486
|
+
* <p>The results of the audit.</p>
|
|
487
|
+
*/
|
|
488
|
+
auditResults?: AuditResults | string;
|
|
489
|
+
}
|
|
490
|
+
/**
|
|
491
|
+
* <p/>
|
|
492
|
+
*/
|
|
493
|
+
export interface CancelContactRequest {
|
|
494
|
+
/**
|
|
495
|
+
* <p>UUID of a contact.</p>
|
|
496
|
+
*/
|
|
497
|
+
contactId: string | undefined;
|
|
498
|
+
}
|
|
499
|
+
/**
|
|
500
|
+
* <p/>
|
|
501
|
+
*/
|
|
502
|
+
export interface ContactIdResponse {
|
|
503
|
+
/**
|
|
504
|
+
* <p>UUID of a contact.</p>
|
|
505
|
+
*/
|
|
506
|
+
contactId?: string;
|
|
245
507
|
}
|
|
246
508
|
export declare enum ConfigCapabilityType {
|
|
247
509
|
ANTENNA_DOWNLINK = "antenna-downlink",
|
|
@@ -606,19 +868,6 @@ export interface UpdateConfigRequest {
|
|
|
606
868
|
*/
|
|
607
869
|
configData: ConfigTypeData | undefined;
|
|
608
870
|
}
|
|
609
|
-
/**
|
|
610
|
-
* <p>Information about the socket address.</p>
|
|
611
|
-
*/
|
|
612
|
-
export interface SocketAddress {
|
|
613
|
-
/**
|
|
614
|
-
* <p>Name of a socket address.</p>
|
|
615
|
-
*/
|
|
616
|
-
name: string | undefined;
|
|
617
|
-
/**
|
|
618
|
-
* <p>Port of a socket address.</p>
|
|
619
|
-
*/
|
|
620
|
-
port: number | undefined;
|
|
621
|
-
}
|
|
622
871
|
export declare enum EndpointStatus {
|
|
623
872
|
created = "created",
|
|
624
873
|
creating = "creating",
|
|
@@ -676,6 +925,10 @@ export interface EndpointDetails {
|
|
|
676
925
|
* <p>A dataflow endpoint.</p>
|
|
677
926
|
*/
|
|
678
927
|
endpoint?: DataflowEndpoint;
|
|
928
|
+
/**
|
|
929
|
+
* <p>An agent endpoint.</p>
|
|
930
|
+
*/
|
|
931
|
+
awsGroundStationAgentEndpoint?: AwsGroundStationAgentEndpoint;
|
|
679
932
|
}
|
|
680
933
|
/**
|
|
681
934
|
* <p>Details about an S3 recording <code>Config</code> used in a contact.</p>
|
|
@@ -1209,6 +1462,39 @@ export interface EphemerisIdResponse {
|
|
|
1209
1462
|
*/
|
|
1210
1463
|
ephemerisId?: string;
|
|
1211
1464
|
}
|
|
1465
|
+
/**
|
|
1466
|
+
* <p>AWS Key Management Service (KMS) Key.</p>
|
|
1467
|
+
*/
|
|
1468
|
+
export declare type KmsKey = KmsKey.KmsAliasArnMember | KmsKey.KmsKeyArnMember | KmsKey.$UnknownMember;
|
|
1469
|
+
export declare namespace KmsKey {
|
|
1470
|
+
/**
|
|
1471
|
+
* <p>KMS Key Arn.</p>
|
|
1472
|
+
*/
|
|
1473
|
+
interface KmsKeyArnMember {
|
|
1474
|
+
kmsKeyArn: string;
|
|
1475
|
+
kmsAliasArn?: never;
|
|
1476
|
+
$unknown?: never;
|
|
1477
|
+
}
|
|
1478
|
+
/**
|
|
1479
|
+
* <p>KMS Alias Arn.</p>
|
|
1480
|
+
*/
|
|
1481
|
+
interface KmsAliasArnMember {
|
|
1482
|
+
kmsKeyArn?: never;
|
|
1483
|
+
kmsAliasArn: string;
|
|
1484
|
+
$unknown?: never;
|
|
1485
|
+
}
|
|
1486
|
+
interface $UnknownMember {
|
|
1487
|
+
kmsKeyArn?: never;
|
|
1488
|
+
kmsAliasArn?: never;
|
|
1489
|
+
$unknown: [string, any];
|
|
1490
|
+
}
|
|
1491
|
+
interface Visitor<T> {
|
|
1492
|
+
kmsKeyArn: (value: string) => T;
|
|
1493
|
+
kmsAliasArn: (value: string) => T;
|
|
1494
|
+
_: (name: string, value: any) => T;
|
|
1495
|
+
}
|
|
1496
|
+
const visit: <T>(value: KmsKey, visitor: Visitor<T>) => T;
|
|
1497
|
+
}
|
|
1212
1498
|
/**
|
|
1213
1499
|
* <p/>
|
|
1214
1500
|
*/
|
|
@@ -1243,6 +1529,14 @@ export interface CreateMissionProfileRequest {
|
|
|
1243
1529
|
* <p>Tags assigned to a mission profile.</p>
|
|
1244
1530
|
*/
|
|
1245
1531
|
tags?: Record<string, string>;
|
|
1532
|
+
/**
|
|
1533
|
+
* <p>KMS key to use for encrypting streams.</p>
|
|
1534
|
+
*/
|
|
1535
|
+
streamsKmsKey?: KmsKey;
|
|
1536
|
+
/**
|
|
1537
|
+
* <p>Role to use for encrypting streams with KMS key.</p>
|
|
1538
|
+
*/
|
|
1539
|
+
streamsKmsRole?: string;
|
|
1246
1540
|
}
|
|
1247
1541
|
/**
|
|
1248
1542
|
* <p/>
|
|
@@ -1692,6 +1986,14 @@ export interface GetMissionProfileResponse {
|
|
|
1692
1986
|
* <p>Tags assigned to a mission profile.</p>
|
|
1693
1987
|
*/
|
|
1694
1988
|
tags?: Record<string, string>;
|
|
1989
|
+
/**
|
|
1990
|
+
* <p>KMS key to use for encrypting streams.</p>
|
|
1991
|
+
*/
|
|
1992
|
+
streamsKmsKey?: KmsKey;
|
|
1993
|
+
/**
|
|
1994
|
+
* <p>Role to use for encrypting streams with KMS key.</p>
|
|
1995
|
+
*/
|
|
1996
|
+
streamsKmsRole?: string;
|
|
1695
1997
|
}
|
|
1696
1998
|
/**
|
|
1697
1999
|
* <p/>
|
|
@@ -1873,6 +2175,14 @@ export interface UpdateMissionProfileRequest {
|
|
|
1873
2175
|
* <p>ARN of a tracking <code>Config</code>.</p>
|
|
1874
2176
|
*/
|
|
1875
2177
|
trackingConfigArn?: string;
|
|
2178
|
+
/**
|
|
2179
|
+
* <p>KMS key to use for encrypting streams.</p>
|
|
2180
|
+
*/
|
|
2181
|
+
streamsKmsKey?: KmsKey;
|
|
2182
|
+
/**
|
|
2183
|
+
* <p>Role to use for encrypting streams with KMS key.</p>
|
|
2184
|
+
*/
|
|
2185
|
+
streamsKmsRole?: string;
|
|
1876
2186
|
}
|
|
1877
2187
|
/**
|
|
1878
2188
|
* <p/>
|
|
@@ -1961,6 +2271,50 @@ export interface UntagResourceRequest {
|
|
|
1961
2271
|
*/
|
|
1962
2272
|
export interface UntagResourceResponse {
|
|
1963
2273
|
}
|
|
2274
|
+
/**
|
|
2275
|
+
* @internal
|
|
2276
|
+
*/
|
|
2277
|
+
export declare const GetAgentConfigurationRequestFilterSensitiveLog: (obj: GetAgentConfigurationRequest) => any;
|
|
2278
|
+
/**
|
|
2279
|
+
* @internal
|
|
2280
|
+
*/
|
|
2281
|
+
export declare const GetAgentConfigurationResponseFilterSensitiveLog: (obj: GetAgentConfigurationResponse) => any;
|
|
2282
|
+
/**
|
|
2283
|
+
* @internal
|
|
2284
|
+
*/
|
|
2285
|
+
export declare const ComponentVersionFilterSensitiveLog: (obj: ComponentVersion) => any;
|
|
2286
|
+
/**
|
|
2287
|
+
* @internal
|
|
2288
|
+
*/
|
|
2289
|
+
export declare const AgentDetailsFilterSensitiveLog: (obj: AgentDetails) => any;
|
|
2290
|
+
/**
|
|
2291
|
+
* @internal
|
|
2292
|
+
*/
|
|
2293
|
+
export declare const DiscoveryDataFilterSensitiveLog: (obj: DiscoveryData) => any;
|
|
2294
|
+
/**
|
|
2295
|
+
* @internal
|
|
2296
|
+
*/
|
|
2297
|
+
export declare const RegisterAgentRequestFilterSensitiveLog: (obj: RegisterAgentRequest) => any;
|
|
2298
|
+
/**
|
|
2299
|
+
* @internal
|
|
2300
|
+
*/
|
|
2301
|
+
export declare const RegisterAgentResponseFilterSensitiveLog: (obj: RegisterAgentResponse) => any;
|
|
2302
|
+
/**
|
|
2303
|
+
* @internal
|
|
2304
|
+
*/
|
|
2305
|
+
export declare const AggregateStatusFilterSensitiveLog: (obj: AggregateStatus) => any;
|
|
2306
|
+
/**
|
|
2307
|
+
* @internal
|
|
2308
|
+
*/
|
|
2309
|
+
export declare const ComponentStatusDataFilterSensitiveLog: (obj: ComponentStatusData) => any;
|
|
2310
|
+
/**
|
|
2311
|
+
* @internal
|
|
2312
|
+
*/
|
|
2313
|
+
export declare const UpdateAgentStatusRequestFilterSensitiveLog: (obj: UpdateAgentStatusRequest) => any;
|
|
2314
|
+
/**
|
|
2315
|
+
* @internal
|
|
2316
|
+
*/
|
|
2317
|
+
export declare const UpdateAgentStatusResponseFilterSensitiveLog: (obj: UpdateAgentStatusResponse) => any;
|
|
1964
2318
|
/**
|
|
1965
2319
|
* @internal
|
|
1966
2320
|
*/
|
|
@@ -2005,6 +2359,30 @@ export declare const EirpFilterSensitiveLog: (obj: Eirp) => any;
|
|
|
2005
2359
|
* @internal
|
|
2006
2360
|
*/
|
|
2007
2361
|
export declare const AntennaUplinkConfigFilterSensitiveLog: (obj: AntennaUplinkConfig) => any;
|
|
2362
|
+
/**
|
|
2363
|
+
* @internal
|
|
2364
|
+
*/
|
|
2365
|
+
export declare const SocketAddressFilterSensitiveLog: (obj: SocketAddress) => any;
|
|
2366
|
+
/**
|
|
2367
|
+
* @internal
|
|
2368
|
+
*/
|
|
2369
|
+
export declare const ConnectionDetailsFilterSensitiveLog: (obj: ConnectionDetails) => any;
|
|
2370
|
+
/**
|
|
2371
|
+
* @internal
|
|
2372
|
+
*/
|
|
2373
|
+
export declare const IntegerRangeFilterSensitiveLog: (obj: IntegerRange) => any;
|
|
2374
|
+
/**
|
|
2375
|
+
* @internal
|
|
2376
|
+
*/
|
|
2377
|
+
export declare const RangedSocketAddressFilterSensitiveLog: (obj: RangedSocketAddress) => any;
|
|
2378
|
+
/**
|
|
2379
|
+
* @internal
|
|
2380
|
+
*/
|
|
2381
|
+
export declare const RangedConnectionDetailsFilterSensitiveLog: (obj: RangedConnectionDetails) => any;
|
|
2382
|
+
/**
|
|
2383
|
+
* @internal
|
|
2384
|
+
*/
|
|
2385
|
+
export declare const AwsGroundStationAgentEndpointFilterSensitiveLog: (obj: AwsGroundStationAgentEndpoint) => any;
|
|
2008
2386
|
/**
|
|
2009
2387
|
* @internal
|
|
2010
2388
|
*/
|
|
@@ -2069,10 +2447,6 @@ export declare const ListConfigsResponseFilterSensitiveLog: (obj: ListConfigsRes
|
|
|
2069
2447
|
* @internal
|
|
2070
2448
|
*/
|
|
2071
2449
|
export declare const UpdateConfigRequestFilterSensitiveLog: (obj: UpdateConfigRequest) => any;
|
|
2072
|
-
/**
|
|
2073
|
-
* @internal
|
|
2074
|
-
*/
|
|
2075
|
-
export declare const SocketAddressFilterSensitiveLog: (obj: SocketAddress) => any;
|
|
2076
2450
|
/**
|
|
2077
2451
|
* @internal
|
|
2078
2452
|
*/
|
|
@@ -2173,6 +2547,10 @@ export declare const CreateEphemerisRequestFilterSensitiveLog: (obj: CreateEphem
|
|
|
2173
2547
|
* @internal
|
|
2174
2548
|
*/
|
|
2175
2549
|
export declare const EphemerisIdResponseFilterSensitiveLog: (obj: EphemerisIdResponse) => any;
|
|
2550
|
+
/**
|
|
2551
|
+
* @internal
|
|
2552
|
+
*/
|
|
2553
|
+
export declare const KmsKeyFilterSensitiveLog: (obj: KmsKey) => any;
|
|
2176
2554
|
/**
|
|
2177
2555
|
* @internal
|
|
2178
2556
|
*/
|
|
@@ -11,6 +11,7 @@ import { DeleteEphemerisCommandInput, DeleteEphemerisCommandOutput } from "../co
|
|
|
11
11
|
import { DeleteMissionProfileCommandInput, DeleteMissionProfileCommandOutput } from "../commands/DeleteMissionProfileCommand";
|
|
12
12
|
import { DescribeContactCommandInput, DescribeContactCommandOutput } from "../commands/DescribeContactCommand";
|
|
13
13
|
import { DescribeEphemerisCommandInput, DescribeEphemerisCommandOutput } from "../commands/DescribeEphemerisCommand";
|
|
14
|
+
import { GetAgentConfigurationCommandInput, GetAgentConfigurationCommandOutput } from "../commands/GetAgentConfigurationCommand";
|
|
14
15
|
import { GetConfigCommandInput, GetConfigCommandOutput } from "../commands/GetConfigCommand";
|
|
15
16
|
import { GetDataflowEndpointGroupCommandInput, GetDataflowEndpointGroupCommandOutput } from "../commands/GetDataflowEndpointGroupCommand";
|
|
16
17
|
import { GetMinuteUsageCommandInput, GetMinuteUsageCommandOutput } from "../commands/GetMinuteUsageCommand";
|
|
@@ -24,9 +25,11 @@ import { ListGroundStationsCommandInput, ListGroundStationsCommandOutput } from
|
|
|
24
25
|
import { ListMissionProfilesCommandInput, ListMissionProfilesCommandOutput } from "../commands/ListMissionProfilesCommand";
|
|
25
26
|
import { ListSatellitesCommandInput, ListSatellitesCommandOutput } from "../commands/ListSatellitesCommand";
|
|
26
27
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
28
|
+
import { RegisterAgentCommandInput, RegisterAgentCommandOutput } from "../commands/RegisterAgentCommand";
|
|
27
29
|
import { ReserveContactCommandInput, ReserveContactCommandOutput } from "../commands/ReserveContactCommand";
|
|
28
30
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
29
31
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
32
|
+
import { UpdateAgentStatusCommandInput, UpdateAgentStatusCommandOutput } from "../commands/UpdateAgentStatusCommand";
|
|
30
33
|
import { UpdateConfigCommandInput, UpdateConfigCommandOutput } from "../commands/UpdateConfigCommand";
|
|
31
34
|
import { UpdateEphemerisCommandInput, UpdateEphemerisCommandOutput } from "../commands/UpdateEphemerisCommand";
|
|
32
35
|
import { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput } from "../commands/UpdateMissionProfileCommand";
|
|
@@ -41,6 +44,7 @@ export declare const serializeAws_restJson1DeleteEphemerisCommand: (input: Delet
|
|
|
41
44
|
export declare const serializeAws_restJson1DeleteMissionProfileCommand: (input: DeleteMissionProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
45
|
export declare const serializeAws_restJson1DescribeContactCommand: (input: DescribeContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
46
|
export declare const serializeAws_restJson1DescribeEphemerisCommand: (input: DescribeEphemerisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
export declare const serializeAws_restJson1GetAgentConfigurationCommand: (input: GetAgentConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
48
|
export declare const serializeAws_restJson1GetConfigCommand: (input: GetConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
49
|
export declare const serializeAws_restJson1GetDataflowEndpointGroupCommand: (input: GetDataflowEndpointGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
50
|
export declare const serializeAws_restJson1GetMinuteUsageCommand: (input: GetMinuteUsageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -54,9 +58,11 @@ export declare const serializeAws_restJson1ListGroundStationsCommand: (input: Li
|
|
|
54
58
|
export declare const serializeAws_restJson1ListMissionProfilesCommand: (input: ListMissionProfilesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
59
|
export declare const serializeAws_restJson1ListSatellitesCommand: (input: ListSatellitesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
60
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
|
+
export declare const serializeAws_restJson1RegisterAgentCommand: (input: RegisterAgentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
62
|
export declare const serializeAws_restJson1ReserveContactCommand: (input: ReserveContactCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
63
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
64
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
65
|
+
export declare const serializeAws_restJson1UpdateAgentStatusCommand: (input: UpdateAgentStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
66
|
export declare const serializeAws_restJson1UpdateConfigCommand: (input: UpdateConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
67
|
export declare const serializeAws_restJson1UpdateEphemerisCommand: (input: UpdateEphemerisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
68
|
export declare const serializeAws_restJson1UpdateMissionProfileCommand: (input: UpdateMissionProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -71,6 +77,7 @@ export declare const deserializeAws_restJson1DeleteEphemerisCommand: (output: __
|
|
|
71
77
|
export declare const deserializeAws_restJson1DeleteMissionProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMissionProfileCommandOutput>;
|
|
72
78
|
export declare const deserializeAws_restJson1DescribeContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeContactCommandOutput>;
|
|
73
79
|
export declare const deserializeAws_restJson1DescribeEphemerisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEphemerisCommandOutput>;
|
|
80
|
+
export declare const deserializeAws_restJson1GetAgentConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAgentConfigurationCommandOutput>;
|
|
74
81
|
export declare const deserializeAws_restJson1GetConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigCommandOutput>;
|
|
75
82
|
export declare const deserializeAws_restJson1GetDataflowEndpointGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataflowEndpointGroupCommandOutput>;
|
|
76
83
|
export declare const deserializeAws_restJson1GetMinuteUsageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMinuteUsageCommandOutput>;
|
|
@@ -84,9 +91,11 @@ export declare const deserializeAws_restJson1ListGroundStationsCommand: (output:
|
|
|
84
91
|
export declare const deserializeAws_restJson1ListMissionProfilesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMissionProfilesCommandOutput>;
|
|
85
92
|
export declare const deserializeAws_restJson1ListSatellitesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSatellitesCommandOutput>;
|
|
86
93
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
94
|
+
export declare const deserializeAws_restJson1RegisterAgentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterAgentCommandOutput>;
|
|
87
95
|
export declare const deserializeAws_restJson1ReserveContactCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReserveContactCommandOutput>;
|
|
88
96
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
89
97
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
98
|
+
export declare const deserializeAws_restJson1UpdateAgentStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAgentStatusCommandOutput>;
|
|
90
99
|
export declare const deserializeAws_restJson1UpdateConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConfigCommandOutput>;
|
|
91
100
|
export declare const deserializeAws_restJson1UpdateEphemerisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEphemerisCommandOutput>;
|
|
92
101
|
export declare const deserializeAws_restJson1UpdateMissionProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateMissionProfileCommandOutput>;
|