@aws-sdk/client-supportauthz 3.1077.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/LICENSE +201 -0
- package/README.md +258 -0
- package/dist-cjs/index.js +984 -0
- package/dist-es/SupportAuthZ.js +37 -0
- package/dist-es/SupportAuthZClient.js +47 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/CreateSupportPermitCommand.js +16 -0
- package/dist-es/commands/DeleteSupportPermitCommand.js +16 -0
- package/dist-es/commands/GetActionCommand.js +16 -0
- package/dist-es/commands/GetSupportPermitCommand.js +16 -0
- package/dist-es/commands/ListActionsCommand.js +16 -0
- package/dist-es/commands/ListSupportPermitRequestsCommand.js +16 -0
- package/dist-es/commands/ListSupportPermitsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/RejectSupportPermitRequestCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/bdd.js +29 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/SupportAuthZServiceException.js +8 -0
- package/dist-es/models/enums.js +11 -0
- package/dist-es/models/errors.js +111 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListActionsPaginator.js +4 -0
- package/dist-es/pagination/ListSupportPermitRequestsPaginator.js +4 -0
- package/dist-es/pagination/ListSupportPermitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +29 -0
- package/dist-es/runtimeConfig.js +43 -0
- package/dist-es/runtimeConfig.native.js +9 -0
- package/dist-es/runtimeConfig.shared.js +40 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +365 -0
- package/dist-types/SupportAuthZ.d.ts +110 -0
- package/dist-types/SupportAuthZClient.d.ts +197 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateSupportPermitCommand.d.ts +154 -0
- package/dist-types/commands/DeleteSupportPermitCommand.d.ts +119 -0
- package/dist-types/commands/GetActionCommand.d.ts +93 -0
- package/dist-types/commands/GetSupportPermitCommand.d.ts +122 -0
- package/dist-types/commands/ListActionsCommand.d.ts +97 -0
- package/dist-types/commands/ListSupportPermitRequestsCommand.d.ts +119 -0
- package/dist-types/commands/ListSupportPermitsCommand.d.ts +124 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +93 -0
- package/dist-types/commands/RejectSupportPermitRequestCommand.d.ts +94 -0
- package/dist-types/commands/TagResourceCommand.d.ts +92 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +92 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/SupportAuthZServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +48 -0
- package/dist-types/models/errors.d.ts +146 -0
- package/dist-types/models/models_0.d.ts +729 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListActionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSupportPermitRequestsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSupportPermitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +28 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +58 -0
- package/dist-types/ts3.4/SupportAuthZ.d.ts +221 -0
- package/dist-types/ts3.4/SupportAuthZClient.d.ts +177 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateSupportPermitCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteSupportPermitCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetActionCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetSupportPermitCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListSupportPermitRequestsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListSupportPermitsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/RejectSupportPermitRequestCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/SupportAuthZServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +15 -0
- package/dist-types/ts3.4/models/errors.d.ts +65 -0
- package/dist-types/ts3.4/models/models_0.d.ts +232 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListActionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSupportPermitRequestsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSupportPermitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +106 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +110 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +31 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
- package/package.json +69 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
UserAgentInputConfig,
|
|
5
|
+
UserAgentResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/core/client";
|
|
7
|
+
import {
|
|
8
|
+
DefaultsMode as __DefaultsMode,
|
|
9
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
10
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
11
|
+
Client as __Client,
|
|
12
|
+
} from "@smithy/core/client";
|
|
13
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
+
import {
|
|
15
|
+
EndpointInputConfig,
|
|
16
|
+
EndpointResolvedConfig,
|
|
17
|
+
} from "@smithy/core/endpoints";
|
|
18
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
|
+
import {
|
|
21
|
+
AwsCredentialIdentityProvider,
|
|
22
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
23
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
24
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
25
|
+
Decoder as __Decoder,
|
|
26
|
+
Encoder as __Encoder,
|
|
27
|
+
HashConstructor as __HashConstructor,
|
|
28
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
29
|
+
Logger as __Logger,
|
|
30
|
+
Provider as __Provider,
|
|
31
|
+
StreamCollector as __StreamCollector,
|
|
32
|
+
UrlParser as __UrlParser,
|
|
33
|
+
UserAgent as __UserAgent,
|
|
34
|
+
} from "@smithy/types";
|
|
35
|
+
import {
|
|
36
|
+
HttpAuthSchemeInputConfig,
|
|
37
|
+
HttpAuthSchemeResolvedConfig,
|
|
38
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
39
|
+
import {
|
|
40
|
+
CreateSupportPermitCommandInput,
|
|
41
|
+
CreateSupportPermitCommandOutput,
|
|
42
|
+
} from "./commands/CreateSupportPermitCommand";
|
|
43
|
+
import {
|
|
44
|
+
DeleteSupportPermitCommandInput,
|
|
45
|
+
DeleteSupportPermitCommandOutput,
|
|
46
|
+
} from "./commands/DeleteSupportPermitCommand";
|
|
47
|
+
import {
|
|
48
|
+
GetActionCommandInput,
|
|
49
|
+
GetActionCommandOutput,
|
|
50
|
+
} from "./commands/GetActionCommand";
|
|
51
|
+
import {
|
|
52
|
+
GetSupportPermitCommandInput,
|
|
53
|
+
GetSupportPermitCommandOutput,
|
|
54
|
+
} from "./commands/GetSupportPermitCommand";
|
|
55
|
+
import {
|
|
56
|
+
ListActionsCommandInput,
|
|
57
|
+
ListActionsCommandOutput,
|
|
58
|
+
} from "./commands/ListActionsCommand";
|
|
59
|
+
import {
|
|
60
|
+
ListSupportPermitRequestsCommandInput,
|
|
61
|
+
ListSupportPermitRequestsCommandOutput,
|
|
62
|
+
} from "./commands/ListSupportPermitRequestsCommand";
|
|
63
|
+
import {
|
|
64
|
+
ListSupportPermitsCommandInput,
|
|
65
|
+
ListSupportPermitsCommandOutput,
|
|
66
|
+
} from "./commands/ListSupportPermitsCommand";
|
|
67
|
+
import {
|
|
68
|
+
ListTagsForResourceCommandInput,
|
|
69
|
+
ListTagsForResourceCommandOutput,
|
|
70
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
71
|
+
import {
|
|
72
|
+
RejectSupportPermitRequestCommandInput,
|
|
73
|
+
RejectSupportPermitRequestCommandOutput,
|
|
74
|
+
} from "./commands/RejectSupportPermitRequestCommand";
|
|
75
|
+
import {
|
|
76
|
+
TagResourceCommandInput,
|
|
77
|
+
TagResourceCommandOutput,
|
|
78
|
+
} from "./commands/TagResourceCommand";
|
|
79
|
+
import {
|
|
80
|
+
UntagResourceCommandInput,
|
|
81
|
+
UntagResourceCommandOutput,
|
|
82
|
+
} from "./commands/UntagResourceCommand";
|
|
83
|
+
import {
|
|
84
|
+
ClientInputEndpointParameters,
|
|
85
|
+
ClientResolvedEndpointParameters,
|
|
86
|
+
EndpointParameters,
|
|
87
|
+
} from "./endpoint/EndpointParameters";
|
|
88
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
89
|
+
export { __Client };
|
|
90
|
+
export type ServiceInputTypes =
|
|
91
|
+
| CreateSupportPermitCommandInput
|
|
92
|
+
| DeleteSupportPermitCommandInput
|
|
93
|
+
| GetActionCommandInput
|
|
94
|
+
| GetSupportPermitCommandInput
|
|
95
|
+
| ListActionsCommandInput
|
|
96
|
+
| ListSupportPermitRequestsCommandInput
|
|
97
|
+
| ListSupportPermitsCommandInput
|
|
98
|
+
| ListTagsForResourceCommandInput
|
|
99
|
+
| RejectSupportPermitRequestCommandInput
|
|
100
|
+
| TagResourceCommandInput
|
|
101
|
+
| UntagResourceCommandInput;
|
|
102
|
+
export type ServiceOutputTypes =
|
|
103
|
+
| CreateSupportPermitCommandOutput
|
|
104
|
+
| DeleteSupportPermitCommandOutput
|
|
105
|
+
| GetActionCommandOutput
|
|
106
|
+
| GetSupportPermitCommandOutput
|
|
107
|
+
| ListActionsCommandOutput
|
|
108
|
+
| ListSupportPermitRequestsCommandOutput
|
|
109
|
+
| ListSupportPermitsCommandOutput
|
|
110
|
+
| ListTagsForResourceCommandOutput
|
|
111
|
+
| RejectSupportPermitRequestCommandOutput
|
|
112
|
+
| TagResourceCommandOutput
|
|
113
|
+
| UntagResourceCommandOutput;
|
|
114
|
+
export interface ClientDefaults
|
|
115
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
116
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
117
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
118
|
+
urlParser?: __UrlParser;
|
|
119
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
120
|
+
streamCollector?: __StreamCollector;
|
|
121
|
+
base64Decoder?: __Decoder;
|
|
122
|
+
base64Encoder?: __Encoder;
|
|
123
|
+
utf8Decoder?: __Decoder;
|
|
124
|
+
utf8Encoder?: __Encoder;
|
|
125
|
+
runtime?: string;
|
|
126
|
+
disableHostPrefix?: boolean;
|
|
127
|
+
serviceId?: string;
|
|
128
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
129
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
130
|
+
region?: string | __Provider<string>;
|
|
131
|
+
profile?: string;
|
|
132
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
133
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
134
|
+
maxAttempts?: number | __Provider<number>;
|
|
135
|
+
retryMode?: string | __Provider<string>;
|
|
136
|
+
logger?: __Logger;
|
|
137
|
+
extensions?: RuntimeExtension[];
|
|
138
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
139
|
+
}
|
|
140
|
+
export type SupportAuthZClientConfigType = Partial<
|
|
141
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
142
|
+
> &
|
|
143
|
+
ClientDefaults &
|
|
144
|
+
UserAgentInputConfig &
|
|
145
|
+
RetryInputConfig &
|
|
146
|
+
RegionInputConfig &
|
|
147
|
+
HostHeaderInputConfig &
|
|
148
|
+
EndpointInputConfig<EndpointParameters> &
|
|
149
|
+
HttpAuthSchemeInputConfig &
|
|
150
|
+
ClientInputEndpointParameters;
|
|
151
|
+
export interface SupportAuthZClientConfig
|
|
152
|
+
extends SupportAuthZClientConfigType {}
|
|
153
|
+
export type SupportAuthZClientResolvedConfigType =
|
|
154
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
155
|
+
Required<ClientDefaults> &
|
|
156
|
+
RuntimeExtensionsConfig &
|
|
157
|
+
UserAgentResolvedConfig &
|
|
158
|
+
RetryResolvedConfig &
|
|
159
|
+
RegionResolvedConfig &
|
|
160
|
+
HostHeaderResolvedConfig &
|
|
161
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
162
|
+
HttpAuthSchemeResolvedConfig &
|
|
163
|
+
ClientResolvedEndpointParameters;
|
|
164
|
+
export interface SupportAuthZClientResolvedConfig
|
|
165
|
+
extends SupportAuthZClientResolvedConfigType {}
|
|
166
|
+
export declare class SupportAuthZClient extends __Client<
|
|
167
|
+
__HttpHandlerOptions,
|
|
168
|
+
ServiceInputTypes,
|
|
169
|
+
ServiceOutputTypes,
|
|
170
|
+
SupportAuthZClientResolvedConfig
|
|
171
|
+
> {
|
|
172
|
+
readonly config: SupportAuthZClientResolvedConfig;
|
|
173
|
+
constructor(
|
|
174
|
+
...[configuration]: __CheckOptionalClientConfig<SupportAuthZClientConfig>
|
|
175
|
+
);
|
|
176
|
+
destroy(): void;
|
|
177
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { SupportAuthZHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: SupportAuthZHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): SupportAuthZHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: SupportAuthZHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core/httpAuthSchemes";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { SupportAuthZClientResolvedConfig } from "../SupportAuthZClient";
|
|
15
|
+
export interface SupportAuthZHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface SupportAuthZHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
SupportAuthZClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
SupportAuthZHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultSupportAuthZHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: SupportAuthZClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<SupportAuthZHttpAuthSchemeParameters>;
|
|
31
|
+
export interface SupportAuthZHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<SupportAuthZHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultSupportAuthZHttpAuthSchemeProvider: SupportAuthZHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: SupportAuthZHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: SupportAuthZHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateSupportPermitInput,
|
|
5
|
+
CreateSupportPermitOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupportAuthZClientResolvedConfig,
|
|
11
|
+
} from "../SupportAuthZClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateSupportPermitCommandInput
|
|
15
|
+
extends CreateSupportPermitInput {}
|
|
16
|
+
export interface CreateSupportPermitCommandOutput
|
|
17
|
+
extends CreateSupportPermitOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateSupportPermitCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateSupportPermitCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
CreateSupportPermitCommandInput,
|
|
24
|
+
CreateSupportPermitCommandOutput,
|
|
25
|
+
SupportAuthZClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateSupportPermitCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
CreateSupportPermitCommandInput,
|
|
33
|
+
CreateSupportPermitCommandOutput,
|
|
34
|
+
SupportAuthZClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class CreateSupportPermitCommand extends CreateSupportPermitCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: CreateSupportPermitInput;
|
|
46
|
+
output: CreateSupportPermitOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: CreateSupportPermitCommandInput;
|
|
50
|
+
output: CreateSupportPermitCommandOutput;
|
|
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
|
+
DeleteSupportPermitInput,
|
|
5
|
+
DeleteSupportPermitOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupportAuthZClientResolvedConfig,
|
|
11
|
+
} from "../SupportAuthZClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteSupportPermitCommandInput
|
|
15
|
+
extends DeleteSupportPermitInput {}
|
|
16
|
+
export interface DeleteSupportPermitCommandOutput
|
|
17
|
+
extends DeleteSupportPermitOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteSupportPermitCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteSupportPermitCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteSupportPermitCommandInput,
|
|
24
|
+
DeleteSupportPermitCommandOutput,
|
|
25
|
+
SupportAuthZClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteSupportPermitCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteSupportPermitCommandInput,
|
|
33
|
+
DeleteSupportPermitCommandOutput,
|
|
34
|
+
SupportAuthZClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteSupportPermitCommand extends DeleteSupportPermitCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DeleteSupportPermitInput;
|
|
46
|
+
output: DeleteSupportPermitOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteSupportPermitCommandInput;
|
|
50
|
+
output: DeleteSupportPermitCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetActionInput, GetActionOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SupportAuthZClientResolvedConfig,
|
|
8
|
+
} from "../SupportAuthZClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetActionCommandInput extends GetActionInput {}
|
|
12
|
+
export interface GetActionCommandOutput
|
|
13
|
+
extends GetActionOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetActionCommand_base: {
|
|
16
|
+
new (input: GetActionCommandInput): import("@smithy/core/client").CommandImpl<
|
|
17
|
+
GetActionCommandInput,
|
|
18
|
+
GetActionCommandOutput,
|
|
19
|
+
SupportAuthZClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (input: GetActionCommandInput): import("@smithy/core/client").CommandImpl<
|
|
24
|
+
GetActionCommandInput,
|
|
25
|
+
GetActionCommandOutput,
|
|
26
|
+
SupportAuthZClientResolvedConfig,
|
|
27
|
+
ServiceInputTypes,
|
|
28
|
+
ServiceOutputTypes
|
|
29
|
+
>;
|
|
30
|
+
getEndpointParameterInstructions(): {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare class GetActionCommand extends GetActionCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: GetActionInput;
|
|
38
|
+
output: GetActionOutput;
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: GetActionCommandInput;
|
|
42
|
+
output: GetActionCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetSupportPermitInput,
|
|
5
|
+
GetSupportPermitOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupportAuthZClientResolvedConfig,
|
|
11
|
+
} from "../SupportAuthZClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetSupportPermitCommandInput extends GetSupportPermitInput {}
|
|
15
|
+
export interface GetSupportPermitCommandOutput
|
|
16
|
+
extends GetSupportPermitOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetSupportPermitCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetSupportPermitCommandInput
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
|
+
GetSupportPermitCommandInput,
|
|
23
|
+
GetSupportPermitCommandOutput,
|
|
24
|
+
SupportAuthZClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetSupportPermitCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
GetSupportPermitCommandInput,
|
|
32
|
+
GetSupportPermitCommandOutput,
|
|
33
|
+
SupportAuthZClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export declare class GetSupportPermitCommand extends GetSupportPermitCommand_base {
|
|
42
|
+
protected static __types: {
|
|
43
|
+
api: {
|
|
44
|
+
input: GetSupportPermitInput;
|
|
45
|
+
output: GetSupportPermitOutput;
|
|
46
|
+
};
|
|
47
|
+
sdk: {
|
|
48
|
+
input: GetSupportPermitCommandInput;
|
|
49
|
+
output: GetSupportPermitCommandOutput;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListActionsInput, ListActionsOutput } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SupportAuthZClientResolvedConfig,
|
|
8
|
+
} from "../SupportAuthZClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListActionsCommandInput extends ListActionsInput {}
|
|
12
|
+
export interface ListActionsCommandOutput
|
|
13
|
+
extends ListActionsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListActionsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListActionsCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
ListActionsCommandInput,
|
|
20
|
+
ListActionsCommandOutput,
|
|
21
|
+
SupportAuthZClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: ListActionsCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
ListActionsCommandInput,
|
|
29
|
+
ListActionsCommandOutput,
|
|
30
|
+
SupportAuthZClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class ListActionsCommand extends ListActionsCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: ListActionsInput;
|
|
42
|
+
output: ListActionsOutput;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: ListActionsCommandInput;
|
|
46
|
+
output: ListActionsCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListSupportPermitRequestsInput,
|
|
5
|
+
ListSupportPermitRequestsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupportAuthZClientResolvedConfig,
|
|
11
|
+
} from "../SupportAuthZClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListSupportPermitRequestsCommandInput
|
|
15
|
+
extends ListSupportPermitRequestsInput {}
|
|
16
|
+
export interface ListSupportPermitRequestsCommandOutput
|
|
17
|
+
extends ListSupportPermitRequestsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListSupportPermitRequestsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListSupportPermitRequestsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListSupportPermitRequestsCommandInput,
|
|
24
|
+
ListSupportPermitRequestsCommandOutput,
|
|
25
|
+
SupportAuthZClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListSupportPermitRequestsCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListSupportPermitRequestsCommandInput,
|
|
33
|
+
ListSupportPermitRequestsCommandOutput,
|
|
34
|
+
SupportAuthZClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListSupportPermitRequestsCommand extends ListSupportPermitRequestsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListSupportPermitRequestsInput;
|
|
46
|
+
output: ListSupportPermitRequestsOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListSupportPermitRequestsCommandInput;
|
|
50
|
+
output: ListSupportPermitRequestsCommandOutput;
|
|
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
|
+
ListSupportPermitsInput,
|
|
5
|
+
ListSupportPermitsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupportAuthZClientResolvedConfig,
|
|
11
|
+
} from "../SupportAuthZClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListSupportPermitsCommandInput
|
|
15
|
+
extends ListSupportPermitsInput {}
|
|
16
|
+
export interface ListSupportPermitsCommandOutput
|
|
17
|
+
extends ListSupportPermitsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListSupportPermitsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListSupportPermitsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListSupportPermitsCommandInput,
|
|
24
|
+
ListSupportPermitsCommandOutput,
|
|
25
|
+
SupportAuthZClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListSupportPermitsCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListSupportPermitsCommandInput,
|
|
33
|
+
ListSupportPermitsCommandOutput,
|
|
34
|
+
SupportAuthZClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListSupportPermitsCommand extends ListSupportPermitsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListSupportPermitsInput;
|
|
46
|
+
output: ListSupportPermitsOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListSupportPermitsCommandInput;
|
|
50
|
+
output: ListSupportPermitsCommandOutput;
|
|
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
|
+
ListTagsForResourceInput,
|
|
5
|
+
ListTagsForResourceOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupportAuthZClientResolvedConfig,
|
|
11
|
+
} from "../SupportAuthZClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTagsForResourceCommandInput
|
|
15
|
+
extends ListTagsForResourceInput {}
|
|
16
|
+
export interface ListTagsForResourceCommandOutput
|
|
17
|
+
extends ListTagsForResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTagsForResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTagsForResourceCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
SupportAuthZClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListTagsForResourceCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListTagsForResourceCommandInput,
|
|
33
|
+
ListTagsForResourceCommandOutput,
|
|
34
|
+
SupportAuthZClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListTagsForResourceInput;
|
|
46
|
+
output: ListTagsForResourceOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListTagsForResourceCommandInput;
|
|
50
|
+
output: ListTagsForResourceCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|