@aws-sdk/client-appintegrations 3.194.0 → 3.196.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/CHANGELOG.md +11 -0
- package/dist-cjs/AppIntegrationsClient.js +11 -8
- package/dist-cjs/commands/CreateDataIntegrationCommand.js +10 -0
- package/dist-cjs/commands/CreateEventIntegrationCommand.js +10 -0
- package/dist-cjs/commands/DeleteDataIntegrationCommand.js +10 -0
- package/dist-cjs/commands/DeleteEventIntegrationCommand.js +10 -0
- package/dist-cjs/commands/GetDataIntegrationCommand.js +10 -0
- package/dist-cjs/commands/GetEventIntegrationCommand.js +10 -0
- package/dist-cjs/commands/ListDataIntegrationAssociationsCommand.js +10 -0
- package/dist-cjs/commands/ListDataIntegrationsCommand.js +10 -0
- package/dist-cjs/commands/ListEventIntegrationAssociationsCommand.js +10 -0
- package/dist-cjs/commands/ListEventIntegrationsCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateDataIntegrationCommand.js +10 -0
- package/dist-cjs/commands/UpdateEventIntegrationCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/AppIntegrationsClient.js +12 -9
- package/dist-es/commands/CreateDataIntegrationCommand.js +10 -0
- package/dist-es/commands/CreateEventIntegrationCommand.js +10 -0
- package/dist-es/commands/DeleteDataIntegrationCommand.js +10 -0
- package/dist-es/commands/DeleteEventIntegrationCommand.js +10 -0
- package/dist-es/commands/GetDataIntegrationCommand.js +10 -0
- package/dist-es/commands/GetEventIntegrationCommand.js +10 -0
- package/dist-es/commands/ListDataIntegrationAssociationsCommand.js +10 -0
- package/dist-es/commands/ListDataIntegrationsCommand.js +10 -0
- package/dist-es/commands/ListEventIntegrationAssociationsCommand.js +10 -0
- package/dist-es/commands/ListEventIntegrationsCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateDataIntegrationCommand.js +10 -0
- package/dist-es/commands/UpdateEventIntegrationCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/AppIntegrationsClient.d.ts +6 -9
- package/dist-types/commands/CreateDataIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/CreateEventIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDataIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/DeleteEventIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/GetDataIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/GetEventIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/ListDataIntegrationAssociationsCommand.d.ts +2 -0
- package/dist-types/commands/ListDataIntegrationsCommand.d.ts +2 -0
- package/dist-types/commands/ListEventIntegrationAssociationsCommand.d.ts +2 -0
- package/dist-types/commands/ListEventIntegrationsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDataIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/UpdateEventIntegrationCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/AppIntegrationsClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/CreateDataIntegrationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateEventIntegrationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteDataIntegrationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteEventIntegrationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetEventIntegrationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationAssociationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListEventIntegrationAssociationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListEventIntegrationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateDataIntegrationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateEventIntegrationCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +5 -3
- package/dist-cjs/endpoints.js +0 -132
- package/dist-es/endpoints.js +0 -128
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
|
|
@@ -25,6 +26,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
27
28
|
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UntagResourceCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
|
|
@@ -30,6 +31,7 @@ export interface UpdateDataIntegrationCommandOutput extends UpdateDataIntegratio
|
|
|
30
31
|
*/
|
|
31
32
|
export declare class UpdateDataIntegrationCommand extends $Command<UpdateDataIntegrationCommandInput, UpdateDataIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
32
33
|
readonly input: UpdateDataIntegrationCommandInput;
|
|
34
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
33
35
|
constructor(input: UpdateDataIntegrationCommandInput);
|
|
34
36
|
/**
|
|
35
37
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient";
|
|
@@ -25,6 +26,7 @@ export interface UpdateEventIntegrationCommandOutput extends UpdateEventIntegrat
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class UpdateEventIntegrationCommand extends $Command<UpdateEventIntegrationCommandInput, UpdateEventIntegrationCommandOutput, AppIntegrationsClientResolvedConfig> {
|
|
27
28
|
readonly input: UpdateEventIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateEventIntegrationCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) =>
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) =>
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) =>
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { AppIntegrationsClientConfig } from "./AppIntegrationsClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -102,6 +103,11 @@ import {
|
|
|
102
103
|
UpdateEventIntegrationCommandInput,
|
|
103
104
|
UpdateEventIntegrationCommandOutput,
|
|
104
105
|
} from "./commands/UpdateEventIntegrationCommand";
|
|
106
|
+
import {
|
|
107
|
+
ClientInputEndpointParameters,
|
|
108
|
+
ClientResolvedEndpointParameters,
|
|
109
|
+
EndpointParameters,
|
|
110
|
+
} from "./endpoint/EndpointParameters";
|
|
105
111
|
export declare type ServiceInputTypes =
|
|
106
112
|
| CreateDataIntegrationCommandInput
|
|
107
113
|
| CreateEventIntegrationCommandInput
|
|
@@ -155,7 +161,6 @@ export interface ClientDefaults
|
|
|
155
161
|
serviceId?: string;
|
|
156
162
|
region?: string | __Provider<string>;
|
|
157
163
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
158
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
159
164
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
160
165
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
161
166
|
}
|
|
@@ -164,22 +169,24 @@ declare type AppIntegrationsClientConfigType = Partial<
|
|
|
164
169
|
> &
|
|
165
170
|
ClientDefaults &
|
|
166
171
|
RegionInputConfig &
|
|
167
|
-
|
|
172
|
+
EndpointInputConfig<EndpointParameters> &
|
|
168
173
|
RetryInputConfig &
|
|
169
174
|
HostHeaderInputConfig &
|
|
170
175
|
AwsAuthInputConfig &
|
|
171
|
-
UserAgentInputConfig
|
|
176
|
+
UserAgentInputConfig &
|
|
177
|
+
ClientInputEndpointParameters;
|
|
172
178
|
export interface AppIntegrationsClientConfig
|
|
173
179
|
extends AppIntegrationsClientConfigType {}
|
|
174
180
|
declare type AppIntegrationsClientResolvedConfigType =
|
|
175
181
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
176
182
|
Required<ClientDefaults> &
|
|
177
183
|
RegionResolvedConfig &
|
|
178
|
-
|
|
184
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
179
185
|
RetryResolvedConfig &
|
|
180
186
|
HostHeaderResolvedConfig &
|
|
181
187
|
AwsAuthResolvedConfig &
|
|
182
|
-
UserAgentResolvedConfig
|
|
188
|
+
UserAgentResolvedConfig &
|
|
189
|
+
ClientResolvedEndpointParameters;
|
|
183
190
|
export interface AppIntegrationsClientResolvedConfig
|
|
184
191
|
extends AppIntegrationsClientResolvedConfigType {}
|
|
185
192
|
export declare class AppIntegrationsClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreateDataIntegrationCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateDataIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateDataIntegrationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class CreateEventIntegrationCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateEventIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateEventIntegrationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeleteDataIntegrationCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteDataIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteDataIntegrationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeleteEventIntegrationCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteEventIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteEventIntegrationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetDataIntegrationCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetDataIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetDataIntegrationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetEventIntegrationCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetEventIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetEventIntegrationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListDataIntegrationAssociationsCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListDataIntegrationAssociationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListDataIntegrationAssociationsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListDataIntegrationsCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListDataIntegrationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListDataIntegrationsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListEventIntegrationAssociationsCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListEventIntegrationAssociationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListEventIntegrationAssociationsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListEventIntegrationsCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListEventIntegrationsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListEventIntegrationsCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ListTagsForResourceCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class TagResourceCommand extends $Command<
|
|
|
21
22
|
AppIntegrationsClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: TagResourceCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
24
25
|
AppIntegrationsClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UntagResourceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UntagResourceCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class UpdateDataIntegrationCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: UpdateDataIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateDataIntegrationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class UpdateEventIntegrationCommand extends $Command<
|
|
|
25
26
|
AppIntegrationsClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: UpdateEventIntegrationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateEventIntegrationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
EndpointParameters as __EndpointParameters,
|
|
3
|
+
Provider,
|
|
4
|
+
} from "@aws-sdk/types";
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
region?: string | Provider<string>;
|
|
7
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
endpoint?: string | Provider<string>;
|
|
10
|
+
}
|
|
11
|
+
export declare type ClientResolvedEndpointParameters =
|
|
12
|
+
ClientInputEndpointParameters & {
|
|
13
|
+
defaultSigningName: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
16
|
+
options: T & ClientInputEndpointParameters
|
|
17
|
+
) => T &
|
|
18
|
+
ClientInputEndpointParameters & {
|
|
19
|
+
defaultSigningName: string;
|
|
20
|
+
};
|
|
21
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
22
|
+
Region?: string;
|
|
23
|
+
UseDualStack?: boolean;
|
|
24
|
+
UseFIPS?: boolean;
|
|
25
|
+
Endpoint?: string;
|
|
26
|
+
}
|
|
@@ -38,12 +38,22 @@ export declare const getRuntimeConfig: (
|
|
|
38
38
|
disableHostPrefix: boolean;
|
|
39
39
|
logger: import("@aws-sdk/types").Logger;
|
|
40
40
|
serviceId: string;
|
|
41
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
41
|
endpoint?:
|
|
43
|
-
|
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
| ((
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| import("@aws-sdk/types").EndpointV2
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
48
|
+
) &
|
|
49
|
+
(string | import("@aws-sdk/types").Provider<string>))
|
|
46
50
|
| undefined;
|
|
51
|
+
endpointProvider: (
|
|
52
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
53
|
+
context?: {
|
|
54
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
55
|
+
}
|
|
56
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
57
|
tls?: boolean | undefined;
|
|
48
58
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
59
|
credentials?:
|
|
@@ -38,12 +38,22 @@ export declare const getRuntimeConfig: (
|
|
|
38
38
|
disableHostPrefix: boolean;
|
|
39
39
|
logger: import("@aws-sdk/types").Logger;
|
|
40
40
|
serviceId: string;
|
|
41
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
41
|
endpoint?:
|
|
43
|
-
|
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
| ((
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| import("@aws-sdk/types").EndpointV2
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
|
|
48
|
+
) &
|
|
49
|
+
(string | import("@aws-sdk/types").Provider<string>))
|
|
46
50
|
| undefined;
|
|
51
|
+
endpointProvider: (
|
|
52
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
53
|
+
context?: {
|
|
54
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
55
|
+
}
|
|
56
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
57
|
tls?: boolean | undefined;
|
|
48
58
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
59
|
credentials?:
|
|
@@ -31,7 +31,6 @@ export declare const getRuntimeConfig: (
|
|
|
31
31
|
credentialDefaultProvider: (
|
|
32
32
|
input: any
|
|
33
33
|
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
34
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
35
34
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
36
35
|
import("@aws-sdk/types").UserAgent
|
|
37
36
|
>;
|
|
@@ -42,9 +41,21 @@ export declare const getRuntimeConfig: (
|
|
|
42
41
|
>;
|
|
43
42
|
endpoint?:
|
|
44
43
|
| string
|
|
45
|
-
| import("@aws-sdk/types").Endpoint
|
|
46
|
-
|
|
44
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> &
|
|
45
|
+
import("@aws-sdk/types").Provider<string>)
|
|
46
|
+
| (import("@aws-sdk/types").Endpoint &
|
|
47
|
+
import("@aws-sdk/types").Provider<string>)
|
|
48
|
+
| (import("@aws-sdk/types").EndpointV2 &
|
|
49
|
+
import("@aws-sdk/types").Provider<string>)
|
|
50
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> &
|
|
51
|
+
import("@aws-sdk/types").Provider<string>)
|
|
47
52
|
| undefined;
|
|
53
|
+
endpointProvider: (
|
|
54
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
55
|
+
context?: {
|
|
56
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
57
|
+
}
|
|
58
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
48
59
|
tls?: boolean | undefined;
|
|
49
60
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
61
|
credentials?:
|
|
@@ -5,8 +5,13 @@ export declare const getRuntimeConfig: (
|
|
|
5
5
|
) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
disableHostPrefix: boolean;
|
|
8
|
+
endpointProvider: (
|
|
9
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
|
+
context?: {
|
|
11
|
+
logger?: __Logger | undefined;
|
|
12
|
+
}
|
|
13
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
8
14
|
logger: __Logger;
|
|
9
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
10
15
|
serviceId: string;
|
|
11
16
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
12
17
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appintegrations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appintegrations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.196.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,13 +19,14 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.196.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.193.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.196.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.193.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.193.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.193.0",
|
|
28
28
|
"@aws-sdk/middleware-content-length": "3.193.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.193.0",
|
|
29
30
|
"@aws-sdk/middleware-host-header": "3.193.0",
|
|
30
31
|
"@aws-sdk/middleware-logger": "3.193.0",
|
|
31
32
|
"@aws-sdk/middleware-recursion-detection": "3.193.0",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"@aws-sdk/util-body-length-node": "3.188.0",
|
|
47
48
|
"@aws-sdk/util-defaults-mode-browser": "3.193.0",
|
|
48
49
|
"@aws-sdk/util-defaults-mode-node": "3.193.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.196.0",
|
|
49
51
|
"@aws-sdk/util-user-agent-browser": "3.193.0",
|
|
50
52
|
"@aws-sdk/util-user-agent-node": "3.193.0",
|
|
51
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|