@aws-sdk/client-groundstation 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/GroundStationServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +58 -2
- package/dist-cjs/protocols/Aws_restJson1.js +227 -750
- package/dist-es/index.js +1 -0
- package/dist-es/models/GroundStationServiceException.js +12 -0
- package/dist-es/models/models_0.js +53 -1
- package/dist-es/protocols/Aws_restJson1.js +497 -856
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/GroundStationServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +30 -17
- package/dist-types/ts3.4/GroundStation.d.ts +130 -0
- package/dist-types/ts3.4/GroundStationClient.d.ts +98 -0
- package/dist-types/ts3.4/commands/CancelContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataflowEndpointGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMissionProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDataflowEndpointGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMissionProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDataflowEndpointGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMinuteUsageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMissionProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSatelliteCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListConfigsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDataflowEndpointGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListGroundStationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMissionProfilesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListSatellitesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ReserveContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateMissionProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +25 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/GroundStationServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1210 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConfigsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListDataflowEndpointGroupsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListGroundStationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListMissionProfilesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListSatellitesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-groundstation
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-groundstation
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-groundstation
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GroundStationServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./GroundStation"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./GroundStationClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var GroundStationServiceException_1 = require("./models/GroundStationServiceException");
|
|
11
|
+
Object.defineProperty(exports, "GroundStationServiceException", { enumerable: true, get: function () { return GroundStationServiceException_1.GroundStationServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GroundStationServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class GroundStationServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, GroundStationServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.GroundStationServiceException = GroundStationServiceException;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.ListSatellitesResponse = exports.SatelliteListItem = exports.ListSatellitesRequest = exports.UpdateMissionProfileRequest = exports.ListMissionProfilesResponse = exports.MissionProfileListItem = exports.ListMissionProfilesRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListGroundStationsResponse = exports.GroundStationData = exports.ListGroundStationsRequest = exports.GetSatelliteResponse = exports.GetSatelliteRequest = exports.GetMissionProfileResponse = exports.GetMissionProfileRequest = exports.GetMinuteUsageResponse = exports.GetMinuteUsageRequest = exports.DeleteMissionProfileRequest = exports.ListDataflowEndpointGroupsResponse = exports.DataflowEndpointListItem = exports.ListDataflowEndpointGroupsRequest = exports.GetDataflowEndpointGroupResponse = exports.GetDataflowEndpointGroupRequest = exports.DeleteDataflowEndpointGroupRequest = exports.MissionProfileIdResponse = exports.CreateMissionProfileRequest = exports.DataflowEndpointGroupIdResponse = exports.CreateDataflowEndpointGroupRequest = exports.ReserveContactRequest = exports.ListContactsResponse = void 0;
|
|
3
|
+
exports.DataflowDetail = exports.Source = exports.Destination = exports.ContactStatus = exports.DescribeContactRequest = exports.ConfigDetails = exports.S3RecordingDetails = exports.EndpointDetails = exports.SecurityDetails = exports.DataflowEndpoint = exports.EndpointStatus = exports.SocketAddress = exports.UpdateConfigRequest = exports.ListConfigsResponse = exports.ConfigListItem = exports.ListConfigsRequest = exports.GetConfigResponse = exports.GetConfigRequest = exports.DeleteConfigRequest = exports.ResourceLimitExceededException = exports.CreateConfigRequest = exports.ConfigTypeData = exports.UplinkEchoConfig = exports.TrackingConfig = exports.Criticality = exports.S3RecordingConfig = exports.DataflowEndpointConfig = exports.ConfigIdResponse = exports.ConfigCapabilityType = exports.ResourceNotFoundException = exports.InvalidParameterException = exports.DependencyException = exports.ContactIdResponse = exports.CancelContactRequest = exports.AntennaUplinkConfig = exports.Eirp = exports.EirpUnits = exports.UplinkSpectrumConfig = exports.AntennaDownlinkDemodDecodeConfig = exports.DemodulationConfig = exports.DecodeConfig = exports.AntennaDownlinkConfig = exports.SpectrumConfig = exports.Polarization = exports.Frequency = exports.FrequencyUnits = exports.FrequencyBandwidth = exports.BandwidthUnits = exports.AntennaDemodDecodeDetails = exports.AngleUnits = void 0;
|
|
4
|
+
exports.UntagResourceResponse = exports.UntagResourceRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.ListSatellitesResponse = exports.SatelliteListItem = exports.ListSatellitesRequest = exports.UpdateMissionProfileRequest = exports.ListMissionProfilesResponse = exports.MissionProfileListItem = exports.ListMissionProfilesRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListGroundStationsResponse = exports.GroundStationData = exports.ListGroundStationsRequest = exports.GetSatelliteResponse = exports.GetSatelliteRequest = exports.GetMissionProfileResponse = exports.GetMissionProfileRequest = exports.GetMinuteUsageResponse = exports.GetMinuteUsageRequest = exports.DeleteMissionProfileRequest = exports.ListDataflowEndpointGroupsResponse = exports.DataflowEndpointListItem = exports.ListDataflowEndpointGroupsRequest = exports.GetDataflowEndpointGroupResponse = exports.GetDataflowEndpointGroupRequest = exports.DeleteDataflowEndpointGroupRequest = exports.MissionProfileIdResponse = exports.CreateMissionProfileRequest = exports.DataflowEndpointGroupIdResponse = exports.CreateDataflowEndpointGroupRequest = exports.ReserveContactRequest = exports.ListContactsResponse = exports.ContactData = exports.ListContactsRequest = exports.DescribeContactResponse = exports.Elevation = void 0;
|
|
5
|
+
const GroundStationServiceException_1 = require("./GroundStationServiceException");
|
|
5
6
|
var AngleUnits;
|
|
6
7
|
(function (AngleUnits) {
|
|
7
8
|
AngleUnits["DEGREE_ANGLE"] = "DEGREE_ANGLE";
|
|
@@ -107,6 +108,47 @@ var ContactIdResponse;
|
|
|
107
108
|
...obj,
|
|
108
109
|
});
|
|
109
110
|
})(ContactIdResponse = exports.ContactIdResponse || (exports.ContactIdResponse = {}));
|
|
111
|
+
class DependencyException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
112
|
+
constructor(opts) {
|
|
113
|
+
super({
|
|
114
|
+
name: "DependencyException",
|
|
115
|
+
$fault: "server",
|
|
116
|
+
...opts,
|
|
117
|
+
});
|
|
118
|
+
this.name = "DependencyException";
|
|
119
|
+
this.$fault = "server";
|
|
120
|
+
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
121
|
+
this.parameterName = opts.parameterName;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
exports.DependencyException = DependencyException;
|
|
125
|
+
class InvalidParameterException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
super({
|
|
128
|
+
name: "InvalidParameterException",
|
|
129
|
+
$fault: "client",
|
|
130
|
+
...opts,
|
|
131
|
+
});
|
|
132
|
+
this.name = "InvalidParameterException";
|
|
133
|
+
this.$fault = "client";
|
|
134
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
135
|
+
this.parameterName = opts.parameterName;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
139
|
+
class ResourceNotFoundException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
140
|
+
constructor(opts) {
|
|
141
|
+
super({
|
|
142
|
+
name: "ResourceNotFoundException",
|
|
143
|
+
$fault: "client",
|
|
144
|
+
...opts,
|
|
145
|
+
});
|
|
146
|
+
this.name = "ResourceNotFoundException";
|
|
147
|
+
this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
110
152
|
var ConfigCapabilityType;
|
|
111
153
|
(function (ConfigCapabilityType) {
|
|
112
154
|
ConfigCapabilityType["ANTENNA_DOWNLINK"] = "antenna-downlink";
|
|
@@ -200,6 +242,20 @@ var CreateConfigRequest;
|
|
|
200
242
|
...(obj.configData && { configData: ConfigTypeData.filterSensitiveLog(obj.configData) }),
|
|
201
243
|
});
|
|
202
244
|
})(CreateConfigRequest = exports.CreateConfigRequest || (exports.CreateConfigRequest = {}));
|
|
245
|
+
class ResourceLimitExceededException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
246
|
+
constructor(opts) {
|
|
247
|
+
super({
|
|
248
|
+
name: "ResourceLimitExceededException",
|
|
249
|
+
$fault: "client",
|
|
250
|
+
...opts,
|
|
251
|
+
});
|
|
252
|
+
this.name = "ResourceLimitExceededException";
|
|
253
|
+
this.$fault = "client";
|
|
254
|
+
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
255
|
+
this.parameterName = opts.parameterName;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
203
259
|
var DeleteConfigRequest;
|
|
204
260
|
(function (DeleteConfigRequest) {
|
|
205
261
|
DeleteConfigRequest.filterSensitiveLog = (obj) => ({
|