@aws-sdk/client-serverlessapplicationrepository 3.168.0 → 3.170.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 +256 -75
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +214 -87
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +639 -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 +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class GetApplicationPolicyCommand extends $Command<
|
|
24
|
+
GetApplicationPolicyCommandInput,
|
|
25
|
+
GetApplicationPolicyCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetApplicationPolicyCommandInput;
|
|
29
|
+
constructor(input: GetApplicationPolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetApplicationPolicyCommandInput,
|
|
37
|
+
GetApplicationPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class GetCloudFormationTemplateCommand extends $Command<
|
|
24
|
+
GetCloudFormationTemplateCommandInput,
|
|
25
|
+
GetCloudFormationTemplateCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetCloudFormationTemplateCommandInput;
|
|
29
|
+
constructor(input: GetCloudFormationTemplateCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetCloudFormationTemplateCommandInput,
|
|
37
|
+
GetCloudFormationTemplateCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class ListApplicationDependenciesCommand extends $Command<
|
|
24
|
+
ListApplicationDependenciesCommandInput,
|
|
25
|
+
ListApplicationDependenciesCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListApplicationDependenciesCommandInput;
|
|
29
|
+
constructor(input: ListApplicationDependenciesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListApplicationDependenciesCommandInput,
|
|
37
|
+
ListApplicationDependenciesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class ListApplicationVersionsCommand extends $Command<
|
|
24
|
+
ListApplicationVersionsCommandInput,
|
|
25
|
+
ListApplicationVersionsCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListApplicationVersionsCommandInput;
|
|
29
|
+
constructor(input: ListApplicationVersionsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListApplicationVersionsCommandInput,
|
|
37
|
+
ListApplicationVersionsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
|
|
22
|
+
export declare class ListApplicationsCommand extends $Command<
|
|
23
|
+
ListApplicationsCommandInput,
|
|
24
|
+
ListApplicationsCommandOutput,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListApplicationsCommandInput;
|
|
28
|
+
constructor(input: ListApplicationsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
PutApplicationPolicyRequest,
|
|
10
|
+
PutApplicationPolicyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface PutApplicationPolicyCommandInput
|
|
18
|
+
extends PutApplicationPolicyRequest {}
|
|
19
|
+
export interface PutApplicationPolicyCommandOutput
|
|
20
|
+
extends PutApplicationPolicyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class PutApplicationPolicyCommand extends $Command<
|
|
24
|
+
PutApplicationPolicyCommandInput,
|
|
25
|
+
PutApplicationPolicyCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutApplicationPolicyCommandInput;
|
|
29
|
+
constructor(input: PutApplicationPolicyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
PutApplicationPolicyCommandInput,
|
|
37
|
+
PutApplicationPolicyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,33 @@
|
|
|
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 { UnshareApplicationRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
14
|
+
export interface UnshareApplicationCommandInput
|
|
15
|
+
extends UnshareApplicationRequest {}
|
|
16
|
+
export interface UnshareApplicationCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class UnshareApplicationCommand extends $Command<
|
|
19
|
+
UnshareApplicationCommandInput,
|
|
20
|
+
UnshareApplicationCommandOutput,
|
|
21
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UnshareApplicationCommandInput;
|
|
24
|
+
constructor(input: UnshareApplicationCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<UnshareApplicationCommandInput, UnshareApplicationCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
UpdateApplicationRequest,
|
|
10
|
+
UpdateApplicationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../ServerlessApplicationRepositoryClient";
|
|
17
|
+
export interface UpdateApplicationCommandInput
|
|
18
|
+
extends UpdateApplicationRequest {}
|
|
19
|
+
export interface UpdateApplicationCommandOutput
|
|
20
|
+
extends UpdateApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateApplicationCommand extends $Command<
|
|
24
|
+
UpdateApplicationCommandInput,
|
|
25
|
+
UpdateApplicationCommandOutput,
|
|
26
|
+
ServerlessApplicationRepositoryClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateApplicationCommandInput;
|
|
29
|
+
constructor(input: UpdateApplicationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export * from "./CreateApplicationCommand";
|
|
2
|
-
export * from "./CreateApplicationVersionCommand";
|
|
3
|
-
export * from "./CreateCloudFormationChangeSetCommand";
|
|
4
|
-
export * from "./CreateCloudFormationTemplateCommand";
|
|
5
|
-
export * from "./DeleteApplicationCommand";
|
|
6
|
-
export * from "./GetApplicationCommand";
|
|
7
|
-
export * from "./GetApplicationPolicyCommand";
|
|
8
|
-
export * from "./GetCloudFormationTemplateCommand";
|
|
9
|
-
export * from "./ListApplicationDependenciesCommand";
|
|
10
|
-
export * from "./ListApplicationVersionsCommand";
|
|
11
|
-
export * from "./ListApplicationsCommand";
|
|
12
|
-
export * from "./PutApplicationPolicyCommand";
|
|
13
|
-
export * from "./UnshareApplicationCommand";
|
|
14
|
-
export * from "./UpdateApplicationCommand";
|
|
1
|
+
export * from "./CreateApplicationCommand";
|
|
2
|
+
export * from "./CreateApplicationVersionCommand";
|
|
3
|
+
export * from "./CreateCloudFormationChangeSetCommand";
|
|
4
|
+
export * from "./CreateCloudFormationTemplateCommand";
|
|
5
|
+
export * from "./DeleteApplicationCommand";
|
|
6
|
+
export * from "./GetApplicationCommand";
|
|
7
|
+
export * from "./GetApplicationPolicyCommand";
|
|
8
|
+
export * from "./GetCloudFormationTemplateCommand";
|
|
9
|
+
export * from "./ListApplicationDependenciesCommand";
|
|
10
|
+
export * from "./ListApplicationVersionsCommand";
|
|
11
|
+
export * from "./ListApplicationsCommand";
|
|
12
|
+
export * from "./PutApplicationPolicyCommand";
|
|
13
|
+
export * from "./UnshareApplicationCommand";
|
|
14
|
+
export * from "./UpdateApplicationCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ServerlessApplicationRepository";
|
|
2
|
-
export * from "./ServerlessApplicationRepositoryClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
|
|
1
|
+
export * from "./ServerlessApplicationRepository";
|
|
2
|
+
export * from "./ServerlessApplicationRepositoryClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class ServerlessApplicationRepositoryServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|