@aws-sdk/client-mq 3.928.0 → 3.930.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/index.js +2954 -1366
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MqClient.js +2 -0
- package/dist-es/commands/CreateBrokerCommand.js +3 -9
- package/dist-es/commands/CreateConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateTagsCommand.js +3 -9
- package/dist-es/commands/CreateUserCommand.js +3 -9
- package/dist-es/commands/DeleteBrokerCommand.js +3 -9
- package/dist-es/commands/DeleteConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteTagsCommand.js +3 -9
- package/dist-es/commands/DeleteUserCommand.js +3 -9
- package/dist-es/commands/DescribeBrokerCommand.js +3 -9
- package/dist-es/commands/DescribeBrokerEngineTypesCommand.js +3 -9
- package/dist-es/commands/DescribeBrokerInstanceOptionsCommand.js +3 -9
- package/dist-es/commands/DescribeConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeConfigurationRevisionCommand.js +3 -9
- package/dist-es/commands/DescribeUserCommand.js +3 -9
- package/dist-es/commands/ListBrokersCommand.js +3 -9
- package/dist-es/commands/ListConfigurationRevisionsCommand.js +3 -9
- package/dist-es/commands/ListConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListTagsCommand.js +3 -9
- package/dist-es/commands/ListUsersCommand.js +3 -9
- package/dist-es/commands/PromoteCommand.js +3 -9
- package/dist-es/commands/RebootBrokerCommand.js +3 -9
- package/dist-es/commands/UpdateBrokerCommand.js +3 -9
- package/dist-es/commands/UpdateConfigurationCommand.js +3 -9
- package/dist-es/commands/UpdateUserCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +2901 -0
- package/dist-types/MqClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +119 -0
- package/dist-types/ts3.4/MqClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +124 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -1193
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -218
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -293
package/dist-types/MqClient.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateBrokerCommandInput, CreateBrokerCommandOutput } from "./commands/CreateBrokerCommand";
|
|
11
11
|
import { CreateConfigurationCommandInput, CreateConfigurationCommandOutput } from "./commands/CreateConfigurationCommand";
|
|
@@ -165,6 +165,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
165
165
|
* Optional extensions
|
|
166
166
|
*/
|
|
167
167
|
extensions?: RuntimeExtension[];
|
|
168
|
+
/**
|
|
169
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
170
|
+
* may be overridden. A default will always be set by the client.
|
|
171
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
172
|
+
* the client.
|
|
173
|
+
* @alpha
|
|
174
|
+
*
|
|
175
|
+
*/
|
|
176
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
168
177
|
/**
|
|
169
178
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
170
179
|
*/
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: MqClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: MqClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: MqClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: MqClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MqHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var ActionRequired: StaticStructureSchema;
|
|
3
|
+
export declare var AvailabilityZone: StaticStructureSchema;
|
|
4
|
+
export declare var BadRequestException: StaticErrorSchema;
|
|
5
|
+
export declare var BrokerEngineType: StaticStructureSchema;
|
|
6
|
+
export declare var BrokerInstance: StaticStructureSchema;
|
|
7
|
+
export declare var BrokerInstanceOption: StaticStructureSchema;
|
|
8
|
+
export declare var BrokerSummary: StaticStructureSchema;
|
|
9
|
+
export declare var Configuration: StaticStructureSchema;
|
|
10
|
+
export declare var ConfigurationId: StaticStructureSchema;
|
|
11
|
+
export declare var ConfigurationRevision: StaticStructureSchema;
|
|
12
|
+
export declare var Configurations: StaticStructureSchema;
|
|
13
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
14
|
+
export declare var CreateBrokerRequest: StaticStructureSchema;
|
|
15
|
+
export declare var CreateBrokerResponse: StaticStructureSchema;
|
|
16
|
+
export declare var CreateConfigurationRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateConfigurationResponse: StaticStructureSchema;
|
|
18
|
+
export declare var CreateTagsRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateUserRequest: StaticStructureSchema;
|
|
20
|
+
export declare var CreateUserResponse: StaticStructureSchema;
|
|
21
|
+
export declare var DataReplicationCounterpart: StaticStructureSchema;
|
|
22
|
+
export declare var DataReplicationMetadataOutput: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteBrokerRequest: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteBrokerResponse: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteConfigurationRequest: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteConfigurationResponse: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteTagsRequest: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteUserRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteUserResponse: StaticStructureSchema;
|
|
30
|
+
export declare var DescribeBrokerEngineTypesRequest: StaticStructureSchema;
|
|
31
|
+
export declare var DescribeBrokerEngineTypesResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DescribeBrokerInstanceOptionsRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DescribeBrokerInstanceOptionsResponse: StaticStructureSchema;
|
|
34
|
+
export declare var DescribeBrokerRequest: StaticStructureSchema;
|
|
35
|
+
export declare var DescribeBrokerResponse: StaticStructureSchema;
|
|
36
|
+
export declare var DescribeConfigurationRequest: StaticStructureSchema;
|
|
37
|
+
export declare var DescribeConfigurationResponse: StaticStructureSchema;
|
|
38
|
+
export declare var DescribeConfigurationRevisionRequest: StaticStructureSchema;
|
|
39
|
+
export declare var DescribeConfigurationRevisionResponse: StaticStructureSchema;
|
|
40
|
+
export declare var DescribeUserRequest: StaticStructureSchema;
|
|
41
|
+
export declare var DescribeUserResponse: StaticStructureSchema;
|
|
42
|
+
export declare var EncryptionOptions: StaticStructureSchema;
|
|
43
|
+
export declare var EngineVersion: StaticStructureSchema;
|
|
44
|
+
export declare var ForbiddenException: StaticErrorSchema;
|
|
45
|
+
export declare var InternalServerErrorException: StaticErrorSchema;
|
|
46
|
+
export declare var LdapServerMetadataInput: StaticStructureSchema;
|
|
47
|
+
export declare var LdapServerMetadataOutput: StaticStructureSchema;
|
|
48
|
+
export declare var ListBrokersRequest: StaticStructureSchema;
|
|
49
|
+
export declare var ListBrokersResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ListConfigurationRevisionsRequest: StaticStructureSchema;
|
|
51
|
+
export declare var ListConfigurationRevisionsResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ListConfigurationsRequest: StaticStructureSchema;
|
|
53
|
+
export declare var ListConfigurationsResponse: StaticStructureSchema;
|
|
54
|
+
export declare var ListTagsRequest: StaticStructureSchema;
|
|
55
|
+
export declare var ListTagsResponse: StaticStructureSchema;
|
|
56
|
+
export declare var ListUsersRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ListUsersResponse: StaticStructureSchema;
|
|
58
|
+
export declare var Logs: StaticStructureSchema;
|
|
59
|
+
export declare var LogsSummary: StaticStructureSchema;
|
|
60
|
+
export declare var NotFoundException: StaticErrorSchema;
|
|
61
|
+
export declare var PendingLogs: StaticStructureSchema;
|
|
62
|
+
export declare var PromoteRequest: StaticStructureSchema;
|
|
63
|
+
export declare var PromoteResponse: StaticStructureSchema;
|
|
64
|
+
export declare var RebootBrokerRequest: StaticStructureSchema;
|
|
65
|
+
export declare var RebootBrokerResponse: StaticStructureSchema;
|
|
66
|
+
export declare var SanitizationWarning: StaticStructureSchema;
|
|
67
|
+
export declare var UnauthorizedException: StaticErrorSchema;
|
|
68
|
+
export declare var UpdateBrokerRequest: StaticStructureSchema;
|
|
69
|
+
export declare var UpdateBrokerResponse: StaticStructureSchema;
|
|
70
|
+
export declare var UpdateConfigurationRequest: StaticStructureSchema;
|
|
71
|
+
export declare var UpdateConfigurationResponse: StaticStructureSchema;
|
|
72
|
+
export declare var UpdateUserRequest: StaticStructureSchema;
|
|
73
|
+
export declare var UpdateUserResponse: StaticStructureSchema;
|
|
74
|
+
export declare var User: StaticStructureSchema;
|
|
75
|
+
export declare var UserPendingChanges: StaticStructureSchema;
|
|
76
|
+
export declare var UserSummary: StaticStructureSchema;
|
|
77
|
+
export declare var WeeklyStartTime: StaticStructureSchema;
|
|
78
|
+
export declare var __Unit: "unit";
|
|
79
|
+
export declare var MqServiceException: StaticErrorSchema;
|
|
80
|
+
export declare var __listOf__string: number;
|
|
81
|
+
export declare var __listOfActionRequired: StaticListSchema;
|
|
82
|
+
export declare var __listOfAvailabilityZone: StaticListSchema;
|
|
83
|
+
export declare var __listOfBrokerEngineType: StaticListSchema;
|
|
84
|
+
export declare var __listOfBrokerInstance: StaticListSchema;
|
|
85
|
+
export declare var __listOfBrokerInstanceOption: StaticListSchema;
|
|
86
|
+
export declare var __listOfBrokerSummary: StaticListSchema;
|
|
87
|
+
export declare var __listOfConfiguration: StaticListSchema;
|
|
88
|
+
export declare var __listOfConfigurationId: StaticListSchema;
|
|
89
|
+
export declare var __listOfConfigurationRevision: StaticListSchema;
|
|
90
|
+
export declare var __listOfDeploymentMode: number;
|
|
91
|
+
export declare var __listOfEngineVersion: StaticListSchema;
|
|
92
|
+
export declare var __listOfSanitizationWarning: StaticListSchema;
|
|
93
|
+
export declare var __listOfUser: StaticListSchema;
|
|
94
|
+
export declare var __listOfUserSummary: StaticListSchema;
|
|
95
|
+
export declare var __mapOf__string: number;
|
|
96
|
+
export declare var CreateBroker: StaticOperationSchema;
|
|
97
|
+
export declare var CreateConfiguration: StaticOperationSchema;
|
|
98
|
+
export declare var CreateTags: StaticOperationSchema;
|
|
99
|
+
export declare var CreateUser: StaticOperationSchema;
|
|
100
|
+
export declare var DeleteBroker: StaticOperationSchema;
|
|
101
|
+
export declare var DeleteConfiguration: StaticOperationSchema;
|
|
102
|
+
export declare var DeleteTags: StaticOperationSchema;
|
|
103
|
+
export declare var DeleteUser: StaticOperationSchema;
|
|
104
|
+
export declare var DescribeBroker: StaticOperationSchema;
|
|
105
|
+
export declare var DescribeBrokerEngineTypes: StaticOperationSchema;
|
|
106
|
+
export declare var DescribeBrokerInstanceOptions: StaticOperationSchema;
|
|
107
|
+
export declare var DescribeConfiguration: StaticOperationSchema;
|
|
108
|
+
export declare var DescribeConfigurationRevision: StaticOperationSchema;
|
|
109
|
+
export declare var DescribeUser: StaticOperationSchema;
|
|
110
|
+
export declare var ListBrokers: StaticOperationSchema;
|
|
111
|
+
export declare var ListConfigurationRevisions: StaticOperationSchema;
|
|
112
|
+
export declare var ListConfigurations: StaticOperationSchema;
|
|
113
|
+
export declare var ListTags: StaticOperationSchema;
|
|
114
|
+
export declare var ListUsers: StaticOperationSchema;
|
|
115
|
+
export declare var Promote: StaticOperationSchema;
|
|
116
|
+
export declare var RebootBroker: StaticOperationSchema;
|
|
117
|
+
export declare var UpdateBroker: StaticOperationSchema;
|
|
118
|
+
export declare var UpdateConfiguration: StaticOperationSchema;
|
|
119
|
+
export declare var UpdateUser: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -222,6 +225,7 @@ export interface ClientDefaults
|
|
|
222
225
|
retryMode?: string | __Provider<string>;
|
|
223
226
|
logger?: __Logger;
|
|
224
227
|
extensions?: RuntimeExtension[];
|
|
228
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
225
229
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
226
230
|
}
|
|
227
231
|
export type MqClientConfigType = Partial<
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: MqClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: MqClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: MqClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: MqClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MqHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var ActionRequired: StaticStructureSchema;
|
|
8
|
+
export declare var AvailabilityZone: StaticStructureSchema;
|
|
9
|
+
export declare var BadRequestException: StaticErrorSchema;
|
|
10
|
+
export declare var BrokerEngineType: StaticStructureSchema;
|
|
11
|
+
export declare var BrokerInstance: StaticStructureSchema;
|
|
12
|
+
export declare var BrokerInstanceOption: StaticStructureSchema;
|
|
13
|
+
export declare var BrokerSummary: StaticStructureSchema;
|
|
14
|
+
export declare var Configuration: StaticStructureSchema;
|
|
15
|
+
export declare var ConfigurationId: StaticStructureSchema;
|
|
16
|
+
export declare var ConfigurationRevision: StaticStructureSchema;
|
|
17
|
+
export declare var Configurations: StaticStructureSchema;
|
|
18
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
19
|
+
export declare var CreateBrokerRequest: StaticStructureSchema;
|
|
20
|
+
export declare var CreateBrokerResponse: StaticStructureSchema;
|
|
21
|
+
export declare var CreateConfigurationRequest: StaticStructureSchema;
|
|
22
|
+
export declare var CreateConfigurationResponse: StaticStructureSchema;
|
|
23
|
+
export declare var CreateTagsRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateUserRequest: StaticStructureSchema;
|
|
25
|
+
export declare var CreateUserResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DataReplicationCounterpart: StaticStructureSchema;
|
|
27
|
+
export declare var DataReplicationMetadataOutput: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteBrokerRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteBrokerResponse: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteConfigurationRequest: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteConfigurationResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteTagsRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteUserRequest: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteUserResponse: StaticStructureSchema;
|
|
35
|
+
export declare var DescribeBrokerEngineTypesRequest: StaticStructureSchema;
|
|
36
|
+
export declare var DescribeBrokerEngineTypesResponse: StaticStructureSchema;
|
|
37
|
+
export declare var DescribeBrokerInstanceOptionsRequest: StaticStructureSchema;
|
|
38
|
+
export declare var DescribeBrokerInstanceOptionsResponse: StaticStructureSchema;
|
|
39
|
+
export declare var DescribeBrokerRequest: StaticStructureSchema;
|
|
40
|
+
export declare var DescribeBrokerResponse: StaticStructureSchema;
|
|
41
|
+
export declare var DescribeConfigurationRequest: StaticStructureSchema;
|
|
42
|
+
export declare var DescribeConfigurationResponse: StaticStructureSchema;
|
|
43
|
+
export declare var DescribeConfigurationRevisionRequest: StaticStructureSchema;
|
|
44
|
+
export declare var DescribeConfigurationRevisionResponse: StaticStructureSchema;
|
|
45
|
+
export declare var DescribeUserRequest: StaticStructureSchema;
|
|
46
|
+
export declare var DescribeUserResponse: StaticStructureSchema;
|
|
47
|
+
export declare var EncryptionOptions: StaticStructureSchema;
|
|
48
|
+
export declare var EngineVersion: StaticStructureSchema;
|
|
49
|
+
export declare var ForbiddenException: StaticErrorSchema;
|
|
50
|
+
export declare var InternalServerErrorException: StaticErrorSchema;
|
|
51
|
+
export declare var LdapServerMetadataInput: StaticStructureSchema;
|
|
52
|
+
export declare var LdapServerMetadataOutput: StaticStructureSchema;
|
|
53
|
+
export declare var ListBrokersRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListBrokersResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListConfigurationRevisionsRequest: StaticStructureSchema;
|
|
56
|
+
export declare var ListConfigurationRevisionsResponse: StaticStructureSchema;
|
|
57
|
+
export declare var ListConfigurationsRequest: StaticStructureSchema;
|
|
58
|
+
export declare var ListConfigurationsResponse: StaticStructureSchema;
|
|
59
|
+
export declare var ListTagsRequest: StaticStructureSchema;
|
|
60
|
+
export declare var ListTagsResponse: StaticStructureSchema;
|
|
61
|
+
export declare var ListUsersRequest: StaticStructureSchema;
|
|
62
|
+
export declare var ListUsersResponse: StaticStructureSchema;
|
|
63
|
+
export declare var Logs: StaticStructureSchema;
|
|
64
|
+
export declare var LogsSummary: StaticStructureSchema;
|
|
65
|
+
export declare var NotFoundException: StaticErrorSchema;
|
|
66
|
+
export declare var PendingLogs: StaticStructureSchema;
|
|
67
|
+
export declare var PromoteRequest: StaticStructureSchema;
|
|
68
|
+
export declare var PromoteResponse: StaticStructureSchema;
|
|
69
|
+
export declare var RebootBrokerRequest: StaticStructureSchema;
|
|
70
|
+
export declare var RebootBrokerResponse: StaticStructureSchema;
|
|
71
|
+
export declare var SanitizationWarning: StaticStructureSchema;
|
|
72
|
+
export declare var UnauthorizedException: StaticErrorSchema;
|
|
73
|
+
export declare var UpdateBrokerRequest: StaticStructureSchema;
|
|
74
|
+
export declare var UpdateBrokerResponse: StaticStructureSchema;
|
|
75
|
+
export declare var UpdateConfigurationRequest: StaticStructureSchema;
|
|
76
|
+
export declare var UpdateConfigurationResponse: StaticStructureSchema;
|
|
77
|
+
export declare var UpdateUserRequest: StaticStructureSchema;
|
|
78
|
+
export declare var UpdateUserResponse: StaticStructureSchema;
|
|
79
|
+
export declare var User: StaticStructureSchema;
|
|
80
|
+
export declare var UserPendingChanges: StaticStructureSchema;
|
|
81
|
+
export declare var UserSummary: StaticStructureSchema;
|
|
82
|
+
export declare var WeeklyStartTime: StaticStructureSchema;
|
|
83
|
+
export declare var __Unit: "unit";
|
|
84
|
+
export declare var MqServiceException: StaticErrorSchema;
|
|
85
|
+
export declare var __listOf__string: number;
|
|
86
|
+
export declare var __listOfActionRequired: StaticListSchema;
|
|
87
|
+
export declare var __listOfAvailabilityZone: StaticListSchema;
|
|
88
|
+
export declare var __listOfBrokerEngineType: StaticListSchema;
|
|
89
|
+
export declare var __listOfBrokerInstance: StaticListSchema;
|
|
90
|
+
export declare var __listOfBrokerInstanceOption: StaticListSchema;
|
|
91
|
+
export declare var __listOfBrokerSummary: StaticListSchema;
|
|
92
|
+
export declare var __listOfConfiguration: StaticListSchema;
|
|
93
|
+
export declare var __listOfConfigurationId: StaticListSchema;
|
|
94
|
+
export declare var __listOfConfigurationRevision: StaticListSchema;
|
|
95
|
+
export declare var __listOfDeploymentMode: number;
|
|
96
|
+
export declare var __listOfEngineVersion: StaticListSchema;
|
|
97
|
+
export declare var __listOfSanitizationWarning: StaticListSchema;
|
|
98
|
+
export declare var __listOfUser: StaticListSchema;
|
|
99
|
+
export declare var __listOfUserSummary: StaticListSchema;
|
|
100
|
+
export declare var __mapOf__string: number;
|
|
101
|
+
export declare var CreateBroker: StaticOperationSchema;
|
|
102
|
+
export declare var CreateConfiguration: StaticOperationSchema;
|
|
103
|
+
export declare var CreateTags: StaticOperationSchema;
|
|
104
|
+
export declare var CreateUser: StaticOperationSchema;
|
|
105
|
+
export declare var DeleteBroker: StaticOperationSchema;
|
|
106
|
+
export declare var DeleteConfiguration: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteTags: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteUser: StaticOperationSchema;
|
|
109
|
+
export declare var DescribeBroker: StaticOperationSchema;
|
|
110
|
+
export declare var DescribeBrokerEngineTypes: StaticOperationSchema;
|
|
111
|
+
export declare var DescribeBrokerInstanceOptions: StaticOperationSchema;
|
|
112
|
+
export declare var DescribeConfiguration: StaticOperationSchema;
|
|
113
|
+
export declare var DescribeConfigurationRevision: StaticOperationSchema;
|
|
114
|
+
export declare var DescribeUser: StaticOperationSchema;
|
|
115
|
+
export declare var ListBrokers: StaticOperationSchema;
|
|
116
|
+
export declare var ListConfigurationRevisions: StaticOperationSchema;
|
|
117
|
+
export declare var ListConfigurations: StaticOperationSchema;
|
|
118
|
+
export declare var ListTags: StaticOperationSchema;
|
|
119
|
+
export declare var ListUsers: StaticOperationSchema;
|
|
120
|
+
export declare var Promote: StaticOperationSchema;
|
|
121
|
+
export declare var RebootBroker: StaticOperationSchema;
|
|
122
|
+
export declare var UpdateBroker: StaticOperationSchema;
|
|
123
|
+
export declare var UpdateConfiguration: StaticOperationSchema;
|
|
124
|
+
export declare var UpdateUser: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mq",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mq Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.930.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mq",
|
|
@@ -20,43 +20,42 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.930.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.930.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.930.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.930.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|