-
Notifications
You must be signed in to change notification settings - Fork 581
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awstools
committed
Nov 27, 2024
1 parent
a36eab2
commit 142eeaa
Showing
17 changed files
with
294 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
# [3.702.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.701.0...v3.702.0) (2024-11-27) | ||
|
||
|
||
### Features | ||
|
||
* **client-observabilityadmin:** Amazon CloudWatch Observability Admin adds the ability to audit telemetry configuration for AWS resources in customers AWS Accounts and Organizations. The release introduces new APIs to turn on/off the new experience, which supports discovering supported AWS resources and their state of telemetry. ([3800d89](https://github.com/aws/aws-sdk-js-v3/commit/3800d89720fa4ce348ee2799a5d5583e305b3499)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,40 @@ export interface DescribeQAppPermissionsCommandOutput extends DescribeQAppPermis | |
* <p>Base exception class for all service exceptions from QApps service.</p> | ||
* | ||
* @public | ||
* @example Describe permissions for the app | ||
* ```javascript | ||
* // | ||
* const input = { | ||
* "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", | ||
* "instanceId": "01793661-ad73-4c7d-8eaa-1c95a10151c2" | ||
* }; | ||
* const command = new DescribeQAppPermissionsCommand(input); | ||
* const response = await client.send(command); | ||
* /* response == | ||
* { | ||
* "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", | ||
* "permissions": [ | ||
* { | ||
* "action": "write", | ||
* "principal": { | ||
* "email": "[email protected]", | ||
* "userId": "f8f15330-b091-708b-d46e-adb0d914b699" | ||
* } | ||
* }, | ||
* { | ||
* "action": "read", | ||
* "principal": { | ||
* "email": "[email protected]", | ||
* "userId": "c81133d0-10d1-70eb-aaa3-d427ea6fc0f3" | ||
* } | ||
* } | ||
* ], | ||
* "resourceArn": "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" | ||
* } | ||
* *\/ | ||
* // example id: example-1 | ||
* ``` | ||
* | ||
*/ | ||
export class DescribeQAppPermissionsCommand extends $Command | ||
.classBuilder< | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,6 +99,79 @@ export interface UpdateQAppPermissionsCommandOutput extends UpdateQAppPermission | |
* <p>Base exception class for all service exceptions from QApps service.</p> | ||
* | ||
* @public | ||
* @example Grant permissions for the app | ||
* ```javascript | ||
* // | ||
* const input = { | ||
* "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", | ||
* "grantPermissions": [ | ||
* { | ||
* "action": "read", | ||
* "principal": "[email protected]" | ||
* } | ||
* ], | ||
* "instanceId": "01793661-ad73-4c7d-8eaa-1c95a10151c2" | ||
* }; | ||
* const command = new UpdateQAppPermissionsCommand(input); | ||
* const response = await client.send(command); | ||
* /* response == | ||
* { | ||
* "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", | ||
* "permissions": [ | ||
* { | ||
* "action": "write", | ||
* "principal": { | ||
* "email": "[email protected]", | ||
* "userId": "f8f15330-b091-708b-d46e-adb0d914b699" | ||
* } | ||
* }, | ||
* { | ||
* "action": "read", | ||
* "principal": { | ||
* "email": "[email protected]", | ||
* "userId": "c81133d0-10d1-70eb-aaa3-d427ea6fc0f3" | ||
* } | ||
* } | ||
* ], | ||
* "resourceArn": "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" | ||
* } | ||
* *\/ | ||
* // example id: example-1 | ||
* ``` | ||
* | ||
* @example Revoke permissions for the app | ||
* ```javascript | ||
* // | ||
* const input = { | ||
* "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", | ||
* "instanceId": "01793661-ad73-4c7d-8eaa-1c95a10151c2", | ||
* "revokePermissions": [ | ||
* { | ||
* "action": "read", | ||
* "principal": "[email protected]" | ||
* } | ||
* ] | ||
* }; | ||
* const command = new UpdateQAppPermissionsCommand(input); | ||
* const response = await client.send(command); | ||
* /* response == | ||
* { | ||
* "appId": "fe0acf86-49e5-4def-a0c2-40ce0cafee14", | ||
* "permissions": [ | ||
* { | ||
* "action": "write", | ||
* "principal": { | ||
* "email": "[email protected]", | ||
* "userId": "f8f15330-b091-708b-d46e-adb0d914b699" | ||
* } | ||
* } | ||
* ], | ||
* "resourceArn": "arn:aws:qapps:us-west-2:111111111111:application/01793661-ad73-4c7d-8eaa-1c95a10151c2/qapp/fe0acf86-49e5-4def-a0c2-40ce0cafee14" | ||
* } | ||
* *\/ | ||
* // example id: example-2 | ||
* ``` | ||
* | ||
*/ | ||
export class UpdateQAppPermissionsCommand extends $Command | ||
.classBuilder< | ||
|
Oops, something went wrong.