@aws-sdk/client-groundstation 3.52.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 +11 -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/index.d.ts +1 -0
- package/dist-types/ts3.4/models/GroundStationServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -17
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from GroundStation service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class GroundStationServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
|
|
2
3
|
export declare enum AngleUnits {
|
|
3
4
|
DEGREE_ANGLE = "DEGREE_ANGLE",
|
|
4
5
|
RADIAN = "RADIAN"
|
|
@@ -282,34 +283,43 @@ export declare namespace ContactIdResponse {
|
|
|
282
283
|
/**
|
|
283
284
|
* <p>Dependency encountered an error.</p>
|
|
284
285
|
*/
|
|
285
|
-
export
|
|
286
|
-
name: "DependencyException";
|
|
287
|
-
$fault: "server";
|
|
288
|
-
message?: string;
|
|
286
|
+
export declare class DependencyException extends __BaseException {
|
|
287
|
+
readonly name: "DependencyException";
|
|
288
|
+
readonly $fault: "server";
|
|
289
289
|
/**
|
|
290
290
|
* <p/>
|
|
291
291
|
*/
|
|
292
292
|
parameterName?: string;
|
|
293
|
+
/**
|
|
294
|
+
* @internal
|
|
295
|
+
*/
|
|
296
|
+
constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
|
|
293
297
|
}
|
|
294
298
|
/**
|
|
295
299
|
* <p>One or more parameters are not valid.</p>
|
|
296
300
|
*/
|
|
297
|
-
export
|
|
298
|
-
name: "InvalidParameterException";
|
|
299
|
-
$fault: "client";
|
|
300
|
-
message?: string;
|
|
301
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
302
|
+
readonly name: "InvalidParameterException";
|
|
303
|
+
readonly $fault: "client";
|
|
301
304
|
/**
|
|
302
305
|
* <p/>
|
|
303
306
|
*/
|
|
304
307
|
parameterName?: string;
|
|
308
|
+
/**
|
|
309
|
+
* @internal
|
|
310
|
+
*/
|
|
311
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
305
312
|
}
|
|
306
313
|
/**
|
|
307
314
|
* <p>Resource was not found.</p>
|
|
308
315
|
*/
|
|
309
|
-
export
|
|
310
|
-
name: "ResourceNotFoundException";
|
|
311
|
-
$fault: "client";
|
|
312
|
-
|
|
316
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
317
|
+
readonly name: "ResourceNotFoundException";
|
|
318
|
+
readonly $fault: "client";
|
|
319
|
+
/**
|
|
320
|
+
* @internal
|
|
321
|
+
*/
|
|
322
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
313
323
|
}
|
|
314
324
|
export declare enum ConfigCapabilityType {
|
|
315
325
|
ANTENNA_DOWNLINK = "antenna-downlink",
|
|
@@ -580,14 +590,17 @@ export declare namespace CreateConfigRequest {
|
|
|
580
590
|
/**
|
|
581
591
|
* <p>Account limits for this resource have been exceeded.</p>
|
|
582
592
|
*/
|
|
583
|
-
export
|
|
584
|
-
name: "ResourceLimitExceededException";
|
|
585
|
-
$fault: "client";
|
|
586
|
-
message?: string;
|
|
593
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
594
|
+
readonly name: "ResourceLimitExceededException";
|
|
595
|
+
readonly $fault: "client";
|
|
587
596
|
/**
|
|
588
597
|
* <p/>
|
|
589
598
|
*/
|
|
590
599
|
parameterName?: string;
|
|
600
|
+
/**
|
|
601
|
+
* @internal
|
|
602
|
+
*/
|
|
603
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
591
604
|
}
|
|
592
605
|
/**
|
|
593
606
|
* <p/>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class GroundStationServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
|
|
2
3
|
export declare enum AngleUnits {
|
|
3
4
|
DEGREE_ANGLE = "DEGREE_ANGLE",
|
|
4
5
|
RADIAN = "RADIAN"
|
|
@@ -159,26 +160,29 @@ export declare namespace ContactIdResponse {
|
|
|
159
160
|
const filterSensitiveLog: (obj: ContactIdResponse) => any;
|
|
160
161
|
}
|
|
161
162
|
|
|
162
|
-
export
|
|
163
|
-
name: "DependencyException";
|
|
164
|
-
$fault: "server";
|
|
165
|
-
message?: string;
|
|
163
|
+
export declare class DependencyException extends __BaseException {
|
|
164
|
+
readonly name: "DependencyException";
|
|
165
|
+
readonly $fault: "server";
|
|
166
166
|
|
|
167
167
|
parameterName?: string;
|
|
168
|
+
|
|
169
|
+
constructor(opts: __ExceptionOptionType<DependencyException, __BaseException>);
|
|
168
170
|
}
|
|
169
171
|
|
|
170
|
-
export
|
|
171
|
-
name: "InvalidParameterException";
|
|
172
|
-
$fault: "client";
|
|
173
|
-
message?: string;
|
|
172
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
173
|
+
readonly name: "InvalidParameterException";
|
|
174
|
+
readonly $fault: "client";
|
|
174
175
|
|
|
175
176
|
parameterName?: string;
|
|
177
|
+
|
|
178
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
176
179
|
}
|
|
177
180
|
|
|
178
|
-
export
|
|
179
|
-
name: "ResourceNotFoundException";
|
|
180
|
-
$fault: "client";
|
|
181
|
-
|
|
181
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
182
|
+
readonly name: "ResourceNotFoundException";
|
|
183
|
+
readonly $fault: "client";
|
|
184
|
+
|
|
185
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
182
186
|
}
|
|
183
187
|
export declare enum ConfigCapabilityType {
|
|
184
188
|
ANTENNA_DOWNLINK = "antenna-downlink",
|
|
@@ -374,12 +378,13 @@ export declare namespace CreateConfigRequest {
|
|
|
374
378
|
const filterSensitiveLog: (obj: CreateConfigRequest) => any;
|
|
375
379
|
}
|
|
376
380
|
|
|
377
|
-
export
|
|
378
|
-
name: "ResourceLimitExceededException";
|
|
379
|
-
$fault: "client";
|
|
380
|
-
message?: string;
|
|
381
|
+
export declare class ResourceLimitExceededException extends __BaseException {
|
|
382
|
+
readonly name: "ResourceLimitExceededException";
|
|
383
|
+
readonly $fault: "client";
|
|
381
384
|
|
|
382
385
|
parameterName?: string;
|
|
386
|
+
|
|
387
|
+
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
383
388
|
}
|
|
384
389
|
|
|
385
390
|
export interface DeleteConfigRequest {
|
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.
|
|
4
|
+
"version": "3.53.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",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|