@aws-sdk/client-amp 3.428.0 → 3.429.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.
|
@@ -98,7 +98,7 @@ export interface AlertManagerDefinitionStatus {
|
|
|
98
98
|
* @public
|
|
99
99
|
* Status code of this definition.
|
|
100
100
|
*/
|
|
101
|
-
statusCode: AlertManagerDefinitionStatusCode |
|
|
101
|
+
statusCode: AlertManagerDefinitionStatusCode | undefined;
|
|
102
102
|
/**
|
|
103
103
|
* @public
|
|
104
104
|
* The reason for failure if any.
|
|
@@ -257,7 +257,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
257
257
|
* @public
|
|
258
258
|
* Reason the request failed validation.
|
|
259
259
|
*/
|
|
260
|
-
reason: ValidationExceptionReason |
|
|
260
|
+
reason: ValidationExceptionReason | undefined;
|
|
261
261
|
/**
|
|
262
262
|
* @public
|
|
263
263
|
* The field that caused the error, if applicable. If more than one field caused the error, pick one and elaborate in the message.
|
|
@@ -484,7 +484,7 @@ export interface WorkspaceStatus {
|
|
|
484
484
|
* @public
|
|
485
485
|
* Status code of this workspace.
|
|
486
486
|
*/
|
|
487
|
-
statusCode: WorkspaceStatusCode |
|
|
487
|
+
statusCode: WorkspaceStatusCode | undefined;
|
|
488
488
|
}
|
|
489
489
|
/**
|
|
490
490
|
* @public
|
|
@@ -728,7 +728,7 @@ export interface LoggingConfigurationStatus {
|
|
|
728
728
|
* @public
|
|
729
729
|
* Status code of the logging configuration.
|
|
730
730
|
*/
|
|
731
|
-
statusCode: LoggingConfigurationStatusCode |
|
|
731
|
+
statusCode: LoggingConfigurationStatusCode | undefined;
|
|
732
732
|
/**
|
|
733
733
|
* @public
|
|
734
734
|
* The reason for failure if any.
|
|
@@ -921,7 +921,7 @@ export interface RuleGroupsNamespaceStatus {
|
|
|
921
921
|
* @public
|
|
922
922
|
* Status code of this namespace.
|
|
923
923
|
*/
|
|
924
|
-
statusCode: RuleGroupsNamespaceStatusCode |
|
|
924
|
+
statusCode: RuleGroupsNamespaceStatusCode | undefined;
|
|
925
925
|
/**
|
|
926
926
|
* @public
|
|
927
927
|
* The reason for failure if any.
|
|
@@ -30,7 +30,7 @@ export declare const AlertManagerDefinitionStatusCode: {
|
|
|
30
30
|
export type AlertManagerDefinitionStatusCode =
|
|
31
31
|
(typeof AlertManagerDefinitionStatusCode)[keyof typeof AlertManagerDefinitionStatusCode];
|
|
32
32
|
export interface AlertManagerDefinitionStatus {
|
|
33
|
-
statusCode: AlertManagerDefinitionStatusCode |
|
|
33
|
+
statusCode: AlertManagerDefinitionStatusCode | undefined;
|
|
34
34
|
statusReason?: string;
|
|
35
35
|
}
|
|
36
36
|
export interface CreateAlertManagerDefinitionResponse {
|
|
@@ -91,7 +91,7 @@ export type ValidationExceptionReason =
|
|
|
91
91
|
export declare class ValidationException extends __BaseException {
|
|
92
92
|
readonly name: "ValidationException";
|
|
93
93
|
readonly $fault: "client";
|
|
94
|
-
reason: ValidationExceptionReason |
|
|
94
|
+
reason: ValidationExceptionReason | undefined;
|
|
95
95
|
fieldList?: ValidationExceptionField[];
|
|
96
96
|
constructor(
|
|
97
97
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
@@ -152,7 +152,7 @@ export declare const WorkspaceStatusCode: {
|
|
|
152
152
|
export type WorkspaceStatusCode =
|
|
153
153
|
(typeof WorkspaceStatusCode)[keyof typeof WorkspaceStatusCode];
|
|
154
154
|
export interface WorkspaceStatus {
|
|
155
|
-
statusCode: WorkspaceStatusCode |
|
|
155
|
+
statusCode: WorkspaceStatusCode | undefined;
|
|
156
156
|
}
|
|
157
157
|
export interface CreateWorkspaceResponse {
|
|
158
158
|
workspaceId: string | undefined;
|
|
@@ -212,7 +212,7 @@ export declare const LoggingConfigurationStatusCode: {
|
|
|
212
212
|
export type LoggingConfigurationStatusCode =
|
|
213
213
|
(typeof LoggingConfigurationStatusCode)[keyof typeof LoggingConfigurationStatusCode];
|
|
214
214
|
export interface LoggingConfigurationStatus {
|
|
215
|
-
statusCode: LoggingConfigurationStatusCode |
|
|
215
|
+
statusCode: LoggingConfigurationStatusCode | undefined;
|
|
216
216
|
statusReason?: string;
|
|
217
217
|
}
|
|
218
218
|
export interface CreateLoggingConfigurationResponse {
|
|
@@ -261,7 +261,7 @@ export declare const RuleGroupsNamespaceStatusCode: {
|
|
|
261
261
|
export type RuleGroupsNamespaceStatusCode =
|
|
262
262
|
(typeof RuleGroupsNamespaceStatusCode)[keyof typeof RuleGroupsNamespaceStatusCode];
|
|
263
263
|
export interface RuleGroupsNamespaceStatus {
|
|
264
|
-
statusCode: RuleGroupsNamespaceStatusCode |
|
|
264
|
+
statusCode: RuleGroupsNamespaceStatusCode | undefined;
|
|
265
265
|
statusReason?: string;
|
|
266
266
|
}
|
|
267
267
|
export interface CreateRuleGroupsNamespaceResponse {
|
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.429.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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|