@aws-sdk/client-account 3.787.0 → 3.794.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/README.md +16 -0
- package/dist-cjs/index.js +152 -5
- package/dist-es/Account.js +4 -0
- package/dist-es/commands/GetAccountInformationCommand.js +23 -0
- package/dist-es/commands/PutAccountNameCommand.js +23 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +18 -0
- package/dist-es/protocols/Aws_restJson1.js +71 -6
- package/dist-types/Account.d.ts +15 -0
- package/dist-types/AccountClient.d.ts +4 -2
- package/dist-types/commands/AcceptPrimaryEmailUpdateCommand.d.ts +5 -11
- package/dist-types/commands/DeleteAlternateContactCommand.d.ts +4 -15
- package/dist-types/commands/DisableRegionCommand.d.ts +5 -14
- package/dist-types/commands/EnableRegionCommand.d.ts +4 -9
- package/dist-types/commands/GetAccountInformationCommand.d.ts +86 -0
- package/dist-types/commands/GetAlternateContactCommand.d.ts +4 -15
- package/dist-types/commands/GetContactInformationCommand.d.ts +4 -9
- package/dist-types/commands/GetPrimaryEmailCommand.d.ts +3 -6
- package/dist-types/commands/GetRegionOptStatusCommand.d.ts +3 -6
- package/dist-types/commands/ListRegionsCommand.d.ts +4 -9
- package/dist-types/commands/PutAccountNameCommand.d.ts +83 -0
- package/dist-types/commands/PutAlternateContactCommand.d.ts +4 -15
- package/dist-types/commands/PutContactInformationCommand.d.ts +4 -9
- package/dist-types/commands/StartPrimaryEmailUpdateCommand.d.ts +5 -11
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +116 -278
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/Account.d.ts +35 -0
- package/dist-types/ts3.4/AccountClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetAccountInformationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAccountNameCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +23 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +1 -1
|
@@ -4,11 +4,13 @@ import { AcceptPrimaryEmailUpdateCommandInput, AcceptPrimaryEmailUpdateCommandOu
|
|
|
4
4
|
import { DeleteAlternateContactCommandInput, DeleteAlternateContactCommandOutput } from "../commands/DeleteAlternateContactCommand";
|
|
5
5
|
import { DisableRegionCommandInput, DisableRegionCommandOutput } from "../commands/DisableRegionCommand";
|
|
6
6
|
import { EnableRegionCommandInput, EnableRegionCommandOutput } from "../commands/EnableRegionCommand";
|
|
7
|
+
import { GetAccountInformationCommandInput, GetAccountInformationCommandOutput } from "../commands/GetAccountInformationCommand";
|
|
7
8
|
import { GetAlternateContactCommandInput, GetAlternateContactCommandOutput } from "../commands/GetAlternateContactCommand";
|
|
8
9
|
import { GetContactInformationCommandInput, GetContactInformationCommandOutput } from "../commands/GetContactInformationCommand";
|
|
9
10
|
import { GetPrimaryEmailCommandInput, GetPrimaryEmailCommandOutput } from "../commands/GetPrimaryEmailCommand";
|
|
10
11
|
import { GetRegionOptStatusCommandInput, GetRegionOptStatusCommandOutput } from "../commands/GetRegionOptStatusCommand";
|
|
11
12
|
import { ListRegionsCommandInput, ListRegionsCommandOutput } from "../commands/ListRegionsCommand";
|
|
13
|
+
import { PutAccountNameCommandInput, PutAccountNameCommandOutput } from "../commands/PutAccountNameCommand";
|
|
12
14
|
import { PutAlternateContactCommandInput, PutAlternateContactCommandOutput } from "../commands/PutAlternateContactCommand";
|
|
13
15
|
import { PutContactInformationCommandInput, PutContactInformationCommandOutput } from "../commands/PutContactInformationCommand";
|
|
14
16
|
import { StartPrimaryEmailUpdateCommandInput, StartPrimaryEmailUpdateCommandOutput } from "../commands/StartPrimaryEmailUpdateCommand";
|
|
@@ -28,6 +30,10 @@ export declare const se_DisableRegionCommand: (input: DisableRegionCommandInput,
|
|
|
28
30
|
* serializeAws_restJson1EnableRegionCommand
|
|
29
31
|
*/
|
|
30
32
|
export declare const se_EnableRegionCommand: (input: EnableRegionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
/**
|
|
34
|
+
* serializeAws_restJson1GetAccountInformationCommand
|
|
35
|
+
*/
|
|
36
|
+
export declare const se_GetAccountInformationCommand: (input: GetAccountInformationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
37
|
/**
|
|
32
38
|
* serializeAws_restJson1GetAlternateContactCommand
|
|
33
39
|
*/
|
|
@@ -48,6 +54,10 @@ export declare const se_GetRegionOptStatusCommand: (input: GetRegionOptStatusCom
|
|
|
48
54
|
* serializeAws_restJson1ListRegionsCommand
|
|
49
55
|
*/
|
|
50
56
|
export declare const se_ListRegionsCommand: (input: ListRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
/**
|
|
58
|
+
* serializeAws_restJson1PutAccountNameCommand
|
|
59
|
+
*/
|
|
60
|
+
export declare const se_PutAccountNameCommand: (input: PutAccountNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
61
|
/**
|
|
52
62
|
* serializeAws_restJson1PutAlternateContactCommand
|
|
53
63
|
*/
|
|
@@ -76,6 +86,10 @@ export declare const de_DisableRegionCommand: (output: __HttpResponse, context:
|
|
|
76
86
|
* deserializeAws_restJson1EnableRegionCommand
|
|
77
87
|
*/
|
|
78
88
|
export declare const de_EnableRegionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableRegionCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* deserializeAws_restJson1GetAccountInformationCommand
|
|
91
|
+
*/
|
|
92
|
+
export declare const de_GetAccountInformationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountInformationCommandOutput>;
|
|
79
93
|
/**
|
|
80
94
|
* deserializeAws_restJson1GetAlternateContactCommand
|
|
81
95
|
*/
|
|
@@ -96,6 +110,10 @@ export declare const de_GetRegionOptStatusCommand: (output: __HttpResponse, cont
|
|
|
96
110
|
* deserializeAws_restJson1ListRegionsCommand
|
|
97
111
|
*/
|
|
98
112
|
export declare const de_ListRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRegionsCommandOutput>;
|
|
113
|
+
/**
|
|
114
|
+
* deserializeAws_restJson1PutAccountNameCommand
|
|
115
|
+
*/
|
|
116
|
+
export declare const de_PutAccountNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAccountNameCommandOutput>;
|
|
99
117
|
/**
|
|
100
118
|
* deserializeAws_restJson1PutAlternateContactCommand
|
|
101
119
|
*/
|
|
@@ -16,6 +16,10 @@ import {
|
|
|
16
16
|
EnableRegionCommandInput,
|
|
17
17
|
EnableRegionCommandOutput,
|
|
18
18
|
} from "./commands/EnableRegionCommand";
|
|
19
|
+
import {
|
|
20
|
+
GetAccountInformationCommandInput,
|
|
21
|
+
GetAccountInformationCommandOutput,
|
|
22
|
+
} from "./commands/GetAccountInformationCommand";
|
|
19
23
|
import {
|
|
20
24
|
GetAlternateContactCommandInput,
|
|
21
25
|
GetAlternateContactCommandOutput,
|
|
@@ -36,6 +40,10 @@ import {
|
|
|
36
40
|
ListRegionsCommandInput,
|
|
37
41
|
ListRegionsCommandOutput,
|
|
38
42
|
} from "./commands/ListRegionsCommand";
|
|
43
|
+
import {
|
|
44
|
+
PutAccountNameCommandInput,
|
|
45
|
+
PutAccountNameCommandOutput,
|
|
46
|
+
} from "./commands/PutAccountNameCommand";
|
|
39
47
|
import {
|
|
40
48
|
PutAlternateContactCommandInput,
|
|
41
49
|
PutAlternateContactCommandOutput,
|
|
@@ -101,6 +109,20 @@ export interface Account {
|
|
|
101
109
|
options: __HttpHandlerOptions,
|
|
102
110
|
cb: (err: any, data?: EnableRegionCommandOutput) => void
|
|
103
111
|
): void;
|
|
112
|
+
getAccountInformation(): Promise<GetAccountInformationCommandOutput>;
|
|
113
|
+
getAccountInformation(
|
|
114
|
+
args: GetAccountInformationCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<GetAccountInformationCommandOutput>;
|
|
117
|
+
getAccountInformation(
|
|
118
|
+
args: GetAccountInformationCommandInput,
|
|
119
|
+
cb: (err: any, data?: GetAccountInformationCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
getAccountInformation(
|
|
122
|
+
args: GetAccountInformationCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: GetAccountInformationCommandOutput) => void
|
|
125
|
+
): void;
|
|
104
126
|
getAlternateContact(
|
|
105
127
|
args: GetAlternateContactCommandInput,
|
|
106
128
|
options?: __HttpHandlerOptions
|
|
@@ -168,6 +190,19 @@ export interface Account {
|
|
|
168
190
|
options: __HttpHandlerOptions,
|
|
169
191
|
cb: (err: any, data?: ListRegionsCommandOutput) => void
|
|
170
192
|
): void;
|
|
193
|
+
putAccountName(
|
|
194
|
+
args: PutAccountNameCommandInput,
|
|
195
|
+
options?: __HttpHandlerOptions
|
|
196
|
+
): Promise<PutAccountNameCommandOutput>;
|
|
197
|
+
putAccountName(
|
|
198
|
+
args: PutAccountNameCommandInput,
|
|
199
|
+
cb: (err: any, data?: PutAccountNameCommandOutput) => void
|
|
200
|
+
): void;
|
|
201
|
+
putAccountName(
|
|
202
|
+
args: PutAccountNameCommandInput,
|
|
203
|
+
options: __HttpHandlerOptions,
|
|
204
|
+
cb: (err: any, data?: PutAccountNameCommandOutput) => void
|
|
205
|
+
): void;
|
|
171
206
|
putAlternateContact(
|
|
172
207
|
args: PutAlternateContactCommandInput,
|
|
173
208
|
options?: __HttpHandlerOptions
|
|
@@ -61,6 +61,10 @@ import {
|
|
|
61
61
|
EnableRegionCommandInput,
|
|
62
62
|
EnableRegionCommandOutput,
|
|
63
63
|
} from "./commands/EnableRegionCommand";
|
|
64
|
+
import {
|
|
65
|
+
GetAccountInformationCommandInput,
|
|
66
|
+
GetAccountInformationCommandOutput,
|
|
67
|
+
} from "./commands/GetAccountInformationCommand";
|
|
64
68
|
import {
|
|
65
69
|
GetAlternateContactCommandInput,
|
|
66
70
|
GetAlternateContactCommandOutput,
|
|
@@ -81,6 +85,10 @@ import {
|
|
|
81
85
|
ListRegionsCommandInput,
|
|
82
86
|
ListRegionsCommandOutput,
|
|
83
87
|
} from "./commands/ListRegionsCommand";
|
|
88
|
+
import {
|
|
89
|
+
PutAccountNameCommandInput,
|
|
90
|
+
PutAccountNameCommandOutput,
|
|
91
|
+
} from "./commands/PutAccountNameCommand";
|
|
84
92
|
import {
|
|
85
93
|
PutAlternateContactCommandInput,
|
|
86
94
|
PutAlternateContactCommandOutput,
|
|
@@ -105,11 +113,13 @@ export type ServiceInputTypes =
|
|
|
105
113
|
| DeleteAlternateContactCommandInput
|
|
106
114
|
| DisableRegionCommandInput
|
|
107
115
|
| EnableRegionCommandInput
|
|
116
|
+
| GetAccountInformationCommandInput
|
|
108
117
|
| GetAlternateContactCommandInput
|
|
109
118
|
| GetContactInformationCommandInput
|
|
110
119
|
| GetPrimaryEmailCommandInput
|
|
111
120
|
| GetRegionOptStatusCommandInput
|
|
112
121
|
| ListRegionsCommandInput
|
|
122
|
+
| PutAccountNameCommandInput
|
|
113
123
|
| PutAlternateContactCommandInput
|
|
114
124
|
| PutContactInformationCommandInput
|
|
115
125
|
| StartPrimaryEmailUpdateCommandInput;
|
|
@@ -118,11 +128,13 @@ export type ServiceOutputTypes =
|
|
|
118
128
|
| DeleteAlternateContactCommandOutput
|
|
119
129
|
| DisableRegionCommandOutput
|
|
120
130
|
| EnableRegionCommandOutput
|
|
131
|
+
| GetAccountInformationCommandOutput
|
|
121
132
|
| GetAlternateContactCommandOutput
|
|
122
133
|
| GetContactInformationCommandOutput
|
|
123
134
|
| GetPrimaryEmailCommandOutput
|
|
124
135
|
| GetRegionOptStatusCommandOutput
|
|
125
136
|
| ListRegionsCommandOutput
|
|
137
|
+
| PutAccountNameCommandOutput
|
|
126
138
|
| PutAlternateContactCommandOutput
|
|
127
139
|
| PutContactInformationCommandOutput
|
|
128
140
|
| StartPrimaryEmailUpdateCommandOutput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AccountClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AccountClient";
|
|
8
|
+
import {
|
|
9
|
+
GetAccountInformationRequest,
|
|
10
|
+
GetAccountInformationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetAccountInformationCommandInput
|
|
15
|
+
extends GetAccountInformationRequest {}
|
|
16
|
+
export interface GetAccountInformationCommandOutput
|
|
17
|
+
extends GetAccountInformationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetAccountInformationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetAccountInformationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetAccountInformationCommandInput,
|
|
24
|
+
GetAccountInformationCommandOutput,
|
|
25
|
+
AccountClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [GetAccountInformationCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetAccountInformationCommandInput,
|
|
33
|
+
GetAccountInformationCommandOutput,
|
|
34
|
+
AccountClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetAccountInformationCommand extends GetAccountInformationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetAccountInformationRequest;
|
|
44
|
+
output: GetAccountInformationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetAccountInformationCommandInput;
|
|
48
|
+
output: GetAccountInformationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AccountClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AccountClient";
|
|
8
|
+
import { PutAccountNameRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface PutAccountNameCommandInput extends PutAccountNameRequest {}
|
|
12
|
+
export interface PutAccountNameCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const PutAccountNameCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: PutAccountNameCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
PutAccountNameCommandInput,
|
|
18
|
+
PutAccountNameCommandOutput,
|
|
19
|
+
AccountClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: PutAccountNameCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
PutAccountNameCommandInput,
|
|
27
|
+
PutAccountNameCommandOutput,
|
|
28
|
+
AccountClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class PutAccountNameCommand extends PutAccountNameCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: PutAccountNameRequest;
|
|
38
|
+
output: {};
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: PutAccountNameCommandInput;
|
|
42
|
+
output: PutAccountNameCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -2,11 +2,13 @@ export * from "./AcceptPrimaryEmailUpdateCommand";
|
|
|
2
2
|
export * from "./DeleteAlternateContactCommand";
|
|
3
3
|
export * from "./DisableRegionCommand";
|
|
4
4
|
export * from "./EnableRegionCommand";
|
|
5
|
+
export * from "./GetAccountInformationCommand";
|
|
5
6
|
export * from "./GetAlternateContactCommand";
|
|
6
7
|
export * from "./GetContactInformationCommand";
|
|
7
8
|
export * from "./GetPrimaryEmailCommand";
|
|
8
9
|
export * from "./GetRegionOptStatusCommand";
|
|
9
10
|
export * from "./ListRegionsCommand";
|
|
11
|
+
export * from "./PutAccountNameCommand";
|
|
10
12
|
export * from "./PutAlternateContactCommand";
|
|
11
13
|
export * from "./PutContactInformationCommand";
|
|
12
14
|
export * from "./StartPrimaryEmailUpdateCommand";
|
|
@@ -17,6 +17,7 @@ export interface AcceptPrimaryEmailUpdateResponse {
|
|
|
17
17
|
export declare class AccessDeniedException extends __BaseException {
|
|
18
18
|
readonly name: "AccessDeniedException";
|
|
19
19
|
readonly $fault: "client";
|
|
20
|
+
errorType?: string | undefined;
|
|
20
21
|
constructor(
|
|
21
22
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
22
23
|
);
|
|
@@ -24,12 +25,14 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
24
25
|
export declare class ConflictException extends __BaseException {
|
|
25
26
|
readonly name: "ConflictException";
|
|
26
27
|
readonly $fault: "client";
|
|
28
|
+
errorType?: string | undefined;
|
|
27
29
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
30
|
}
|
|
29
31
|
export declare class InternalServerException extends __BaseException {
|
|
30
32
|
readonly name: "InternalServerException";
|
|
31
33
|
readonly $fault: "server";
|
|
32
34
|
$retryable: {};
|
|
35
|
+
errorType?: string | undefined;
|
|
33
36
|
constructor(
|
|
34
37
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
35
38
|
);
|
|
@@ -37,6 +40,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
37
40
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
38
41
|
readonly name: "ResourceNotFoundException";
|
|
39
42
|
readonly $fault: "client";
|
|
43
|
+
errorType?: string | undefined;
|
|
40
44
|
constructor(
|
|
41
45
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
42
46
|
);
|
|
@@ -47,6 +51,7 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
47
51
|
$retryable: {
|
|
48
52
|
throttling: boolean;
|
|
49
53
|
};
|
|
54
|
+
errorType?: string | undefined;
|
|
50
55
|
constructor(
|
|
51
56
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
52
57
|
);
|
|
@@ -70,6 +75,18 @@ export declare class ValidationException extends __BaseException {
|
|
|
70
75
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
71
76
|
);
|
|
72
77
|
}
|
|
78
|
+
export interface GetAccountInformationRequest {
|
|
79
|
+
AccountId?: string | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface GetAccountInformationResponse {
|
|
82
|
+
AccountId?: string | undefined;
|
|
83
|
+
AccountName?: string | undefined;
|
|
84
|
+
AccountCreatedDate?: Date | undefined;
|
|
85
|
+
}
|
|
86
|
+
export interface PutAccountNameRequest {
|
|
87
|
+
AccountName: string | undefined;
|
|
88
|
+
AccountId?: string | undefined;
|
|
89
|
+
}
|
|
73
90
|
export declare const AlternateContactType: {
|
|
74
91
|
readonly BILLING: "BILLING";
|
|
75
92
|
readonly OPERATIONS: "OPERATIONS";
|
|
@@ -185,6 +202,12 @@ export declare const AcceptPrimaryEmailUpdateRequestFilterSensitiveLog: (
|
|
|
185
202
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
186
203
|
obj: ValidationExceptionField
|
|
187
204
|
) => any;
|
|
205
|
+
export declare const GetAccountInformationResponseFilterSensitiveLog: (
|
|
206
|
+
obj: GetAccountInformationResponse
|
|
207
|
+
) => any;
|
|
208
|
+
export declare const PutAccountNameRequestFilterSensitiveLog: (
|
|
209
|
+
obj: PutAccountNameRequest
|
|
210
|
+
) => any;
|
|
188
211
|
export declare const AlternateContactFilterSensitiveLog: (
|
|
189
212
|
obj: AlternateContact
|
|
190
213
|
) => any;
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
EnableRegionCommandInput,
|
|
20
20
|
EnableRegionCommandOutput,
|
|
21
21
|
} from "../commands/EnableRegionCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetAccountInformationCommandInput,
|
|
24
|
+
GetAccountInformationCommandOutput,
|
|
25
|
+
} from "../commands/GetAccountInformationCommand";
|
|
22
26
|
import {
|
|
23
27
|
GetAlternateContactCommandInput,
|
|
24
28
|
GetAlternateContactCommandOutput,
|
|
@@ -39,6 +43,10 @@ import {
|
|
|
39
43
|
ListRegionsCommandInput,
|
|
40
44
|
ListRegionsCommandOutput,
|
|
41
45
|
} from "../commands/ListRegionsCommand";
|
|
46
|
+
import {
|
|
47
|
+
PutAccountNameCommandInput,
|
|
48
|
+
PutAccountNameCommandOutput,
|
|
49
|
+
} from "../commands/PutAccountNameCommand";
|
|
42
50
|
import {
|
|
43
51
|
PutAlternateContactCommandInput,
|
|
44
52
|
PutAlternateContactCommandOutput,
|
|
@@ -67,6 +75,10 @@ export declare const se_EnableRegionCommand: (
|
|
|
67
75
|
input: EnableRegionCommandInput,
|
|
68
76
|
context: __SerdeContext
|
|
69
77
|
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_GetAccountInformationCommand: (
|
|
79
|
+
input: GetAccountInformationCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
70
82
|
export declare const se_GetAlternateContactCommand: (
|
|
71
83
|
input: GetAlternateContactCommandInput,
|
|
72
84
|
context: __SerdeContext
|
|
@@ -87,6 +99,10 @@ export declare const se_ListRegionsCommand: (
|
|
|
87
99
|
input: ListRegionsCommandInput,
|
|
88
100
|
context: __SerdeContext
|
|
89
101
|
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_PutAccountNameCommand: (
|
|
103
|
+
input: PutAccountNameCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
90
106
|
export declare const se_PutAlternateContactCommand: (
|
|
91
107
|
input: PutAlternateContactCommandInput,
|
|
92
108
|
context: __SerdeContext
|
|
@@ -115,6 +131,10 @@ export declare const de_EnableRegionCommand: (
|
|
|
115
131
|
output: __HttpResponse,
|
|
116
132
|
context: __SerdeContext
|
|
117
133
|
) => Promise<EnableRegionCommandOutput>;
|
|
134
|
+
export declare const de_GetAccountInformationCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<GetAccountInformationCommandOutput>;
|
|
118
138
|
export declare const de_GetAlternateContactCommand: (
|
|
119
139
|
output: __HttpResponse,
|
|
120
140
|
context: __SerdeContext
|
|
@@ -135,6 +155,10 @@ export declare const de_ListRegionsCommand: (
|
|
|
135
155
|
output: __HttpResponse,
|
|
136
156
|
context: __SerdeContext
|
|
137
157
|
) => Promise<ListRegionsCommandOutput>;
|
|
158
|
+
export declare const de_PutAccountNameCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<PutAccountNameCommandOutput>;
|
|
138
162
|
export declare const de_PutAlternateContactCommand: (
|
|
139
163
|
output: __HttpResponse,
|
|
140
164
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-account",
|
|
3
3
|
"description": "AWS SDK for JavaScript Account Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.794.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-account",
|