@aws-sdk/client-qbusiness 3.687.0 → 3.688.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 +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +1 -1
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
|
|
@@ -5998,6 +5998,12 @@ export interface GroupMembers {
|
|
|
5998
5998
|
* @public
|
|
5999
5999
|
*/
|
|
6000
6000
|
memberUsers?: MemberUser[];
|
|
6001
|
+
/**
|
|
6002
|
+
* <p>Information required for Amazon Q Business to find a specific file in an Amazon S3
|
|
6003
|
+
* bucket.</p>
|
|
6004
|
+
* @public
|
|
6005
|
+
*/
|
|
6006
|
+
s3PathForGroupMembers?: S3;
|
|
6001
6007
|
}
|
|
6002
6008
|
/**
|
|
6003
6009
|
* @public
|
|
@@ -6041,6 +6047,13 @@ export interface PutGroupRequest {
|
|
|
6041
6047
|
* @public
|
|
6042
6048
|
*/
|
|
6043
6049
|
groupMembers: GroupMembers | undefined;
|
|
6050
|
+
/**
|
|
6051
|
+
* <p>The Amazon Resource Name (ARN) of an IAM role that has access to the S3 file that contains
|
|
6052
|
+
* your list of users that belong to a group.The Amazon Resource Name (ARN) of an IAM role that
|
|
6053
|
+
* has access to the S3 file that contains your list of users that belong to a group.</p>
|
|
6054
|
+
* @public
|
|
6055
|
+
*/
|
|
6056
|
+
roleArn?: string;
|
|
6044
6057
|
}
|
|
6045
6058
|
/**
|
|
6046
6059
|
* @public
|
|
@@ -1764,6 +1764,7 @@ export interface MemberUser {
|
|
|
1764
1764
|
export interface GroupMembers {
|
|
1765
1765
|
memberGroups?: MemberGroup[];
|
|
1766
1766
|
memberUsers?: MemberUser[];
|
|
1767
|
+
s3PathForGroupMembers?: S3;
|
|
1767
1768
|
}
|
|
1768
1769
|
export interface PutGroupRequest {
|
|
1769
1770
|
applicationId: string | undefined;
|
|
@@ -1772,6 +1773,7 @@ export interface PutGroupRequest {
|
|
|
1772
1773
|
dataSourceId?: string;
|
|
1773
1774
|
type: MembershipType | undefined;
|
|
1774
1775
|
groupMembers: GroupMembers | undefined;
|
|
1776
|
+
roleArn?: string;
|
|
1775
1777
|
}
|
|
1776
1778
|
export interface PutGroupResponse {}
|
|
1777
1779
|
export interface StartDataSourceSyncJobRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-qbusiness",
|
|
3
3
|
"description": "AWS SDK for JavaScript Qbusiness Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.688.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-qbusiness",
|