@aws-sdk/client-amp 3.496.0 → 3.501.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 +24 -23
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -2970,12 +2970,11 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
2970
2970
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2971
2971
|
|
|
2972
2972
|
0 && (module.exports = {
|
|
2973
|
-
AccessDeniedException,
|
|
2974
|
-
AlertManagerDefinitionStatusCode,
|
|
2975
|
-
Amp,
|
|
2976
|
-
AmpClient,
|
|
2977
2973
|
AmpServiceException,
|
|
2978
|
-
|
|
2974
|
+
__Client,
|
|
2975
|
+
AmpClient,
|
|
2976
|
+
Amp,
|
|
2977
|
+
$Command,
|
|
2979
2978
|
CreateAlertManagerDefinitionCommand,
|
|
2980
2979
|
CreateLoggingConfigurationCommand,
|
|
2981
2980
|
CreateRuleGroupsNamespaceCommand,
|
|
@@ -2991,41 +2990,43 @@ var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
|
2991
2990
|
DescribeRuleGroupsNamespaceCommand,
|
|
2992
2991
|
DescribeScraperCommand,
|
|
2993
2992
|
DescribeWorkspaceCommand,
|
|
2994
|
-
Destination,
|
|
2995
2993
|
GetDefaultScraperConfigurationCommand,
|
|
2996
|
-
InternalServerException,
|
|
2997
2994
|
ListRuleGroupsNamespacesCommand,
|
|
2998
2995
|
ListScrapersCommand,
|
|
2999
2996
|
ListTagsForResourceCommand,
|
|
3000
2997
|
ListWorkspacesCommand,
|
|
3001
|
-
LoggingConfigurationStatusCode,
|
|
3002
2998
|
PutAlertManagerDefinitionCommand,
|
|
3003
2999
|
PutRuleGroupsNamespaceCommand,
|
|
3004
|
-
ResourceNotFoundException,
|
|
3005
|
-
RuleGroupsNamespaceStatusCode,
|
|
3006
|
-
ScrapeConfiguration,
|
|
3007
|
-
ScraperStatusCode,
|
|
3008
|
-
ServiceQuotaExceededException,
|
|
3009
|
-
Source,
|
|
3010
3000
|
TagResourceCommand,
|
|
3011
|
-
ThrottlingException,
|
|
3012
3001
|
UntagResourceCommand,
|
|
3013
3002
|
UpdateLoggingConfigurationCommand,
|
|
3014
3003
|
UpdateWorkspaceAliasCommand,
|
|
3015
|
-
ValidationException,
|
|
3016
|
-
ValidationExceptionReason,
|
|
3017
|
-
WorkspaceStatusCode,
|
|
3018
|
-
__Client,
|
|
3019
3004
|
paginateListRuleGroupsNamespaces,
|
|
3020
3005
|
paginateListScrapers,
|
|
3021
3006
|
paginateListWorkspaces,
|
|
3022
3007
|
waitForScraperActive,
|
|
3023
|
-
waitForScraperDeleted,
|
|
3024
|
-
waitForWorkspaceActive,
|
|
3025
|
-
waitForWorkspaceDeleted,
|
|
3026
3008
|
waitUntilScraperActive,
|
|
3009
|
+
waitForScraperDeleted,
|
|
3027
3010
|
waitUntilScraperDeleted,
|
|
3011
|
+
waitForWorkspaceActive,
|
|
3028
3012
|
waitUntilWorkspaceActive,
|
|
3029
|
-
|
|
3013
|
+
waitForWorkspaceDeleted,
|
|
3014
|
+
waitUntilWorkspaceDeleted,
|
|
3015
|
+
AccessDeniedException,
|
|
3016
|
+
ConflictException,
|
|
3017
|
+
AlertManagerDefinitionStatusCode,
|
|
3018
|
+
InternalServerException,
|
|
3019
|
+
ResourceNotFoundException,
|
|
3020
|
+
ServiceQuotaExceededException,
|
|
3021
|
+
ThrottlingException,
|
|
3022
|
+
ValidationExceptionReason,
|
|
3023
|
+
ValidationException,
|
|
3024
|
+
Destination,
|
|
3025
|
+
ScrapeConfiguration,
|
|
3026
|
+
Source,
|
|
3027
|
+
ScraperStatusCode,
|
|
3028
|
+
WorkspaceStatusCode,
|
|
3029
|
+
LoggingConfigurationStatusCode,
|
|
3030
|
+
RuleGroupsNamespaceStatusCode
|
|
3030
3031
|
});
|
|
3031
3032
|
|
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.
|
|
4
|
+
"version": "3.501.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-amp",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.501.0",
|
|
24
24
|
"@aws-sdk/core": "3.496.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.501.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.496.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.496.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.496.0",
|