@aws-sdk/client-groundstation 3.782.0 → 3.787.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 CHANGED
@@ -851,7 +851,8 @@ var se_RegisterAgentCommand = /* @__PURE__ */ __name(async (input, context) => {
851
851
  body = JSON.stringify(
852
852
  (0, import_smithy_client.take)(input, {
853
853
  agentDetails: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "agentDetails"),
854
- discoveryData: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "discoveryData")
854
+ discoveryData: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "discoveryData"),
855
+ tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "tags")
855
856
  })
856
857
  );
857
858
  b.m("POST").h(headers).b(body);
@@ -319,6 +319,7 @@ export const se_RegisterAgentCommand = async (input, context) => {
319
319
  body = JSON.stringify(take(input, {
320
320
  agentDetails: (_) => _json(_),
321
321
  discoveryData: (_) => _json(_),
322
+ tags: (_) => _json(_),
322
323
  }));
323
324
  b.m("POST").h(headers).b(body);
324
325
  return b.build();
@@ -42,17 +42,17 @@ declare const CreateConfigCommand_base: {
42
42
  * spectrumConfig: { // SpectrumConfig
43
43
  * centerFrequency: { // Frequency
44
44
  * value: Number("double"), // required
45
- * units: "STRING_VALUE", // required
45
+ * units: "GHz" || "MHz" || "kHz", // required
46
46
  * },
47
47
  * bandwidth: { // FrequencyBandwidth
48
48
  * value: Number("double"), // required
49
- * units: "STRING_VALUE", // required
49
+ * units: "GHz" || "MHz" || "kHz", // required
50
50
  * },
51
- * polarization: "STRING_VALUE",
51
+ * polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
52
52
  * },
53
53
  * },
54
54
  * trackingConfig: { // TrackingConfig
55
- * autotrack: "STRING_VALUE", // required
55
+ * autotrack: "REQUIRED" || "PREFERRED" || "REMOVED", // required
56
56
  * },
57
57
  * dataflowEndpointConfig: { // DataflowEndpointConfig
58
58
  * dataflowEndpointName: "STRING_VALUE", // required
@@ -62,13 +62,13 @@ declare const CreateConfigCommand_base: {
62
62
  * spectrumConfig: {
63
63
  * centerFrequency: {
64
64
  * value: Number("double"), // required
65
- * units: "STRING_VALUE", // required
65
+ * units: "GHz" || "MHz" || "kHz", // required
66
66
  * },
67
67
  * bandwidth: {
68
68
  * value: Number("double"), // required
69
- * units: "STRING_VALUE", // required
69
+ * units: "GHz" || "MHz" || "kHz", // required
70
70
  * },
71
- * polarization: "STRING_VALUE",
71
+ * polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
72
72
  * },
73
73
  * demodulationConfig: { // DemodulationConfig
74
74
  * unvalidatedJSON: "STRING_VALUE", // required
@@ -82,13 +82,13 @@ declare const CreateConfigCommand_base: {
82
82
  * spectrumConfig: { // UplinkSpectrumConfig
83
83
  * centerFrequency: {
84
84
  * value: Number("double"), // required
85
- * units: "STRING_VALUE", // required
85
+ * units: "GHz" || "MHz" || "kHz", // required
86
86
  * },
87
- * polarization: "STRING_VALUE",
87
+ * polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
88
88
  * },
89
89
  * targetEirp: { // Eirp
90
90
  * value: Number("double"), // required
91
- * units: "STRING_VALUE", // required
91
+ * units: "dBW", // required
92
92
  * },
93
93
  * },
94
94
  * uplinkEchoConfig: { // UplinkEchoConfig
@@ -109,7 +109,7 @@ declare const CreateConfigCommand_base: {
109
109
  * const response = await client.send(command);
110
110
  * // { // ConfigIdResponse
111
111
  * // configId: "STRING_VALUE",
112
- * // configType: "STRING_VALUE",
112
+ * // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
113
113
  * // configArn: "STRING_VALUE",
114
114
  * // };
115
115
  *
@@ -56,7 +56,7 @@ declare const CreateDataflowEndpointGroupCommand_base: {
56
56
  * name: "STRING_VALUE", // required
57
57
  * port: Number("int"), // required
58
58
  * },
59
- * status: "STRING_VALUE",
59
+ * status: "created" || "creating" || "deleted" || "deleting" || "failed",
60
60
  * mtu: Number("int"),
61
61
  * },
62
62
  * awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
@@ -78,12 +78,12 @@ declare const CreateDataflowEndpointGroupCommand_base: {
78
78
  * },
79
79
  * mtu: Number("int"),
80
80
  * },
81
- * agentStatus: "STRING_VALUE",
82
- * auditResults: "STRING_VALUE",
81
+ * agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
82
+ * auditResults: "HEALTHY" || "UNHEALTHY",
83
83
  * },
84
- * healthStatus: "STRING_VALUE",
84
+ * healthStatus: "HEALTHY" || "UNHEALTHY",
85
85
  * healthReasons: [ // CapabilityHealthReasonList
86
- * "STRING_VALUE",
86
+ * "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
87
87
  * ],
88
88
  * },
89
89
  * ],
@@ -36,13 +36,13 @@ declare const DeleteConfigCommand_base: {
36
36
  * const client = new GroundStationClient(config);
37
37
  * const input = { // DeleteConfigRequest
38
38
  * configId: "STRING_VALUE", // required
39
- * configType: "STRING_VALUE", // required
39
+ * configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording", // required
40
40
  * };
41
41
  * const command = new DeleteConfigCommand(input);
42
42
  * const response = await client.send(command);
43
43
  * // { // ConfigIdResponse
44
44
  * // configId: "STRING_VALUE",
45
- * // configType: "STRING_VALUE",
45
+ * // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
46
46
  * // configArn: "STRING_VALUE",
47
47
  * // };
48
48
  *
@@ -48,11 +48,11 @@ declare const DescribeContactCommand_base: {
48
48
  * // prePassStartTime: new Date("TIMESTAMP"),
49
49
  * // postPassEndTime: new Date("TIMESTAMP"),
50
50
  * // groundStation: "STRING_VALUE",
51
- * // contactStatus: "STRING_VALUE",
51
+ * // contactStatus: "SCHEDULING" || "FAILED_TO_SCHEDULE" || "SCHEDULED" || "CANCELLED" || "AWS_CANCELLED" || "PREPASS" || "PASS" || "POSTPASS" || "COMPLETED" || "FAILED" || "AVAILABLE" || "CANCELLING" || "AWS_FAILED",
52
52
  * // errorMessage: "STRING_VALUE",
53
53
  * // maximumElevation: { // Elevation
54
54
  * // value: Number("double"), // required
55
- * // unit: "STRING_VALUE", // required
55
+ * // unit: "DEGREE_ANGLE" || "RADIAN", // required
56
56
  * // },
57
57
  * // tags: { // TagsMap
58
58
  * // "<keys>": "STRING_VALUE",
@@ -61,7 +61,7 @@ declare const DescribeContactCommand_base: {
61
61
  * // dataflowList: [ // DataflowList
62
62
  * // { // DataflowDetail
63
63
  * // source: { // Source
64
- * // configType: "STRING_VALUE",
64
+ * // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
65
65
  * // configId: "STRING_VALUE",
66
66
  * // configDetails: { // ConfigDetails Union: only one key present
67
67
  * // endpointDetails: { // EndpointDetails
@@ -80,7 +80,7 @@ declare const DescribeContactCommand_base: {
80
80
  * // name: "STRING_VALUE", // required
81
81
  * // port: Number("int"), // required
82
82
  * // },
83
- * // status: "STRING_VALUE",
83
+ * // status: "created" || "creating" || "deleted" || "deleting" || "failed",
84
84
  * // mtu: Number("int"),
85
85
  * // },
86
86
  * // awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
@@ -102,12 +102,12 @@ declare const DescribeContactCommand_base: {
102
102
  * // },
103
103
  * // mtu: Number("int"),
104
104
  * // },
105
- * // agentStatus: "STRING_VALUE",
106
- * // auditResults: "STRING_VALUE",
105
+ * // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
106
+ * // auditResults: "HEALTHY" || "UNHEALTHY",
107
107
  * // },
108
- * // healthStatus: "STRING_VALUE",
108
+ * // healthStatus: "HEALTHY" || "UNHEALTHY",
109
109
  * // healthReasons: [ // CapabilityHealthReasonList
110
- * // "STRING_VALUE",
110
+ * // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
111
111
  * // ],
112
112
  * // },
113
113
  * // antennaDemodDecodeDetails: { // AntennaDemodDecodeDetails
@@ -121,7 +121,7 @@ declare const DescribeContactCommand_base: {
121
121
  * // dataflowSourceRegion: "STRING_VALUE",
122
122
  * // },
123
123
  * // destination: { // Destination
124
- * // configType: "STRING_VALUE",
124
+ * // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
125
125
  * // configId: "STRING_VALUE",
126
126
  * // configDetails: {// Union: only one key present
127
127
  * // endpointDetails: {
@@ -140,7 +140,7 @@ declare const DescribeContactCommand_base: {
140
140
  * // name: "STRING_VALUE", // required
141
141
  * // port: Number("int"), // required
142
142
  * // },
143
- * // status: "STRING_VALUE",
143
+ * // status: "created" || "creating" || "deleted" || "deleting" || "failed",
144
144
  * // mtu: Number("int"),
145
145
  * // },
146
146
  * // awsGroundStationAgentEndpoint: {
@@ -162,12 +162,12 @@ declare const DescribeContactCommand_base: {
162
162
  * // },
163
163
  * // mtu: Number("int"),
164
164
  * // },
165
- * // agentStatus: "STRING_VALUE",
166
- * // auditResults: "STRING_VALUE",
165
+ * // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
166
+ * // auditResults: "HEALTHY" || "UNHEALTHY",
167
167
  * // },
168
- * // healthStatus: "STRING_VALUE",
168
+ * // healthStatus: "HEALTHY" || "UNHEALTHY",
169
169
  * // healthReasons: [
170
- * // "STRING_VALUE",
170
+ * // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
171
171
  * // ],
172
172
  * // },
173
173
  * // antennaDemodDecodeDetails: {
@@ -42,7 +42,7 @@ declare const DescribeEphemerisCommand_base: {
42
42
  * // { // DescribeEphemerisResponse
43
43
  * // ephemerisId: "STRING_VALUE",
44
44
  * // satelliteId: "STRING_VALUE",
45
- * // status: "STRING_VALUE",
45
+ * // status: "VALIDATING" || "INVALID" || "ERROR" || "ENABLED" || "DISABLED" || "EXPIRED",
46
46
  * // priority: Number("int"),
47
47
  * // creationTime: new Date("TIMESTAMP"),
48
48
  * // enabled: true || false,
@@ -68,7 +68,7 @@ declare const DescribeEphemerisCommand_base: {
68
68
  * // ephemerisData: "STRING_VALUE",
69
69
  * // },
70
70
  * // },
71
- * // invalidReason: "STRING_VALUE",
71
+ * // invalidReason: "METADATA_INVALID" || "TIME_RANGE_INVALID" || "TRAJECTORY_INVALID" || "KMS_KEY_INVALID" || "VALIDATION_ERROR",
72
72
  * // };
73
73
  *
74
74
  * ```
@@ -37,7 +37,7 @@ declare const GetConfigCommand_base: {
37
37
  * const client = new GroundStationClient(config);
38
38
  * const input = { // GetConfigRequest
39
39
  * configId: "STRING_VALUE", // required
40
- * configType: "STRING_VALUE", // required
40
+ * configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording", // required
41
41
  * };
42
42
  * const command = new GetConfigCommand(input);
43
43
  * const response = await client.send(command);
@@ -45,23 +45,23 @@ declare const GetConfigCommand_base: {
45
45
  * // configId: "STRING_VALUE", // required
46
46
  * // configArn: "STRING_VALUE", // required
47
47
  * // name: "STRING_VALUE", // required
48
- * // configType: "STRING_VALUE",
48
+ * // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
49
49
  * // configData: { // ConfigTypeData Union: only one key present
50
50
  * // antennaDownlinkConfig: { // AntennaDownlinkConfig
51
51
  * // spectrumConfig: { // SpectrumConfig
52
52
  * // centerFrequency: { // Frequency
53
53
  * // value: Number("double"), // required
54
- * // units: "STRING_VALUE", // required
54
+ * // units: "GHz" || "MHz" || "kHz", // required
55
55
  * // },
56
56
  * // bandwidth: { // FrequencyBandwidth
57
57
  * // value: Number("double"), // required
58
- * // units: "STRING_VALUE", // required
58
+ * // units: "GHz" || "MHz" || "kHz", // required
59
59
  * // },
60
- * // polarization: "STRING_VALUE",
60
+ * // polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
61
61
  * // },
62
62
  * // },
63
63
  * // trackingConfig: { // TrackingConfig
64
- * // autotrack: "STRING_VALUE", // required
64
+ * // autotrack: "REQUIRED" || "PREFERRED" || "REMOVED", // required
65
65
  * // },
66
66
  * // dataflowEndpointConfig: { // DataflowEndpointConfig
67
67
  * // dataflowEndpointName: "STRING_VALUE", // required
@@ -71,13 +71,13 @@ declare const GetConfigCommand_base: {
71
71
  * // spectrumConfig: {
72
72
  * // centerFrequency: {
73
73
  * // value: Number("double"), // required
74
- * // units: "STRING_VALUE", // required
74
+ * // units: "GHz" || "MHz" || "kHz", // required
75
75
  * // },
76
76
  * // bandwidth: {
77
77
  * // value: Number("double"), // required
78
- * // units: "STRING_VALUE", // required
78
+ * // units: "GHz" || "MHz" || "kHz", // required
79
79
  * // },
80
- * // polarization: "STRING_VALUE",
80
+ * // polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
81
81
  * // },
82
82
  * // demodulationConfig: { // DemodulationConfig
83
83
  * // unvalidatedJSON: "STRING_VALUE", // required
@@ -91,13 +91,13 @@ declare const GetConfigCommand_base: {
91
91
  * // spectrumConfig: { // UplinkSpectrumConfig
92
92
  * // centerFrequency: {
93
93
  * // value: Number("double"), // required
94
- * // units: "STRING_VALUE", // required
94
+ * // units: "GHz" || "MHz" || "kHz", // required
95
95
  * // },
96
- * // polarization: "STRING_VALUE",
96
+ * // polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
97
97
  * // },
98
98
  * // targetEirp: { // Eirp
99
99
  * // value: Number("double"), // required
100
- * // units: "STRING_VALUE", // required
100
+ * // units: "dBW", // required
101
101
  * // },
102
102
  * // },
103
103
  * // uplinkEchoConfig: { // UplinkEchoConfig
@@ -59,7 +59,7 @@ declare const GetDataflowEndpointGroupCommand_base: {
59
59
  * // name: "STRING_VALUE", // required
60
60
  * // port: Number("int"), // required
61
61
  * // },
62
- * // status: "STRING_VALUE",
62
+ * // status: "created" || "creating" || "deleted" || "deleting" || "failed",
63
63
  * // mtu: Number("int"),
64
64
  * // },
65
65
  * // awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
@@ -81,12 +81,12 @@ declare const GetDataflowEndpointGroupCommand_base: {
81
81
  * // },
82
82
  * // mtu: Number("int"),
83
83
  * // },
84
- * // agentStatus: "STRING_VALUE",
85
- * // auditResults: "STRING_VALUE",
84
+ * // agentStatus: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE",
85
+ * // auditResults: "HEALTHY" || "UNHEALTHY",
86
86
  * // },
87
- * // healthStatus: "STRING_VALUE",
87
+ * // healthStatus: "HEALTHY" || "UNHEALTHY",
88
88
  * // healthReasons: [ // CapabilityHealthReasonList
89
- * // "STRING_VALUE",
89
+ * // "NO_REGISTERED_AGENT" || "INVALID_IP_OWNERSHIP" || "NOT_AUTHORIZED_TO_CREATE_SLR" || "UNVERIFIED_IP_OWNERSHIP" || "INITIALIZING_DATAPLANE" || "DATAPLANE_FAILURE" || "HEALTHY",
90
90
  * // ],
91
91
  * // },
92
92
  * // ],
@@ -47,7 +47,7 @@ declare const GetSatelliteCommand_base: {
47
47
  * // "STRING_VALUE",
48
48
  * // ],
49
49
  * // currentEphemeris: { // EphemerisMetaData
50
- * // source: "STRING_VALUE", // required
50
+ * // source: "CUSTOMER_PROVIDED" || "SPACE_TRACK", // required
51
51
  * // ephemerisId: "STRING_VALUE",
52
52
  * // epoch: new Date("TIMESTAMP"),
53
53
  * // name: "STRING_VALUE",
@@ -45,7 +45,7 @@ declare const ListConfigsCommand_base: {
45
45
  * // configList: [ // ConfigList
46
46
  * // { // ConfigListItem
47
47
  * // configId: "STRING_VALUE",
48
- * // configType: "STRING_VALUE",
48
+ * // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
49
49
  * // configArn: "STRING_VALUE",
50
50
  * // name: "STRING_VALUE",
51
51
  * // },
@@ -41,7 +41,7 @@ declare const ListContactsCommand_base: {
41
41
  * maxResults: Number("int"),
42
42
  * nextToken: "STRING_VALUE",
43
43
  * statusList: [ // StatusList // required
44
- * "STRING_VALUE",
44
+ * "SCHEDULING" || "FAILED_TO_SCHEDULE" || "SCHEDULED" || "CANCELLED" || "AWS_CANCELLED" || "PREPASS" || "PASS" || "POSTPASS" || "COMPLETED" || "FAILED" || "AVAILABLE" || "CANCELLING" || "AWS_FAILED",
45
45
  * ],
46
46
  * startTime: new Date("TIMESTAMP"), // required
47
47
  * endTime: new Date("TIMESTAMP"), // required
@@ -63,11 +63,11 @@ declare const ListContactsCommand_base: {
63
63
  * // prePassStartTime: new Date("TIMESTAMP"),
64
64
  * // postPassEndTime: new Date("TIMESTAMP"),
65
65
  * // groundStation: "STRING_VALUE",
66
- * // contactStatus: "STRING_VALUE",
66
+ * // contactStatus: "SCHEDULING" || "FAILED_TO_SCHEDULE" || "SCHEDULED" || "CANCELLED" || "AWS_CANCELLED" || "PREPASS" || "PASS" || "POSTPASS" || "COMPLETED" || "FAILED" || "AVAILABLE" || "CANCELLING" || "AWS_FAILED",
67
67
  * // errorMessage: "STRING_VALUE",
68
68
  * // maximumElevation: { // Elevation
69
69
  * // value: Number("double"), // required
70
- * // unit: "STRING_VALUE", // required
70
+ * // unit: "DEGREE_ANGLE" || "RADIAN", // required
71
71
  * // },
72
72
  * // region: "STRING_VALUE",
73
73
  * // tags: { // TagsMap
@@ -39,7 +39,7 @@ declare const ListEphemeridesCommand_base: {
39
39
  * startTime: new Date("TIMESTAMP"), // required
40
40
  * endTime: new Date("TIMESTAMP"), // required
41
41
  * statusList: [ // EphemerisStatusList
42
- * "STRING_VALUE",
42
+ * "VALIDATING" || "INVALID" || "ERROR" || "ENABLED" || "DISABLED" || "EXPIRED",
43
43
  * ],
44
44
  * maxResults: Number("int"),
45
45
  * nextToken: "STRING_VALUE",
@@ -51,7 +51,7 @@ declare const ListEphemeridesCommand_base: {
51
51
  * // ephemerides: [ // EphemeridesList
52
52
  * // { // EphemerisItem
53
53
  * // ephemerisId: "STRING_VALUE",
54
- * // status: "STRING_VALUE",
54
+ * // status: "VALIDATING" || "INVALID" || "ERROR" || "ENABLED" || "DISABLED" || "EXPIRED",
55
55
  * // priority: Number("int"),
56
56
  * // enabled: true || false,
57
57
  * // creationTime: new Date("TIMESTAMP"),
@@ -51,7 +51,7 @@ declare const ListSatellitesCommand_base: {
51
51
  * // "STRING_VALUE",
52
52
  * // ],
53
53
  * // currentEphemeris: { // EphemerisMetaData
54
- * // source: "STRING_VALUE", // required
54
+ * // source: "CUSTOMER_PROVIDED" || "SPACE_TRACK", // required
55
55
  * // ephemerisId: "STRING_VALUE",
56
56
  * // epoch: new Date("TIMESTAMP"),
57
57
  * // name: "STRING_VALUE",
@@ -68,6 +68,9 @@ declare const RegisterAgentCommand_base: {
68
68
  * },
69
69
  * ],
70
70
  * },
71
+ * tags: { // TagsMap
72
+ * "<keys>": "STRING_VALUE",
73
+ * },
71
74
  * };
72
75
  * const command = new RegisterAgentCommand(input);
73
76
  * const response = await client.send(command);
@@ -41,7 +41,7 @@ declare const UpdateAgentStatusCommand_base: {
41
41
  * agentId: "STRING_VALUE", // required
42
42
  * taskId: "STRING_VALUE", // required
43
43
  * aggregateStatus: { // AggregateStatus
44
- * status: "STRING_VALUE", // required
44
+ * status: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE", // required
45
45
  * signatureMap: { // SignatureMap
46
46
  * "<keys>": true || false,
47
47
  * },
@@ -50,7 +50,7 @@ declare const UpdateAgentStatusCommand_base: {
50
50
  * { // ComponentStatusData
51
51
  * componentType: "STRING_VALUE", // required
52
52
  * capabilityArn: "STRING_VALUE", // required
53
- * status: "STRING_VALUE", // required
53
+ * status: "SUCCESS" || "FAILED" || "ACTIVE" || "INACTIVE", // required
54
54
  * bytesSent: Number("long"),
55
55
  * bytesReceived: Number("long"),
56
56
  * packetsDropped: Number("long"),
@@ -39,23 +39,23 @@ declare const UpdateConfigCommand_base: {
39
39
  * const input = { // UpdateConfigRequest
40
40
  * configId: "STRING_VALUE", // required
41
41
  * name: "STRING_VALUE", // required
42
- * configType: "STRING_VALUE", // required
42
+ * configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording", // required
43
43
  * configData: { // ConfigTypeData Union: only one key present
44
44
  * antennaDownlinkConfig: { // AntennaDownlinkConfig
45
45
  * spectrumConfig: { // SpectrumConfig
46
46
  * centerFrequency: { // Frequency
47
47
  * value: Number("double"), // required
48
- * units: "STRING_VALUE", // required
48
+ * units: "GHz" || "MHz" || "kHz", // required
49
49
  * },
50
50
  * bandwidth: { // FrequencyBandwidth
51
51
  * value: Number("double"), // required
52
- * units: "STRING_VALUE", // required
52
+ * units: "GHz" || "MHz" || "kHz", // required
53
53
  * },
54
- * polarization: "STRING_VALUE",
54
+ * polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
55
55
  * },
56
56
  * },
57
57
  * trackingConfig: { // TrackingConfig
58
- * autotrack: "STRING_VALUE", // required
58
+ * autotrack: "REQUIRED" || "PREFERRED" || "REMOVED", // required
59
59
  * },
60
60
  * dataflowEndpointConfig: { // DataflowEndpointConfig
61
61
  * dataflowEndpointName: "STRING_VALUE", // required
@@ -65,13 +65,13 @@ declare const UpdateConfigCommand_base: {
65
65
  * spectrumConfig: {
66
66
  * centerFrequency: {
67
67
  * value: Number("double"), // required
68
- * units: "STRING_VALUE", // required
68
+ * units: "GHz" || "MHz" || "kHz", // required
69
69
  * },
70
70
  * bandwidth: {
71
71
  * value: Number("double"), // required
72
- * units: "STRING_VALUE", // required
72
+ * units: "GHz" || "MHz" || "kHz", // required
73
73
  * },
74
- * polarization: "STRING_VALUE",
74
+ * polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
75
75
  * },
76
76
  * demodulationConfig: { // DemodulationConfig
77
77
  * unvalidatedJSON: "STRING_VALUE", // required
@@ -85,13 +85,13 @@ declare const UpdateConfigCommand_base: {
85
85
  * spectrumConfig: { // UplinkSpectrumConfig
86
86
  * centerFrequency: {
87
87
  * value: Number("double"), // required
88
- * units: "STRING_VALUE", // required
88
+ * units: "GHz" || "MHz" || "kHz", // required
89
89
  * },
90
- * polarization: "STRING_VALUE",
90
+ * polarization: "RIGHT_HAND" || "LEFT_HAND" || "NONE",
91
91
  * },
92
92
  * targetEirp: { // Eirp
93
93
  * value: Number("double"), // required
94
- * units: "STRING_VALUE", // required
94
+ * units: "dBW", // required
95
95
  * },
96
96
  * },
97
97
  * uplinkEchoConfig: { // UplinkEchoConfig
@@ -109,7 +109,7 @@ declare const UpdateConfigCommand_base: {
109
109
  * const response = await client.send(command);
110
110
  * // { // ConfigIdResponse
111
111
  * // configId: "STRING_VALUE",
112
- * // configType: "STRING_VALUE",
112
+ * // configType: "antenna-downlink" || "antenna-downlink-demod-decode" || "tracking" || "dataflow-endpoint" || "antenna-uplink" || "uplink-echo" || "s3-recording",
113
113
  * // configArn: "STRING_VALUE",
114
114
  * // };
115
115
  *
@@ -161,6 +161,11 @@ export interface RegisterAgentRequest {
161
161
  * @public
162
162
  */
163
163
  agentDetails: AgentDetails | undefined;
164
+ /**
165
+ * <p>Tags assigned to an <code>Agent</code>.</p>
166
+ * @public
167
+ */
168
+ tags?: Record<string, string> | undefined;
164
169
  }
165
170
  /**
166
171
  * @public
@@ -1734,7 +1739,15 @@ export interface ReserveContactRequest {
1734
1739
  */
1735
1740
  export interface CreateDataflowEndpointGroupRequest {
1736
1741
  /**
1737
- * <p>Endpoint details of each endpoint in the dataflow endpoint group.</p>
1742
+ * <p>Endpoint details of each endpoint in the dataflow endpoint group.
1743
+ *
1744
+ * All dataflow endpoints within a single dataflow endpoint group must be of the same type.
1745
+ * You cannot mix <a href="https://docs.aws.amazon.com/ground-station/latest/APIReference/API_AwsGroundStationAgentEndpoint.html">
1746
+ * AWS Ground Station Agent endpoints</a> with
1747
+ * <a href="https://docs.aws.amazon.com/ground-station/latest/APIReference/API_DataflowEndpoint.html">Dataflow endpoints</a> in the same group.
1748
+ * If your use case requires both types of endpoints, you must create separate dataflow endpoint
1749
+ * groups for each type.
1750
+ * </p>
1738
1751
  * @public
1739
1752
  */
1740
1753
  endpointDetails: EndpointDetails[] | undefined;
@@ -1966,7 +1979,7 @@ export interface EphemerisIdResponse {
1966
1979
  ephemerisId?: string | undefined;
1967
1980
  }
1968
1981
  /**
1969
- * <p>AWS Key Management Service (KMS) Key.</p>
1982
+ * <p>KMS key info.</p>
1970
1983
  * @public
1971
1984
  */
1972
1985
  export type KmsKey = KmsKey.KmsAliasArnMember | KmsKey.KmsAliasNameMember | KmsKey.KmsKeyArnMember | KmsKey.$UnknownMember;
@@ -50,6 +50,7 @@ export interface DiscoveryData {
50
50
  export interface RegisterAgentRequest {
51
51
  discoveryData: DiscoveryData | undefined;
52
52
  agentDetails: AgentDetails | undefined;
53
+ tags?: Record<string, string> | undefined;
53
54
  }
54
55
  export interface RegisterAgentResponse {
55
56
  agentId?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-groundstation",
3
3
  "description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
4
- "version": "3.782.0",
4
+ "version": "3.787.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-groundstation",
@@ -21,16 +21,16 @@
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
23
  "@aws-sdk/core": "3.775.0",
24
- "@aws-sdk/credential-provider-node": "3.782.0",
24
+ "@aws-sdk/credential-provider-node": "3.787.0",
25
25
  "@aws-sdk/middleware-host-header": "3.775.0",
26
26
  "@aws-sdk/middleware-logger": "3.775.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
- "@aws-sdk/middleware-user-agent": "3.782.0",
28
+ "@aws-sdk/middleware-user-agent": "3.787.0",
29
29
  "@aws-sdk/region-config-resolver": "3.775.0",
30
30
  "@aws-sdk/types": "3.775.0",
31
- "@aws-sdk/util-endpoints": "3.782.0",
31
+ "@aws-sdk/util-endpoints": "3.787.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.775.0",
33
- "@aws-sdk/util-user-agent-node": "3.782.0",
33
+ "@aws-sdk/util-user-agent-node": "3.787.0",
34
34
  "@smithy/config-resolver": "^4.1.0",
35
35
  "@smithy/core": "^3.2.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.2",