@aws-sdk/client-iot-wireless 3.933.0 → 3.935.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 (57) hide show
  1. package/dist-cjs/index.js +282 -282
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +266 -0
  4. package/dist-es/models/errors.js +109 -0
  5. package/dist-es/models/models_0.js +1 -350
  6. package/dist-es/models/models_1.js +1 -26
  7. package/dist-es/schemas/schemas_0.js +1 -1
  8. package/dist-types/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +1 -2
  9. package/dist-types/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
  10. package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
  11. package/dist-types/commands/ListPositionConfigurationsCommand.d.ts +1 -1
  12. package/dist-types/commands/ListQueuedMessagesCommand.d.ts +1 -1
  13. package/dist-types/commands/ListServiceProfilesCommand.d.ts +1 -1
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  15. package/dist-types/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
  16. package/dist-types/commands/ListWirelessDevicesCommand.d.ts +1 -1
  17. package/dist-types/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListWirelessGatewaysCommand.d.ts +1 -1
  19. package/dist-types/commands/PutPositionConfigurationCommand.d.ts +1 -1
  20. package/dist-types/commands/PutResourceLogLevelCommand.d.ts +1 -1
  21. package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
  22. package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  23. package/dist-types/commands/SendDataToMulticastGroupCommand.d.ts +1 -1
  24. package/dist-types/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
  25. package/dist-types/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +2 -1
  26. package/dist-types/index.d.ts +4 -1
  27. package/dist-types/models/enums.d.ts +642 -0
  28. package/dist-types/models/errors.d.ts +118 -0
  29. package/dist-types/models/models_0.d.ts +995 -717
  30. package/dist-types/models/models_1.d.ts +2 -1040
  31. package/dist-types/ts3.4/commands/ListMulticastGroupsByFuotaTaskCommand.d.ts +4 -2
  32. package/dist-types/ts3.4/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/ListPartnerAccountsCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/ListPositionConfigurationsCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/ListQueuedMessagesCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/ListServiceProfilesCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/ListWirelessDeviceImportTasksCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListWirelessDevicesCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/ListWirelessGatewayTaskDefinitionsCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListWirelessGatewaysCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/PutPositionConfigurationCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/PutResourceLogLevelCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/ResetAllResourceLogLevelsCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/ResetResourceLogLevelCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/SendDataToMulticastGroupCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/SendDataToWirelessDeviceCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.d.ts +2 -4
  49. package/dist-types/ts3.4/index.d.ts +4 -1
  50. package/dist-types/ts3.4/models/enums.d.ts +347 -0
  51. package/dist-types/ts3.4/models/errors.d.ts +61 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +282 -387
  53. package/dist-types/ts3.4/models/models_1.d.ts +9 -277
  54. package/package.json +12 -12
  55. package/dist-es/models/index.js +0 -2
  56. package/dist-types/models/index.d.ts +0 -2
  57. package/dist-types/ts3.4/models/index.d.ts +0 -2
@@ -0,0 +1,118 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
3
+ /**
4
+ * <p>User does not have permission to perform this action.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ Message?: string | undefined;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>Adding, updating, or deleting the resource can cause an inconsistent state.</p>
18
+ * @public
19
+ */
20
+ export declare class ConflictException extends __BaseException {
21
+ readonly name: "ConflictException";
22
+ readonly $fault: "client";
23
+ Message?: string | undefined;
24
+ /**
25
+ * <p>Id of the resource in the conflicting operation.</p>
26
+ * @public
27
+ */
28
+ ResourceId?: string | undefined;
29
+ /**
30
+ * <p>Type of the resource in the conflicting operation.</p>
31
+ * @public
32
+ */
33
+ ResourceType?: string | undefined;
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
38
+ }
39
+ /**
40
+ * <p>An unexpected error occurred while processing a request.</p>
41
+ * @public
42
+ */
43
+ export declare class InternalServerException extends __BaseException {
44
+ readonly name: "InternalServerException";
45
+ readonly $fault: "server";
46
+ Message?: string | undefined;
47
+ /**
48
+ * @internal
49
+ */
50
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
51
+ }
52
+ /**
53
+ * <p>Resource does not exist.</p>
54
+ * @public
55
+ */
56
+ export declare class ResourceNotFoundException extends __BaseException {
57
+ readonly name: "ResourceNotFoundException";
58
+ readonly $fault: "client";
59
+ Message?: string | undefined;
60
+ /**
61
+ * <p>Id of the not found resource.</p>
62
+ * @public
63
+ */
64
+ ResourceId?: string | undefined;
65
+ /**
66
+ * <p>Type of the font found resource.</p>
67
+ * @public
68
+ */
69
+ ResourceType?: string | undefined;
70
+ /**
71
+ * @internal
72
+ */
73
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
74
+ }
75
+ /**
76
+ * <p>The request was denied because it exceeded the allowed API request rate.</p>
77
+ * @public
78
+ */
79
+ export declare class ThrottlingException extends __BaseException {
80
+ readonly name: "ThrottlingException";
81
+ readonly $fault: "client";
82
+ Message?: string | undefined;
83
+ /**
84
+ * @internal
85
+ */
86
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
87
+ }
88
+ /**
89
+ * <p>The input did not meet the specified constraints.</p>
90
+ * @public
91
+ */
92
+ export declare class ValidationException extends __BaseException {
93
+ readonly name: "ValidationException";
94
+ readonly $fault: "client";
95
+ Message?: string | undefined;
96
+ /**
97
+ * @internal
98
+ */
99
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
100
+ }
101
+ /**
102
+ * <p>The request was denied because the resource can't have any more tags.</p>
103
+ * @public
104
+ */
105
+ export declare class TooManyTagsException extends __BaseException {
106
+ readonly name: "TooManyTagsException";
107
+ readonly $fault: "client";
108
+ Message?: string | undefined;
109
+ /**
110
+ * <p>Name of the resource that exceeds maximum number of tags allowed.</p>
111
+ * @public
112
+ */
113
+ ResourceName?: string | undefined;
114
+ /**
115
+ * @internal
116
+ */
117
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
118
+ }