@aws-sdk/client-groundstation 3.489.0 → 3.495.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 +1 -77
- package/dist-cjs/GroundStationClient.js +1 -43
- package/dist-cjs/commands/CancelContactCommand.js +1 -28
- package/dist-cjs/commands/CreateConfigCommand.js +1 -28
- package/dist-cjs/commands/CreateDataflowEndpointGroupCommand.js +1 -28
- package/dist-cjs/commands/CreateEphemerisCommand.js +1 -28
- package/dist-cjs/commands/CreateMissionProfileCommand.js +1 -28
- package/dist-cjs/commands/DeleteConfigCommand.js +1 -28
- package/dist-cjs/commands/DeleteDataflowEndpointGroupCommand.js +1 -28
- package/dist-cjs/commands/DeleteEphemerisCommand.js +1 -28
- package/dist-cjs/commands/DeleteMissionProfileCommand.js +1 -28
- package/dist-cjs/commands/DescribeContactCommand.js +1 -28
- package/dist-cjs/commands/DescribeEphemerisCommand.js +1 -28
- package/dist-cjs/commands/GetAgentConfigurationCommand.js +1 -28
- package/dist-cjs/commands/GetConfigCommand.js +1 -28
- package/dist-cjs/commands/GetDataflowEndpointGroupCommand.js +1 -28
- package/dist-cjs/commands/GetMinuteUsageCommand.js +1 -28
- package/dist-cjs/commands/GetMissionProfileCommand.js +1 -28
- package/dist-cjs/commands/GetSatelliteCommand.js +1 -28
- package/dist-cjs/commands/ListConfigsCommand.js +1 -28
- package/dist-cjs/commands/ListContactsCommand.js +1 -28
- package/dist-cjs/commands/ListDataflowEndpointGroupsCommand.js +1 -28
- package/dist-cjs/commands/ListEphemeridesCommand.js +1 -28
- package/dist-cjs/commands/ListGroundStationsCommand.js +1 -28
- package/dist-cjs/commands/ListMissionProfilesCommand.js +1 -28
- package/dist-cjs/commands/ListSatellitesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/RegisterAgentCommand.js +1 -28
- package/dist-cjs/commands/ReserveContactCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateAgentStatusCommand.js +1 -28
- package/dist-cjs/commands/UpdateConfigCommand.js +1 -28
- package/dist-cjs/commands/UpdateEphemerisCommand.js +1 -28
- package/dist-cjs/commands/UpdateMissionProfileCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -36
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3379 -12
- package/dist-cjs/models/GroundStationServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -223
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListConfigsPaginator.js +1 -7
- package/dist-cjs/pagination/ListContactsPaginator.js +1 -7
- package/dist-cjs/pagination/ListDataflowEndpointGroupsPaginator.js +1 -7
- package/dist-cjs/pagination/ListEphemeridesPaginator.js +1 -7
- package/dist-cjs/pagination/ListGroundStationsPaginator.js +1 -7
- package/dist-cjs/pagination/ListMissionProfilesPaginator.js +1 -7
- package/dist-cjs/pagination/ListSatellitesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -11
- package/dist-cjs/protocols/Aws_restJson1.js +1 -2230
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/dist-cjs/waiters/index.js +1 -4
- package/dist-cjs/waiters/waitForContactScheduled.js +1 -45
- package/package.json +41 -41
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GroundStationServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class GroundStationServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, GroundStationServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.GroundStationServiceException = GroundStationServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,223 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.EphemerisSource = exports.EphemerisTypeDescription = exports.EphemerisStatus = exports.EphemerisInvalidReason = exports.KmsKey = exports.EphemerisData = exports.ContactStatus = exports.ConfigDetails = exports.EndpointStatus = exports.ResourceLimitExceededException = exports.ConfigTypeData = exports.Criticality = exports.ConfigCapabilityType = exports.CapabilityHealthReason = exports.CapabilityHealth = exports.AuditResults = exports.EirpUnits = exports.Polarization = exports.FrequencyUnits = exports.BandwidthUnits = exports.AngleUnits = exports.AgentStatus = exports.ResourceNotFoundException = exports.InvalidParameterException = exports.DependencyException = void 0;
|
|
4
|
-
const GroundStationServiceException_1 = require("./GroundStationServiceException");
|
|
5
|
-
class DependencyException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "DependencyException",
|
|
9
|
-
$fault: "server",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
this.name = "DependencyException";
|
|
13
|
-
this.$fault = "server";
|
|
14
|
-
Object.setPrototypeOf(this, DependencyException.prototype);
|
|
15
|
-
this.parameterName = opts.parameterName;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
exports.DependencyException = DependencyException;
|
|
19
|
-
class InvalidParameterException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
20
|
-
constructor(opts) {
|
|
21
|
-
super({
|
|
22
|
-
name: "InvalidParameterException",
|
|
23
|
-
$fault: "client",
|
|
24
|
-
...opts,
|
|
25
|
-
});
|
|
26
|
-
this.name = "InvalidParameterException";
|
|
27
|
-
this.$fault = "client";
|
|
28
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
29
|
-
this.parameterName = opts.parameterName;
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
33
|
-
class ResourceNotFoundException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
34
|
-
constructor(opts) {
|
|
35
|
-
super({
|
|
36
|
-
name: "ResourceNotFoundException",
|
|
37
|
-
$fault: "client",
|
|
38
|
-
...opts,
|
|
39
|
-
});
|
|
40
|
-
this.name = "ResourceNotFoundException";
|
|
41
|
-
this.$fault = "client";
|
|
42
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
46
|
-
exports.AgentStatus = {
|
|
47
|
-
ACTIVE: "ACTIVE",
|
|
48
|
-
FAILED: "FAILED",
|
|
49
|
-
INACTIVE: "INACTIVE",
|
|
50
|
-
SUCCESS: "SUCCESS",
|
|
51
|
-
};
|
|
52
|
-
exports.AngleUnits = {
|
|
53
|
-
DEGREE_ANGLE: "DEGREE_ANGLE",
|
|
54
|
-
RADIAN: "RADIAN",
|
|
55
|
-
};
|
|
56
|
-
exports.BandwidthUnits = {
|
|
57
|
-
GHZ: "GHz",
|
|
58
|
-
KHZ: "kHz",
|
|
59
|
-
MHZ: "MHz",
|
|
60
|
-
};
|
|
61
|
-
exports.FrequencyUnits = {
|
|
62
|
-
GHZ: "GHz",
|
|
63
|
-
KHZ: "kHz",
|
|
64
|
-
MHZ: "MHz",
|
|
65
|
-
};
|
|
66
|
-
exports.Polarization = {
|
|
67
|
-
LEFT_HAND: "LEFT_HAND",
|
|
68
|
-
NONE: "NONE",
|
|
69
|
-
RIGHT_HAND: "RIGHT_HAND",
|
|
70
|
-
};
|
|
71
|
-
exports.EirpUnits = {
|
|
72
|
-
DBW: "dBW",
|
|
73
|
-
};
|
|
74
|
-
exports.AuditResults = {
|
|
75
|
-
HEALTHY: "HEALTHY",
|
|
76
|
-
UNHEALTHY: "UNHEALTHY",
|
|
77
|
-
};
|
|
78
|
-
exports.CapabilityHealth = {
|
|
79
|
-
HEALTHY: "HEALTHY",
|
|
80
|
-
UNHEALTHY: "UNHEALTHY",
|
|
81
|
-
};
|
|
82
|
-
exports.CapabilityHealthReason = {
|
|
83
|
-
DATAPLANE_FAILURE: "DATAPLANE_FAILURE",
|
|
84
|
-
HEALTHY: "HEALTHY",
|
|
85
|
-
INITIALIZING_DATAPLANE: "INITIALIZING_DATAPLANE",
|
|
86
|
-
INVALID_IP_OWNERSHIP: "INVALID_IP_OWNERSHIP",
|
|
87
|
-
NOT_AUTHORIZED_TO_CREATE_SLR: "NOT_AUTHORIZED_TO_CREATE_SLR",
|
|
88
|
-
NO_REGISTERED_AGENT: "NO_REGISTERED_AGENT",
|
|
89
|
-
UNVERIFIED_IP_OWNERSHIP: "UNVERIFIED_IP_OWNERSHIP",
|
|
90
|
-
};
|
|
91
|
-
exports.ConfigCapabilityType = {
|
|
92
|
-
ANTENNA_DOWNLINK: "antenna-downlink",
|
|
93
|
-
ANTENNA_DOWNLINK_DEMOD_DECODE: "antenna-downlink-demod-decode",
|
|
94
|
-
ANTENNA_UPLINK: "antenna-uplink",
|
|
95
|
-
DATAFLOW_ENDPOINT: "dataflow-endpoint",
|
|
96
|
-
S3_RECORDING: "s3-recording",
|
|
97
|
-
TRACKING: "tracking",
|
|
98
|
-
UPLINK_ECHO: "uplink-echo",
|
|
99
|
-
};
|
|
100
|
-
exports.Criticality = {
|
|
101
|
-
PREFERRED: "PREFERRED",
|
|
102
|
-
REMOVED: "REMOVED",
|
|
103
|
-
REQUIRED: "REQUIRED",
|
|
104
|
-
};
|
|
105
|
-
var ConfigTypeData;
|
|
106
|
-
(function (ConfigTypeData) {
|
|
107
|
-
ConfigTypeData.visit = (value, visitor) => {
|
|
108
|
-
if (value.antennaDownlinkConfig !== undefined)
|
|
109
|
-
return visitor.antennaDownlinkConfig(value.antennaDownlinkConfig);
|
|
110
|
-
if (value.trackingConfig !== undefined)
|
|
111
|
-
return visitor.trackingConfig(value.trackingConfig);
|
|
112
|
-
if (value.dataflowEndpointConfig !== undefined)
|
|
113
|
-
return visitor.dataflowEndpointConfig(value.dataflowEndpointConfig);
|
|
114
|
-
if (value.antennaDownlinkDemodDecodeConfig !== undefined)
|
|
115
|
-
return visitor.antennaDownlinkDemodDecodeConfig(value.antennaDownlinkDemodDecodeConfig);
|
|
116
|
-
if (value.antennaUplinkConfig !== undefined)
|
|
117
|
-
return visitor.antennaUplinkConfig(value.antennaUplinkConfig);
|
|
118
|
-
if (value.uplinkEchoConfig !== undefined)
|
|
119
|
-
return visitor.uplinkEchoConfig(value.uplinkEchoConfig);
|
|
120
|
-
if (value.s3RecordingConfig !== undefined)
|
|
121
|
-
return visitor.s3RecordingConfig(value.s3RecordingConfig);
|
|
122
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
123
|
-
};
|
|
124
|
-
})(ConfigTypeData = exports.ConfigTypeData || (exports.ConfigTypeData = {}));
|
|
125
|
-
class ResourceLimitExceededException extends GroundStationServiceException_1.GroundStationServiceException {
|
|
126
|
-
constructor(opts) {
|
|
127
|
-
super({
|
|
128
|
-
name: "ResourceLimitExceededException",
|
|
129
|
-
$fault: "client",
|
|
130
|
-
...opts,
|
|
131
|
-
});
|
|
132
|
-
this.name = "ResourceLimitExceededException";
|
|
133
|
-
this.$fault = "client";
|
|
134
|
-
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
135
|
-
this.parameterName = opts.parameterName;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
139
|
-
exports.EndpointStatus = {
|
|
140
|
-
created: "created",
|
|
141
|
-
creating: "creating",
|
|
142
|
-
deleted: "deleted",
|
|
143
|
-
deleting: "deleting",
|
|
144
|
-
failed: "failed",
|
|
145
|
-
};
|
|
146
|
-
var ConfigDetails;
|
|
147
|
-
(function (ConfigDetails) {
|
|
148
|
-
ConfigDetails.visit = (value, visitor) => {
|
|
149
|
-
if (value.endpointDetails !== undefined)
|
|
150
|
-
return visitor.endpointDetails(value.endpointDetails);
|
|
151
|
-
if (value.antennaDemodDecodeDetails !== undefined)
|
|
152
|
-
return visitor.antennaDemodDecodeDetails(value.antennaDemodDecodeDetails);
|
|
153
|
-
if (value.s3RecordingDetails !== undefined)
|
|
154
|
-
return visitor.s3RecordingDetails(value.s3RecordingDetails);
|
|
155
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
156
|
-
};
|
|
157
|
-
})(ConfigDetails = exports.ConfigDetails || (exports.ConfigDetails = {}));
|
|
158
|
-
exports.ContactStatus = {
|
|
159
|
-
AVAILABLE: "AVAILABLE",
|
|
160
|
-
AWS_CANCELLED: "AWS_CANCELLED",
|
|
161
|
-
AWS_FAILED: "AWS_FAILED",
|
|
162
|
-
CANCELLED: "CANCELLED",
|
|
163
|
-
CANCELLING: "CANCELLING",
|
|
164
|
-
COMPLETED: "COMPLETED",
|
|
165
|
-
FAILED: "FAILED",
|
|
166
|
-
FAILED_TO_SCHEDULE: "FAILED_TO_SCHEDULE",
|
|
167
|
-
PASS: "PASS",
|
|
168
|
-
POSTPASS: "POSTPASS",
|
|
169
|
-
PREPASS: "PREPASS",
|
|
170
|
-
SCHEDULED: "SCHEDULED",
|
|
171
|
-
SCHEDULING: "SCHEDULING",
|
|
172
|
-
};
|
|
173
|
-
var EphemerisData;
|
|
174
|
-
(function (EphemerisData) {
|
|
175
|
-
EphemerisData.visit = (value, visitor) => {
|
|
176
|
-
if (value.tle !== undefined)
|
|
177
|
-
return visitor.tle(value.tle);
|
|
178
|
-
if (value.oem !== undefined)
|
|
179
|
-
return visitor.oem(value.oem);
|
|
180
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
181
|
-
};
|
|
182
|
-
})(EphemerisData = exports.EphemerisData || (exports.EphemerisData = {}));
|
|
183
|
-
var KmsKey;
|
|
184
|
-
(function (KmsKey) {
|
|
185
|
-
KmsKey.visit = (value, visitor) => {
|
|
186
|
-
if (value.kmsKeyArn !== undefined)
|
|
187
|
-
return visitor.kmsKeyArn(value.kmsKeyArn);
|
|
188
|
-
if (value.kmsAliasArn !== undefined)
|
|
189
|
-
return visitor.kmsAliasArn(value.kmsAliasArn);
|
|
190
|
-
if (value.kmsAliasName !== undefined)
|
|
191
|
-
return visitor.kmsAliasName(value.kmsAliasName);
|
|
192
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
193
|
-
};
|
|
194
|
-
})(KmsKey = exports.KmsKey || (exports.KmsKey = {}));
|
|
195
|
-
exports.EphemerisInvalidReason = {
|
|
196
|
-
KMS_KEY_INVALID: "KMS_KEY_INVALID",
|
|
197
|
-
METADATA_INVALID: "METADATA_INVALID",
|
|
198
|
-
TIME_RANGE_INVALID: "TIME_RANGE_INVALID",
|
|
199
|
-
TRAJECTORY_INVALID: "TRAJECTORY_INVALID",
|
|
200
|
-
VALIDATION_ERROR: "VALIDATION_ERROR",
|
|
201
|
-
};
|
|
202
|
-
exports.EphemerisStatus = {
|
|
203
|
-
DISABLED: "DISABLED",
|
|
204
|
-
ENABLED: "ENABLED",
|
|
205
|
-
ERROR: "ERROR",
|
|
206
|
-
EXPIRED: "EXPIRED",
|
|
207
|
-
INVALID: "INVALID",
|
|
208
|
-
VALIDATING: "VALIDATING",
|
|
209
|
-
};
|
|
210
|
-
var EphemerisTypeDescription;
|
|
211
|
-
(function (EphemerisTypeDescription) {
|
|
212
|
-
EphemerisTypeDescription.visit = (value, visitor) => {
|
|
213
|
-
if (value.tle !== undefined)
|
|
214
|
-
return visitor.tle(value.tle);
|
|
215
|
-
if (value.oem !== undefined)
|
|
216
|
-
return visitor.oem(value.oem);
|
|
217
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
218
|
-
};
|
|
219
|
-
})(EphemerisTypeDescription = exports.EphemerisTypeDescription || (exports.EphemerisTypeDescription = {}));
|
|
220
|
-
exports.EphemerisSource = {
|
|
221
|
-
CUSTOMER_PROVIDED: "CUSTOMER_PROVIDED",
|
|
222
|
-
SPACE_TRACK: "SPACE_TRACK",
|
|
223
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListConfigs = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListConfigsCommand_1 = require("../commands/ListConfigsCommand");
|
|
6
|
-
const GroundStationClient_1 = require("../GroundStationClient");
|
|
7
|
-
exports.paginateListConfigs = (0, core_1.createPaginator)(GroundStationClient_1.GroundStationClient, ListConfigsCommand_1.ListConfigsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListContacts = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListContactsCommand_1 = require("../commands/ListContactsCommand");
|
|
6
|
-
const GroundStationClient_1 = require("../GroundStationClient");
|
|
7
|
-
exports.paginateListContacts = (0, core_1.createPaginator)(GroundStationClient_1.GroundStationClient, ListContactsCommand_1.ListContactsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListDataflowEndpointGroups = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListDataflowEndpointGroupsCommand_1 = require("../commands/ListDataflowEndpointGroupsCommand");
|
|
6
|
-
const GroundStationClient_1 = require("../GroundStationClient");
|
|
7
|
-
exports.paginateListDataflowEndpointGroups = (0, core_1.createPaginator)(GroundStationClient_1.GroundStationClient, ListDataflowEndpointGroupsCommand_1.ListDataflowEndpointGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListEphemerides = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListEphemeridesCommand_1 = require("../commands/ListEphemeridesCommand");
|
|
6
|
-
const GroundStationClient_1 = require("../GroundStationClient");
|
|
7
|
-
exports.paginateListEphemerides = (0, core_1.createPaginator)(GroundStationClient_1.GroundStationClient, ListEphemeridesCommand_1.ListEphemeridesCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListGroundStations = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListGroundStationsCommand_1 = require("../commands/ListGroundStationsCommand");
|
|
6
|
-
const GroundStationClient_1 = require("../GroundStationClient");
|
|
7
|
-
exports.paginateListGroundStations = (0, core_1.createPaginator)(GroundStationClient_1.GroundStationClient, ListGroundStationsCommand_1.ListGroundStationsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListMissionProfiles = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListMissionProfilesCommand_1 = require("../commands/ListMissionProfilesCommand");
|
|
6
|
-
const GroundStationClient_1 = require("../GroundStationClient");
|
|
7
|
-
exports.paginateListMissionProfiles = (0, core_1.createPaginator)(GroundStationClient_1.GroundStationClient, ListMissionProfilesCommand_1.ListMissionProfilesCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListSatellites = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListSatellitesCommand_1 = require("../commands/ListSatellitesCommand");
|
|
6
|
-
const GroundStationClient_1 = require("../GroundStationClient");
|
|
7
|
-
exports.paginateListSatellites = (0, core_1.createPaginator)(GroundStationClient_1.GroundStationClient, ListSatellitesCommand_1.ListSatellitesCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,11 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListConfigsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListContactsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListDataflowEndpointGroupsPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./ListEphemeridesPaginator"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./ListGroundStationsPaginator"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./ListMissionProfilesPaginator"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./ListSatellitesPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|