@aws-sdk/client-amp 3.300.0 → 3.301.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.
Files changed (22) hide show
  1. package/dist-types/commands/CreateAlertManagerDefinitionCommand.d.ts +1 -1
  2. package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +1 -1
  3. package/dist-types/commands/CreateRuleGroupsNamespaceCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -2
  5. package/dist-types/commands/DeleteAlertManagerDefinitionCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteRuleGroupsNamespaceCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteWorkspaceCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeAlertManagerDefinitionCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeLoggingConfigurationCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeRuleGroupsNamespaceCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeWorkspaceCommand.d.ts +1 -1
  13. package/dist-types/commands/ListRuleGroupsNamespacesCommand.d.ts +1 -1
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  15. package/dist-types/commands/ListWorkspacesCommand.d.ts +1 -1
  16. package/dist-types/commands/PutAlertManagerDefinitionCommand.d.ts +1 -1
  17. package/dist-types/commands/PutRuleGroupsNamespaceCommand.d.ts +1 -1
  18. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  19. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  20. package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +1 -1
  21. package/dist-types/commands/UpdateWorkspaceAliasCommand.d.ts +1 -1
  22. package/package.json +3 -3
@@ -26,7 +26,7 @@ export interface CreateAlertManagerDefinitionCommandOutput extends CreateAlertMa
26
26
  * import { AmpClient, CreateAlertManagerDefinitionCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, CreateAlertManagerDefinitionCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // CreateAlertManagerDefinitionRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * data: "BLOB_VALUE", // required
32
32
  * clientToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
26
26
  * import { AmpClient, CreateLoggingConfigurationCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, CreateLoggingConfigurationCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // CreateLoggingConfigurationRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * logGroupArn: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE",
@@ -26,12 +26,12 @@ export interface CreateRuleGroupsNamespaceCommandOutput extends CreateRuleGroups
26
26
  * import { AmpClient, CreateRuleGroupsNamespaceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, CreateRuleGroupsNamespaceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // CreateRuleGroupsNamespaceRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * data: "BLOB_VALUE", // required
33
33
  * clientToken: "STRING_VALUE",
34
- * tags: {
34
+ * tags: { // TagMap
35
35
  * "<keys>": "STRING_VALUE",
36
36
  * },
37
37
  * };
@@ -26,10 +26,10 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
26
26
  * import { AmpClient, CreateWorkspaceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, CreateWorkspaceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // CreateWorkspaceRequest
30
30
  * alias: "STRING_VALUE",
31
31
  * clientToken: "STRING_VALUE",
32
- * tags: {
32
+ * tags: { // TagMap
33
33
  * "<keys>": "STRING_VALUE",
34
34
  * },
35
35
  * };
@@ -26,7 +26,7 @@ export interface DeleteAlertManagerDefinitionCommandOutput extends __MetadataBea
26
26
  * import { AmpClient, DeleteAlertManagerDefinitionCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, DeleteAlertManagerDefinitionCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // DeleteAlertManagerDefinitionRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * clientToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
26
26
  * import { AmpClient, DeleteLoggingConfigurationCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, DeleteLoggingConfigurationCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // DeleteLoggingConfigurationRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * clientToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface DeleteRuleGroupsNamespaceCommandOutput extends __MetadataBearer
26
26
  * import { AmpClient, DeleteRuleGroupsNamespaceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, DeleteRuleGroupsNamespaceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // DeleteRuleGroupsNamespaceRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface DeleteWorkspaceCommandOutput extends __MetadataBearer {
26
26
  * import { AmpClient, DeleteWorkspaceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, DeleteWorkspaceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // DeleteWorkspaceRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * clientToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface DescribeAlertManagerDefinitionCommandOutput extends DescribeAle
26
26
  * import { AmpClient, DescribeAlertManagerDefinitionCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, DescribeAlertManagerDefinitionCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // DescribeAlertManagerDefinitionRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeAlertManagerDefinitionCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeLoggingConfigurationCommandOutput extends DescribeLoggi
26
26
  * import { AmpClient, DescribeLoggingConfigurationCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, DescribeLoggingConfigurationCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // DescribeLoggingConfigurationRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeLoggingConfigurationCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeRuleGroupsNamespaceCommandOutput extends DescribeRuleGr
26
26
  * import { AmpClient, DescribeRuleGroupsNamespaceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, DescribeRuleGroupsNamespaceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // DescribeRuleGroupsNamespaceRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DescribeWorkspaceCommandOutput extends DescribeWorkspaceRespons
26
26
  * import { AmpClient, DescribeWorkspaceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, DescribeWorkspaceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // DescribeWorkspaceRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeWorkspaceCommand(input);
@@ -26,7 +26,7 @@ export interface ListRuleGroupsNamespacesCommandOutput extends ListRuleGroupsNam
26
26
  * import { AmpClient, ListRuleGroupsNamespacesCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, ListRuleGroupsNamespacesCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // ListRuleGroupsNamespacesRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE",
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { AmpClient, ListTagsForResourceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, ListTagsForResourceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,7 +26,7 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
26
26
  * import { AmpClient, ListWorkspacesCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, ListWorkspacesCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // ListWorkspacesRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * alias: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface PutAlertManagerDefinitionCommandOutput extends PutAlertManagerD
26
26
  * import { AmpClient, PutAlertManagerDefinitionCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, PutAlertManagerDefinitionCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // PutAlertManagerDefinitionRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * data: "BLOB_VALUE", // required
32
32
  * clientToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface PutRuleGroupsNamespaceCommandOutput extends PutRuleGroupsNamesp
26
26
  * import { AmpClient, PutRuleGroupsNamespaceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, PutRuleGroupsNamespaceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // PutRuleGroupsNamespaceRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * data: "BLOB_VALUE", // required
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { AmpClient, TagResourceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, TagResourceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { AmpClient, UntagResourceCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, UntagResourceCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeys // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,7 +26,7 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
26
26
  * import { AmpClient, UpdateLoggingConfigurationCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, UpdateLoggingConfigurationCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // UpdateLoggingConfigurationRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * logGroupArn: "STRING_VALUE", // required
32
32
  * clientToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface UpdateWorkspaceAliasCommandOutput extends __MetadataBearer {
26
26
  * import { AmpClient, UpdateWorkspaceAliasCommand } from "@aws-sdk/client-amp"; // ES Modules import
27
27
  * // const { AmpClient, UpdateWorkspaceAliasCommand } = require("@aws-sdk/client-amp"); // CommonJS import
28
28
  * const client = new AmpClient(config);
29
- * const input = {
29
+ * const input = { // UpdateWorkspaceAliasRequest
30
30
  * workspaceId: "STRING_VALUE", // required
31
31
  * alias: "STRING_VALUE",
32
32
  * clientToken: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-amp",
3
3
  "description": "AWS SDK for JavaScript Amp Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",