@aws-sdk/client-qbusiness 3.687.0 → 3.691.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
@@ -1632,6 +1632,7 @@ var se_PutGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
1632
1632
  dataSourceId: [],
1633
1633
  groupMembers: (_) => (0, import_smithy_client._json)(_),
1634
1634
  groupName: [],
1635
+ roleArn: [],
1635
1636
  type: []
1636
1637
  })
1637
1638
  );
@@ -634,6 +634,7 @@ export const se_PutGroupCommand = async (input, context) => {
634
634
  dataSourceId: [],
635
635
  groupMembers: (_) => _json(_),
636
636
  groupName: [],
637
+ roleArn: [],
637
638
  type: [],
638
639
  }));
639
640
  b.m("PUT").h(headers).b(body);
@@ -32,7 +32,16 @@ declare const CreateApplicationCommand_base: {
32
32
  * <p>There are new tiers for Amazon Q Business. Not all features in Amazon Q Business Pro are
33
33
  * also available in Amazon Q Business Lite. For information on what's included in
34
34
  * Amazon Q Business Lite and what's included in Amazon Q Business Pro, see <a href="https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/tiers.html#user-sub-tiers">Amazon Q Business tiers</a>. You must use the Amazon Q Business console to assign
35
- * subscription tiers to users.</p>
35
+ * subscription tiers to users.
36
+ * </p>
37
+ * <p>
38
+ * A Amazon Q Apps service linked role will be created if it's absent in the
39
+ * Amazon Web Services account when the QAppsConfiguration is enabled in the request.
40
+ * For more information, see
41
+ * <a href="https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles-qapps.html">
42
+ * Using service-linked roles for Q Apps
43
+ * </a>
44
+ * </p>
36
45
  * </note>
37
46
  * @example
38
47
  * Use a bare-bones client and the command you need to make an API call.
@@ -59,7 +59,12 @@ declare const PutGroupCommand_base: {
59
59
  * type: "INDEX" || "DATASOURCE",
60
60
  * },
61
61
  * ],
62
+ * s3PathForGroupMembers: { // S3
63
+ * bucket: "STRING_VALUE", // required
64
+ * key: "STRING_VALUE", // required
65
+ * },
62
66
  * },
67
+ * roleArn: "STRING_VALUE",
63
68
  * };
64
69
  * const command = new PutGroupCommand(input);
65
70
  * const response = await client.send(command);
@@ -28,6 +28,15 @@ declare const UpdateApplicationCommand_base: {
28
28
  };
29
29
  /**
30
30
  * <p>Updates an existing Amazon Q Business application.</p>
31
+ * <note>
32
+ * <p>
33
+ * A Amazon Q Apps service-linked role will be created if it's absent in the Amazon Web Services account
34
+ * when the QAppsConfiguration is enabled in the request.
35
+ * For more information, see <a href="https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/using-service-linked-roles-qapps.html">
36
+ * Using service-linked roles for Q Apps
37
+ * </a>
38
+ * </p>
39
+ * </note>
31
40
  * @example
32
41
  * Use a bare-bones client and the command you need to make an API call.
33
42
  * ```javascript