@aws-sdk/client-groundstation 3.300.0 → 3.301.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist-types/commands/CancelContactCommand.d.ts +1 -1
  2. package/dist-types/commands/CreateConfigCommand.d.ts +17 -17
  3. package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +14 -14
  4. package/dist-types/commands/CreateEphemerisCommand.d.ts +9 -9
  5. package/dist-types/commands/CreateMissionProfileCommand.d.ts +5 -5
  6. package/dist-types/commands/DeleteConfigCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteDataflowEndpointGroupCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteEphemerisCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteMissionProfileCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeContactCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeEphemerisCommand.d.ts +1 -1
  12. package/dist-types/commands/GetAgentConfigurationCommand.d.ts +1 -1
  13. package/dist-types/commands/GetConfigCommand.d.ts +1 -1
  14. package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +1 -1
  15. package/dist-types/commands/GetMinuteUsageCommand.d.ts +1 -1
  16. package/dist-types/commands/GetMissionProfileCommand.d.ts +1 -1
  17. package/dist-types/commands/GetSatelliteCommand.d.ts +1 -1
  18. package/dist-types/commands/ListConfigsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListContactsCommand.d.ts +2 -2
  20. package/dist-types/commands/ListDataflowEndpointGroupsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListEphemeridesCommand.d.ts +2 -2
  22. package/dist-types/commands/ListGroundStationsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListMissionProfilesCommand.d.ts +1 -1
  24. package/dist-types/commands/ListSatellitesCommand.d.ts +1 -1
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  26. package/dist-types/commands/RegisterAgentCommand.d.ts +9 -9
  27. package/dist-types/commands/ReserveContactCommand.d.ts +2 -2
  28. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  29. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  30. package/dist-types/commands/UpdateAgentStatusCommand.d.ts +5 -5
  31. package/dist-types/commands/UpdateConfigCommand.d.ts +16 -16
  32. package/dist-types/commands/UpdateEphemerisCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateMissionProfileCommand.d.ts +4 -4
  34. package/package.json +3 -3
@@ -26,7 +26,7 @@ export interface CancelContactCommandOutput extends ContactIdResponse, __Metadat
26
26
  * import { GroundStationClient, CancelContactCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, CancelContactCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // CancelContactRequest
30
30
  * contactId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new CancelContactCommand(input);
@@ -27,30 +27,30 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
27
27
  * import { GroundStationClient, CreateConfigCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
28
28
  * // const { GroundStationClient, CreateConfigCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
29
29
  * const client = new GroundStationClient(config);
30
- * const input = {
30
+ * const input = { // CreateConfigRequest
31
31
  * name: "STRING_VALUE", // required
32
- * configData: { // Union: only one key present
33
- * antennaDownlinkConfig: {
34
- * spectrumConfig: {
35
- * centerFrequency: {
32
+ * configData: { // ConfigTypeData Union: only one key present
33
+ * antennaDownlinkConfig: { // AntennaDownlinkConfig
34
+ * spectrumConfig: { // SpectrumConfig
35
+ * centerFrequency: { // Frequency
36
36
  * value: Number("double"), // required
37
37
  * units: "STRING_VALUE", // required
38
38
  * },
39
- * bandwidth: {
39
+ * bandwidth: { // FrequencyBandwidth
40
40
  * value: Number("double"), // required
41
41
  * units: "STRING_VALUE", // required
42
42
  * },
43
43
  * polarization: "STRING_VALUE",
44
44
  * },
45
45
  * },
46
- * trackingConfig: {
46
+ * trackingConfig: { // TrackingConfig
47
47
  * autotrack: "STRING_VALUE", // required
48
48
  * },
49
- * dataflowEndpointConfig: {
49
+ * dataflowEndpointConfig: { // DataflowEndpointConfig
50
50
  * dataflowEndpointName: "STRING_VALUE", // required
51
51
  * dataflowEndpointRegion: "STRING_VALUE",
52
52
  * },
53
- * antennaDownlinkDemodDecodeConfig: {
53
+ * antennaDownlinkDemodDecodeConfig: { // AntennaDownlinkDemodDecodeConfig
54
54
  * spectrumConfig: {
55
55
  * centerFrequency: {
56
56
  * value: Number("double"), // required
@@ -62,38 +62,38 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
62
62
  * },
63
63
  * polarization: "STRING_VALUE",
64
64
  * },
65
- * demodulationConfig: {
65
+ * demodulationConfig: { // DemodulationConfig
66
66
  * unvalidatedJSON: "STRING_VALUE", // required
67
67
  * },
68
- * decodeConfig: {
68
+ * decodeConfig: { // DecodeConfig
69
69
  * unvalidatedJSON: "STRING_VALUE", // required
70
70
  * },
71
71
  * },
72
- * antennaUplinkConfig: {
72
+ * antennaUplinkConfig: { // AntennaUplinkConfig
73
73
  * transmitDisabled: true || false,
74
- * spectrumConfig: {
74
+ * spectrumConfig: { // UplinkSpectrumConfig
75
75
  * centerFrequency: {
76
76
  * value: Number("double"), // required
77
77
  * units: "STRING_VALUE", // required
78
78
  * },
79
79
  * polarization: "STRING_VALUE",
80
80
  * },
81
- * targetEirp: {
81
+ * targetEirp: { // Eirp
82
82
  * value: Number("double"), // required
83
83
  * units: "STRING_VALUE", // required
84
84
  * },
85
85
  * },
86
- * uplinkEchoConfig: {
86
+ * uplinkEchoConfig: { // UplinkEchoConfig
87
87
  * enabled: true || false, // required
88
88
  * antennaUplinkConfigArn: "STRING_VALUE", // required
89
89
  * },
90
- * s3RecordingConfig: {
90
+ * s3RecordingConfig: { // S3RecordingConfig
91
91
  * bucketArn: "STRING_VALUE", // required
92
92
  * roleArn: "STRING_VALUE", // required
93
93
  * prefix: "STRING_VALUE",
94
94
  * },
95
95
  * },
96
- * tags: {
96
+ * tags: { // TagsMap
97
97
  * "<keys>": "STRING_VALUE",
98
98
  * },
99
99
  * };
@@ -30,40 +30,40 @@ export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpoi
30
30
  * import { GroundStationClient, CreateDataflowEndpointGroupCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
31
31
  * // const { GroundStationClient, CreateDataflowEndpointGroupCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
32
32
  * const client = new GroundStationClient(config);
33
- * const input = {
34
- * endpointDetails: [ // required
35
- * {
36
- * securityDetails: {
37
- * subnetIds: [ // required
33
+ * const input = { // CreateDataflowEndpointGroupRequest
34
+ * endpointDetails: [ // EndpointDetailsList // required
35
+ * { // EndpointDetails
36
+ * securityDetails: { // SecurityDetails
37
+ * subnetIds: [ // SubnetList // required
38
38
  * "STRING_VALUE",
39
39
  * ],
40
- * securityGroupIds: [ // required
40
+ * securityGroupIds: [ // SecurityGroupIdList // required
41
41
  * "STRING_VALUE",
42
42
  * ],
43
43
  * roleArn: "STRING_VALUE", // required
44
44
  * },
45
- * endpoint: {
45
+ * endpoint: { // DataflowEndpoint
46
46
  * name: "STRING_VALUE",
47
- * address: {
47
+ * address: { // SocketAddress
48
48
  * name: "STRING_VALUE", // required
49
49
  * port: Number("int"), // required
50
50
  * },
51
51
  * status: "STRING_VALUE",
52
52
  * mtu: Number("int"),
53
53
  * },
54
- * awsGroundStationAgentEndpoint: {
54
+ * awsGroundStationAgentEndpoint: { // AwsGroundStationAgentEndpoint
55
55
  * name: "STRING_VALUE", // required
56
- * egressAddress: {
56
+ * egressAddress: { // ConnectionDetails
57
57
  * socketAddress: {
58
58
  * name: "STRING_VALUE", // required
59
59
  * port: Number("int"), // required
60
60
  * },
61
61
  * mtu: Number("int"),
62
62
  * },
63
- * ingressAddress: {
64
- * socketAddress: {
63
+ * ingressAddress: { // RangedConnectionDetails
64
+ * socketAddress: { // RangedSocketAddress
65
65
  * name: "STRING_VALUE", // required
66
- * portRange: {
66
+ * portRange: { // IntegerRange
67
67
  * minimum: Number("int"), // required
68
68
  * maximum: Number("int"), // required
69
69
  * },
@@ -75,7 +75,7 @@ export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpoi
75
75
  * },
76
76
  * },
77
77
  * ],
78
- * tags: {
78
+ * tags: { // TagsMap
79
79
  * "<keys>": "STRING_VALUE",
80
80
  * },
81
81
  * contactPrePassDurationSeconds: Number("int"),
@@ -26,32 +26,32 @@ export interface CreateEphemerisCommandOutput extends EphemerisIdResponse, __Met
26
26
  * import { GroundStationClient, CreateEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, CreateEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // CreateEphemerisRequest
30
30
  * satelliteId: "STRING_VALUE", // required
31
31
  * enabled: true || false,
32
32
  * priority: Number("int"),
33
33
  * expirationTime: new Date("TIMESTAMP"),
34
34
  * name: "STRING_VALUE", // required
35
35
  * kmsKeyArn: "STRING_VALUE",
36
- * ephemeris: { // Union: only one key present
37
- * tle: {
38
- * s3Object: {
36
+ * ephemeris: { // EphemerisData Union: only one key present
37
+ * tle: { // TLEEphemeris
38
+ * s3Object: { // S3Object
39
39
  * bucket: "STRING_VALUE",
40
40
  * key: "STRING_VALUE",
41
41
  * version: "STRING_VALUE",
42
42
  * },
43
- * tleData: [
44
- * {
43
+ * tleData: [ // TLEDataList
44
+ * { // TLEData
45
45
  * tleLine1: "STRING_VALUE", // required
46
46
  * tleLine2: "STRING_VALUE", // required
47
- * validTimeRange: {
47
+ * validTimeRange: { // TimeRange
48
48
  * startTime: new Date("TIMESTAMP"), // required
49
49
  * endTime: new Date("TIMESTAMP"), // required
50
50
  * },
51
51
  * },
52
52
  * ],
53
53
  * },
54
- * oem: {
54
+ * oem: { // OEMEphemeris
55
55
  * s3Object: {
56
56
  * bucket: "STRING_VALUE",
57
57
  * key: "STRING_VALUE",
@@ -60,7 +60,7 @@ export interface CreateEphemerisCommandOutput extends EphemerisIdResponse, __Met
60
60
  * oemData: "STRING_VALUE",
61
61
  * },
62
62
  * },
63
- * tags: {
63
+ * tags: { // TagsMap
64
64
  * "<keys>": "STRING_VALUE",
65
65
  * },
66
66
  * };
@@ -29,21 +29,21 @@ export interface CreateMissionProfileCommandOutput extends MissionProfileIdRespo
29
29
  * import { GroundStationClient, CreateMissionProfileCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
30
30
  * // const { GroundStationClient, CreateMissionProfileCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
31
31
  * const client = new GroundStationClient(config);
32
- * const input = {
32
+ * const input = { // CreateMissionProfileRequest
33
33
  * name: "STRING_VALUE", // required
34
34
  * contactPrePassDurationSeconds: Number("int"),
35
35
  * contactPostPassDurationSeconds: Number("int"),
36
36
  * minimumViableContactDurationSeconds: Number("int"), // required
37
- * dataflowEdges: [ // required
38
- * [
37
+ * dataflowEdges: [ // DataflowEdgeList // required
38
+ * [ // DataflowEdge
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * ],
42
42
  * trackingConfigArn: "STRING_VALUE", // required
43
- * tags: {
43
+ * tags: { // TagsMap
44
44
  * "<keys>": "STRING_VALUE",
45
45
  * },
46
- * streamsKmsKey: { // Union: only one key present
46
+ * streamsKmsKey: { // KmsKey Union: only one key present
47
47
  * kmsKeyArn: "STRING_VALUE",
48
48
  * kmsAliasArn: "STRING_VALUE",
49
49
  * },
@@ -26,7 +26,7 @@ export interface DeleteConfigCommandOutput extends ConfigIdResponse, __MetadataB
26
26
  * import { GroundStationClient, DeleteConfigCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, DeleteConfigCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // DeleteConfigRequest
30
30
  * configId: "STRING_VALUE", // required
31
31
  * configType: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpoi
26
26
  * import { GroundStationClient, DeleteDataflowEndpointGroupCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, DeleteDataflowEndpointGroupCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // DeleteDataflowEndpointGroupRequest
30
30
  * dataflowEndpointGroupId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteDataflowEndpointGroupCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __Met
26
26
  * import { GroundStationClient, DeleteEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, DeleteEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // DeleteEphemerisRequest
30
30
  * ephemerisId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteEphemerisCommand(input);
@@ -26,7 +26,7 @@ export interface DeleteMissionProfileCommandOutput extends MissionProfileIdRespo
26
26
  * import { GroundStationClient, DeleteMissionProfileCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, DeleteMissionProfileCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // DeleteMissionProfileRequest
30
30
  * missionProfileId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteMissionProfileCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
26
26
  * import { GroundStationClient, DescribeContactCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, DescribeContactCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // DescribeContactRequest
30
30
  * contactId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeContactCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons
26
26
  * import { GroundStationClient, DescribeEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, DescribeEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // DescribeEphemerisRequest
30
30
  * ephemerisId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeEphemerisCommand(input);
@@ -26,7 +26,7 @@ export interface GetAgentConfigurationCommandOutput extends GetAgentConfiguratio
26
26
  * import { GroundStationClient, GetAgentConfigurationCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, GetAgentConfigurationCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // GetAgentConfigurationRequest
30
30
  * agentId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetAgentConfigurationCommand(input);
@@ -27,7 +27,7 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
27
27
  * import { GroundStationClient, GetConfigCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
28
28
  * // const { GroundStationClient, GetConfigCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
29
29
  * const client = new GroundStationClient(config);
30
- * const input = {
30
+ * const input = { // GetConfigRequest
31
31
  * configId: "STRING_VALUE", // required
32
32
  * configType: "STRING_VALUE", // required
33
33
  * };
@@ -26,7 +26,7 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi
26
26
  * import { GroundStationClient, GetDataflowEndpointGroupCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, GetDataflowEndpointGroupCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // GetDataflowEndpointGroupRequest
30
30
  * dataflowEndpointGroupId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetDataflowEndpointGroupCommand(input);
@@ -26,7 +26,7 @@ export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __M
26
26
  * import { GroundStationClient, GetMinuteUsageCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, GetMinuteUsageCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // GetMinuteUsageRequest
30
30
  * month: Number("int"), // required
31
31
  * year: Number("int"), // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetMissionProfileCommandOutput extends GetMissionProfileRespons
26
26
  * import { GroundStationClient, GetMissionProfileCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, GetMissionProfileCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // GetMissionProfileRequest
30
30
  * missionProfileId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetMissionProfileCommand(input);
@@ -26,7 +26,7 @@ export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __Metad
26
26
  * import { GroundStationClient, GetSatelliteCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, GetSatelliteCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // GetSatelliteRequest
30
30
  * satelliteId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetSatelliteCommand(input);
@@ -26,7 +26,7 @@ export interface ListConfigsCommandOutput extends ListConfigsResponse, __Metadat
26
26
  * import { GroundStationClient, ListConfigsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, ListConfigsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // ListConfigsRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * };
@@ -29,10 +29,10 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad
29
29
  * import { GroundStationClient, ListContactsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
30
30
  * // const { GroundStationClient, ListContactsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
31
31
  * const client = new GroundStationClient(config);
32
- * const input = {
32
+ * const input = { // ListContactsRequest
33
33
  * maxResults: Number("int"),
34
34
  * nextToken: "STRING_VALUE",
35
- * statusList: [ // required
35
+ * statusList: [ // StatusList // required
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * startTime: new Date("TIMESTAMP"), // required
@@ -26,7 +26,7 @@ export interface ListDataflowEndpointGroupsCommandOutput extends ListDataflowEnd
26
26
  * import { GroundStationClient, ListDataflowEndpointGroupsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, ListDataflowEndpointGroupsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // ListDataflowEndpointGroupsRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * };
@@ -26,11 +26,11 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _
26
26
  * import { GroundStationClient, ListEphemeridesCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, ListEphemeridesCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // ListEphemeridesRequest
30
30
  * satelliteId: "STRING_VALUE", // required
31
31
  * startTime: new Date("TIMESTAMP"), // required
32
32
  * endTime: new Date("TIMESTAMP"), // required
33
- * statusList: [
33
+ * statusList: [ // EphemerisStatusList
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * maxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListGroundStationsCommandOutput extends ListGroundStationsRespo
26
26
  * import { GroundStationClient, ListGroundStationsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, ListGroundStationsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // ListGroundStationsRequest
30
30
  * satelliteId: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListMissionProfilesCommandOutput extends ListMissionProfilesRes
26
26
  * import { GroundStationClient, ListMissionProfilesCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, ListMissionProfilesCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // ListMissionProfilesRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __M
26
26
  * import { GroundStationClient, ListSatellitesCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, ListSatellitesCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // ListSatellitesRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { GroundStationClient, ListTagsForResourceCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, ListTagsForResourceCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,29 +26,29 @@ export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __Met
26
26
  * import { GroundStationClient, RegisterAgentCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, RegisterAgentCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
30
- * discoveryData: {
31
- * publicIpAddresses: [ // required
29
+ * const input = { // RegisterAgentRequest
30
+ * discoveryData: { // DiscoveryData
31
+ * publicIpAddresses: [ // IpAddressList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * privateIpAddresses: [ // required
35
35
  * "STRING_VALUE",
36
36
  * ],
37
- * capabilityArns: [ // required
37
+ * capabilityArns: [ // CapabilityArnList // required
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * },
41
- * agentDetails: {
41
+ * agentDetails: { // AgentDetails
42
42
  * agentVersion: "STRING_VALUE", // required
43
43
  * instanceId: "STRING_VALUE", // required
44
44
  * instanceType: "STRING_VALUE", // required
45
- * reservedCpuCores: [ // required
45
+ * reservedCpuCores: [ // ReservedCpuCoresList // required
46
46
  * Number("int"),
47
47
  * ],
48
- * componentVersions: [ // required
49
- * {
48
+ * componentVersions: [ // ComponentVersionList // required
49
+ * { // ComponentVersion
50
50
  * componentType: "STRING_VALUE", // required
51
- * versions: [ // required
51
+ * versions: [ // VersionStringList // required
52
52
  * "STRING_VALUE",
53
53
  * ],
54
54
  * },
@@ -26,13 +26,13 @@ export interface ReserveContactCommandOutput extends ContactIdResponse, __Metada
26
26
  * import { GroundStationClient, ReserveContactCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, ReserveContactCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // ReserveContactRequest
30
30
  * missionProfileArn: "STRING_VALUE", // required
31
31
  * satelliteArn: "STRING_VALUE", // required
32
32
  * startTime: new Date("TIMESTAMP"), // required
33
33
  * endTime: new Date("TIMESTAMP"), // required
34
34
  * groundStation: "STRING_VALUE", // required
35
- * tags: {
35
+ * tags: { // TagsMap
36
36
  * "<keys>": "STRING_VALUE",
37
37
  * },
38
38
  * };
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { GroundStationClient, TagResourceCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, TagResourceCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagsMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { GroundStationClient, UntagResourceCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, UntagResourceCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeys // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,17 +26,17 @@ export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusRespons
26
26
  * import { GroundStationClient, UpdateAgentStatusCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, UpdateAgentStatusCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // UpdateAgentStatusRequest
30
30
  * agentId: "STRING_VALUE", // required
31
31
  * taskId: "STRING_VALUE", // required
32
- * aggregateStatus: {
32
+ * aggregateStatus: { // AggregateStatus
33
33
  * status: "STRING_VALUE", // required
34
- * signatureMap: {
34
+ * signatureMap: { // SignatureMap
35
35
  * "<keys>": true || false,
36
36
  * },
37
37
  * },
38
- * componentStatuses: [ // required
39
- * {
38
+ * componentStatuses: [ // ComponentStatusList // required
39
+ * { // ComponentStatusData
40
40
  * componentType: "STRING_VALUE", // required
41
41
  * capabilityArn: "STRING_VALUE", // required
42
42
  * status: "STRING_VALUE", // required
@@ -28,32 +28,32 @@ export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataB
28
28
  * import { GroundStationClient, UpdateConfigCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
29
29
  * // const { GroundStationClient, UpdateConfigCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
30
30
  * const client = new GroundStationClient(config);
31
- * const input = {
31
+ * const input = { // UpdateConfigRequest
32
32
  * configId: "STRING_VALUE", // required
33
33
  * name: "STRING_VALUE", // required
34
34
  * configType: "STRING_VALUE", // required
35
- * configData: { // Union: only one key present
36
- * antennaDownlinkConfig: {
37
- * spectrumConfig: {
38
- * centerFrequency: {
35
+ * configData: { // ConfigTypeData Union: only one key present
36
+ * antennaDownlinkConfig: { // AntennaDownlinkConfig
37
+ * spectrumConfig: { // SpectrumConfig
38
+ * centerFrequency: { // Frequency
39
39
  * value: Number("double"), // required
40
40
  * units: "STRING_VALUE", // required
41
41
  * },
42
- * bandwidth: {
42
+ * bandwidth: { // FrequencyBandwidth
43
43
  * value: Number("double"), // required
44
44
  * units: "STRING_VALUE", // required
45
45
  * },
46
46
  * polarization: "STRING_VALUE",
47
47
  * },
48
48
  * },
49
- * trackingConfig: {
49
+ * trackingConfig: { // TrackingConfig
50
50
  * autotrack: "STRING_VALUE", // required
51
51
  * },
52
- * dataflowEndpointConfig: {
52
+ * dataflowEndpointConfig: { // DataflowEndpointConfig
53
53
  * dataflowEndpointName: "STRING_VALUE", // required
54
54
  * dataflowEndpointRegion: "STRING_VALUE",
55
55
  * },
56
- * antennaDownlinkDemodDecodeConfig: {
56
+ * antennaDownlinkDemodDecodeConfig: { // AntennaDownlinkDemodDecodeConfig
57
57
  * spectrumConfig: {
58
58
  * centerFrequency: {
59
59
  * value: Number("double"), // required
@@ -65,32 +65,32 @@ export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataB
65
65
  * },
66
66
  * polarization: "STRING_VALUE",
67
67
  * },
68
- * demodulationConfig: {
68
+ * demodulationConfig: { // DemodulationConfig
69
69
  * unvalidatedJSON: "STRING_VALUE", // required
70
70
  * },
71
- * decodeConfig: {
71
+ * decodeConfig: { // DecodeConfig
72
72
  * unvalidatedJSON: "STRING_VALUE", // required
73
73
  * },
74
74
  * },
75
- * antennaUplinkConfig: {
75
+ * antennaUplinkConfig: { // AntennaUplinkConfig
76
76
  * transmitDisabled: true || false,
77
- * spectrumConfig: {
77
+ * spectrumConfig: { // UplinkSpectrumConfig
78
78
  * centerFrequency: {
79
79
  * value: Number("double"), // required
80
80
  * units: "STRING_VALUE", // required
81
81
  * },
82
82
  * polarization: "STRING_VALUE",
83
83
  * },
84
- * targetEirp: {
84
+ * targetEirp: { // Eirp
85
85
  * value: Number("double"), // required
86
86
  * units: "STRING_VALUE", // required
87
87
  * },
88
88
  * },
89
- * uplinkEchoConfig: {
89
+ * uplinkEchoConfig: { // UplinkEchoConfig
90
90
  * enabled: true || false, // required
91
91
  * antennaUplinkConfigArn: "STRING_VALUE", // required
92
92
  * },
93
- * s3RecordingConfig: {
93
+ * s3RecordingConfig: { // S3RecordingConfig
94
94
  * bucketArn: "STRING_VALUE", // required
95
95
  * roleArn: "STRING_VALUE", // required
96
96
  * prefix: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __Met
26
26
  * import { GroundStationClient, UpdateEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
27
27
  * // const { GroundStationClient, UpdateEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
28
28
  * const client = new GroundStationClient(config);
29
- * const input = {
29
+ * const input = { // UpdateEphemerisRequest
30
30
  * ephemerisId: "STRING_VALUE", // required
31
31
  * enabled: true || false, // required
32
32
  * name: "STRING_VALUE",
@@ -28,19 +28,19 @@ export interface UpdateMissionProfileCommandOutput extends MissionProfileIdRespo
28
28
  * import { GroundStationClient, UpdateMissionProfileCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
29
29
  * // const { GroundStationClient, UpdateMissionProfileCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
30
30
  * const client = new GroundStationClient(config);
31
- * const input = {
31
+ * const input = { // UpdateMissionProfileRequest
32
32
  * missionProfileId: "STRING_VALUE", // required
33
33
  * name: "STRING_VALUE",
34
34
  * contactPrePassDurationSeconds: Number("int"),
35
35
  * contactPostPassDurationSeconds: Number("int"),
36
36
  * minimumViableContactDurationSeconds: Number("int"),
37
- * dataflowEdges: [
38
- * [
37
+ * dataflowEdges: [ // DataflowEdgeList
38
+ * [ // DataflowEdge
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * ],
42
42
  * trackingConfigArn: "STRING_VALUE",
43
- * streamsKmsKey: { // Union: only one key present
43
+ * streamsKmsKey: { // KmsKey Union: only one key present
44
44
  * kmsKeyArn: "STRING_VALUE",
45
45
  * kmsAliasArn: "STRING_VALUE",
46
46
  * },
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.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",