@aws-sdk/client-mq 3.879.0 → 3.882.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 CHANGED
@@ -263,6 +263,7 @@ var BrokerState = {
263
263
  RUNNING: "RUNNING"
264
264
  };
265
265
  var AuthenticationStrategy = {
266
+ CONFIG_MANAGED: "CONFIG_MANAGED",
266
267
  LDAP: "LDAP",
267
268
  SIMPLE: "SIMPLE"
268
269
  };
@@ -22,6 +22,7 @@ export const BrokerState = {
22
22
  RUNNING: "RUNNING",
23
23
  };
24
24
  export const AuthenticationStrategy = {
25
+ CONFIG_MANAGED: "CONFIG_MANAGED",
25
26
  LDAP: "LDAP",
26
27
  SIMPLE: "SIMPLE",
27
28
  };
@@ -35,7 +35,7 @@ declare const CreateBrokerCommand_base: {
35
35
  * // const { MqClient, CreateBrokerCommand } = require("@aws-sdk/client-mq"); // CommonJS import
36
36
  * const client = new MqClient(config);
37
37
  * const input = { // CreateBrokerRequest
38
- * AuthenticationStrategy: "SIMPLE" || "LDAP",
38
+ * AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED",
39
39
  * AutoMinorVersionUpgrade: true || false,
40
40
  * BrokerName: "STRING_VALUE", // required
41
41
  * Configuration: { // ConfigurationId
@@ -86,7 +86,7 @@ declare const CreateBrokerCommand_base: {
86
86
  * Tags: { // __mapOf__string
87
87
  * "<keys>": "STRING_VALUE",
88
88
  * },
89
- * Users: [ // __listOfUser // required
89
+ * Users: [ // __listOfUser
90
90
  * { // User
91
91
  * ConsoleAccess: true || false,
92
92
  * Groups: "<__listOf__string>",
@@ -35,7 +35,7 @@ declare const CreateConfigurationCommand_base: {
35
35
  * // const { MqClient, CreateConfigurationCommand } = require("@aws-sdk/client-mq"); // CommonJS import
36
36
  * const client = new MqClient(config);
37
37
  * const input = { // CreateConfigurationRequest
38
- * AuthenticationStrategy: "SIMPLE" || "LDAP",
38
+ * AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED",
39
39
  * EngineType: "ACTIVEMQ" || "RABBITMQ", // required
40
40
  * EngineVersion: "STRING_VALUE",
41
41
  * Name: "STRING_VALUE", // required
@@ -47,7 +47,7 @@ declare const CreateConfigurationCommand_base: {
47
47
  * const response = await client.send(command);
48
48
  * // { // CreateConfigurationResponse
49
49
  * // Arn: "STRING_VALUE",
50
- * // AuthenticationStrategy: "SIMPLE" || "LDAP",
50
+ * // AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED",
51
51
  * // Created: new Date("TIMESTAMP"),
52
52
  * // Id: "STRING_VALUE",
53
53
  * // LatestRevision: { // ConfigurationRevision
@@ -46,7 +46,7 @@ declare const DescribeBrokerCommand_base: {
46
46
  * // ActionRequiredInfo: "STRING_VALUE",
47
47
  * // },
48
48
  * // ],
49
- * // AuthenticationStrategy: "SIMPLE" || "LDAP",
49
+ * // AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED",
50
50
  * // AutoMinorVersionUpgrade: true || false,
51
51
  * // BrokerArn: "STRING_VALUE",
52
52
  * // BrokerId: "STRING_VALUE",
@@ -115,7 +115,7 @@ declare const DescribeBrokerCommand_base: {
115
115
  * // TimeOfDay: "STRING_VALUE", // required
116
116
  * // TimeZone: "STRING_VALUE",
117
117
  * // },
118
- * // PendingAuthenticationStrategy: "SIMPLE" || "LDAP",
118
+ * // PendingAuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED",
119
119
  * // PendingEngineVersion: "STRING_VALUE",
120
120
  * // PendingHostInstanceType: "STRING_VALUE",
121
121
  * // PendingLdapServerMetadata: {
@@ -41,7 +41,7 @@ declare const DescribeConfigurationCommand_base: {
41
41
  * const response = await client.send(command);
42
42
  * // { // DescribeConfigurationResponse
43
43
  * // Arn: "STRING_VALUE",
44
- * // AuthenticationStrategy: "SIMPLE" || "LDAP",
44
+ * // AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED",
45
45
  * // Created: new Date("TIMESTAMP"),
46
46
  * // Description: "STRING_VALUE",
47
47
  * // EngineType: "ACTIVEMQ" || "RABBITMQ",
@@ -44,7 +44,7 @@ declare const ListConfigurationsCommand_base: {
44
44
  * // Configurations: [ // __listOfConfiguration
45
45
  * // { // Configuration
46
46
  * // Arn: "STRING_VALUE", // required
47
- * // AuthenticationStrategy: "SIMPLE" || "LDAP", // required
47
+ * // AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED", // required
48
48
  * // Created: new Date("TIMESTAMP"), // required
49
49
  * // Description: "STRING_VALUE", // required
50
50
  * // EngineType: "ACTIVEMQ" || "RABBITMQ", // required
@@ -35,7 +35,7 @@ declare const UpdateBrokerCommand_base: {
35
35
  * // const { MqClient, UpdateBrokerCommand } = require("@aws-sdk/client-mq"); // CommonJS import
36
36
  * const client = new MqClient(config);
37
37
  * const input = { // UpdateBrokerRequest
38
- * AuthenticationStrategy: "SIMPLE" || "LDAP",
38
+ * AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED",
39
39
  * AutoMinorVersionUpgrade: true || false,
40
40
  * BrokerId: "STRING_VALUE", // required
41
41
  * Configuration: { // ConfigurationId
@@ -76,7 +76,7 @@ declare const UpdateBrokerCommand_base: {
76
76
  * const command = new UpdateBrokerCommand(input);
77
77
  * const response = await client.send(command);
78
78
  * // { // UpdateBrokerResponse
79
- * // AuthenticationStrategy: "SIMPLE" || "LDAP",
79
+ * // AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED",
80
80
  * // AutoMinorVersionUpgrade: true || false,
81
81
  * // BrokerId: "STRING_VALUE",
82
82
  * // Configuration: { // ConfigurationId
@@ -216,6 +216,7 @@ export interface BrokerSummary {
216
216
  * @enum
217
217
  */
218
218
  export declare const AuthenticationStrategy: {
219
+ readonly CONFIG_MANAGED: "CONFIG_MANAGED";
219
220
  readonly LDAP: "LDAP";
220
221
  readonly SIMPLE: "SIMPLE";
221
222
  };
@@ -719,10 +720,10 @@ export interface CreateBrokerRequest {
719
720
  */
720
721
  Tags?: Record<string, string> | undefined;
721
722
  /**
722
- * <p>The list of broker users (persons or applications) who can access queues and topics. For Amazon MQ for RabbitMQ brokers, one and only one administrative user is accepted and created when a broker is first provisioned. All subsequent broker users are created by making RabbitMQ API calls directly to brokers or via the RabbitMQ web console.</p>
723
+ * <p>The list of broker users (persons or applications) who can access queues and topics. For Amazon MQ for RabbitMQ brokers, an administrative user is required if using simple authentication and authorization. For brokers using OAuth2, this user is optional. When provided, one and only one administrative user is accepted and created when a broker is first provisioned. All subsequent broker users are created by making RabbitMQ API calls directly to brokers or via the RabbitMQ web console.</p>
723
724
  * @public
724
725
  */
725
- Users: User[] | undefined;
726
+ Users?: User[] | undefined;
726
727
  /**
727
728
  * <p>Defines whether this broker is a part of a data replication pair.</p>
728
729
  * @public
@@ -66,6 +66,7 @@ export interface BrokerSummary {
66
66
  HostInstanceType?: string | undefined;
67
67
  }
68
68
  export declare const AuthenticationStrategy: {
69
+ readonly CONFIG_MANAGED: "CONFIG_MANAGED";
69
70
  readonly LDAP: "LDAP";
70
71
  readonly SIMPLE: "SIMPLE";
71
72
  };
@@ -203,7 +204,7 @@ export interface CreateBrokerRequest {
203
204
  StorageType?: BrokerStorageType | undefined;
204
205
  SubnetIds?: string[] | undefined;
205
206
  Tags?: Record<string, string> | undefined;
206
- Users: User[] | undefined;
207
+ Users?: User[] | undefined;
207
208
  DataReplicationMode?: DataReplicationMode | undefined;
208
209
  DataReplicationPrimaryBrokerArn?: string | undefined;
209
210
  }
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.879.0",
4
+ "version": "3.882.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,38 +20,38 @@
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.879.0",
24
- "@aws-sdk/credential-provider-node": "3.879.0",
23
+ "@aws-sdk/core": "3.882.0",
24
+ "@aws-sdk/credential-provider-node": "3.882.0",
25
25
  "@aws-sdk/middleware-host-header": "3.873.0",
26
26
  "@aws-sdk/middleware-logger": "3.876.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.873.0",
28
- "@aws-sdk/middleware-user-agent": "3.879.0",
28
+ "@aws-sdk/middleware-user-agent": "3.882.0",
29
29
  "@aws-sdk/region-config-resolver": "3.873.0",
30
30
  "@aws-sdk/types": "3.862.0",
31
31
  "@aws-sdk/util-endpoints": "3.879.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.873.0",
33
- "@aws-sdk/util-user-agent-node": "3.879.0",
33
+ "@aws-sdk/util-user-agent-node": "3.882.0",
34
34
  "@smithy/config-resolver": "^4.1.5",
35
- "@smithy/core": "^3.9.0",
35
+ "@smithy/core": "^3.9.2",
36
36
  "@smithy/fetch-http-handler": "^5.1.1",
37
37
  "@smithy/hash-node": "^4.0.5",
38
38
  "@smithy/invalid-dependency": "^4.0.5",
39
39
  "@smithy/middleware-content-length": "^4.0.5",
40
- "@smithy/middleware-endpoint": "^4.1.19",
41
- "@smithy/middleware-retry": "^4.1.20",
40
+ "@smithy/middleware-endpoint": "^4.1.21",
41
+ "@smithy/middleware-retry": "^4.1.22",
42
42
  "@smithy/middleware-serde": "^4.0.9",
43
43
  "@smithy/middleware-stack": "^4.0.5",
44
44
  "@smithy/node-config-provider": "^4.1.4",
45
45
  "@smithy/node-http-handler": "^4.1.1",
46
46
  "@smithy/protocol-http": "^5.1.3",
47
- "@smithy/smithy-client": "^4.5.0",
47
+ "@smithy/smithy-client": "^4.5.2",
48
48
  "@smithy/types": "^4.3.2",
49
49
  "@smithy/url-parser": "^4.0.5",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.27",
54
- "@smithy/util-defaults-mode-node": "^4.0.27",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.29",
54
+ "@smithy/util-defaults-mode-node": "^4.0.29",
55
55
  "@smithy/util-endpoints": "^3.0.7",
56
56
  "@smithy/util-middleware": "^4.0.5",
57
57
  "@smithy/util-retry": "^4.0.7",