@aws-sdk/client-migrationhub-config 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 +4 -3
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +3 -0
- package/dist-es/models/errors.js +87 -0
- package/dist-es/models/models_0.js +1 -90
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/errors.d.ts +89 -0
- package/dist-types/models/models_0.d.ts +1 -100
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -0
- package/dist-types/ts3.4/models/errors.d.ts +49 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -53
- package/package.json +12 -12
- 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
|
@@ -131,9 +131,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends MigrationHubCo
|
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
|
-
const TargetType = {
|
|
135
|
-
ACCOUNT: "ACCOUNT",
|
|
136
|
-
};
|
|
137
134
|
let DryRunOperation$1 = class DryRunOperation extends MigrationHubConfigServiceException$1 {
|
|
138
135
|
name = "DryRunOperation";
|
|
139
136
|
$fault = "client";
|
|
@@ -462,6 +459,10 @@ smithyClient.createAggregatedClient(commands, MigrationHubConfig);
|
|
|
462
459
|
|
|
463
460
|
const paginateDescribeHomeRegionControls = core.createPaginator(MigrationHubConfigClient, DescribeHomeRegionControlsCommand, "NextToken", "NextToken", "MaxResults");
|
|
464
461
|
|
|
462
|
+
const TargetType = {
|
|
463
|
+
ACCOUNT: "ACCOUNT",
|
|
464
|
+
};
|
|
465
|
+
|
|
465
466
|
Object.defineProperty(exports, "$Command", {
|
|
466
467
|
enumerable: true,
|
|
467
468
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./MigrationHubConfigClient";
|
|
|
2
2
|
export * from "./MigrationHubConfig";
|
|
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 { MigrationHubConfigServiceException } from "./models/MigrationHubConfigServiceException";
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { MigrationHubConfigServiceException as __BaseException } from "./MigrationHubConfigServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AccessDeniedException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export class DryRunOperation extends __BaseException {
|
|
17
|
+
name = "DryRunOperation";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "DryRunOperation",
|
|
23
|
+
$fault: "client",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
Object.setPrototypeOf(this, DryRunOperation.prototype);
|
|
27
|
+
this.Message = opts.Message;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export class InternalServerError extends __BaseException {
|
|
31
|
+
name = "InternalServerError";
|
|
32
|
+
$fault = "server";
|
|
33
|
+
Message;
|
|
34
|
+
constructor(opts) {
|
|
35
|
+
super({
|
|
36
|
+
name: "InternalServerError",
|
|
37
|
+
$fault: "server",
|
|
38
|
+
...opts,
|
|
39
|
+
});
|
|
40
|
+
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
41
|
+
this.Message = opts.Message;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
export class InvalidInputException extends __BaseException {
|
|
45
|
+
name = "InvalidInputException";
|
|
46
|
+
$fault = "client";
|
|
47
|
+
Message;
|
|
48
|
+
constructor(opts) {
|
|
49
|
+
super({
|
|
50
|
+
name: "InvalidInputException",
|
|
51
|
+
$fault: "client",
|
|
52
|
+
...opts,
|
|
53
|
+
});
|
|
54
|
+
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
55
|
+
this.Message = opts.Message;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
59
|
+
name = "ServiceUnavailableException";
|
|
60
|
+
$fault = "server";
|
|
61
|
+
Message;
|
|
62
|
+
constructor(opts) {
|
|
63
|
+
super({
|
|
64
|
+
name: "ServiceUnavailableException",
|
|
65
|
+
$fault: "server",
|
|
66
|
+
...opts,
|
|
67
|
+
});
|
|
68
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
69
|
+
this.Message = opts.Message;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
export class ThrottlingException extends __BaseException {
|
|
73
|
+
name = "ThrottlingException";
|
|
74
|
+
$fault = "client";
|
|
75
|
+
Message;
|
|
76
|
+
RetryAfterSeconds;
|
|
77
|
+
constructor(opts) {
|
|
78
|
+
super({
|
|
79
|
+
name: "ThrottlingException",
|
|
80
|
+
$fault: "client",
|
|
81
|
+
...opts,
|
|
82
|
+
});
|
|
83
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
84
|
+
this.Message = opts.Message;
|
|
85
|
+
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -1,90 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export const TargetType = {
|
|
17
|
-
ACCOUNT: "ACCOUNT",
|
|
18
|
-
};
|
|
19
|
-
export class DryRunOperation extends __BaseException {
|
|
20
|
-
name = "DryRunOperation";
|
|
21
|
-
$fault = "client";
|
|
22
|
-
Message;
|
|
23
|
-
constructor(opts) {
|
|
24
|
-
super({
|
|
25
|
-
name: "DryRunOperation",
|
|
26
|
-
$fault: "client",
|
|
27
|
-
...opts,
|
|
28
|
-
});
|
|
29
|
-
Object.setPrototypeOf(this, DryRunOperation.prototype);
|
|
30
|
-
this.Message = opts.Message;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
export class InternalServerError extends __BaseException {
|
|
34
|
-
name = "InternalServerError";
|
|
35
|
-
$fault = "server";
|
|
36
|
-
Message;
|
|
37
|
-
constructor(opts) {
|
|
38
|
-
super({
|
|
39
|
-
name: "InternalServerError",
|
|
40
|
-
$fault: "server",
|
|
41
|
-
...opts,
|
|
42
|
-
});
|
|
43
|
-
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
44
|
-
this.Message = opts.Message;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
export class InvalidInputException extends __BaseException {
|
|
48
|
-
name = "InvalidInputException";
|
|
49
|
-
$fault = "client";
|
|
50
|
-
Message;
|
|
51
|
-
constructor(opts) {
|
|
52
|
-
super({
|
|
53
|
-
name: "InvalidInputException",
|
|
54
|
-
$fault: "client",
|
|
55
|
-
...opts,
|
|
56
|
-
});
|
|
57
|
-
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
58
|
-
this.Message = opts.Message;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
export class ServiceUnavailableException extends __BaseException {
|
|
62
|
-
name = "ServiceUnavailableException";
|
|
63
|
-
$fault = "server";
|
|
64
|
-
Message;
|
|
65
|
-
constructor(opts) {
|
|
66
|
-
super({
|
|
67
|
-
name: "ServiceUnavailableException",
|
|
68
|
-
$fault: "server",
|
|
69
|
-
...opts,
|
|
70
|
-
});
|
|
71
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
72
|
-
this.Message = opts.Message;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
export class ThrottlingException extends __BaseException {
|
|
76
|
-
name = "ThrottlingException";
|
|
77
|
-
$fault = "client";
|
|
78
|
-
Message;
|
|
79
|
-
RetryAfterSeconds;
|
|
80
|
-
constructor(opts) {
|
|
81
|
-
super({
|
|
82
|
-
name: "ThrottlingException",
|
|
83
|
-
$fault: "client",
|
|
84
|
-
...opts,
|
|
85
|
-
});
|
|
86
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
87
|
-
this.Message = opts.Message;
|
|
88
|
-
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
1
|
+
export {};
|
|
@@ -38,7 +38,7 @@ const _s = "server";
|
|
|
38
38
|
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.migrationhubconfig";
|
|
39
39
|
const n0 = "com.amazonaws.migrationhubconfig";
|
|
40
40
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
41
|
-
import { AccessDeniedException as __AccessDeniedException, DryRunOperation as __DryRunOperation, InternalServerError as __InternalServerError, InvalidInputException as __InvalidInputException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, } from "../models/
|
|
41
|
+
import { AccessDeniedException as __AccessDeniedException, DryRunOperation as __DryRunOperation, InternalServerError as __InternalServerError, InvalidInputException as __InvalidInputException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, } from "../models/errors";
|
|
42
42
|
import { MigrationHubConfigServiceException as __MigrationHubConfigServiceException } from "../models/MigrationHubConfigServiceException";
|
|
43
43
|
export var AccessDeniedException = [
|
|
44
44
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -33,5 +33,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
33
33
|
export type { MigrationHubConfigExtensionConfiguration } from "./extensionConfiguration";
|
|
34
34
|
export * from "./commands";
|
|
35
35
|
export * from "./pagination";
|
|
36
|
-
export * from "./models";
|
|
36
|
+
export * from "./models/enums";
|
|
37
|
+
export * from "./models/errors";
|
|
38
|
+
export type * from "./models/models_0";
|
|
37
39
|
export { MigrationHubConfigServiceException } from "./models/MigrationHubConfigServiceException";
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MigrationHubConfigServiceException as __BaseException } from "./MigrationHubConfigServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>Exception raised to indicate that authorization of an action was successful, when the
|
|
18
|
+
* <code>DryRun</code> flag is set to true.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class DryRunOperation extends __BaseException {
|
|
22
|
+
readonly name: "DryRunOperation";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
Message?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
constructor(opts: __ExceptionOptionType<DryRunOperation, __BaseException>);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* <p>Exception raised when an internal, configuration, or dependency error is
|
|
32
|
+
* encountered.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export declare class InternalServerError extends __BaseException {
|
|
36
|
+
readonly name: "InternalServerError";
|
|
37
|
+
readonly $fault: "server";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* <p>Exception raised when the provided input violates a policy constraint or is entered in the
|
|
46
|
+
* wrong format or data type.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export declare class InvalidInputException extends __BaseException {
|
|
50
|
+
readonly name: "InvalidInputException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
Message?: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* @internal
|
|
55
|
+
*/
|
|
56
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* <p>Exception raised when a request fails due to temporary unavailability of the
|
|
60
|
+
* service.</p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
64
|
+
readonly name: "ServiceUnavailableException";
|
|
65
|
+
readonly $fault: "server";
|
|
66
|
+
Message?: string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
70
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* <p>The request was denied due to request throttling.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export declare class ThrottlingException extends __BaseException {
|
|
77
|
+
readonly name: "ThrottlingException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
Message: string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
RetryAfterSeconds?: number | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
89
|
+
}
|
|
@@ -1,29 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { MigrationHubConfigServiceException as __BaseException } from "./MigrationHubConfigServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message?: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* @public
|
|
18
|
-
* @enum
|
|
19
|
-
*/
|
|
20
|
-
export declare const TargetType: {
|
|
21
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
1
|
+
import { TargetType } from "./enums";
|
|
27
2
|
/**
|
|
28
3
|
* <p>The target parameter specifies the identifier to which the home region is applied, which
|
|
29
4
|
* is always an <code>ACCOUNT</code>. It applies the home region to the current
|
|
@@ -109,80 +84,6 @@ export interface CreateHomeRegionControlResult {
|
|
|
109
84
|
*/
|
|
110
85
|
HomeRegionControl?: HomeRegionControl | undefined;
|
|
111
86
|
}
|
|
112
|
-
/**
|
|
113
|
-
* <p>Exception raised to indicate that authorization of an action was successful, when the
|
|
114
|
-
* <code>DryRun</code> flag is set to true.</p>
|
|
115
|
-
* @public
|
|
116
|
-
*/
|
|
117
|
-
export declare class DryRunOperation extends __BaseException {
|
|
118
|
-
readonly name: "DryRunOperation";
|
|
119
|
-
readonly $fault: "client";
|
|
120
|
-
Message?: string | undefined;
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
constructor(opts: __ExceptionOptionType<DryRunOperation, __BaseException>);
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* <p>Exception raised when an internal, configuration, or dependency error is
|
|
128
|
-
* encountered.</p>
|
|
129
|
-
* @public
|
|
130
|
-
*/
|
|
131
|
-
export declare class InternalServerError extends __BaseException {
|
|
132
|
-
readonly name: "InternalServerError";
|
|
133
|
-
readonly $fault: "server";
|
|
134
|
-
Message?: string | undefined;
|
|
135
|
-
/**
|
|
136
|
-
* @internal
|
|
137
|
-
*/
|
|
138
|
-
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
139
|
-
}
|
|
140
|
-
/**
|
|
141
|
-
* <p>Exception raised when the provided input violates a policy constraint or is entered in the
|
|
142
|
-
* wrong format or data type.</p>
|
|
143
|
-
* @public
|
|
144
|
-
*/
|
|
145
|
-
export declare class InvalidInputException extends __BaseException {
|
|
146
|
-
readonly name: "InvalidInputException";
|
|
147
|
-
readonly $fault: "client";
|
|
148
|
-
Message?: string | undefined;
|
|
149
|
-
/**
|
|
150
|
-
* @internal
|
|
151
|
-
*/
|
|
152
|
-
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* <p>Exception raised when a request fails due to temporary unavailability of the
|
|
156
|
-
* service.</p>
|
|
157
|
-
* @public
|
|
158
|
-
*/
|
|
159
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
160
|
-
readonly name: "ServiceUnavailableException";
|
|
161
|
-
readonly $fault: "server";
|
|
162
|
-
Message?: string | undefined;
|
|
163
|
-
/**
|
|
164
|
-
* @internal
|
|
165
|
-
*/
|
|
166
|
-
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
167
|
-
}
|
|
168
|
-
/**
|
|
169
|
-
* <p>The request was denied due to request throttling.</p>
|
|
170
|
-
* @public
|
|
171
|
-
*/
|
|
172
|
-
export declare class ThrottlingException extends __BaseException {
|
|
173
|
-
readonly name: "ThrottlingException";
|
|
174
|
-
readonly $fault: "client";
|
|
175
|
-
Message: string | undefined;
|
|
176
|
-
/**
|
|
177
|
-
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
178
|
-
* @public
|
|
179
|
-
*/
|
|
180
|
-
RetryAfterSeconds?: number | undefined;
|
|
181
|
-
/**
|
|
182
|
-
* @internal
|
|
183
|
-
*/
|
|
184
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
185
|
-
}
|
|
186
87
|
/**
|
|
187
88
|
* @public
|
|
188
89
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { MigrationHubConfigExtensionConfiguration } 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 { MigrationHubConfigServiceException } from "./models/MigrationHubConfigServiceException";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MigrationHubConfigServiceException as __BaseException } from "./MigrationHubConfigServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class DryRunOperation extends __BaseException {
|
|
12
|
+
readonly name: "DryRunOperation";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<DryRunOperation, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerError extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerError";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
Message?: string | undefined;
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class InvalidInputException extends __BaseException {
|
|
26
|
+
readonly name: "InvalidInputException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
Message?: string | undefined;
|
|
29
|
+
constructor(
|
|
30
|
+
opts: __ExceptionOptionType<InvalidInputException, __BaseException>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
34
|
+
readonly name: "ServiceUnavailableException";
|
|
35
|
+
readonly $fault: "server";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class ThrottlingException extends __BaseException {
|
|
42
|
+
readonly name: "ThrottlingException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
Message: string | undefined;
|
|
45
|
+
RetryAfterSeconds?: number | undefined;
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { MigrationHubConfigServiceException as __BaseException } from "./MigrationHubConfigServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
10
|
-
}
|
|
11
|
-
export declare const TargetType: {
|
|
12
|
-
readonly ACCOUNT: "ACCOUNT";
|
|
13
|
-
};
|
|
14
|
-
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
1
|
+
import { TargetType } from "./enums";
|
|
15
2
|
export interface Target {
|
|
16
3
|
Type: TargetType | undefined;
|
|
17
4
|
Id?: string | undefined;
|
|
@@ -30,45 +17,6 @@ export interface HomeRegionControl {
|
|
|
30
17
|
export interface CreateHomeRegionControlResult {
|
|
31
18
|
HomeRegionControl?: HomeRegionControl | undefined;
|
|
32
19
|
}
|
|
33
|
-
export declare class DryRunOperation extends __BaseException {
|
|
34
|
-
readonly name: "DryRunOperation";
|
|
35
|
-
readonly $fault: "client";
|
|
36
|
-
Message?: string | undefined;
|
|
37
|
-
constructor(opts: __ExceptionOptionType<DryRunOperation, __BaseException>);
|
|
38
|
-
}
|
|
39
|
-
export declare class InternalServerError extends __BaseException {
|
|
40
|
-
readonly name: "InternalServerError";
|
|
41
|
-
readonly $fault: "server";
|
|
42
|
-
Message?: string | undefined;
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
45
|
-
);
|
|
46
|
-
}
|
|
47
|
-
export declare class InvalidInputException extends __BaseException {
|
|
48
|
-
readonly name: "InvalidInputException";
|
|
49
|
-
readonly $fault: "client";
|
|
50
|
-
Message?: string | undefined;
|
|
51
|
-
constructor(
|
|
52
|
-
opts: __ExceptionOptionType<InvalidInputException, __BaseException>
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
56
|
-
readonly name: "ServiceUnavailableException";
|
|
57
|
-
readonly $fault: "server";
|
|
58
|
-
Message?: string | undefined;
|
|
59
|
-
constructor(
|
|
60
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
61
|
-
);
|
|
62
|
-
}
|
|
63
|
-
export declare class ThrottlingException extends __BaseException {
|
|
64
|
-
readonly name: "ThrottlingException";
|
|
65
|
-
readonly $fault: "client";
|
|
66
|
-
Message: string | undefined;
|
|
67
|
-
RetryAfterSeconds?: number | undefined;
|
|
68
|
-
constructor(
|
|
69
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
70
|
-
);
|
|
71
|
-
}
|
|
72
20
|
export interface DeleteHomeRegionControlRequest {
|
|
73
21
|
ControlId: string | undefined;
|
|
74
22
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migrationhub-config",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migrationhub Config Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
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-migrationhub-config",
|
|
@@ -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.
|
|
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.
|
|
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.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.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";
|