@aws-sdk/client-serverlessapplicationrepository 3.296.0 → 3.298.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/dist-cjs/commands/CreateApplicationCommand.js +2 -3
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +2 -3
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +2 -3
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +2 -3
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -3
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +2 -3
- package/dist-cjs/commands/UnshareApplicationCommand.js +2 -3
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -145
- package/dist-es/commands/CreateApplicationCommand.js +2 -3
- package/dist-es/commands/CreateApplicationVersionCommand.js +2 -3
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +2 -3
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationCommand.js +2 -3
- package/dist-es/commands/GetApplicationCommand.js +2 -3
- package/dist-es/commands/GetApplicationPolicyCommand.js +2 -3
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +2 -3
- package/dist-es/commands/ListApplicationDependenciesCommand.js +2 -3
- package/dist-es/commands/ListApplicationVersionsCommand.js +2 -3
- package/dist-es/commands/ListApplicationsCommand.js +2 -3
- package/dist-es/commands/PutApplicationPolicyCommand.js +2 -3
- package/dist-es/commands/UnshareApplicationCommand.js +2 -3
- package/dist-es/commands/UpdateApplicationCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -108
- package/dist-types/ServerlessApplicationRepository.d.ts +15 -0
- package/dist-types/ServerlessApplicationRepositoryClient.d.ts +24 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +16 -0
- package/dist-types/commands/UnshareApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/ServerlessApplicationRepositoryServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +104 -148
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationDependenciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -104
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetApplicationCommandInput extends GetApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the specified application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
34
|
+
* @returns {@link GetApplicationCommandOutput}
|
|
28
35
|
* @see {@link GetApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
49
56
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: GetApplicationCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetApplicationCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetApplicationPolicyRequest, GetApplicationPolicyResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetApplicationPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetApplicationPolicyCommandInput extends GetApplicationPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetApplicationPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the policy for the application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetApplicationPolicyCommandInput - {@link GetApplicationPolicyCommandInput}
|
|
34
|
+
* @returns {@link GetApplicationPolicyCommandOutput}
|
|
28
35
|
* @see {@link GetApplicationPolicyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetApplicationPolicyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyR
|
|
|
49
56
|
export declare class GetApplicationPolicyCommand extends $Command<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: GetApplicationPolicyCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetApplicationPolicyCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetCloudFormationTemplateRequest, GetCloudFormationTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCloudFormationTemplateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCloudFormationTemplateCommandInput extends GetCloudFormationTemplateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCloudFormationTemplateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormationTemplateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the specified AWS CloudFormation template.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormatio
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetCloudFormationTemplateCommandInput - {@link GetCloudFormationTemplateCommandInput}
|
|
34
|
+
* @returns {@link GetCloudFormationTemplateCommandOutput}
|
|
28
35
|
* @see {@link GetCloudFormationTemplateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetCloudFormationTemplateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormatio
|
|
|
49
56
|
export declare class GetCloudFormationTemplateCommand extends $Command<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: GetCloudFormationTemplateCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetCloudFormationTemplateCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListApplicationDependenciesRequest, ListApplicationDependenciesResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationDependenciesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationDependenciesCommandInput extends ListApplicationDependenciesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationDependenciesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationDependenciesCommandOutput extends ListApplicationDependenciesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the list of applications nested in the containing application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListApplicationDependenciesCommandOutput extends ListApplicatio
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationDependenciesCommandInput - {@link ListApplicationDependenciesCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationDependenciesCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationDependenciesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationDependenciesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListApplicationDependenciesCommandOutput extends ListApplicatio
|
|
|
49
56
|
export declare class ListApplicationDependenciesCommand extends $Command<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: ListApplicationDependenciesCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListApplicationDependenciesCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationVersionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationVersionsCommandInput extends ListApplicationVersionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationVersionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationVersionsCommandOutput extends ListApplicationVersionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists versions for the specified application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationVersionsCommandInput - {@link ListApplicationVersionsCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationVersionsCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationVersionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationVersionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
|
|
|
49
56
|
export declare class ListApplicationVersionsCommand extends $Command<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: ListApplicationVersionsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListApplicationVersionsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListApplicationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListApplicationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists applications owned by the requester.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
34
|
+
* @returns {@link ListApplicationsCommandOutput}
|
|
28
35
|
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
46
53
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
47
54
|
readonly input: ListApplicationsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListApplicationsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { PutApplicationPolicyRequest, PutApplicationPolicyResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutApplicationPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutApplicationPolicyCommandInput extends PutApplicationPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutApplicationPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sets the permission policy for an application. For the list of actions supported for this operation, see
|
|
18
23
|
* <a href="https://docs.aws.amazon.com/serverlessrepo/latest/devguide/access-control-resource-based.html#application-permissions">Application
|
|
19
24
|
* Permissions</a>
|
|
@@ -28,6 +33,8 @@ export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyR
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param PutApplicationPolicyCommandInput - {@link PutApplicationPolicyCommandInput}
|
|
37
|
+
* @returns {@link PutApplicationPolicyCommandOutput}
|
|
31
38
|
* @see {@link PutApplicationPolicyCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link PutApplicationPolicyCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyR
|
|
|
52
59
|
export declare class PutApplicationPolicyCommand extends $Command<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
53
60
|
readonly input: PutApplicationPolicyCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: PutApplicationPolicyCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UnshareApplicationRequest } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UnshareApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UnshareApplicationCommandInput extends UnshareApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UnshareApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Unshares an application from an AWS Organization.</p><p>This operation can be called only from the organization's master account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UnshareApplicationCommandInput - {@link UnshareApplicationCommandInput}
|
|
34
|
+
* @returns {@link UnshareApplicationCommandOutput}
|
|
28
35
|
* @see {@link UnshareApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UnshareApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
|
49
56
|
export declare class UnshareApplicationCommand extends $Command<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
50
57
|
readonly input: UnshareApplicationCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UnshareApplicationCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnshareApplicationCommandInput, UnshareApplicationCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateApplicationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateApplicationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified application.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
34
|
+
* @returns {@link UpdateApplicationCommandOutput}
|
|
28
35
|
* @see {@link UpdateApplicationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
52
59
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
53
60
|
readonly input: UpdateApplicationCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: UpdateApplicationCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from ServerlessApplicationRepository service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class ServerlessApplicationRepositoryServiceException extends __ServiceException {
|