@aws-sdk/client-appfabric 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1127 -1145
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AppFabricClient.js +2 -0
- package/dist-es/commands/BatchGetUserAccessTasksCommand.js +3 -10
- package/dist-es/commands/ConnectAppAuthorizationCommand.js +3 -10
- package/dist-es/commands/CreateAppAuthorizationCommand.js +3 -10
- package/dist-es/commands/CreateAppBundleCommand.js +3 -9
- package/dist-es/commands/CreateIngestionCommand.js +3 -9
- package/dist-es/commands/CreateIngestionDestinationCommand.js +3 -9
- package/dist-es/commands/DeleteAppAuthorizationCommand.js +3 -9
- package/dist-es/commands/DeleteAppBundleCommand.js +3 -9
- package/dist-es/commands/DeleteIngestionCommand.js +3 -9
- package/dist-es/commands/DeleteIngestionDestinationCommand.js +3 -9
- package/dist-es/commands/GetAppAuthorizationCommand.js +3 -9
- package/dist-es/commands/GetAppBundleCommand.js +3 -9
- package/dist-es/commands/GetIngestionCommand.js +3 -9
- package/dist-es/commands/GetIngestionDestinationCommand.js +3 -9
- package/dist-es/commands/ListAppAuthorizationsCommand.js +3 -9
- package/dist-es/commands/ListAppBundlesCommand.js +3 -9
- package/dist-es/commands/ListIngestionDestinationsCommand.js +3 -9
- package/dist-es/commands/ListIngestionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartIngestionCommand.js +3 -9
- package/dist-es/commands/StartUserAccessTasksCommand.js +3 -10
- package/dist-es/commands/StopIngestionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAppAuthorizationCommand.js +3 -10
- package/dist-es/commands/UpdateIngestionDestinationCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -51
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1059 -0
- package/dist-types/AppFabricClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -40
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +125 -0
- package/dist-types/ts3.4/AppFabricClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +131 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -887
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -236
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -317
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { BatchGetUserAccessTasksCommandInput, BatchGetUserAccessTasksCommandOutput } from "./commands/BatchGetUserAccessTasksCommand";
|
|
11
11
|
import { ConnectAppAuthorizationCommandInput, ConnectAppAuthorizationCommandOutput } from "./commands/ConnectAppAuthorizationCommand";
|
|
@@ -167,6 +167,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
167
167
|
* Optional extensions
|
|
168
168
|
*/
|
|
169
169
|
extensions?: RuntimeExtension[];
|
|
170
|
+
/**
|
|
171
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
172
|
+
* may be overridden. A default will always be set by the client.
|
|
173
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
174
|
+
* the client.
|
|
175
|
+
* @alpha
|
|
176
|
+
*
|
|
177
|
+
*/
|
|
178
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
170
179
|
/**
|
|
171
180
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
172
181
|
*/
|
|
@@ -2021,43 +2021,3 @@ export interface UpdateIngestionDestinationResponse {
|
|
|
2021
2021
|
*/
|
|
2022
2022
|
ingestionDestination: IngestionDestination | undefined;
|
|
2023
2023
|
}
|
|
2024
|
-
/**
|
|
2025
|
-
* @internal
|
|
2026
|
-
*/
|
|
2027
|
-
export declare const ApiKeyCredentialFilterSensitiveLog: (obj: ApiKeyCredential) => any;
|
|
2028
|
-
/**
|
|
2029
|
-
* @internal
|
|
2030
|
-
*/
|
|
2031
|
-
export declare const AuthRequestFilterSensitiveLog: (obj: AuthRequest) => any;
|
|
2032
|
-
/**
|
|
2033
|
-
* @internal
|
|
2034
|
-
*/
|
|
2035
|
-
export declare const UserAccessResultItemFilterSensitiveLog: (obj: UserAccessResultItem) => any;
|
|
2036
|
-
/**
|
|
2037
|
-
* @internal
|
|
2038
|
-
*/
|
|
2039
|
-
export declare const BatchGetUserAccessTasksResponseFilterSensitiveLog: (obj: BatchGetUserAccessTasksResponse) => any;
|
|
2040
|
-
/**
|
|
2041
|
-
* @internal
|
|
2042
|
-
*/
|
|
2043
|
-
export declare const ConnectAppAuthorizationRequestFilterSensitiveLog: (obj: ConnectAppAuthorizationRequest) => any;
|
|
2044
|
-
/**
|
|
2045
|
-
* @internal
|
|
2046
|
-
*/
|
|
2047
|
-
export declare const Oauth2CredentialFilterSensitiveLog: (obj: Oauth2Credential) => any;
|
|
2048
|
-
/**
|
|
2049
|
-
* @internal
|
|
2050
|
-
*/
|
|
2051
|
-
export declare const CredentialFilterSensitiveLog: (obj: Credential) => any;
|
|
2052
|
-
/**
|
|
2053
|
-
* @internal
|
|
2054
|
-
*/
|
|
2055
|
-
export declare const CreateAppAuthorizationRequestFilterSensitiveLog: (obj: CreateAppAuthorizationRequest) => any;
|
|
2056
|
-
/**
|
|
2057
|
-
* @internal
|
|
2058
|
-
*/
|
|
2059
|
-
export declare const StartUserAccessTasksRequestFilterSensitiveLog: (obj: StartUserAccessTasksRequest) => any;
|
|
2060
|
-
/**
|
|
2061
|
-
* @internal
|
|
2062
|
-
*/
|
|
2063
|
-
export declare const UpdateAppAuthorizationRequestFilterSensitiveLog: (obj: UpdateAppAuthorizationRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -8,16 +8,13 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
|
|
|
8
8
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
-
logger
|
|
12
|
-
/**
|
|
13
|
-
* @internal
|
|
14
|
-
*/
|
|
15
|
-
?: import("@smithy/types").Logger;
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
16
12
|
}) => import("@smithy/types").EndpointV2;
|
|
17
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
18
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AppFabricHttpAuthSchemeProvider;
|
|
19
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
20
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
21
18
|
serviceId: string;
|
|
22
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Email: StaticSimpleSchema;
|
|
3
|
+
export declare var SensitiveString2048: StaticSimpleSchema;
|
|
4
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
5
|
+
export declare var ApiKeyCredential: StaticStructureSchema;
|
|
6
|
+
export declare var AppAuthorization: StaticStructureSchema;
|
|
7
|
+
export declare var AppAuthorizationSummary: StaticStructureSchema;
|
|
8
|
+
export declare var AppBundle: StaticStructureSchema;
|
|
9
|
+
export declare var AppBundleSummary: StaticStructureSchema;
|
|
10
|
+
export declare var AuditLogDestinationConfiguration: StaticStructureSchema;
|
|
11
|
+
export declare var AuditLogProcessingConfiguration: StaticStructureSchema;
|
|
12
|
+
export declare var AuthRequest: StaticStructureSchema;
|
|
13
|
+
export declare var BatchGetUserAccessTasksRequest: StaticStructureSchema;
|
|
14
|
+
export declare var BatchGetUserAccessTasksResponse: StaticStructureSchema;
|
|
15
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
16
|
+
export declare var ConnectAppAuthorizationRequest: StaticStructureSchema;
|
|
17
|
+
export declare var ConnectAppAuthorizationResponse: StaticStructureSchema;
|
|
18
|
+
export declare var CreateAppAuthorizationRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateAppAuthorizationResponse: StaticStructureSchema;
|
|
20
|
+
export declare var CreateAppBundleRequest: StaticStructureSchema;
|
|
21
|
+
export declare var CreateAppBundleResponse: StaticStructureSchema;
|
|
22
|
+
export declare var CreateIngestionDestinationRequest: StaticStructureSchema;
|
|
23
|
+
export declare var CreateIngestionDestinationResponse: StaticStructureSchema;
|
|
24
|
+
export declare var CreateIngestionRequest: StaticStructureSchema;
|
|
25
|
+
export declare var CreateIngestionResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteAppAuthorizationRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteAppAuthorizationResponse: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteAppBundleRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteAppBundleResponse: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteIngestionDestinationRequest: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteIngestionDestinationResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteIngestionRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteIngestionResponse: StaticStructureSchema;
|
|
34
|
+
export declare var FirehoseStream: StaticStructureSchema;
|
|
35
|
+
export declare var GetAppAuthorizationRequest: StaticStructureSchema;
|
|
36
|
+
export declare var GetAppAuthorizationResponse: StaticStructureSchema;
|
|
37
|
+
export declare var GetAppBundleRequest: StaticStructureSchema;
|
|
38
|
+
export declare var GetAppBundleResponse: StaticStructureSchema;
|
|
39
|
+
export declare var GetIngestionDestinationRequest: StaticStructureSchema;
|
|
40
|
+
export declare var GetIngestionDestinationResponse: StaticStructureSchema;
|
|
41
|
+
export declare var GetIngestionRequest: StaticStructureSchema;
|
|
42
|
+
export declare var GetIngestionResponse: StaticStructureSchema;
|
|
43
|
+
export declare var Ingestion: StaticStructureSchema;
|
|
44
|
+
export declare var IngestionDestination: StaticStructureSchema;
|
|
45
|
+
export declare var IngestionDestinationSummary: StaticStructureSchema;
|
|
46
|
+
export declare var IngestionSummary: StaticStructureSchema;
|
|
47
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
48
|
+
export declare var ListAppAuthorizationsRequest: StaticStructureSchema;
|
|
49
|
+
export declare var ListAppAuthorizationsResponse: StaticStructureSchema;
|
|
50
|
+
export declare var ListAppBundlesRequest: StaticStructureSchema;
|
|
51
|
+
export declare var ListAppBundlesResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ListIngestionDestinationsRequest: StaticStructureSchema;
|
|
53
|
+
export declare var ListIngestionDestinationsResponse: StaticStructureSchema;
|
|
54
|
+
export declare var ListIngestionsRequest: StaticStructureSchema;
|
|
55
|
+
export declare var ListIngestionsResponse: StaticStructureSchema;
|
|
56
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
58
|
+
export declare var Oauth2Credential: StaticStructureSchema;
|
|
59
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
60
|
+
export declare var S3Bucket: StaticStructureSchema;
|
|
61
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
62
|
+
export declare var StartIngestionRequest: StaticStructureSchema;
|
|
63
|
+
export declare var StartIngestionResponse: StaticStructureSchema;
|
|
64
|
+
export declare var StartUserAccessTasksRequest: StaticStructureSchema;
|
|
65
|
+
export declare var StartUserAccessTasksResponse: StaticStructureSchema;
|
|
66
|
+
export declare var StopIngestionRequest: StaticStructureSchema;
|
|
67
|
+
export declare var StopIngestionResponse: StaticStructureSchema;
|
|
68
|
+
export declare var Tag: StaticStructureSchema;
|
|
69
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
70
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
71
|
+
export declare var TaskError: StaticStructureSchema;
|
|
72
|
+
export declare var Tenant: StaticStructureSchema;
|
|
73
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
74
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
75
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
76
|
+
export declare var UpdateAppAuthorizationRequest: StaticStructureSchema;
|
|
77
|
+
export declare var UpdateAppAuthorizationResponse: StaticStructureSchema;
|
|
78
|
+
export declare var UpdateIngestionDestinationRequest: StaticStructureSchema;
|
|
79
|
+
export declare var UpdateIngestionDestinationResponse: StaticStructureSchema;
|
|
80
|
+
export declare var UserAccessResultItem: StaticStructureSchema;
|
|
81
|
+
export declare var UserAccessTaskItem: StaticStructureSchema;
|
|
82
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
83
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
84
|
+
export declare var __Unit: "unit";
|
|
85
|
+
export declare var AppFabricServiceException: StaticErrorSchema;
|
|
86
|
+
export declare var AppAuthorizationSummaryList: StaticListSchema;
|
|
87
|
+
export declare var AppBundleSummaryList: StaticListSchema;
|
|
88
|
+
export declare var IngestionDestinationList: StaticListSchema;
|
|
89
|
+
export declare var IngestionList: StaticListSchema;
|
|
90
|
+
export declare var TagKeyList: number;
|
|
91
|
+
export declare var TagList: StaticListSchema;
|
|
92
|
+
export declare var TaskIdList: number;
|
|
93
|
+
export declare var UserAccessResultsList: StaticListSchema;
|
|
94
|
+
export declare var UserAccessTasksList: StaticListSchema;
|
|
95
|
+
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
96
|
+
export declare var Credential: StaticStructureSchema;
|
|
97
|
+
export declare var Destination: StaticStructureSchema;
|
|
98
|
+
export declare var DestinationConfiguration: StaticStructureSchema;
|
|
99
|
+
export declare var ProcessingConfiguration: StaticStructureSchema;
|
|
100
|
+
export declare var BatchGetUserAccessTasks: StaticOperationSchema;
|
|
101
|
+
export declare var ConnectAppAuthorization: StaticOperationSchema;
|
|
102
|
+
export declare var CreateAppAuthorization: StaticOperationSchema;
|
|
103
|
+
export declare var CreateAppBundle: StaticOperationSchema;
|
|
104
|
+
export declare var CreateIngestion: StaticOperationSchema;
|
|
105
|
+
export declare var CreateIngestionDestination: StaticOperationSchema;
|
|
106
|
+
export declare var DeleteAppAuthorization: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteAppBundle: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteIngestion: StaticOperationSchema;
|
|
109
|
+
export declare var DeleteIngestionDestination: StaticOperationSchema;
|
|
110
|
+
export declare var GetAppAuthorization: StaticOperationSchema;
|
|
111
|
+
export declare var GetAppBundle: StaticOperationSchema;
|
|
112
|
+
export declare var GetIngestion: StaticOperationSchema;
|
|
113
|
+
export declare var GetIngestionDestination: StaticOperationSchema;
|
|
114
|
+
export declare var ListAppAuthorizations: StaticOperationSchema;
|
|
115
|
+
export declare var ListAppBundles: StaticOperationSchema;
|
|
116
|
+
export declare var ListIngestionDestinations: StaticOperationSchema;
|
|
117
|
+
export declare var ListIngestions: StaticOperationSchema;
|
|
118
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
119
|
+
export declare var StartIngestion: StaticOperationSchema;
|
|
120
|
+
export declare var StartUserAccessTasks: StaticOperationSchema;
|
|
121
|
+
export declare var StopIngestion: StaticOperationSchema;
|
|
122
|
+
export declare var TagResource: StaticOperationSchema;
|
|
123
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
124
|
+
export declare var UpdateAppAuthorization: StaticOperationSchema;
|
|
125
|
+
export declare var UpdateIngestionDestination: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -234,6 +237,7 @@ export interface ClientDefaults
|
|
|
234
237
|
retryMode?: string | __Provider<string>;
|
|
235
238
|
logger?: __Logger;
|
|
236
239
|
extensions?: RuntimeExtension[];
|
|
240
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
237
241
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
238
242
|
}
|
|
239
243
|
export type AppFabricClientConfigType = Partial<
|
|
@@ -523,29 +523,3 @@ export interface UpdateIngestionDestinationRequest {
|
|
|
523
523
|
export interface UpdateIngestionDestinationResponse {
|
|
524
524
|
ingestionDestination: IngestionDestination | undefined;
|
|
525
525
|
}
|
|
526
|
-
export declare const ApiKeyCredentialFilterSensitiveLog: (
|
|
527
|
-
obj: ApiKeyCredential
|
|
528
|
-
) => any;
|
|
529
|
-
export declare const AuthRequestFilterSensitiveLog: (obj: AuthRequest) => any;
|
|
530
|
-
export declare const UserAccessResultItemFilterSensitiveLog: (
|
|
531
|
-
obj: UserAccessResultItem
|
|
532
|
-
) => any;
|
|
533
|
-
export declare const BatchGetUserAccessTasksResponseFilterSensitiveLog: (
|
|
534
|
-
obj: BatchGetUserAccessTasksResponse
|
|
535
|
-
) => any;
|
|
536
|
-
export declare const ConnectAppAuthorizationRequestFilterSensitiveLog: (
|
|
537
|
-
obj: ConnectAppAuthorizationRequest
|
|
538
|
-
) => any;
|
|
539
|
-
export declare const Oauth2CredentialFilterSensitiveLog: (
|
|
540
|
-
obj: Oauth2Credential
|
|
541
|
-
) => any;
|
|
542
|
-
export declare const CredentialFilterSensitiveLog: (obj: Credential) => any;
|
|
543
|
-
export declare const CreateAppAuthorizationRequestFilterSensitiveLog: (
|
|
544
|
-
obj: CreateAppAuthorizationRequest
|
|
545
|
-
) => any;
|
|
546
|
-
export declare const StartUserAccessTasksRequestFilterSensitiveLog: (
|
|
547
|
-
obj: StartUserAccessTasksRequest
|
|
548
|
-
) => any;
|
|
549
|
-
export declare const UpdateAppAuthorizationRequestFilterSensitiveLog: (
|
|
550
|
-
obj: UpdateAppAuthorizationRequest
|
|
551
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").AppFabricHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var Email: StaticSimpleSchema;
|
|
9
|
+
export declare var SensitiveString2048: StaticSimpleSchema;
|
|
10
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
11
|
+
export declare var ApiKeyCredential: StaticStructureSchema;
|
|
12
|
+
export declare var AppAuthorization: StaticStructureSchema;
|
|
13
|
+
export declare var AppAuthorizationSummary: StaticStructureSchema;
|
|
14
|
+
export declare var AppBundle: StaticStructureSchema;
|
|
15
|
+
export declare var AppBundleSummary: StaticStructureSchema;
|
|
16
|
+
export declare var AuditLogDestinationConfiguration: StaticStructureSchema;
|
|
17
|
+
export declare var AuditLogProcessingConfiguration: StaticStructureSchema;
|
|
18
|
+
export declare var AuthRequest: StaticStructureSchema;
|
|
19
|
+
export declare var BatchGetUserAccessTasksRequest: StaticStructureSchema;
|
|
20
|
+
export declare var BatchGetUserAccessTasksResponse: StaticStructureSchema;
|
|
21
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
22
|
+
export declare var ConnectAppAuthorizationRequest: StaticStructureSchema;
|
|
23
|
+
export declare var ConnectAppAuthorizationResponse: StaticStructureSchema;
|
|
24
|
+
export declare var CreateAppAuthorizationRequest: StaticStructureSchema;
|
|
25
|
+
export declare var CreateAppAuthorizationResponse: StaticStructureSchema;
|
|
26
|
+
export declare var CreateAppBundleRequest: StaticStructureSchema;
|
|
27
|
+
export declare var CreateAppBundleResponse: StaticStructureSchema;
|
|
28
|
+
export declare var CreateIngestionDestinationRequest: StaticStructureSchema;
|
|
29
|
+
export declare var CreateIngestionDestinationResponse: StaticStructureSchema;
|
|
30
|
+
export declare var CreateIngestionRequest: StaticStructureSchema;
|
|
31
|
+
export declare var CreateIngestionResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteAppAuthorizationRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteAppAuthorizationResponse: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteAppBundleRequest: StaticStructureSchema;
|
|
35
|
+
export declare var DeleteAppBundleResponse: StaticStructureSchema;
|
|
36
|
+
export declare var DeleteIngestionDestinationRequest: StaticStructureSchema;
|
|
37
|
+
export declare var DeleteIngestionDestinationResponse: StaticStructureSchema;
|
|
38
|
+
export declare var DeleteIngestionRequest: StaticStructureSchema;
|
|
39
|
+
export declare var DeleteIngestionResponse: StaticStructureSchema;
|
|
40
|
+
export declare var FirehoseStream: StaticStructureSchema;
|
|
41
|
+
export declare var GetAppAuthorizationRequest: StaticStructureSchema;
|
|
42
|
+
export declare var GetAppAuthorizationResponse: StaticStructureSchema;
|
|
43
|
+
export declare var GetAppBundleRequest: StaticStructureSchema;
|
|
44
|
+
export declare var GetAppBundleResponse: StaticStructureSchema;
|
|
45
|
+
export declare var GetIngestionDestinationRequest: StaticStructureSchema;
|
|
46
|
+
export declare var GetIngestionDestinationResponse: StaticStructureSchema;
|
|
47
|
+
export declare var GetIngestionRequest: StaticStructureSchema;
|
|
48
|
+
export declare var GetIngestionResponse: StaticStructureSchema;
|
|
49
|
+
export declare var Ingestion: StaticStructureSchema;
|
|
50
|
+
export declare var IngestionDestination: StaticStructureSchema;
|
|
51
|
+
export declare var IngestionDestinationSummary: StaticStructureSchema;
|
|
52
|
+
export declare var IngestionSummary: StaticStructureSchema;
|
|
53
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
54
|
+
export declare var ListAppAuthorizationsRequest: StaticStructureSchema;
|
|
55
|
+
export declare var ListAppAuthorizationsResponse: StaticStructureSchema;
|
|
56
|
+
export declare var ListAppBundlesRequest: StaticStructureSchema;
|
|
57
|
+
export declare var ListAppBundlesResponse: StaticStructureSchema;
|
|
58
|
+
export declare var ListIngestionDestinationsRequest: StaticStructureSchema;
|
|
59
|
+
export declare var ListIngestionDestinationsResponse: StaticStructureSchema;
|
|
60
|
+
export declare var ListIngestionsRequest: StaticStructureSchema;
|
|
61
|
+
export declare var ListIngestionsResponse: StaticStructureSchema;
|
|
62
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
63
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
64
|
+
export declare var Oauth2Credential: StaticStructureSchema;
|
|
65
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
66
|
+
export declare var S3Bucket: StaticStructureSchema;
|
|
67
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
68
|
+
export declare var StartIngestionRequest: StaticStructureSchema;
|
|
69
|
+
export declare var StartIngestionResponse: StaticStructureSchema;
|
|
70
|
+
export declare var StartUserAccessTasksRequest: StaticStructureSchema;
|
|
71
|
+
export declare var StartUserAccessTasksResponse: StaticStructureSchema;
|
|
72
|
+
export declare var StopIngestionRequest: StaticStructureSchema;
|
|
73
|
+
export declare var StopIngestionResponse: StaticStructureSchema;
|
|
74
|
+
export declare var Tag: StaticStructureSchema;
|
|
75
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
76
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
77
|
+
export declare var TaskError: StaticStructureSchema;
|
|
78
|
+
export declare var Tenant: StaticStructureSchema;
|
|
79
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
80
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
81
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
82
|
+
export declare var UpdateAppAuthorizationRequest: StaticStructureSchema;
|
|
83
|
+
export declare var UpdateAppAuthorizationResponse: StaticStructureSchema;
|
|
84
|
+
export declare var UpdateIngestionDestinationRequest: StaticStructureSchema;
|
|
85
|
+
export declare var UpdateIngestionDestinationResponse: StaticStructureSchema;
|
|
86
|
+
export declare var UserAccessResultItem: StaticStructureSchema;
|
|
87
|
+
export declare var UserAccessTaskItem: StaticStructureSchema;
|
|
88
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
89
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
90
|
+
export declare var __Unit: "unit";
|
|
91
|
+
export declare var AppFabricServiceException: StaticErrorSchema;
|
|
92
|
+
export declare var AppAuthorizationSummaryList: StaticListSchema;
|
|
93
|
+
export declare var AppBundleSummaryList: StaticListSchema;
|
|
94
|
+
export declare var IngestionDestinationList: StaticListSchema;
|
|
95
|
+
export declare var IngestionList: StaticListSchema;
|
|
96
|
+
export declare var TagKeyList: number;
|
|
97
|
+
export declare var TagList: StaticListSchema;
|
|
98
|
+
export declare var TaskIdList: number;
|
|
99
|
+
export declare var UserAccessResultsList: StaticListSchema;
|
|
100
|
+
export declare var UserAccessTasksList: StaticListSchema;
|
|
101
|
+
export declare var ValidationExceptionFieldList: StaticListSchema;
|
|
102
|
+
export declare var Credential: StaticStructureSchema;
|
|
103
|
+
export declare var Destination: StaticStructureSchema;
|
|
104
|
+
export declare var DestinationConfiguration: StaticStructureSchema;
|
|
105
|
+
export declare var ProcessingConfiguration: StaticStructureSchema;
|
|
106
|
+
export declare var BatchGetUserAccessTasks: StaticOperationSchema;
|
|
107
|
+
export declare var ConnectAppAuthorization: StaticOperationSchema;
|
|
108
|
+
export declare var CreateAppAuthorization: StaticOperationSchema;
|
|
109
|
+
export declare var CreateAppBundle: StaticOperationSchema;
|
|
110
|
+
export declare var CreateIngestion: StaticOperationSchema;
|
|
111
|
+
export declare var CreateIngestionDestination: StaticOperationSchema;
|
|
112
|
+
export declare var DeleteAppAuthorization: StaticOperationSchema;
|
|
113
|
+
export declare var DeleteAppBundle: StaticOperationSchema;
|
|
114
|
+
export declare var DeleteIngestion: StaticOperationSchema;
|
|
115
|
+
export declare var DeleteIngestionDestination: StaticOperationSchema;
|
|
116
|
+
export declare var GetAppAuthorization: StaticOperationSchema;
|
|
117
|
+
export declare var GetAppBundle: StaticOperationSchema;
|
|
118
|
+
export declare var GetIngestion: StaticOperationSchema;
|
|
119
|
+
export declare var GetIngestionDestination: StaticOperationSchema;
|
|
120
|
+
export declare var ListAppAuthorizations: StaticOperationSchema;
|
|
121
|
+
export declare var ListAppBundles: StaticOperationSchema;
|
|
122
|
+
export declare var ListIngestionDestinations: StaticOperationSchema;
|
|
123
|
+
export declare var ListIngestions: StaticOperationSchema;
|
|
124
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
125
|
+
export declare var StartIngestion: StaticOperationSchema;
|
|
126
|
+
export declare var StartUserAccessTasks: StaticOperationSchema;
|
|
127
|
+
export declare var StopIngestion: StaticOperationSchema;
|
|
128
|
+
export declare var TagResource: StaticOperationSchema;
|
|
129
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
130
|
+
export declare var UpdateAppAuthorization: StaticOperationSchema;
|
|
131
|
+
export declare var UpdateIngestionDestination: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appfabric",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appfabric Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.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-appfabric",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"@smithy/util-middleware": "^4.2.4",
|
|
57
57
|
"@smithy/util-retry": "^4.2.4",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|