@aws-sdk/client-serverlessapplicationrepository 3.194.0 → 3.197.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 +22 -0
- package/dist-cjs/ServerlessApplicationRepositoryClient.js +11 -8
- package/dist-cjs/commands/CreateApplicationCommand.js +10 -0
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +10 -0
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +10 -0
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +10 -0
- package/dist-cjs/commands/DeleteApplicationCommand.js +10 -0
- package/dist-cjs/commands/GetApplicationCommand.js +10 -0
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +10 -0
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +10 -0
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +10 -0
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +10 -0
- package/dist-cjs/commands/ListApplicationsCommand.js +10 -0
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +10 -0
- package/dist-cjs/commands/UnshareApplicationCommand.js +10 -0
- package/dist-cjs/commands/UpdateApplicationCommand.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/ServerlessApplicationRepositoryClient.js +12 -9
- package/dist-es/commands/CreateApplicationCommand.js +10 -0
- package/dist-es/commands/CreateApplicationVersionCommand.js +10 -0
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +10 -0
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +10 -0
- package/dist-es/commands/DeleteApplicationCommand.js +10 -0
- package/dist-es/commands/GetApplicationCommand.js +10 -0
- package/dist-es/commands/GetApplicationPolicyCommand.js +10 -0
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +10 -0
- package/dist-es/commands/ListApplicationDependenciesCommand.js +10 -0
- package/dist-es/commands/ListApplicationVersionsCommand.js +10 -0
- package/dist-es/commands/ListApplicationsCommand.js +10 -0
- package/dist-es/commands/PutApplicationPolicyCommand.js +10 -0
- package/dist-es/commands/UnshareApplicationCommand.js +10 -0
- package/dist-es/commands/UpdateApplicationCommand.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/ServerlessApplicationRepositoryClient.d.ts +6 -9
- package/dist-types/commands/CreateApplicationCommand.d.ts +2 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +2 -0
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +2 -0
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +2 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +2 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +2 -0
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +2 -0
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +2 -0
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +2 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +2 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +2 -0
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +2 -0
- package/dist-types/commands/UnshareApplicationCommand.d.ts +2 -0
- package/dist-types/commands/UpdateApplicationCommand.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/ServerlessApplicationRepositoryClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -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 +23 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +23 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +28 -26
- package/dist-cjs/endpoints.js +0 -151
- package/dist-es/endpoints.js +0 -147
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, 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> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
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: ServerlessApplicationRepositoryC
|
|
|
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> | 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>)) | 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: ServerlessApplicationRepositoryC
|
|
|
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> | 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>)) | 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: ServerlessApplicationRepositoryC
|
|
|
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 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
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> | 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 { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplica
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: ServerlessApplicationRepositoryClientConfig) => {
|
|
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,
|
|
@@ -98,6 +99,11 @@ import {
|
|
|
98
99
|
UpdateApplicationCommandInput,
|
|
99
100
|
UpdateApplicationCommandOutput,
|
|
100
101
|
} from "./commands/UpdateApplicationCommand";
|
|
102
|
+
import {
|
|
103
|
+
ClientInputEndpointParameters,
|
|
104
|
+
ClientResolvedEndpointParameters,
|
|
105
|
+
EndpointParameters,
|
|
106
|
+
} from "./endpoint/EndpointParameters";
|
|
101
107
|
export declare type ServiceInputTypes =
|
|
102
108
|
| CreateApplicationCommandInput
|
|
103
109
|
| CreateApplicationVersionCommandInput
|
|
@@ -149,7 +155,6 @@ export interface ClientDefaults
|
|
|
149
155
|
serviceId?: string;
|
|
150
156
|
region?: string | __Provider<string>;
|
|
151
157
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
152
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
153
158
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
154
159
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
155
160
|
}
|
|
@@ -158,22 +163,24 @@ declare type ServerlessApplicationRepositoryClientConfigType = Partial<
|
|
|
158
163
|
> &
|
|
159
164
|
ClientDefaults &
|
|
160
165
|
RegionInputConfig &
|
|
161
|
-
|
|
166
|
+
EndpointInputConfig<EndpointParameters> &
|
|
162
167
|
RetryInputConfig &
|
|
163
168
|
HostHeaderInputConfig &
|
|
164
169
|
AwsAuthInputConfig &
|
|
165
|
-
UserAgentInputConfig
|
|
170
|
+
UserAgentInputConfig &
|
|
171
|
+
ClientInputEndpointParameters;
|
|
166
172
|
export interface ServerlessApplicationRepositoryClientConfig
|
|
167
173
|
extends ServerlessApplicationRepositoryClientConfigType {}
|
|
168
174
|
declare type ServerlessApplicationRepositoryClientResolvedConfigType =
|
|
169
175
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
170
176
|
Required<ClientDefaults> &
|
|
171
177
|
RegionResolvedConfig &
|
|
172
|
-
|
|
178
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
173
179
|
RetryResolvedConfig &
|
|
174
180
|
HostHeaderResolvedConfig &
|
|
175
181
|
AwsAuthResolvedConfig &
|
|
176
|
-
UserAgentResolvedConfig
|
|
182
|
+
UserAgentResolvedConfig &
|
|
183
|
+
ClientResolvedEndpointParameters;
|
|
177
184
|
export interface ServerlessApplicationRepositoryClientResolvedConfig
|
|
178
185
|
extends ServerlessApplicationRepositoryClientResolvedConfigType {}
|
|
179
186
|
export declare class ServerlessApplicationRepositoryClient 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 CreateApplicationCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateApplicationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateApplicationCommandInput);
|
|
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 CreateApplicationVersionCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateApplicationVersionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateApplicationVersionCommandInput);
|
|
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 CreateCloudFormationChangeSetCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateCloudFormationChangeSetCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateCloudFormationChangeSetCommandInput);
|
|
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 CreateCloudFormationTemplateCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: CreateCloudFormationTemplateCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: CreateCloudFormationTemplateCommandInput);
|
|
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,
|
|
@@ -20,6 +21,7 @@ export declare class DeleteApplicationCommand extends $Command<
|
|
|
20
21
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
21
22
|
> {
|
|
22
23
|
readonly input: DeleteApplicationCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
23
25
|
constructor(input: DeleteApplicationCommandInput);
|
|
24
26
|
resolveMiddleware(
|
|
25
27
|
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 GetApplicationCommand extends $Command<
|
|
|
24
25
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: GetApplicationCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: GetApplicationCommandInput);
|
|
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 GetApplicationPolicyCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetApplicationPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetApplicationPolicyCommandInput);
|
|
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 GetCloudFormationTemplateCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetCloudFormationTemplateCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetCloudFormationTemplateCommandInput);
|
|
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 ListApplicationDependenciesCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListApplicationDependenciesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListApplicationDependenciesCommandInput);
|
|
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 ListApplicationVersionsCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListApplicationVersionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListApplicationVersionsCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class ListApplicationsCommand extends $Command<
|
|
|
24
25
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListApplicationsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListApplicationsCommandInput);
|
|
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 PutApplicationPolicyCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: PutApplicationPolicyCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: PutApplicationPolicyCommandInput);
|
|
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,
|
|
@@ -20,6 +21,7 @@ export declare class UnshareApplicationCommand extends $Command<
|
|
|
20
21
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
21
22
|
> {
|
|
22
23
|
readonly input: UnshareApplicationCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
23
25
|
constructor(input: UnshareApplicationCommandInput);
|
|
24
26
|
resolveMiddleware(
|
|
25
27
|
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 UpdateApplicationCommand extends $Command<
|
|
|
25
26
|
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: UpdateApplicationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: UpdateApplicationCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@aws-sdk/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export declare type ClientResolvedEndpointParameters =
|
|
20
|
+
ClientInputEndpointParameters & {
|
|
21
|
+
defaultSigningName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
24
|
+
options: T & ClientInputEndpointParameters
|
|
25
|
+
) => T &
|
|
26
|
+
ClientInputEndpointParameters & {
|
|
27
|
+
defaultSigningName: string;
|
|
28
|
+
};
|
|
29
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
+
Region?: string;
|
|
31
|
+
UseDualStack?: boolean;
|
|
32
|
+
UseFIPS?: boolean;
|
|
33
|
+
Endpoint?: string;
|
|
34
|
+
}
|
|
@@ -38,12 +38,31 @@ 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
|
+
(
|
|
50
|
+
| string
|
|
51
|
+
| import("@aws-sdk/types").Provider<string>
|
|
52
|
+
| import("@aws-sdk/types").Endpoint
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
54
|
+
| import("@aws-sdk/types").EndpointV2
|
|
55
|
+
| import("@aws-sdk/types").Provider<
|
|
56
|
+
import("@aws-sdk/types").EndpointV2
|
|
57
|
+
>
|
|
58
|
+
))
|
|
46
59
|
| undefined;
|
|
60
|
+
endpointProvider: (
|
|
61
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
62
|
+
context?: {
|
|
63
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
64
|
+
}
|
|
65
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
66
|
tls?: boolean | undefined;
|
|
48
67
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
68
|
credentials?:
|
|
@@ -38,12 +38,31 @@ 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
|
+
(
|
|
50
|
+
| string
|
|
51
|
+
| import("@aws-sdk/types").Provider<string>
|
|
52
|
+
| import("@aws-sdk/types").Endpoint
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
54
|
+
| import("@aws-sdk/types").EndpointV2
|
|
55
|
+
| import("@aws-sdk/types").Provider<
|
|
56
|
+
import("@aws-sdk/types").EndpointV2
|
|
57
|
+
>
|
|
58
|
+
))
|
|
46
59
|
| undefined;
|
|
60
|
+
endpointProvider: (
|
|
61
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
62
|
+
context?: {
|
|
63
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
64
|
+
}
|
|
65
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
47
66
|
tls?: boolean | undefined;
|
|
48
67
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
68
|
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
|
>;
|
|
@@ -44,7 +43,15 @@ export declare const getRuntimeConfig: (
|
|
|
44
43
|
| string
|
|
45
44
|
| import("@aws-sdk/types").Endpoint
|
|
46
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>
|
|
47
48
|
| undefined;
|
|
49
|
+
endpointProvider: (
|
|
50
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
51
|
+
context?: {
|
|
52
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
53
|
+
}
|
|
54
|
+
) => import("@aws-sdk/types").EndpointV2;
|
|
48
55
|
tls?: boolean | undefined;
|
|
49
56
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
57
|
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-serverlessapplicationrepository",
|
|
3
3
|
"description": "AWS SDK for JavaScript Serverlessapplicationrepository Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.197.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,35 +19,37 @@
|
|
|
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.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-
|
|
30
|
-
"@aws-sdk/middleware-
|
|
31
|
-
"@aws-sdk/middleware-
|
|
32
|
-
"@aws-sdk/middleware-
|
|
33
|
-
"@aws-sdk/middleware-
|
|
34
|
-
"@aws-sdk/middleware-
|
|
35
|
-
"@aws-sdk/middleware-
|
|
36
|
-
"@aws-sdk/middleware-
|
|
37
|
-
"@aws-sdk/
|
|
38
|
-
"@aws-sdk/node-
|
|
39
|
-
"@aws-sdk/
|
|
40
|
-
"@aws-sdk/
|
|
41
|
-
"@aws-sdk/
|
|
42
|
-
"@aws-sdk/
|
|
22
|
+
"@aws-sdk/client-sts": "3.197.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.197.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.197.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.197.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.197.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.197.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.197.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.197.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.197.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.197.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.197.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.197.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.197.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.197.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.197.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.197.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.197.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.197.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.197.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.197.0",
|
|
42
|
+
"@aws-sdk/types": "3.197.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.197.0",
|
|
43
44
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
44
45
|
"@aws-sdk/util-base64-node": "3.188.0",
|
|
45
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
47
|
"@aws-sdk/util-body-length-node": "3.188.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-
|
|
50
|
-
"@aws-sdk/util-user-agent-
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.197.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.197.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.197.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.197.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.197.0",
|
|
51
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
52
54
|
"@aws-sdk/util-utf8-node": "3.188.0",
|
|
53
55
|
"tslib": "^2.3.1"
|