@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,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateApplicationRequest,
|
|
10
|
+
CreateApplicationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface CreateApplicationCommandInput
|
|
18
|
+
extends CreateApplicationRequest {}
|
|
19
|
+
export interface CreateApplicationCommandOutput
|
|
20
|
+
extends CreateApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateApplicationCommand extends $Command<
|
|
23
|
+
CreateApplicationCommandInput,
|
|
24
|
+
CreateApplicationCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateApplicationCommandInput;
|
|
28
|
+
constructor(input: CreateApplicationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateApplicationVersionRequest,
|
|
10
|
+
CreateApplicationVersionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface CreateApplicationVersionCommandInput
|
|
18
|
+
extends CreateApplicationVersionRequest {}
|
|
19
|
+
export interface CreateApplicationVersionCommandOutput
|
|
20
|
+
extends CreateApplicationVersionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateApplicationVersionCommand extends $Command<
|
|
23
|
+
CreateApplicationVersionCommandInput,
|
|
24
|
+
CreateApplicationVersionCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateApplicationVersionCommandInput;
|
|
28
|
+
constructor(input: CreateApplicationVersionCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateApplicationVersionCommandInput,
|
|
35
|
+
CreateApplicationVersionCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateCloudFormationChangeSetRequest,
|
|
10
|
+
CreateCloudFormationChangeSetResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface CreateCloudFormationChangeSetCommandInput
|
|
18
|
+
extends CreateCloudFormationChangeSetRequest {}
|
|
19
|
+
export interface CreateCloudFormationChangeSetCommandOutput
|
|
20
|
+
extends CreateCloudFormationChangeSetResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateCloudFormationChangeSetCommand extends $Command<
|
|
23
|
+
CreateCloudFormationChangeSetCommandInput,
|
|
24
|
+
CreateCloudFormationChangeSetCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateCloudFormationChangeSetCommandInput;
|
|
28
|
+
constructor(input: CreateCloudFormationChangeSetCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateCloudFormationChangeSetCommandInput,
|
|
35
|
+
CreateCloudFormationChangeSetCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateCloudFormationTemplateRequest,
|
|
10
|
+
CreateCloudFormationTemplateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface CreateCloudFormationTemplateCommandInput
|
|
18
|
+
extends CreateCloudFormationTemplateRequest {}
|
|
19
|
+
export interface CreateCloudFormationTemplateCommandOutput
|
|
20
|
+
extends CreateCloudFormationTemplateResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateCloudFormationTemplateCommand extends $Command<
|
|
23
|
+
CreateCloudFormationTemplateCommandInput,
|
|
24
|
+
CreateCloudFormationTemplateCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateCloudFormationTemplateCommandInput;
|
|
28
|
+
constructor(input: CreateCloudFormationTemplateCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
CreateCloudFormationTemplateCommandInput,
|
|
35
|
+
CreateCloudFormationTemplateCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,31 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteApplicationRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
14
|
+
export interface DeleteApplicationCommandInput
|
|
15
|
+
extends DeleteApplicationRequest {}
|
|
16
|
+
export interface DeleteApplicationCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class DeleteApplicationCommand extends $Command<
|
|
18
|
+
DeleteApplicationCommandInput,
|
|
19
|
+
DeleteApplicationCommandOutput,
|
|
20
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteApplicationCommandInput;
|
|
23
|
+
constructor(input: DeleteApplicationCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
29
|
+
private serialize;
|
|
30
|
+
private deserialize;
|
|
31
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetApplicationRequest,
|
|
10
|
+
GetApplicationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
18
|
+
export interface GetApplicationCommandOutput
|
|
19
|
+
extends GetApplicationResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetApplicationCommand extends $Command<
|
|
22
|
+
GetApplicationCommandInput,
|
|
23
|
+
GetApplicationCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetApplicationCommandInput;
|
|
27
|
+
constructor(input: GetApplicationCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetApplicationPolicyRequest,
|
|
10
|
+
GetApplicationPolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface GetApplicationPolicyCommandInput
|
|
18
|
+
extends GetApplicationPolicyRequest {}
|
|
19
|
+
export interface GetApplicationPolicyCommandOutput
|
|
20
|
+
extends GetApplicationPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetApplicationPolicyCommand extends $Command<
|
|
23
|
+
GetApplicationPolicyCommandInput,
|
|
24
|
+
GetApplicationPolicyCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetApplicationPolicyCommandInput;
|
|
28
|
+
constructor(input: GetApplicationPolicyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetApplicationPolicyCommandInput,
|
|
35
|
+
GetApplicationPolicyCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetCloudFormationTemplateRequest,
|
|
10
|
+
GetCloudFormationTemplateResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface GetCloudFormationTemplateCommandInput
|
|
18
|
+
extends GetCloudFormationTemplateRequest {}
|
|
19
|
+
export interface GetCloudFormationTemplateCommandOutput
|
|
20
|
+
extends GetCloudFormationTemplateResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetCloudFormationTemplateCommand extends $Command<
|
|
23
|
+
GetCloudFormationTemplateCommandInput,
|
|
24
|
+
GetCloudFormationTemplateCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetCloudFormationTemplateCommandInput;
|
|
28
|
+
constructor(input: GetCloudFormationTemplateCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetCloudFormationTemplateCommandInput,
|
|
35
|
+
GetCloudFormationTemplateCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListApplicationDependenciesRequest,
|
|
10
|
+
ListApplicationDependenciesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface ListApplicationDependenciesCommandInput
|
|
18
|
+
extends ListApplicationDependenciesRequest {}
|
|
19
|
+
export interface ListApplicationDependenciesCommandOutput
|
|
20
|
+
extends ListApplicationDependenciesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListApplicationDependenciesCommand extends $Command<
|
|
23
|
+
ListApplicationDependenciesCommandInput,
|
|
24
|
+
ListApplicationDependenciesCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListApplicationDependenciesCommandInput;
|
|
28
|
+
constructor(input: ListApplicationDependenciesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListApplicationDependenciesCommandInput,
|
|
35
|
+
ListApplicationDependenciesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListApplicationVersionsRequest,
|
|
10
|
+
ListApplicationVersionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface ListApplicationVersionsCommandInput
|
|
18
|
+
extends ListApplicationVersionsRequest {}
|
|
19
|
+
export interface ListApplicationVersionsCommandOutput
|
|
20
|
+
extends ListApplicationVersionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListApplicationVersionsCommand extends $Command<
|
|
23
|
+
ListApplicationVersionsCommandInput,
|
|
24
|
+
ListApplicationVersionsCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListApplicationVersionsCommandInput;
|
|
28
|
+
constructor(input: ListApplicationVersionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListApplicationVersionsCommandInput,
|
|
35
|
+
ListApplicationVersionsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListApplicationsRequest,
|
|
10
|
+
ListApplicationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
18
|
+
export interface ListApplicationsCommandOutput
|
|
19
|
+
extends ListApplicationsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListApplicationsCommand extends $Command<
|
|
22
|
+
ListApplicationsCommandInput,
|
|
23
|
+
ListApplicationsCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListApplicationsCommandInput;
|
|
27
|
+
constructor(input: ListApplicationsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|