@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 +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +10 -1
- package/dist-types/commands/PutGroupCommand.d.ts +5 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +500 -487
- package/dist-types/ts3.4/models/models_0.d.ts +499 -487
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -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
|
|
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
|