@aws-sdk/client-support-app 3.934.0 → 3.936.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 +0 -11
- package/dist-es/index.js +1 -1
- package/dist-es/models/errors.js +73 -0
- package/dist-es/models/models_0.js +0 -73
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +103 -0
- package/dist-types/models/models_0.d.ts +0 -103
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +42 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -42
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -129,10 +129,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends SupportAppServ
|
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
131
|
};
|
|
132
|
-
const AccountType = {
|
|
133
|
-
MANAGEMENT: "management",
|
|
134
|
-
MEMBER: "member",
|
|
135
|
-
};
|
|
136
132
|
let ConflictException$1 = class ConflictException extends SupportAppServiceException$1 {
|
|
137
133
|
name = "ConflictException";
|
|
138
134
|
$fault = "client";
|
|
@@ -145,11 +141,6 @@ let ConflictException$1 = class ConflictException extends SupportAppServiceExcep
|
|
|
145
141
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
146
142
|
}
|
|
147
143
|
};
|
|
148
|
-
const NotificationSeverityLevel = {
|
|
149
|
-
ALL: "all",
|
|
150
|
-
HIGH: "high",
|
|
151
|
-
NONE: "none",
|
|
152
|
-
};
|
|
153
144
|
let InternalServerException$1 = class InternalServerException extends SupportAppServiceException$1 {
|
|
154
145
|
name = "InternalServerException";
|
|
155
146
|
$fault = "server";
|
|
@@ -659,7 +650,6 @@ Object.defineProperty(exports, "__Client", {
|
|
|
659
650
|
get: function () { return smithyClient.Client; }
|
|
660
651
|
});
|
|
661
652
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
662
|
-
exports.AccountType = AccountType;
|
|
663
653
|
exports.ConflictException = ConflictException$1;
|
|
664
654
|
exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;
|
|
665
655
|
exports.DeleteAccountAliasCommand = DeleteAccountAliasCommand;
|
|
@@ -669,7 +659,6 @@ exports.GetAccountAliasCommand = GetAccountAliasCommand;
|
|
|
669
659
|
exports.InternalServerException = InternalServerException$1;
|
|
670
660
|
exports.ListSlackChannelConfigurationsCommand = ListSlackChannelConfigurationsCommand;
|
|
671
661
|
exports.ListSlackWorkspaceConfigurationsCommand = ListSlackWorkspaceConfigurationsCommand;
|
|
672
|
-
exports.NotificationSeverityLevel = NotificationSeverityLevel;
|
|
673
662
|
exports.PutAccountAliasCommand = PutAccountAliasCommand;
|
|
674
663
|
exports.RegisterSlackWorkspaceForOrganizationCommand = RegisterSlackWorkspaceForOrganizationCommand;
|
|
675
664
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,5 @@ export * from "./SupportAppClient";
|
|
|
2
2
|
export * from "./SupportApp";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/errors";
|
|
6
6
|
export { SupportAppServiceException } from "./models/SupportAppServiceException";
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { SupportAppServiceException as __BaseException } from "./SupportAppServiceException";
|
|
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 InternalServerException extends __BaseException {
|
|
27
|
+
name = "InternalServerException";
|
|
28
|
+
$fault = "server";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "InternalServerException",
|
|
32
|
+
$fault: "server",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
39
|
+
name = "ServiceQuotaExceededException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ServiceQuotaExceededException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class ValidationException extends __BaseException {
|
|
51
|
+
name = "ValidationException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "ValidationException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
63
|
+
name = "ResourceNotFoundException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "ResourceNotFoundException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -1,82 +1,9 @@
|
|
|
1
|
-
import { SupportAppServiceException as __BaseException } from "./SupportAppServiceException";
|
|
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
1
|
export const AccountType = {
|
|
15
2
|
MANAGEMENT: "management",
|
|
16
3
|
MEMBER: "member",
|
|
17
4
|
};
|
|
18
|
-
export class ConflictException extends __BaseException {
|
|
19
|
-
name = "ConflictException";
|
|
20
|
-
$fault = "client";
|
|
21
|
-
constructor(opts) {
|
|
22
|
-
super({
|
|
23
|
-
name: "ConflictException",
|
|
24
|
-
$fault: "client",
|
|
25
|
-
...opts,
|
|
26
|
-
});
|
|
27
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
5
|
export const NotificationSeverityLevel = {
|
|
31
6
|
ALL: "all",
|
|
32
7
|
HIGH: "high",
|
|
33
8
|
NONE: "none",
|
|
34
9
|
};
|
|
35
|
-
export class InternalServerException extends __BaseException {
|
|
36
|
-
name = "InternalServerException";
|
|
37
|
-
$fault = "server";
|
|
38
|
-
constructor(opts) {
|
|
39
|
-
super({
|
|
40
|
-
name: "InternalServerException",
|
|
41
|
-
$fault: "server",
|
|
42
|
-
...opts,
|
|
43
|
-
});
|
|
44
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
48
|
-
name = "ServiceQuotaExceededException";
|
|
49
|
-
$fault = "client";
|
|
50
|
-
constructor(opts) {
|
|
51
|
-
super({
|
|
52
|
-
name: "ServiceQuotaExceededException",
|
|
53
|
-
$fault: "client",
|
|
54
|
-
...opts,
|
|
55
|
-
});
|
|
56
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
export class ValidationException extends __BaseException {
|
|
60
|
-
name = "ValidationException";
|
|
61
|
-
$fault = "client";
|
|
62
|
-
constructor(opts) {
|
|
63
|
-
super({
|
|
64
|
-
name: "ValidationException",
|
|
65
|
-
$fault: "client",
|
|
66
|
-
...opts,
|
|
67
|
-
});
|
|
68
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
72
|
-
name = "ResourceNotFoundException";
|
|
73
|
-
$fault = "client";
|
|
74
|
-
constructor(opts) {
|
|
75
|
-
super({
|
|
76
|
-
name: "ResourceNotFoundException",
|
|
77
|
-
$fault: "client",
|
|
78
|
-
...opts,
|
|
79
|
-
});
|
|
80
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
81
|
-
}
|
|
82
|
-
}
|
|
@@ -62,7 +62,7 @@ const _tI = "teamId";
|
|
|
62
62
|
const _tN = "teamName";
|
|
63
63
|
const n0 = "com.amazonaws.supportapp";
|
|
64
64
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
65
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ValidationException as __ValidationException, } from "../models/
|
|
65
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ValidationException as __ValidationException, } from "../models/errors";
|
|
66
66
|
import { SupportAppServiceException as __SupportAppServiceException } from "../models/SupportAppServiceException";
|
|
67
67
|
export var AccessDeniedException = [
|
|
68
68
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -63,5 +63,6 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
63
63
|
export type { SupportAppExtensionConfiguration } from "./extensionConfiguration";
|
|
64
64
|
export * from "./commands";
|
|
65
65
|
export * from "./pagination";
|
|
66
|
-
export * from "./models";
|
|
66
|
+
export * from "./models/errors";
|
|
67
|
+
export type * from "./models/models_0";
|
|
67
68
|
export { SupportAppServiceException } from "./models/SupportAppServiceException";
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SupportAppServiceException as __BaseException } from "./SupportAppServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You don't have sufficient permission 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>Your request has a conflict. For example, you might receive this error if you try the
|
|
17
|
+
* following:</p>
|
|
18
|
+
* <ul>
|
|
19
|
+
* <li>
|
|
20
|
+
* <p>Add, update, or delete a Slack channel configuration before you add a Slack workspace
|
|
21
|
+
* to your Amazon Web Services account.</p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>Add a Slack channel configuration that already exists in your Amazon Web Services account.</p>
|
|
25
|
+
* </li>
|
|
26
|
+
* <li>
|
|
27
|
+
* <p>Delete a Slack channel configuration for a live chat channel.</p>
|
|
28
|
+
* </li>
|
|
29
|
+
* <li>
|
|
30
|
+
* <p>Delete a Slack workspace from your Amazon Web Services account that has an active live chat
|
|
31
|
+
* channel.</p>
|
|
32
|
+
* </li>
|
|
33
|
+
* <li>
|
|
34
|
+
* <p>Call the <code>RegisterSlackWorkspaceForOrganization</code> API from an Amazon Web Services account
|
|
35
|
+
* that doesn't belong to an organization.</p>
|
|
36
|
+
* </li>
|
|
37
|
+
* <li>
|
|
38
|
+
* <p>Call the <code>RegisterSlackWorkspaceForOrganization</code> API from a member account,
|
|
39
|
+
* but the management account hasn't registered that workspace yet for the
|
|
40
|
+
* organization.</p>
|
|
41
|
+
* </li>
|
|
42
|
+
* </ul>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export declare class ConflictException extends __BaseException {
|
|
46
|
+
readonly name: "ConflictException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
/**
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export declare class InternalServerException extends __BaseException {
|
|
58
|
+
readonly name: "InternalServerException";
|
|
59
|
+
readonly $fault: "server";
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
63
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* <p>Your Service Quotas request exceeds the quota for the service. For example, your Service Quotas request to
|
|
67
|
+
* Amazon Web Services Support App might exceed the maximum number of workspaces or channels per account, or the maximum
|
|
68
|
+
* number of accounts per Slack channel.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
72
|
+
readonly name: "ServiceQuotaExceededException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class ValidationException extends __BaseException {
|
|
84
|
+
readonly name: "ValidationException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* <p>The specified resource is missing or doesn't exist, such as an account alias, Slack
|
|
93
|
+
* channel configuration, or Slack workspace configuration.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
97
|
+
readonly name: "ResourceNotFoundException";
|
|
98
|
+
readonly $fault: "client";
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
103
|
+
}
|
|
@@ -1,17 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { SupportAppServiceException as __BaseException } from "./SupportAppServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You don't have sufficient permission 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
1
|
/**
|
|
16
2
|
* @public
|
|
17
3
|
* @enum
|
|
@@ -24,44 +10,6 @@ export declare const AccountType: {
|
|
|
24
10
|
* @public
|
|
25
11
|
*/
|
|
26
12
|
export type AccountType = (typeof AccountType)[keyof typeof AccountType];
|
|
27
|
-
/**
|
|
28
|
-
* <p>Your request has a conflict. For example, you might receive this error if you try the
|
|
29
|
-
* following:</p>
|
|
30
|
-
* <ul>
|
|
31
|
-
* <li>
|
|
32
|
-
* <p>Add, update, or delete a Slack channel configuration before you add a Slack workspace
|
|
33
|
-
* to your Amazon Web Services account.</p>
|
|
34
|
-
* </li>
|
|
35
|
-
* <li>
|
|
36
|
-
* <p>Add a Slack channel configuration that already exists in your Amazon Web Services account.</p>
|
|
37
|
-
* </li>
|
|
38
|
-
* <li>
|
|
39
|
-
* <p>Delete a Slack channel configuration for a live chat channel.</p>
|
|
40
|
-
* </li>
|
|
41
|
-
* <li>
|
|
42
|
-
* <p>Delete a Slack workspace from your Amazon Web Services account that has an active live chat
|
|
43
|
-
* channel.</p>
|
|
44
|
-
* </li>
|
|
45
|
-
* <li>
|
|
46
|
-
* <p>Call the <code>RegisterSlackWorkspaceForOrganization</code> API from an Amazon Web Services account
|
|
47
|
-
* that doesn't belong to an organization.</p>
|
|
48
|
-
* </li>
|
|
49
|
-
* <li>
|
|
50
|
-
* <p>Call the <code>RegisterSlackWorkspaceForOrganization</code> API from a member account,
|
|
51
|
-
* but the management account hasn't registered that workspace yet for the
|
|
52
|
-
* organization.</p>
|
|
53
|
-
* </li>
|
|
54
|
-
* </ul>
|
|
55
|
-
* @public
|
|
56
|
-
*/
|
|
57
|
-
export declare class ConflictException extends __BaseException {
|
|
58
|
-
readonly name: "ConflictException";
|
|
59
|
-
readonly $fault: "client";
|
|
60
|
-
/**
|
|
61
|
-
* @internal
|
|
62
|
-
*/
|
|
63
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
64
|
-
}
|
|
65
13
|
/**
|
|
66
14
|
* @public
|
|
67
15
|
* @enum
|
|
@@ -170,44 +118,6 @@ export interface CreateSlackChannelConfigurationRequest {
|
|
|
170
118
|
*/
|
|
171
119
|
export interface CreateSlackChannelConfigurationResult {
|
|
172
120
|
}
|
|
173
|
-
/**
|
|
174
|
-
* <p>We can’t process your request right now because of a server issue. Try again later.</p>
|
|
175
|
-
* @public
|
|
176
|
-
*/
|
|
177
|
-
export declare class InternalServerException extends __BaseException {
|
|
178
|
-
readonly name: "InternalServerException";
|
|
179
|
-
readonly $fault: "server";
|
|
180
|
-
/**
|
|
181
|
-
* @internal
|
|
182
|
-
*/
|
|
183
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
184
|
-
}
|
|
185
|
-
/**
|
|
186
|
-
* <p>Your Service Quotas request exceeds the quota for the service. For example, your Service Quotas request to
|
|
187
|
-
* Amazon Web Services Support App might exceed the maximum number of workspaces or channels per account, or the maximum
|
|
188
|
-
* number of accounts per Slack channel.</p>
|
|
189
|
-
* @public
|
|
190
|
-
*/
|
|
191
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
192
|
-
readonly name: "ServiceQuotaExceededException";
|
|
193
|
-
readonly $fault: "client";
|
|
194
|
-
/**
|
|
195
|
-
* @internal
|
|
196
|
-
*/
|
|
197
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
198
|
-
}
|
|
199
|
-
/**
|
|
200
|
-
* <p>Your request input doesn't meet the constraints that the Amazon Web Services Support App specifies.</p>
|
|
201
|
-
* @public
|
|
202
|
-
*/
|
|
203
|
-
export declare class ValidationException extends __BaseException {
|
|
204
|
-
readonly name: "ValidationException";
|
|
205
|
-
readonly $fault: "client";
|
|
206
|
-
/**
|
|
207
|
-
* @internal
|
|
208
|
-
*/
|
|
209
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
210
|
-
}
|
|
211
121
|
/**
|
|
212
122
|
* @public
|
|
213
123
|
*/
|
|
@@ -218,19 +128,6 @@ export interface DeleteAccountAliasRequest {
|
|
|
218
128
|
*/
|
|
219
129
|
export interface DeleteAccountAliasResult {
|
|
220
130
|
}
|
|
221
|
-
/**
|
|
222
|
-
* <p>The specified resource is missing or doesn't exist, such as an account alias, Slack
|
|
223
|
-
* channel configuration, or Slack workspace configuration.</p>
|
|
224
|
-
* @public
|
|
225
|
-
*/
|
|
226
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
227
|
-
readonly name: "ResourceNotFoundException";
|
|
228
|
-
readonly $fault: "client";
|
|
229
|
-
/**
|
|
230
|
-
* @internal
|
|
231
|
-
*/
|
|
232
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
233
|
-
}
|
|
234
131
|
/**
|
|
235
132
|
* @public
|
|
236
133
|
*/
|
|
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { SupportAppExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/errors";
|
|
9
|
+
export * from "./models/models_0";
|
|
9
10
|
export { SupportAppServiceException } from "./models/SupportAppServiceException";
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SupportAppServiceException as __BaseException } from "./SupportAppServiceException";
|
|
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 InternalServerException extends __BaseException {
|
|
16
|
+
readonly name: "InternalServerException";
|
|
17
|
+
readonly $fault: "server";
|
|
18
|
+
constructor(
|
|
19
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
23
|
+
readonly name: "ServiceQuotaExceededException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
constructor(
|
|
26
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
export declare class ValidationException extends __BaseException {
|
|
30
|
+
readonly name: "ValidationException";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
37
|
+
readonly name: "ResourceNotFoundException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
@@ -1,22 +1,8 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { SupportAppServiceException as __BaseException } from "./SupportAppServiceException";
|
|
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
1
|
export declare const AccountType: {
|
|
11
2
|
readonly MANAGEMENT: "management";
|
|
12
3
|
readonly MEMBER: "member";
|
|
13
4
|
};
|
|
14
5
|
export type AccountType = (typeof AccountType)[keyof typeof AccountType];
|
|
15
|
-
export declare class ConflictException extends __BaseException {
|
|
16
|
-
readonly name: "ConflictException";
|
|
17
|
-
readonly $fault: "client";
|
|
18
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
19
|
-
}
|
|
20
6
|
export declare const NotificationSeverityLevel: {
|
|
21
7
|
readonly ALL: "all";
|
|
22
8
|
readonly HIGH: "high";
|
|
@@ -35,36 +21,8 @@ export interface CreateSlackChannelConfigurationRequest {
|
|
|
35
21
|
channelRoleArn: string | undefined;
|
|
36
22
|
}
|
|
37
23
|
export interface CreateSlackChannelConfigurationResult {}
|
|
38
|
-
export declare class InternalServerException extends __BaseException {
|
|
39
|
-
readonly name: "InternalServerException";
|
|
40
|
-
readonly $fault: "server";
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
43
|
-
);
|
|
44
|
-
}
|
|
45
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
46
|
-
readonly name: "ServiceQuotaExceededException";
|
|
47
|
-
readonly $fault: "client";
|
|
48
|
-
constructor(
|
|
49
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __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
|
-
}
|
|
59
24
|
export interface DeleteAccountAliasRequest {}
|
|
60
25
|
export interface DeleteAccountAliasResult {}
|
|
61
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
62
|
-
readonly name: "ResourceNotFoundException";
|
|
63
|
-
readonly $fault: "client";
|
|
64
|
-
constructor(
|
|
65
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
66
|
-
);
|
|
67
|
-
}
|
|
68
26
|
export interface DeleteSlackChannelConfigurationRequest {
|
|
69
27
|
teamId: string | undefined;
|
|
70
28
|
channelId: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-support-app",
|
|
3
3
|
"description": "AWS SDK for JavaScript Support App Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.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-support-app",
|
|
@@ -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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
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.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
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.
|
|
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.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
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",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|