@aws-sdk/client-signin 3.1065.0 → 3.1066.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 +56 -7
- package/dist-cjs/endpoint/bdd.js +70 -35
- package/dist-cjs/endpoint/endpointResolver.js +1 -1
- package/dist-cjs/index.js +133 -2
- package/dist-cjs/models/errors.js +46 -1
- package/dist-cjs/schemas/schemas_0.js +202 -1
- package/dist-es/Signin.js +19 -1
- package/dist-es/commands/CreateOAuth2TokenCommand.js +4 -1
- package/dist-es/commands/DeleteConsoleAuthorizationConfigurationCommand.js +19 -0
- package/dist-es/commands/DeleteResourcePermissionStatementCommand.js +19 -0
- package/dist-es/commands/GetConsoleAuthorizationConfigurationCommand.js +19 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +19 -0
- package/dist-es/commands/ListResourcePermissionStatementsCommand.js +19 -0
- package/dist-es/commands/PutConsoleAuthorizationConfigurationCommand.js +19 -0
- package/dist-es/commands/PutResourcePermissionStatementCommand.js +19 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/bdd.js +70 -35
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/models/errors.js +42 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListResourcePermissionStatementsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +202 -1
- package/dist-types/Signin.d.ts +63 -1
- package/dist-types/SigninClient.d.ts +9 -2
- package/dist-types/commands/CreateOAuth2TokenCommand.d.ts +3 -3
- package/dist-types/commands/DeleteConsoleAuthorizationConfigurationCommand.d.ts +124 -0
- package/dist-types/commands/DeleteResourcePermissionStatementCommand.d.ts +121 -0
- package/dist-types/commands/GetConsoleAuthorizationConfigurationCommand.d.ts +124 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +133 -0
- package/dist-types/commands/ListResourcePermissionStatementsCommand.d.ts +135 -0
- package/dist-types/commands/PutConsoleAuthorizationConfigurationCommand.d.ts +131 -0
- package/dist-types/commands/PutResourcePermissionStatementCommand.d.ts +136 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/errors.d.ts +66 -0
- package/dist-types/models/models_0.d.ts +288 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListResourcePermissionStatementsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +27 -0
- package/dist-types/ts3.4/Signin.d.ts +161 -1
- package/dist-types/ts3.4/SigninClient.d.ts +46 -2
- package/dist-types/ts3.4/commands/CreateOAuth2TokenCommand.d.ts +9 -5
- package/dist-types/ts3.4/commands/DeleteConsoleAuthorizationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteResourcePermissionStatementCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetConsoleAuthorizationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListResourcePermissionStatementsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/PutConsoleAuthorizationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/PutResourcePermissionStatementCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +3 -0
- package/dist-types/ts3.4/models/errors.d.ts +22 -0
- package/dist-types/ts3.4/models/models_0.d.ts +69 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListResourcePermissionStatementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +4 -4
|
@@ -1,8 +1,40 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
CreateOAuth2TokenCommandInput,
|
|
4
8
|
CreateOAuth2TokenCommandOutput,
|
|
5
9
|
} from "./commands/CreateOAuth2TokenCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteConsoleAuthorizationConfigurationCommandInput,
|
|
12
|
+
DeleteConsoleAuthorizationConfigurationCommandOutput,
|
|
13
|
+
} from "./commands/DeleteConsoleAuthorizationConfigurationCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteResourcePermissionStatementCommandInput,
|
|
16
|
+
DeleteResourcePermissionStatementCommandOutput,
|
|
17
|
+
} from "./commands/DeleteResourcePermissionStatementCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetConsoleAuthorizationConfigurationCommandInput,
|
|
20
|
+
GetConsoleAuthorizationConfigurationCommandOutput,
|
|
21
|
+
} from "./commands/GetConsoleAuthorizationConfigurationCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetResourcePolicyCommandInput,
|
|
24
|
+
GetResourcePolicyCommandOutput,
|
|
25
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListResourcePermissionStatementsCommandInput,
|
|
28
|
+
ListResourcePermissionStatementsCommandOutput,
|
|
29
|
+
} from "./commands/ListResourcePermissionStatementsCommand";
|
|
30
|
+
import {
|
|
31
|
+
PutConsoleAuthorizationConfigurationCommandInput,
|
|
32
|
+
PutConsoleAuthorizationConfigurationCommandOutput,
|
|
33
|
+
} from "./commands/PutConsoleAuthorizationConfigurationCommand";
|
|
34
|
+
import {
|
|
35
|
+
PutResourcePermissionStatementCommandInput,
|
|
36
|
+
PutResourcePermissionStatementCommandOutput,
|
|
37
|
+
} from "./commands/PutResourcePermissionStatementCommand";
|
|
6
38
|
import { SigninClient } from "./SigninClient";
|
|
7
39
|
export interface Signin {
|
|
8
40
|
createOAuth2Token(
|
|
@@ -18,5 +50,133 @@ export interface Signin {
|
|
|
18
50
|
options: __HttpHandlerOptions,
|
|
19
51
|
cb: (err: any, data?: CreateOAuth2TokenCommandOutput) => void
|
|
20
52
|
): void;
|
|
53
|
+
deleteConsoleAuthorizationConfiguration(): Promise<DeleteConsoleAuthorizationConfigurationCommandOutput>;
|
|
54
|
+
deleteConsoleAuthorizationConfiguration(
|
|
55
|
+
args: DeleteConsoleAuthorizationConfigurationCommandInput,
|
|
56
|
+
options?: __HttpHandlerOptions
|
|
57
|
+
): Promise<DeleteConsoleAuthorizationConfigurationCommandOutput>;
|
|
58
|
+
deleteConsoleAuthorizationConfiguration(
|
|
59
|
+
args: DeleteConsoleAuthorizationConfigurationCommandInput,
|
|
60
|
+
cb: (
|
|
61
|
+
err: any,
|
|
62
|
+
data?: DeleteConsoleAuthorizationConfigurationCommandOutput
|
|
63
|
+
) => void
|
|
64
|
+
): void;
|
|
65
|
+
deleteConsoleAuthorizationConfiguration(
|
|
66
|
+
args: DeleteConsoleAuthorizationConfigurationCommandInput,
|
|
67
|
+
options: __HttpHandlerOptions,
|
|
68
|
+
cb: (
|
|
69
|
+
err: any,
|
|
70
|
+
data?: DeleteConsoleAuthorizationConfigurationCommandOutput
|
|
71
|
+
) => void
|
|
72
|
+
): void;
|
|
73
|
+
deleteResourcePermissionStatement(
|
|
74
|
+
args: DeleteResourcePermissionStatementCommandInput,
|
|
75
|
+
options?: __HttpHandlerOptions
|
|
76
|
+
): Promise<DeleteResourcePermissionStatementCommandOutput>;
|
|
77
|
+
deleteResourcePermissionStatement(
|
|
78
|
+
args: DeleteResourcePermissionStatementCommandInput,
|
|
79
|
+
cb: (
|
|
80
|
+
err: any,
|
|
81
|
+
data?: DeleteResourcePermissionStatementCommandOutput
|
|
82
|
+
) => void
|
|
83
|
+
): void;
|
|
84
|
+
deleteResourcePermissionStatement(
|
|
85
|
+
args: DeleteResourcePermissionStatementCommandInput,
|
|
86
|
+
options: __HttpHandlerOptions,
|
|
87
|
+
cb: (
|
|
88
|
+
err: any,
|
|
89
|
+
data?: DeleteResourcePermissionStatementCommandOutput
|
|
90
|
+
) => void
|
|
91
|
+
): void;
|
|
92
|
+
getConsoleAuthorizationConfiguration(): Promise<GetConsoleAuthorizationConfigurationCommandOutput>;
|
|
93
|
+
getConsoleAuthorizationConfiguration(
|
|
94
|
+
args: GetConsoleAuthorizationConfigurationCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<GetConsoleAuthorizationConfigurationCommandOutput>;
|
|
97
|
+
getConsoleAuthorizationConfiguration(
|
|
98
|
+
args: GetConsoleAuthorizationConfigurationCommandInput,
|
|
99
|
+
cb: (
|
|
100
|
+
err: any,
|
|
101
|
+
data?: GetConsoleAuthorizationConfigurationCommandOutput
|
|
102
|
+
) => void
|
|
103
|
+
): void;
|
|
104
|
+
getConsoleAuthorizationConfiguration(
|
|
105
|
+
args: GetConsoleAuthorizationConfigurationCommandInput,
|
|
106
|
+
options: __HttpHandlerOptions,
|
|
107
|
+
cb: (
|
|
108
|
+
err: any,
|
|
109
|
+
data?: GetConsoleAuthorizationConfigurationCommandOutput
|
|
110
|
+
) => void
|
|
111
|
+
): void;
|
|
112
|
+
getResourcePolicy(): Promise<GetResourcePolicyCommandOutput>;
|
|
113
|
+
getResourcePolicy(
|
|
114
|
+
args: GetResourcePolicyCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<GetResourcePolicyCommandOutput>;
|
|
117
|
+
getResourcePolicy(
|
|
118
|
+
args: GetResourcePolicyCommandInput,
|
|
119
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
getResourcePolicy(
|
|
122
|
+
args: GetResourcePolicyCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
125
|
+
): void;
|
|
126
|
+
listResourcePermissionStatements(): Promise<ListResourcePermissionStatementsCommandOutput>;
|
|
127
|
+
listResourcePermissionStatements(
|
|
128
|
+
args: ListResourcePermissionStatementsCommandInput,
|
|
129
|
+
options?: __HttpHandlerOptions
|
|
130
|
+
): Promise<ListResourcePermissionStatementsCommandOutput>;
|
|
131
|
+
listResourcePermissionStatements(
|
|
132
|
+
args: ListResourcePermissionStatementsCommandInput,
|
|
133
|
+
cb: (err: any, data?: ListResourcePermissionStatementsCommandOutput) => void
|
|
134
|
+
): void;
|
|
135
|
+
listResourcePermissionStatements(
|
|
136
|
+
args: ListResourcePermissionStatementsCommandInput,
|
|
137
|
+
options: __HttpHandlerOptions,
|
|
138
|
+
cb: (err: any, data?: ListResourcePermissionStatementsCommandOutput) => void
|
|
139
|
+
): void;
|
|
140
|
+
putConsoleAuthorizationConfiguration(): Promise<PutConsoleAuthorizationConfigurationCommandOutput>;
|
|
141
|
+
putConsoleAuthorizationConfiguration(
|
|
142
|
+
args: PutConsoleAuthorizationConfigurationCommandInput,
|
|
143
|
+
options?: __HttpHandlerOptions
|
|
144
|
+
): Promise<PutConsoleAuthorizationConfigurationCommandOutput>;
|
|
145
|
+
putConsoleAuthorizationConfiguration(
|
|
146
|
+
args: PutConsoleAuthorizationConfigurationCommandInput,
|
|
147
|
+
cb: (
|
|
148
|
+
err: any,
|
|
149
|
+
data?: PutConsoleAuthorizationConfigurationCommandOutput
|
|
150
|
+
) => void
|
|
151
|
+
): void;
|
|
152
|
+
putConsoleAuthorizationConfiguration(
|
|
153
|
+
args: PutConsoleAuthorizationConfigurationCommandInput,
|
|
154
|
+
options: __HttpHandlerOptions,
|
|
155
|
+
cb: (
|
|
156
|
+
err: any,
|
|
157
|
+
data?: PutConsoleAuthorizationConfigurationCommandOutput
|
|
158
|
+
) => void
|
|
159
|
+
): void;
|
|
160
|
+
putResourcePermissionStatement(): Promise<PutResourcePermissionStatementCommandOutput>;
|
|
161
|
+
putResourcePermissionStatement(
|
|
162
|
+
args: PutResourcePermissionStatementCommandInput,
|
|
163
|
+
options?: __HttpHandlerOptions
|
|
164
|
+
): Promise<PutResourcePermissionStatementCommandOutput>;
|
|
165
|
+
putResourcePermissionStatement(
|
|
166
|
+
args: PutResourcePermissionStatementCommandInput,
|
|
167
|
+
cb: (err: any, data?: PutResourcePermissionStatementCommandOutput) => void
|
|
168
|
+
): void;
|
|
169
|
+
putResourcePermissionStatement(
|
|
170
|
+
args: PutResourcePermissionStatementCommandInput,
|
|
171
|
+
options: __HttpHandlerOptions,
|
|
172
|
+
cb: (err: any, data?: PutResourcePermissionStatementCommandOutput) => void
|
|
173
|
+
): void;
|
|
174
|
+
paginateListResourcePermissionStatements(
|
|
175
|
+
args?: ListResourcePermissionStatementsCommandInput,
|
|
176
|
+
paginationConfig?: Pick<
|
|
177
|
+
PaginationConfiguration,
|
|
178
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
179
|
+
>
|
|
180
|
+
): Paginator<ListResourcePermissionStatementsCommandOutput>;
|
|
21
181
|
}
|
|
22
182
|
export declare class Signin extends SigninClient implements Signin {}
|
|
@@ -40,6 +40,34 @@ import {
|
|
|
40
40
|
CreateOAuth2TokenCommandInput,
|
|
41
41
|
CreateOAuth2TokenCommandOutput,
|
|
42
42
|
} from "./commands/CreateOAuth2TokenCommand";
|
|
43
|
+
import {
|
|
44
|
+
DeleteConsoleAuthorizationConfigurationCommandInput,
|
|
45
|
+
DeleteConsoleAuthorizationConfigurationCommandOutput,
|
|
46
|
+
} from "./commands/DeleteConsoleAuthorizationConfigurationCommand";
|
|
47
|
+
import {
|
|
48
|
+
DeleteResourcePermissionStatementCommandInput,
|
|
49
|
+
DeleteResourcePermissionStatementCommandOutput,
|
|
50
|
+
} from "./commands/DeleteResourcePermissionStatementCommand";
|
|
51
|
+
import {
|
|
52
|
+
GetConsoleAuthorizationConfigurationCommandInput,
|
|
53
|
+
GetConsoleAuthorizationConfigurationCommandOutput,
|
|
54
|
+
} from "./commands/GetConsoleAuthorizationConfigurationCommand";
|
|
55
|
+
import {
|
|
56
|
+
GetResourcePolicyCommandInput,
|
|
57
|
+
GetResourcePolicyCommandOutput,
|
|
58
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
59
|
+
import {
|
|
60
|
+
ListResourcePermissionStatementsCommandInput,
|
|
61
|
+
ListResourcePermissionStatementsCommandOutput,
|
|
62
|
+
} from "./commands/ListResourcePermissionStatementsCommand";
|
|
63
|
+
import {
|
|
64
|
+
PutConsoleAuthorizationConfigurationCommandInput,
|
|
65
|
+
PutConsoleAuthorizationConfigurationCommandOutput,
|
|
66
|
+
} from "./commands/PutConsoleAuthorizationConfigurationCommand";
|
|
67
|
+
import {
|
|
68
|
+
PutResourcePermissionStatementCommandInput,
|
|
69
|
+
PutResourcePermissionStatementCommandOutput,
|
|
70
|
+
} from "./commands/PutResourcePermissionStatementCommand";
|
|
43
71
|
import {
|
|
44
72
|
ClientInputEndpointParameters,
|
|
45
73
|
ClientResolvedEndpointParameters,
|
|
@@ -47,8 +75,24 @@ import {
|
|
|
47
75
|
} from "./endpoint/EndpointParameters";
|
|
48
76
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
49
77
|
export { __Client };
|
|
50
|
-
export type ServiceInputTypes =
|
|
51
|
-
|
|
78
|
+
export type ServiceInputTypes =
|
|
79
|
+
| CreateOAuth2TokenCommandInput
|
|
80
|
+
| DeleteConsoleAuthorizationConfigurationCommandInput
|
|
81
|
+
| DeleteResourcePermissionStatementCommandInput
|
|
82
|
+
| GetConsoleAuthorizationConfigurationCommandInput
|
|
83
|
+
| GetResourcePolicyCommandInput
|
|
84
|
+
| ListResourcePermissionStatementsCommandInput
|
|
85
|
+
| PutConsoleAuthorizationConfigurationCommandInput
|
|
86
|
+
| PutResourcePermissionStatementCommandInput;
|
|
87
|
+
export type ServiceOutputTypes =
|
|
88
|
+
| CreateOAuth2TokenCommandOutput
|
|
89
|
+
| DeleteConsoleAuthorizationConfigurationCommandOutput
|
|
90
|
+
| DeleteResourcePermissionStatementCommandOutput
|
|
91
|
+
| GetConsoleAuthorizationConfigurationCommandOutput
|
|
92
|
+
| GetResourcePolicyCommandOutput
|
|
93
|
+
| ListResourcePermissionStatementsCommandOutput
|
|
94
|
+
| PutConsoleAuthorizationConfigurationCommandOutput
|
|
95
|
+
| PutResourcePermissionStatementCommandOutput;
|
|
52
96
|
export interface ClientDefaults
|
|
53
97
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
54
98
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -4,7 +4,11 @@ import {
|
|
|
4
4
|
CreateOAuth2TokenRequest,
|
|
5
5
|
CreateOAuth2TokenResponse,
|
|
6
6
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SigninClientResolvedConfig,
|
|
11
|
+
} from "../SigninClient";
|
|
8
12
|
export { __MetadataBearer };
|
|
9
13
|
export { $Command };
|
|
10
14
|
export interface CreateOAuth2TokenCommandInput
|
|
@@ -19,8 +23,8 @@ declare const CreateOAuth2TokenCommand_base: {
|
|
|
19
23
|
CreateOAuth2TokenCommandInput,
|
|
20
24
|
CreateOAuth2TokenCommandOutput,
|
|
21
25
|
SigninClientResolvedConfig,
|
|
22
|
-
|
|
23
|
-
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
24
28
|
>;
|
|
25
29
|
new (
|
|
26
30
|
input: CreateOAuth2TokenCommandInput
|
|
@@ -28,8 +32,8 @@ declare const CreateOAuth2TokenCommand_base: {
|
|
|
28
32
|
CreateOAuth2TokenCommandInput,
|
|
29
33
|
CreateOAuth2TokenCommandOutput,
|
|
30
34
|
SigninClientResolvedConfig,
|
|
31
|
-
|
|
32
|
-
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
33
37
|
>;
|
|
34
38
|
getEndpointParameterInstructions(): {
|
|
35
39
|
[x: string]: unknown;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteConsoleAuthorizationConfigurationInput,
|
|
5
|
+
DeleteConsoleAuthorizationConfigurationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SigninClientResolvedConfig,
|
|
11
|
+
} from "../SigninClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteConsoleAuthorizationConfigurationCommandInput
|
|
15
|
+
extends DeleteConsoleAuthorizationConfigurationInput {}
|
|
16
|
+
export interface DeleteConsoleAuthorizationConfigurationCommandOutput
|
|
17
|
+
extends DeleteConsoleAuthorizationConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteConsoleAuthorizationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteConsoleAuthorizationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteConsoleAuthorizationConfigurationCommandInput,
|
|
24
|
+
DeleteConsoleAuthorizationConfigurationCommandOutput,
|
|
25
|
+
SigninClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DeleteConsoleAuthorizationConfigurationCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteConsoleAuthorizationConfigurationCommandInput,
|
|
33
|
+
DeleteConsoleAuthorizationConfigurationCommandOutput,
|
|
34
|
+
SigninClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteConsoleAuthorizationConfigurationCommand extends DeleteConsoleAuthorizationConfigurationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DeleteConsoleAuthorizationConfigurationInput;
|
|
46
|
+
output: DeleteConsoleAuthorizationConfigurationOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteConsoleAuthorizationConfigurationCommandInput;
|
|
50
|
+
output: DeleteConsoleAuthorizationConfigurationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteResourcePermissionStatementInput,
|
|
5
|
+
DeleteResourcePermissionStatementOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SigninClientResolvedConfig,
|
|
11
|
+
} from "../SigninClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteResourcePermissionStatementCommandInput
|
|
15
|
+
extends DeleteResourcePermissionStatementInput {}
|
|
16
|
+
export interface DeleteResourcePermissionStatementCommandOutput
|
|
17
|
+
extends DeleteResourcePermissionStatementOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteResourcePermissionStatementCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteResourcePermissionStatementCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteResourcePermissionStatementCommandInput,
|
|
24
|
+
DeleteResourcePermissionStatementCommandOutput,
|
|
25
|
+
SigninClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteResourcePermissionStatementCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteResourcePermissionStatementCommandInput,
|
|
33
|
+
DeleteResourcePermissionStatementCommandOutput,
|
|
34
|
+
SigninClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteResourcePermissionStatementCommand extends DeleteResourcePermissionStatementCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DeleteResourcePermissionStatementInput;
|
|
46
|
+
output: {};
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteResourcePermissionStatementCommandInput;
|
|
50
|
+
output: DeleteResourcePermissionStatementCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetConsoleAuthorizationConfigurationInput,
|
|
5
|
+
GetConsoleAuthorizationConfigurationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SigninClientResolvedConfig,
|
|
11
|
+
} from "../SigninClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetConsoleAuthorizationConfigurationCommandInput
|
|
15
|
+
extends GetConsoleAuthorizationConfigurationInput {}
|
|
16
|
+
export interface GetConsoleAuthorizationConfigurationCommandOutput
|
|
17
|
+
extends GetConsoleAuthorizationConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetConsoleAuthorizationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetConsoleAuthorizationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetConsoleAuthorizationConfigurationCommandInput,
|
|
24
|
+
GetConsoleAuthorizationConfigurationCommandOutput,
|
|
25
|
+
SigninClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [GetConsoleAuthorizationConfigurationCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
GetConsoleAuthorizationConfigurationCommandInput,
|
|
33
|
+
GetConsoleAuthorizationConfigurationCommandOutput,
|
|
34
|
+
SigninClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class GetConsoleAuthorizationConfigurationCommand extends GetConsoleAuthorizationConfigurationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: GetConsoleAuthorizationConfigurationInput;
|
|
46
|
+
output: GetConsoleAuthorizationConfigurationOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: GetConsoleAuthorizationConfigurationCommandInput;
|
|
50
|
+
output: GetConsoleAuthorizationConfigurationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetResourcePolicyInput,
|
|
5
|
+
GetResourcePolicyOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SigninClientResolvedConfig,
|
|
11
|
+
} from "../SigninClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetResourcePolicyCommandInput extends GetResourcePolicyInput {}
|
|
15
|
+
export interface GetResourcePolicyCommandOutput
|
|
16
|
+
extends GetResourcePolicyOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetResourcePolicyCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetResourcePolicyCommandInput
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
|
+
GetResourcePolicyCommandInput,
|
|
23
|
+
GetResourcePolicyCommandOutput,
|
|
24
|
+
SigninClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [GetResourcePolicyCommandInput]
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
GetResourcePolicyCommandInput,
|
|
32
|
+
GetResourcePolicyCommandOutput,
|
|
33
|
+
SigninClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare class GetResourcePolicyCommand extends GetResourcePolicyCommand_base {
|
|
42
|
+
protected static __types: {
|
|
43
|
+
api: {
|
|
44
|
+
input: {};
|
|
45
|
+
output: GetResourcePolicyOutput;
|
|
46
|
+
};
|
|
47
|
+
sdk: {
|
|
48
|
+
input: GetResourcePolicyCommandInput;
|
|
49
|
+
output: GetResourcePolicyCommandOutput;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListResourcePermissionStatementsInput,
|
|
5
|
+
ListResourcePermissionStatementsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SigninClientResolvedConfig,
|
|
11
|
+
} from "../SigninClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListResourcePermissionStatementsCommandInput
|
|
15
|
+
extends ListResourcePermissionStatementsInput {}
|
|
16
|
+
export interface ListResourcePermissionStatementsCommandOutput
|
|
17
|
+
extends ListResourcePermissionStatementsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListResourcePermissionStatementsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListResourcePermissionStatementsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListResourcePermissionStatementsCommandInput,
|
|
24
|
+
ListResourcePermissionStatementsCommandOutput,
|
|
25
|
+
SigninClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListResourcePermissionStatementsCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListResourcePermissionStatementsCommandInput,
|
|
33
|
+
ListResourcePermissionStatementsCommandOutput,
|
|
34
|
+
SigninClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListResourcePermissionStatementsCommand extends ListResourcePermissionStatementsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListResourcePermissionStatementsInput;
|
|
46
|
+
output: ListResourcePermissionStatementsOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListResourcePermissionStatementsCommandInput;
|
|
50
|
+
output: ListResourcePermissionStatementsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
PutConsoleAuthorizationConfigurationInput,
|
|
5
|
+
PutConsoleAuthorizationConfigurationOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SigninClientResolvedConfig,
|
|
11
|
+
} from "../SigninClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutConsoleAuthorizationConfigurationCommandInput
|
|
15
|
+
extends PutConsoleAuthorizationConfigurationInput {}
|
|
16
|
+
export interface PutConsoleAuthorizationConfigurationCommandOutput
|
|
17
|
+
extends PutConsoleAuthorizationConfigurationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutConsoleAuthorizationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutConsoleAuthorizationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
PutConsoleAuthorizationConfigurationCommandInput,
|
|
24
|
+
PutConsoleAuthorizationConfigurationCommandOutput,
|
|
25
|
+
SigninClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [PutConsoleAuthorizationConfigurationCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
PutConsoleAuthorizationConfigurationCommandInput,
|
|
33
|
+
PutConsoleAuthorizationConfigurationCommandOutput,
|
|
34
|
+
SigninClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class PutConsoleAuthorizationConfigurationCommand extends PutConsoleAuthorizationConfigurationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: PutConsoleAuthorizationConfigurationInput;
|
|
46
|
+
output: PutConsoleAuthorizationConfigurationOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: PutConsoleAuthorizationConfigurationCommandInput;
|
|
50
|
+
output: PutConsoleAuthorizationConfigurationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
PutResourcePermissionStatementInput,
|
|
5
|
+
PutResourcePermissionStatementOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SigninClientResolvedConfig,
|
|
11
|
+
} from "../SigninClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutResourcePermissionStatementCommandInput
|
|
15
|
+
extends PutResourcePermissionStatementInput {}
|
|
16
|
+
export interface PutResourcePermissionStatementCommandOutput
|
|
17
|
+
extends PutResourcePermissionStatementOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutResourcePermissionStatementCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutResourcePermissionStatementCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
PutResourcePermissionStatementCommandInput,
|
|
24
|
+
PutResourcePermissionStatementCommandOutput,
|
|
25
|
+
SigninClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [PutResourcePermissionStatementCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
PutResourcePermissionStatementCommandInput,
|
|
33
|
+
PutResourcePermissionStatementCommandOutput,
|
|
34
|
+
SigninClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class PutResourcePermissionStatementCommand extends PutResourcePermissionStatementCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: PutResourcePermissionStatementInput;
|
|
46
|
+
output: PutResourcePermissionStatementOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: PutResourcePermissionStatementCommandInput;
|
|
50
|
+
output: PutResourcePermissionStatementCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1 +1,8 @@
|
|
|
1
1
|
export * from "./CreateOAuth2TokenCommand";
|
|
2
|
+
export * from "./DeleteConsoleAuthorizationConfigurationCommand";
|
|
3
|
+
export * from "./DeleteResourcePermissionStatementCommand";
|
|
4
|
+
export * from "./GetConsoleAuthorizationConfigurationCommand";
|
|
5
|
+
export * from "./GetResourcePolicyCommand";
|
|
6
|
+
export * from "./ListResourcePermissionStatementsCommand";
|
|
7
|
+
export * from "./PutConsoleAuthorizationConfigurationCommand";
|
|
8
|
+
export * from "./PutResourcePermissionStatementCommand";
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { SigninExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./schemas/schemas_0";
|
|
8
|
+
export * from "./pagination";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
|
10
11
|
export * from "./models/models_0";
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
export declare const OAuth2ErrorCode: {
|
|
2
2
|
readonly AUTHCODE_EXPIRED: "AUTHCODE_EXPIRED";
|
|
3
|
+
readonly CONFLICT: "CONFLICT";
|
|
3
4
|
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
|
|
4
5
|
readonly INVALID_REQUEST: "INVALID_REQUEST";
|
|
6
|
+
readonly RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND";
|
|
5
7
|
readonly SERVER_ERROR: "server_error";
|
|
8
|
+
readonly SERVICE_QUOTA_EXCEEDED: "SERVICE_QUOTA_EXCEEDED";
|
|
6
9
|
readonly TOKEN_EXPIRED: "TOKEN_EXPIRED";
|
|
7
10
|
readonly USER_CREDENTIALS_CHANGED: "USER_CREDENTIALS_CHANGED";
|
|
8
11
|
};
|