@aws-sdk/client-serverlessapplicationrepository 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +242 -75
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +189 -87
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +14 -14
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +421 -601
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +9 -6
- package/dist-types/ts3.4/pagination/ListApplicationDependenciesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/package.json +34 -34
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ServerlessApplicationRepository } from "../ServerlessApplicationRepository";
|
|
3
|
-
import { ServerlessApplicationRepositoryClient } from "../ServerlessApplicationRepositoryClient";
|
|
4
|
-
export interface ServerlessApplicationRepositoryPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ServerlessApplicationRepository } from "../ServerlessApplicationRepository";
|
|
3
|
+
import { ServerlessApplicationRepositoryClient } from "../ServerlessApplicationRepositoryClient";
|
|
4
|
+
export interface ServerlessApplicationRepositoryPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client:
|
|
7
|
+
| ServerlessApplicationRepository
|
|
8
|
+
| ServerlessApplicationRepositoryClient;
|
|
9
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListApplicationDependenciesCommandInput,
|
|
4
|
+
ListApplicationDependenciesCommandOutput,
|
|
5
|
+
} from "../commands/ListApplicationDependenciesCommand";
|
|
6
|
+
import { ServerlessApplicationRepositoryPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListApplicationDependencies(
|
|
8
|
+
config: ServerlessApplicationRepositoryPaginationConfiguration,
|
|
9
|
+
input: ListApplicationDependenciesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListApplicationDependenciesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListApplicationVersionsCommandInput,
|
|
4
|
+
ListApplicationVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListApplicationVersionsCommand";
|
|
6
|
+
import { ServerlessApplicationRepositoryPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListApplicationVersions(
|
|
8
|
+
config: ServerlessApplicationRepositoryPaginationConfiguration,
|
|
9
|
+
input: ListApplicationVersionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListApplicationVersionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListApplicationsCommandInput,
|
|
4
|
+
ListApplicationsCommandOutput,
|
|
5
|
+
} from "../commands/ListApplicationsCommand";
|
|
6
|
+
import { ServerlessApplicationRepositoryPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListApplications(
|
|
8
|
+
config: ServerlessApplicationRepositoryPaginationConfiguration,
|
|
9
|
+
input: ListApplicationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListApplicationDependenciesPaginator";
|
|
3
|
-
export * from "./ListApplicationVersionsPaginator";
|
|
4
|
-
export * from "./ListApplicationsPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListApplicationDependenciesPaginator";
|
|
3
|
+
export * from "./ListApplicationVersionsPaginator";
|
|
4
|
+
export * from "./ListApplicationsPaginator";
|
|
@@ -1,44 +1,173 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateApplicationCommandInput,
|
|
8
|
+
CreateApplicationCommandOutput,
|
|
9
|
+
} from "../commands/CreateApplicationCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateApplicationVersionCommandInput,
|
|
12
|
+
CreateApplicationVersionCommandOutput,
|
|
13
|
+
} from "../commands/CreateApplicationVersionCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateCloudFormationChangeSetCommandInput,
|
|
16
|
+
CreateCloudFormationChangeSetCommandOutput,
|
|
17
|
+
} from "../commands/CreateCloudFormationChangeSetCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateCloudFormationTemplateCommandInput,
|
|
20
|
+
CreateCloudFormationTemplateCommandOutput,
|
|
21
|
+
} from "../commands/CreateCloudFormationTemplateCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteApplicationCommandInput,
|
|
24
|
+
DeleteApplicationCommandOutput,
|
|
25
|
+
} from "../commands/DeleteApplicationCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetApplicationCommandInput,
|
|
28
|
+
GetApplicationCommandOutput,
|
|
29
|
+
} from "../commands/GetApplicationCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetApplicationPolicyCommandInput,
|
|
32
|
+
GetApplicationPolicyCommandOutput,
|
|
33
|
+
} from "../commands/GetApplicationPolicyCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetCloudFormationTemplateCommandInput,
|
|
36
|
+
GetCloudFormationTemplateCommandOutput,
|
|
37
|
+
} from "../commands/GetCloudFormationTemplateCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListApplicationDependenciesCommandInput,
|
|
40
|
+
ListApplicationDependenciesCommandOutput,
|
|
41
|
+
} from "../commands/ListApplicationDependenciesCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListApplicationsCommandInput,
|
|
44
|
+
ListApplicationsCommandOutput,
|
|
45
|
+
} from "../commands/ListApplicationsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListApplicationVersionsCommandInput,
|
|
48
|
+
ListApplicationVersionsCommandOutput,
|
|
49
|
+
} from "../commands/ListApplicationVersionsCommand";
|
|
50
|
+
import {
|
|
51
|
+
PutApplicationPolicyCommandInput,
|
|
52
|
+
PutApplicationPolicyCommandOutput,
|
|
53
|
+
} from "../commands/PutApplicationPolicyCommand";
|
|
54
|
+
import {
|
|
55
|
+
UnshareApplicationCommandInput,
|
|
56
|
+
UnshareApplicationCommandOutput,
|
|
57
|
+
} from "../commands/UnshareApplicationCommand";
|
|
58
|
+
import {
|
|
59
|
+
UpdateApplicationCommandInput,
|
|
60
|
+
UpdateApplicationCommandOutput,
|
|
61
|
+
} from "../commands/UpdateApplicationCommand";
|
|
62
|
+
export declare const serializeAws_restJson1CreateApplicationCommand: (
|
|
63
|
+
input: CreateApplicationCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_restJson1CreateApplicationVersionCommand: (
|
|
67
|
+
input: CreateApplicationVersionCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const serializeAws_restJson1CreateCloudFormationChangeSetCommand: (
|
|
71
|
+
input: CreateCloudFormationChangeSetCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const serializeAws_restJson1CreateCloudFormationTemplateCommand: (
|
|
75
|
+
input: CreateCloudFormationTemplateCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const serializeAws_restJson1DeleteApplicationCommand: (
|
|
79
|
+
input: DeleteApplicationCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const serializeAws_restJson1GetApplicationCommand: (
|
|
83
|
+
input: GetApplicationCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const serializeAws_restJson1GetApplicationPolicyCommand: (
|
|
87
|
+
input: GetApplicationPolicyCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const serializeAws_restJson1GetCloudFormationTemplateCommand: (
|
|
91
|
+
input: GetCloudFormationTemplateCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_restJson1ListApplicationDependenciesCommand: (
|
|
95
|
+
input: ListApplicationDependenciesCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_restJson1ListApplicationsCommand: (
|
|
99
|
+
input: ListApplicationsCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_restJson1ListApplicationVersionsCommand: (
|
|
103
|
+
input: ListApplicationVersionsCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1PutApplicationPolicyCommand: (
|
|
107
|
+
input: PutApplicationPolicyCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1UnshareApplicationCommand: (
|
|
111
|
+
input: UnshareApplicationCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1UpdateApplicationCommand: (
|
|
115
|
+
input: UpdateApplicationCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const deserializeAws_restJson1CreateApplicationCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<CreateApplicationCommandOutput>;
|
|
122
|
+
export declare const deserializeAws_restJson1CreateApplicationVersionCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<CreateApplicationVersionCommandOutput>;
|
|
126
|
+
export declare const deserializeAws_restJson1CreateCloudFormationChangeSetCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<CreateCloudFormationChangeSetCommandOutput>;
|
|
130
|
+
export declare const deserializeAws_restJson1CreateCloudFormationTemplateCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<CreateCloudFormationTemplateCommandOutput>;
|
|
134
|
+
export declare const deserializeAws_restJson1DeleteApplicationCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<DeleteApplicationCommandOutput>;
|
|
138
|
+
export declare const deserializeAws_restJson1GetApplicationCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<GetApplicationCommandOutput>;
|
|
142
|
+
export declare const deserializeAws_restJson1GetApplicationPolicyCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<GetApplicationPolicyCommandOutput>;
|
|
146
|
+
export declare const deserializeAws_restJson1GetCloudFormationTemplateCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<GetCloudFormationTemplateCommandOutput>;
|
|
150
|
+
export declare const deserializeAws_restJson1ListApplicationDependenciesCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<ListApplicationDependenciesCommandOutput>;
|
|
154
|
+
export declare const deserializeAws_restJson1ListApplicationsCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<ListApplicationsCommandOutput>;
|
|
158
|
+
export declare const deserializeAws_restJson1ListApplicationVersionsCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<ListApplicationVersionsCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_restJson1PutApplicationPolicyCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<PutApplicationPolicyCommandOutput>;
|
|
166
|
+
export declare const deserializeAws_restJson1UnshareApplicationCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<UnshareApplicationCommandOutput>;
|
|
170
|
+
export declare const deserializeAws_restJson1UpdateApplicationCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<UpdateApplicationCommandOutput>;
|
|
@@ -1,38 +1,67 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ServerlessApplicationRepositoryClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|
|
@@ -1,38 +1,67 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ServerlessApplicationRepositoryClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
|
+
credentialDefaultProvider: (
|
|
14
|
+
input: any
|
|
15
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
16
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
17
|
+
import("@aws-sdk/types").UserAgent
|
|
18
|
+
>;
|
|
19
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
20
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
23
|
+
any,
|
|
24
|
+
any,
|
|
25
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
26
|
+
> &
|
|
27
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
28
|
+
| RequestHandler;
|
|
29
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
30
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
31
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
32
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
35
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
|
+
apiVersion: string;
|
|
37
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
38
|
+
disableHostPrefix: boolean;
|
|
39
|
+
logger: import("@aws-sdk/types").Logger;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|
|
@@ -1,37 +1,68 @@
|
|
|
1
|
-
import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: ServerlessApplicationRepositoryClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
9
|
+
any,
|
|
10
|
+
any,
|
|
11
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
12
|
+
> &
|
|
13
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
14
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
15
|
+
apiVersion: string;
|
|
16
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
17
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
18
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
20
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
21
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
22
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
23
|
+
disableHostPrefix: boolean;
|
|
24
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
25
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
26
|
+
logger: import("@aws-sdk/types").Logger;
|
|
27
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
28
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
serviceId: string;
|
|
30
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
31
|
+
credentialDefaultProvider: (
|
|
32
|
+
input: any
|
|
33
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
34
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
35
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
36
|
+
import("@aws-sdk/types").UserAgent
|
|
37
|
+
>;
|
|
38
|
+
defaultsMode:
|
|
39
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
40
|
+
| import("@aws-sdk/types").Provider<
|
|
41
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
42
|
+
>;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|