@aws-sdk/client-serverlessapplicationrepository 3.36.0 → 3.36.1
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 +11 -0
- package/dist-cjs/ServerlessApplicationRepository.js +0 -22
- package/dist-cjs/ServerlessApplicationRepositoryClient.js +0 -27
- package/dist-cjs/commands/CreateApplicationCommand.js +0 -24
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +0 -24
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +0 -24
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +0 -24
- package/dist-cjs/commands/DeleteApplicationCommand.js +0 -24
- package/dist-cjs/commands/GetApplicationCommand.js +0 -24
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +0 -24
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +0 -24
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +0 -24
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +0 -24
- package/dist-cjs/commands/ListApplicationsCommand.js +0 -24
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +0 -27
- package/dist-cjs/commands/UnshareApplicationCommand.js +0 -24
- package/dist-cjs/commands/UpdateApplicationCommand.js +0 -24
- package/dist-cjs/models/models_0.js +0 -126
- package/dist-cjs/pagination/ListApplicationDependenciesPaginator.js +0 -10
- package/dist-cjs/pagination/ListApplicationVersionsPaginator.js +0 -10
- package/dist-cjs/pagination/ListApplicationsPaginator.js +0 -10
- package/dist-cjs/protocols/Aws_restJson1.js +0 -5
- package/dist-cjs/runtimeConfig.browser.js +1 -5
- package/dist-cjs/runtimeConfig.js +1 -5
- package/dist-cjs/runtimeConfig.native.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +0 -3
- package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +15 -67
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +24 -108
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +2 -23
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +2 -20
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +2 -20
- package/dist-types/ts3.4/models/models_0.d.ts +254 -895
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -3
- package/package.json +3 -3
|
@@ -6,29 +6,11 @@ export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
|
6
6
|
}
|
|
7
7
|
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
* <p>Lists applications owned by the requester.</p>
|
|
11
|
-
* @example
|
|
12
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
-
* ```javascript
|
|
14
|
-
* import { ServerlessApplicationRepositoryClient, ListApplicationsCommand } from "@aws-sdk/client-serverlessapplicationrepository"; // ES Modules import
|
|
15
|
-
* // const { ServerlessApplicationRepositoryClient, ListApplicationsCommand } = require("@aws-sdk/client-serverlessapplicationrepository"); // CommonJS import
|
|
16
|
-
* const client = new ServerlessApplicationRepositoryClient(config);
|
|
17
|
-
* const command = new ListApplicationsCommand(input);
|
|
18
|
-
* const response = await client.send(command);
|
|
19
|
-
* ```
|
|
20
|
-
*
|
|
21
|
-
* @see {@link ListApplicationsCommandInput} for command's `input` shape.
|
|
22
|
-
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for command's `input` shape.
|
|
24
|
-
*
|
|
25
|
-
*/
|
|
9
|
+
|
|
26
10
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
27
11
|
readonly input: ListApplicationsCommandInput;
|
|
28
12
|
constructor(input: ListApplicationsCommandInput);
|
|
29
|
-
|
|
30
|
-
* @internal
|
|
31
|
-
*/
|
|
13
|
+
|
|
32
14
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
|
|
33
15
|
private serialize;
|
|
34
16
|
private deserialize;
|
|
@@ -6,32 +6,11 @@ export interface PutApplicationPolicyCommandInput extends PutApplicationPolicyRe
|
|
|
6
6
|
}
|
|
7
7
|
export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
* <p>Sets the permission policy for an application. For the list of actions supported for this operation, see
|
|
11
|
-
* <a href="https://docs.aws.amazon.com/serverlessrepo/latest/devguide/access-control-resource-based.html#application-permissions">Application
|
|
12
|
-
* Permissions</a>
|
|
13
|
-
* .</p>
|
|
14
|
-
* @example
|
|
15
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
16
|
-
* ```javascript
|
|
17
|
-
* import { ServerlessApplicationRepositoryClient, PutApplicationPolicyCommand } from "@aws-sdk/client-serverlessapplicationrepository"; // ES Modules import
|
|
18
|
-
* // const { ServerlessApplicationRepositoryClient, PutApplicationPolicyCommand } = require("@aws-sdk/client-serverlessapplicationrepository"); // CommonJS import
|
|
19
|
-
* const client = new ServerlessApplicationRepositoryClient(config);
|
|
20
|
-
* const command = new PutApplicationPolicyCommand(input);
|
|
21
|
-
* const response = await client.send(command);
|
|
22
|
-
* ```
|
|
23
|
-
*
|
|
24
|
-
* @see {@link PutApplicationPolicyCommandInput} for command's `input` shape.
|
|
25
|
-
* @see {@link PutApplicationPolicyCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for command's `input` shape.
|
|
27
|
-
*
|
|
28
|
-
*/
|
|
9
|
+
|
|
29
10
|
export declare class PutApplicationPolicyCommand extends $Command<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
30
11
|
readonly input: PutApplicationPolicyCommandInput;
|
|
31
12
|
constructor(input: PutApplicationPolicyCommandInput);
|
|
32
|
-
|
|
33
|
-
* @internal
|
|
34
|
-
*/
|
|
13
|
+
|
|
35
14
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput>;
|
|
36
15
|
private serialize;
|
|
37
16
|
private deserialize;
|
|
@@ -6,29 +6,11 @@ export interface UnshareApplicationCommandInput extends UnshareApplicationReques
|
|
|
6
6
|
}
|
|
7
7
|
export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
* <p>Unshares an application from an AWS Organization.</p><p>This operation can be called only from the organization's master account.</p>
|
|
11
|
-
* @example
|
|
12
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
-
* ```javascript
|
|
14
|
-
* import { ServerlessApplicationRepositoryClient, UnshareApplicationCommand } from "@aws-sdk/client-serverlessapplicationrepository"; // ES Modules import
|
|
15
|
-
* // const { ServerlessApplicationRepositoryClient, UnshareApplicationCommand } = require("@aws-sdk/client-serverlessapplicationrepository"); // CommonJS import
|
|
16
|
-
* const client = new ServerlessApplicationRepositoryClient(config);
|
|
17
|
-
* const command = new UnshareApplicationCommand(input);
|
|
18
|
-
* const response = await client.send(command);
|
|
19
|
-
* ```
|
|
20
|
-
*
|
|
21
|
-
* @see {@link UnshareApplicationCommandInput} for command's `input` shape.
|
|
22
|
-
* @see {@link UnshareApplicationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for command's `input` shape.
|
|
24
|
-
*
|
|
25
|
-
*/
|
|
9
|
+
|
|
26
10
|
export declare class UnshareApplicationCommand extends $Command<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
27
11
|
readonly input: UnshareApplicationCommandInput;
|
|
28
12
|
constructor(input: UnshareApplicationCommandInput);
|
|
29
|
-
|
|
30
|
-
* @internal
|
|
31
|
-
*/
|
|
13
|
+
|
|
32
14
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnshareApplicationCommandInput, UnshareApplicationCommandOutput>;
|
|
33
15
|
private serialize;
|
|
34
16
|
private deserialize;
|
|
@@ -6,29 +6,11 @@ export interface UpdateApplicationCommandInput extends UpdateApplicationRequest
|
|
|
6
6
|
}
|
|
7
7
|
export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
* <p>Updates the specified application.</p>
|
|
11
|
-
* @example
|
|
12
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
-
* ```javascript
|
|
14
|
-
* import { ServerlessApplicationRepositoryClient, UpdateApplicationCommand } from "@aws-sdk/client-serverlessapplicationrepository"; // ES Modules import
|
|
15
|
-
* // const { ServerlessApplicationRepositoryClient, UpdateApplicationCommand } = require("@aws-sdk/client-serverlessapplicationrepository"); // CommonJS import
|
|
16
|
-
* const client = new ServerlessApplicationRepositoryClient(config);
|
|
17
|
-
* const command = new UpdateApplicationCommand(input);
|
|
18
|
-
* const response = await client.send(command);
|
|
19
|
-
* ```
|
|
20
|
-
*
|
|
21
|
-
* @see {@link UpdateApplicationCommandInput} for command's `input` shape.
|
|
22
|
-
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for command's `input` shape.
|
|
24
|
-
*
|
|
25
|
-
*/
|
|
9
|
+
|
|
26
10
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
27
11
|
readonly input: UpdateApplicationCommandInput;
|
|
28
12
|
constructor(input: UpdateApplicationCommandInput);
|
|
29
|
-
|
|
30
|
-
* @internal
|
|
31
|
-
*/
|
|
13
|
+
|
|
32
14
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
33
15
|
private serialize;
|
|
34
16
|
private deserialize;
|