@aws-sdk/client-aiops 3.933.0 → 3.935.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 CHANGED
@@ -165,10 +165,6 @@ let InternalServerException$1 = class InternalServerException extends AIOpsServi
165
165
  Object.setPrototypeOf(this, InternalServerException.prototype);
166
166
  }
167
167
  };
168
- const EncryptionConfigurationType = {
169
- AWS_OWNED_KEY: "AWS_OWNED_KEY",
170
- CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",
171
- };
172
168
  let ResourceNotFoundException$1 = class ResourceNotFoundException extends AIOpsServiceException$1 {
173
169
  name = "ResourceNotFoundException";
174
170
  $fault = "client";
@@ -786,6 +782,11 @@ smithyClient.createAggregatedClient(commands, AIOps);
786
782
 
787
783
  const paginateListInvestigationGroups = core.createPaginator(AIOpsClient, ListInvestigationGroupsCommand, "nextToken", "nextToken", "maxResults");
788
784
 
785
+ const EncryptionConfigurationType = {
786
+ AWS_OWNED_KEY: "AWS_OWNED_KEY",
787
+ CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",
788
+ };
789
+
789
790
  Object.defineProperty(exports, "$Command", {
790
791
  enumerable: true,
791
792
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./AIOpsClient";
2
2
  export * from "./AIOps";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { AIOpsServiceException } from "./models/AIOpsServiceException";
@@ -0,0 +1,4 @@
1
+ export const EncryptionConfigurationType = {
2
+ AWS_OWNED_KEY: "AWS_OWNED_KEY",
3
+ CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",
4
+ };
@@ -0,0 +1,105 @@
1
+ import { AIOpsServiceException as __BaseException } from "./AIOpsServiceException";
2
+ export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ constructor(opts) {
6
+ super({
7
+ name: "AccessDeniedException",
8
+ $fault: "client",
9
+ ...opts,
10
+ });
11
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
+ }
13
+ }
14
+ export class ConflictException extends __BaseException {
15
+ name = "ConflictException";
16
+ $fault = "client";
17
+ constructor(opts) {
18
+ super({
19
+ name: "ConflictException",
20
+ $fault: "client",
21
+ ...opts,
22
+ });
23
+ Object.setPrototypeOf(this, ConflictException.prototype);
24
+ }
25
+ }
26
+ export class ForbiddenException extends __BaseException {
27
+ name = "ForbiddenException";
28
+ $fault = "client";
29
+ constructor(opts) {
30
+ super({
31
+ name: "ForbiddenException",
32
+ $fault: "client",
33
+ ...opts,
34
+ });
35
+ Object.setPrototypeOf(this, ForbiddenException.prototype);
36
+ }
37
+ }
38
+ export class InternalServerException extends __BaseException {
39
+ name = "InternalServerException";
40
+ $fault = "server";
41
+ constructor(opts) {
42
+ super({
43
+ name: "InternalServerException",
44
+ $fault: "server",
45
+ ...opts,
46
+ });
47
+ Object.setPrototypeOf(this, InternalServerException.prototype);
48
+ }
49
+ }
50
+ export class ResourceNotFoundException extends __BaseException {
51
+ name = "ResourceNotFoundException";
52
+ $fault = "client";
53
+ constructor(opts) {
54
+ super({
55
+ name: "ResourceNotFoundException",
56
+ $fault: "client",
57
+ ...opts,
58
+ });
59
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
60
+ }
61
+ }
62
+ export class ServiceQuotaExceededException extends __BaseException {
63
+ name = "ServiceQuotaExceededException";
64
+ $fault = "client";
65
+ resourceId;
66
+ resourceType;
67
+ serviceCode;
68
+ quotaCode;
69
+ constructor(opts) {
70
+ super({
71
+ name: "ServiceQuotaExceededException",
72
+ $fault: "client",
73
+ ...opts,
74
+ });
75
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
76
+ this.resourceId = opts.resourceId;
77
+ this.resourceType = opts.resourceType;
78
+ this.serviceCode = opts.serviceCode;
79
+ this.quotaCode = opts.quotaCode;
80
+ }
81
+ }
82
+ export class ThrottlingException extends __BaseException {
83
+ name = "ThrottlingException";
84
+ $fault = "client";
85
+ constructor(opts) {
86
+ super({
87
+ name: "ThrottlingException",
88
+ $fault: "client",
89
+ ...opts,
90
+ });
91
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
92
+ }
93
+ }
94
+ export class ValidationException extends __BaseException {
95
+ name = "ValidationException";
96
+ $fault = "client";
97
+ constructor(opts) {
98
+ super({
99
+ name: "ValidationException",
100
+ $fault: "client",
101
+ ...opts,
102
+ });
103
+ Object.setPrototypeOf(this, ValidationException.prototype);
104
+ }
105
+ }
@@ -1,109 +1 @@
1
- import { AIOpsServiceException as __BaseException } from "./AIOpsServiceException";
2
- export class AccessDeniedException extends __BaseException {
3
- name = "AccessDeniedException";
4
- $fault = "client";
5
- constructor(opts) {
6
- super({
7
- name: "AccessDeniedException",
8
- $fault: "client",
9
- ...opts,
10
- });
11
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
- }
13
- }
14
- export class ConflictException extends __BaseException {
15
- name = "ConflictException";
16
- $fault = "client";
17
- constructor(opts) {
18
- super({
19
- name: "ConflictException",
20
- $fault: "client",
21
- ...opts,
22
- });
23
- Object.setPrototypeOf(this, ConflictException.prototype);
24
- }
25
- }
26
- export class ForbiddenException extends __BaseException {
27
- name = "ForbiddenException";
28
- $fault = "client";
29
- constructor(opts) {
30
- super({
31
- name: "ForbiddenException",
32
- $fault: "client",
33
- ...opts,
34
- });
35
- Object.setPrototypeOf(this, ForbiddenException.prototype);
36
- }
37
- }
38
- export class InternalServerException extends __BaseException {
39
- name = "InternalServerException";
40
- $fault = "server";
41
- constructor(opts) {
42
- super({
43
- name: "InternalServerException",
44
- $fault: "server",
45
- ...opts,
46
- });
47
- Object.setPrototypeOf(this, InternalServerException.prototype);
48
- }
49
- }
50
- export const EncryptionConfigurationType = {
51
- AWS_OWNED_KEY: "AWS_OWNED_KEY",
52
- CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",
53
- };
54
- export class ResourceNotFoundException extends __BaseException {
55
- name = "ResourceNotFoundException";
56
- $fault = "client";
57
- constructor(opts) {
58
- super({
59
- name: "ResourceNotFoundException",
60
- $fault: "client",
61
- ...opts,
62
- });
63
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
64
- }
65
- }
66
- export class ServiceQuotaExceededException extends __BaseException {
67
- name = "ServiceQuotaExceededException";
68
- $fault = "client";
69
- resourceId;
70
- resourceType;
71
- serviceCode;
72
- quotaCode;
73
- constructor(opts) {
74
- super({
75
- name: "ServiceQuotaExceededException",
76
- $fault: "client",
77
- ...opts,
78
- });
79
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
80
- this.resourceId = opts.resourceId;
81
- this.resourceType = opts.resourceType;
82
- this.serviceCode = opts.serviceCode;
83
- this.quotaCode = opts.quotaCode;
84
- }
85
- }
86
- export class ThrottlingException extends __BaseException {
87
- name = "ThrottlingException";
88
- $fault = "client";
89
- constructor(opts) {
90
- super({
91
- name: "ThrottlingException",
92
- $fault: "client",
93
- ...opts,
94
- });
95
- Object.setPrototypeOf(this, ThrottlingException.prototype);
96
- }
97
- }
98
- export class ValidationException extends __BaseException {
99
- name = "ValidationException";
100
- $fault = "client";
101
- constructor(opts) {
102
- super({
103
- name: "ValidationException",
104
- $fault: "client",
105
- ...opts,
106
- });
107
- Object.setPrototypeOf(this, ValidationException.prototype);
108
- }
109
- }
1
+ export {};
@@ -85,7 +85,7 @@ const _ty = "type";
85
85
  const n0 = "com.amazonaws.aiops";
86
86
  import { TypeRegistry } from "@smithy/core/schema";
87
87
  import { AIOpsServiceException as __AIOpsServiceException } from "../models/AIOpsServiceException";
88
- import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, ForbiddenException as __ForbiddenException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
88
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, ForbiddenException as __ForbiddenException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
89
89
  export var SensitiveStringWithLengthLimits = [0, n0, _SSWLL, 8, 0];
90
90
  export var AccessDeniedException = [
91
91
  -3,
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { AIOpsExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
12
  export * from "./pagination";
13
- export * from "./models";
13
+ export * from "./models/enums";
14
+ export * from "./models/errors";
15
+ export type * from "./models/models_0";
14
16
  export { AIOpsServiceException } from "./models/AIOpsServiceException";
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const EncryptionConfigurationType: {
6
+ readonly AWS_OWNED_KEY: "AWS_OWNED_KEY";
7
+ readonly CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type EncryptionConfigurationType = (typeof EncryptionConfigurationType)[keyof typeof EncryptionConfigurationType];
@@ -0,0 +1,118 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AIOpsServiceException as __BaseException } from "./AIOpsServiceException";
3
+ /**
4
+ * <p>You don't have sufficient permissions to perform this action.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>This operation couldn't be completed because of a conflict in resource states.</p>
17
+ * @public
18
+ */
19
+ export declare class ConflictException extends __BaseException {
20
+ readonly name: "ConflictException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>Access id denied for this operation, or this operation is not valid for the specified resource.</p>
29
+ * @public
30
+ */
31
+ export declare class ForbiddenException extends __BaseException {
32
+ readonly name: "ForbiddenException";
33
+ readonly $fault: "client";
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
38
+ }
39
+ /**
40
+ * <p>An internal server error occurred. You can try again later.</p>
41
+ * @public
42
+ */
43
+ export declare class InternalServerException extends __BaseException {
44
+ readonly name: "InternalServerException";
45
+ readonly $fault: "server";
46
+ /**
47
+ * @internal
48
+ */
49
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
50
+ }
51
+ /**
52
+ * <p>The specified resource doesn't exist.</p>
53
+ * @public
54
+ */
55
+ export declare class ResourceNotFoundException extends __BaseException {
56
+ readonly name: "ResourceNotFoundException";
57
+ readonly $fault: "client";
58
+ /**
59
+ * @internal
60
+ */
61
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
62
+ }
63
+ /**
64
+ * <p>This request exceeds a service quota.</p>
65
+ * @public
66
+ */
67
+ export declare class ServiceQuotaExceededException extends __BaseException {
68
+ readonly name: "ServiceQuotaExceededException";
69
+ readonly $fault: "client";
70
+ /**
71
+ * <p>The resource that caused the quota exception.</p>
72
+ * @public
73
+ */
74
+ resourceId?: string | undefined;
75
+ /**
76
+ * <p>The type of resource that caused the quota exception.</p>
77
+ * @public
78
+ */
79
+ resourceType?: string | undefined;
80
+ /**
81
+ * <p>This name of the service associated with the error.</p>
82
+ * @public
83
+ */
84
+ serviceCode?: string | undefined;
85
+ /**
86
+ * <p>This quota that was exceeded.</p>
87
+ * @public
88
+ */
89
+ quotaCode?: string | undefined;
90
+ /**
91
+ * @internal
92
+ */
93
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
94
+ }
95
+ /**
96
+ * <p>The request was throttled because of quota limits. You can try again later.</p>
97
+ * @public
98
+ */
99
+ export declare class ThrottlingException extends __BaseException {
100
+ readonly name: "ThrottlingException";
101
+ readonly $fault: "client";
102
+ /**
103
+ * @internal
104
+ */
105
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
106
+ }
107
+ /**
108
+ * <p>This operation or its parameters aren't formatted correctly.</p>
109
+ * @public
110
+ */
111
+ export declare class ValidationException extends __BaseException {
112
+ readonly name: "ValidationException";
113
+ readonly $fault: "client";
114
+ /**
115
+ * @internal
116
+ */
117
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
118
+ }
@@ -1,53 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { AIOpsServiceException as __BaseException } from "./AIOpsServiceException";
3
- /**
4
- * <p>You don't have sufficient permissions to perform this action.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- /**
11
- * @internal
12
- */
13
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
- }
15
- /**
16
- * <p>This operation couldn't be completed because of a conflict in resource states.</p>
17
- * @public
18
- */
19
- export declare class ConflictException extends __BaseException {
20
- readonly name: "ConflictException";
21
- readonly $fault: "client";
22
- /**
23
- * @internal
24
- */
25
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
26
- }
27
- /**
28
- * <p>Access id denied for this operation, or this operation is not valid for the specified resource.</p>
29
- * @public
30
- */
31
- export declare class ForbiddenException extends __BaseException {
32
- readonly name: "ForbiddenException";
33
- readonly $fault: "client";
34
- /**
35
- * @internal
36
- */
37
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
38
- }
39
- /**
40
- * <p>An internal server error occurred. You can try again later.</p>
41
- * @public
42
- */
43
- export declare class InternalServerException extends __BaseException {
44
- readonly name: "InternalServerException";
45
- readonly $fault: "server";
46
- /**
47
- * @internal
48
- */
49
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
50
- }
1
+ import { EncryptionConfigurationType } from "./enums";
51
2
  /**
52
3
  * <p>This structure contains information about the cross-account configuration in the account. </p>
53
4
  * @public
@@ -59,18 +10,6 @@ export interface CrossAccountConfiguration {
59
10
  */
60
11
  sourceRoleArn?: string | undefined;
61
12
  }
62
- /**
63
- * @public
64
- * @enum
65
- */
66
- export declare const EncryptionConfigurationType: {
67
- readonly AWS_OWNED_KEY: "AWS_OWNED_KEY";
68
- readonly CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY";
69
- };
70
- /**
71
- * @public
72
- */
73
- export type EncryptionConfigurationType = (typeof EncryptionConfigurationType)[keyof typeof EncryptionConfigurationType];
74
13
  /**
75
14
  * <p>Use this structure to specify a customer managed KMS key to use to encrypt investigation data. </p>
76
15
  * @public
@@ -147,74 +86,6 @@ export interface CreateInvestigationGroupOutput {
147
86
  */
148
87
  arn?: string | undefined;
149
88
  }
150
- /**
151
- * <p>The specified resource doesn't exist.</p>
152
- * @public
153
- */
154
- export declare class ResourceNotFoundException extends __BaseException {
155
- readonly name: "ResourceNotFoundException";
156
- readonly $fault: "client";
157
- /**
158
- * @internal
159
- */
160
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
161
- }
162
- /**
163
- * <p>This request exceeds a service quota.</p>
164
- * @public
165
- */
166
- export declare class ServiceQuotaExceededException extends __BaseException {
167
- readonly name: "ServiceQuotaExceededException";
168
- readonly $fault: "client";
169
- /**
170
- * <p>The resource that caused the quota exception.</p>
171
- * @public
172
- */
173
- resourceId?: string | undefined;
174
- /**
175
- * <p>The type of resource that caused the quota exception.</p>
176
- * @public
177
- */
178
- resourceType?: string | undefined;
179
- /**
180
- * <p>This name of the service associated with the error.</p>
181
- * @public
182
- */
183
- serviceCode?: string | undefined;
184
- /**
185
- * <p>This quota that was exceeded.</p>
186
- * @public
187
- */
188
- quotaCode?: string | undefined;
189
- /**
190
- * @internal
191
- */
192
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
193
- }
194
- /**
195
- * <p>The request was throttled because of quota limits. You can try again later.</p>
196
- * @public
197
- */
198
- export declare class ThrottlingException extends __BaseException {
199
- readonly name: "ThrottlingException";
200
- readonly $fault: "client";
201
- /**
202
- * @internal
203
- */
204
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
205
- }
206
- /**
207
- * <p>This operation or its parameters aren't formatted correctly.</p>
208
- * @public
209
- */
210
- export declare class ValidationException extends __BaseException {
211
- readonly name: "ValidationException";
212
- readonly $fault: "client";
213
- /**
214
- * @internal
215
- */
216
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
217
- }
218
89
  /**
219
90
  * @public
220
91
  */
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { AIOpsExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
- export * from "./models";
8
+ export * from "./models/enums";
9
+ export * from "./models/errors";
10
+ export * from "./models/models_0";
9
11
  export { AIOpsServiceException } from "./models/AIOpsServiceException";
@@ -0,0 +1,6 @@
1
+ export declare const EncryptionConfigurationType: {
2
+ readonly AWS_OWNED_KEY: "AWS_OWNED_KEY";
3
+ readonly CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY";
4
+ };
5
+ export type EncryptionConfigurationType =
6
+ (typeof EncryptionConfigurationType)[keyof typeof EncryptionConfigurationType];
@@ -0,0 +1,58 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AIOpsServiceException as __BaseException } from "./AIOpsServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ConflictException extends __BaseException {
11
+ readonly name: "ConflictException";
12
+ readonly $fault: "client";
13
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
14
+ }
15
+ export declare class ForbiddenException extends __BaseException {
16
+ readonly name: "ForbiddenException";
17
+ readonly $fault: "client";
18
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
19
+ }
20
+ export declare class InternalServerException extends __BaseException {
21
+ readonly name: "InternalServerException";
22
+ readonly $fault: "server";
23
+ constructor(
24
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
25
+ );
26
+ }
27
+ export declare class ResourceNotFoundException extends __BaseException {
28
+ readonly name: "ResourceNotFoundException";
29
+ readonly $fault: "client";
30
+ constructor(
31
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
32
+ );
33
+ }
34
+ export declare class ServiceQuotaExceededException extends __BaseException {
35
+ readonly name: "ServiceQuotaExceededException";
36
+ readonly $fault: "client";
37
+ resourceId?: string | undefined;
38
+ resourceType?: string | undefined;
39
+ serviceCode?: string | undefined;
40
+ quotaCode?: string | undefined;
41
+ constructor(
42
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
43
+ );
44
+ }
45
+ export declare class ThrottlingException extends __BaseException {
46
+ readonly name: "ThrottlingException";
47
+ readonly $fault: "client";
48
+ constructor(
49
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
50
+ );
51
+ }
52
+ export declare class ValidationException extends __BaseException {
53
+ readonly name: "ValidationException";
54
+ readonly $fault: "client";
55
+ constructor(
56
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
57
+ );
58
+ }
@@ -1,38 +1,7 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { AIOpsServiceException as __BaseException } from "./AIOpsServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- constructor(
7
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
- );
9
- }
10
- export declare class ConflictException extends __BaseException {
11
- readonly name: "ConflictException";
12
- readonly $fault: "client";
13
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
14
- }
15
- export declare class ForbiddenException extends __BaseException {
16
- readonly name: "ForbiddenException";
17
- readonly $fault: "client";
18
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
19
- }
20
- export declare class InternalServerException extends __BaseException {
21
- readonly name: "InternalServerException";
22
- readonly $fault: "server";
23
- constructor(
24
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
25
- );
26
- }
1
+ import { EncryptionConfigurationType } from "./enums";
27
2
  export interface CrossAccountConfiguration {
28
3
  sourceRoleArn?: string | undefined;
29
4
  }
30
- export declare const EncryptionConfigurationType: {
31
- readonly AWS_OWNED_KEY: "AWS_OWNED_KEY";
32
- readonly CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY";
33
- };
34
- export type EncryptionConfigurationType =
35
- (typeof EncryptionConfigurationType)[keyof typeof EncryptionConfigurationType];
36
5
  export interface EncryptionConfiguration {
37
6
  type?: EncryptionConfigurationType | undefined;
38
7
  kmsKeyId?: string | undefined;
@@ -51,38 +20,6 @@ export interface CreateInvestigationGroupInput {
51
20
  export interface CreateInvestigationGroupOutput {
52
21
  arn?: string | undefined;
53
22
  }
54
- export declare class ResourceNotFoundException extends __BaseException {
55
- readonly name: "ResourceNotFoundException";
56
- readonly $fault: "client";
57
- constructor(
58
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
59
- );
60
- }
61
- export declare class ServiceQuotaExceededException extends __BaseException {
62
- readonly name: "ServiceQuotaExceededException";
63
- readonly $fault: "client";
64
- resourceId?: string | undefined;
65
- resourceType?: string | undefined;
66
- serviceCode?: string | undefined;
67
- quotaCode?: string | undefined;
68
- constructor(
69
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
70
- );
71
- }
72
- export declare class ThrottlingException extends __BaseException {
73
- readonly name: "ThrottlingException";
74
- readonly $fault: "client";
75
- constructor(
76
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
77
- );
78
- }
79
- export declare class ValidationException extends __BaseException {
80
- readonly name: "ValidationException";
81
- readonly $fault: "client";
82
- constructor(
83
- opts: __ExceptionOptionType<ValidationException, __BaseException>
84
- );
85
- }
86
23
  export interface DeleteInvestigationGroupRequest {
87
24
  identifier: string | undefined;
88
25
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-aiops",
3
3
  "description": "AWS SDK for JavaScript Aiops Client for Node.js, Browser and React Native",
4
- "version": "3.933.0",
4
+ "version": "3.935.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-aiops",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";