@aws-sdk/client-serverlessapplicationrepository 3.337.0 → 3.341.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/ServerlessApplicationRepositoryClient.js +2 -1
- package/dist-cjs/commands/CreateApplicationCommand.js +2 -1
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +2 -1
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +2 -1
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +2 -1
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -1
- package/dist-cjs/commands/GetApplicationCommand.js +2 -1
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +2 -1
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +2 -1
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +2 -1
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +2 -1
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -1
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +2 -1
- package/dist-cjs/commands/UnshareApplicationCommand.js +2 -1
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -1
- package/dist-cjs/index.js +2 -2
- package/dist-cjs/models/ServerlessApplicationRepositoryServiceException.js +2 -1
- package/dist-es/ServerlessApplicationRepositoryClient.js +1 -0
- package/dist-es/commands/CreateApplicationCommand.js +1 -0
- package/dist-es/commands/CreateApplicationVersionCommand.js +1 -0
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +1 -0
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +1 -0
- package/dist-es/commands/DeleteApplicationCommand.js +1 -0
- package/dist-es/commands/GetApplicationCommand.js +1 -0
- package/dist-es/commands/GetApplicationPolicyCommand.js +1 -0
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +1 -0
- package/dist-es/commands/ListApplicationDependenciesCommand.js +1 -0
- package/dist-es/commands/ListApplicationVersionsCommand.js +1 -0
- package/dist-es/commands/ListApplicationsCommand.js +1 -0
- package/dist-es/commands/PutApplicationPolicyCommand.js +1 -0
- package/dist-es/commands/UnshareApplicationCommand.js +1 -0
- package/dist-es/commands/UpdateApplicationCommand.js +1 -0
- package/dist-es/index.js +2 -2
- package/dist-es/models/ServerlessApplicationRepositoryServiceException.js +1 -0
- package/dist-types/ServerlessApplicationRepositoryClient.d.ts +3 -3
- package/dist-types/commands/CreateApplicationCommand.d.ts +4 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +4 -0
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +4 -0
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +4 -0
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +4 -0
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +4 -0
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +4 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +4 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +4 -0
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +4 -0
- package/dist-types/commands/UnshareApplicationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +4 -0
- package/dist-types/index.d.ts +26 -2
- package/dist-types/models/ServerlessApplicationRepositoryServiceException.d.ts +1 -0
- package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +3 -3
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +1 -0
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +2 -2
- package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +1 -0
- package/package.json +28 -28
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ServerlessApplicationRepositoryClient = void 0;
|
|
3
|
+
exports.ServerlessApplicationRepositoryClient = exports.__Client = void 0;
|
|
4
4
|
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
@@ -11,6 +11,7 @@ const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
|
11
11
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
12
12
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
13
13
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
14
|
+
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
14
15
|
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
15
16
|
const runtimeConfig_1 = require("./runtimeConfig");
|
|
16
17
|
class ServerlessApplicationRepositoryClient extends smithy_client_1.Client {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateApplicationCommand = void 0;
|
|
3
|
+
exports.CreateApplicationCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class CreateApplicationCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateApplicationVersionCommand = void 0;
|
|
3
|
+
exports.CreateApplicationVersionCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class CreateApplicationVersionCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateCloudFormationChangeSetCommand = void 0;
|
|
3
|
+
exports.CreateCloudFormationChangeSetCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class CreateCloudFormationChangeSetCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateCloudFormationTemplateCommand = void 0;
|
|
3
|
+
exports.CreateCloudFormationTemplateCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class CreateCloudFormationTemplateCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteApplicationCommand = void 0;
|
|
3
|
+
exports.DeleteApplicationCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class DeleteApplicationCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetApplicationCommand = void 0;
|
|
3
|
+
exports.GetApplicationCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class GetApplicationCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetApplicationPolicyCommand = void 0;
|
|
3
|
+
exports.GetApplicationPolicyCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class GetApplicationPolicyCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetCloudFormationTemplateCommand = void 0;
|
|
3
|
+
exports.GetCloudFormationTemplateCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class GetCloudFormationTemplateCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListApplicationDependenciesCommand = void 0;
|
|
3
|
+
exports.ListApplicationDependenciesCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class ListApplicationDependenciesCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListApplicationVersionsCommand = void 0;
|
|
3
|
+
exports.ListApplicationVersionsCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class ListApplicationVersionsCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListApplicationsCommand = void 0;
|
|
3
|
+
exports.ListApplicationsCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class ListApplicationsCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PutApplicationPolicyCommand = void 0;
|
|
3
|
+
exports.PutApplicationPolicyCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class PutApplicationPolicyCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UnshareApplicationCommand = void 0;
|
|
3
|
+
exports.UnshareApplicationCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class UnshareApplicationCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateApplicationCommand = void 0;
|
|
3
|
+
exports.UpdateApplicationCommand = exports.$Command = void 0;
|
|
4
4
|
const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
|
|
5
5
|
const middleware_serde_1 = require("@aws-sdk/middleware-serde");
|
|
6
6
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
7
8
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
8
9
|
class UpdateApplicationCommand extends smithy_client_1.Command {
|
|
9
10
|
static getEndpointParameterInstructions() {
|
package/dist-cjs/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ServerlessApplicationRepositoryServiceException = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
tslib_1.__exportStar(require("./ServerlessApplicationRepository"), exports);
|
|
6
5
|
tslib_1.__exportStar(require("./ServerlessApplicationRepositoryClient"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./ServerlessApplicationRepository"), exports);
|
|
7
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./models"), exports);
|
|
9
8
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./models"), exports);
|
|
10
10
|
var ServerlessApplicationRepositoryServiceException_1 = require("./models/ServerlessApplicationRepositoryServiceException");
|
|
11
11
|
Object.defineProperty(exports, "ServerlessApplicationRepositoryServiceException", { enumerable: true, get: function () { return ServerlessApplicationRepositoryServiceException_1.ServerlessApplicationRepositoryServiceException; } });
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ServerlessApplicationRepositoryServiceException = void 0;
|
|
3
|
+
exports.ServerlessApplicationRepositoryServiceException = exports.__ServiceException = void 0;
|
|
4
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
5
6
|
class ServerlessApplicationRepositoryServiceException extends smithy_client_1.ServiceException {
|
|
6
7
|
constructor(options) {
|
|
7
8
|
super(options);
|
|
@@ -10,6 +10,7 @@ import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware
|
|
|
10
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
11
11
|
import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
|
|
12
12
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
13
|
+
export { __Client };
|
|
13
14
|
export class ServerlessApplicationRepositoryClient extends __Client {
|
|
14
15
|
constructor(configuration) {
|
|
15
16
|
const _config_0 = __getRuntimeConfig(configuration);
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_CreateApplicationCommand, se_CreateApplicationCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class CreateApplicationCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_CreateApplicationVersionCommand, se_CreateApplicationVersionCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class CreateApplicationVersionCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_CreateCloudFormationChangeSetCommand, se_CreateCloudFormationChangeSetCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class CreateCloudFormationChangeSetCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_CreateCloudFormationTemplateCommand, se_CreateCloudFormationTemplateCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class CreateCloudFormationTemplateCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_DeleteApplicationCommand, se_DeleteApplicationCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class DeleteApplicationCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetApplicationCommand, se_GetApplicationCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetApplicationCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetApplicationPolicyCommand, se_GetApplicationPolicyCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetApplicationPolicyCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_GetCloudFormationTemplateCommand, se_GetCloudFormationTemplateCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class GetCloudFormationTemplateCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_ListApplicationDependenciesCommand, se_ListApplicationDependenciesCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class ListApplicationDependenciesCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_ListApplicationVersionsCommand, se_ListApplicationVersionsCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class ListApplicationVersionsCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_ListApplicationsCommand, se_ListApplicationsCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class ListApplicationsCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_PutApplicationPolicyCommand, se_PutApplicationPolicyCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class PutApplicationPolicyCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_UnshareApplicationCommand, se_UnshareApplicationCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class UnshareApplicationCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
4
|
import { de_UpdateApplicationCommand, se_UpdateApplicationCommand } from "../protocols/Aws_restJson1";
|
|
5
|
+
export { $Command };
|
|
5
6
|
export class UpdateApplicationCommand extends $Command {
|
|
6
7
|
static getEndpointParameterInstructions() {
|
|
7
8
|
return {
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ServerlessApplicationRepository";
|
|
2
1
|
export * from "./ServerlessApplicationRepositoryClient";
|
|
2
|
+
export * from "./ServerlessApplicationRepository";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models";
|
|
6
6
|
export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
|
|
@@ -23,6 +23,7 @@ import { PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput } f
|
|
|
23
23
|
import { UnshareApplicationCommandInput, UnshareApplicationCommandOutput } from "./commands/UnshareApplicationCommand";
|
|
24
24
|
import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
25
25
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
26
|
+
export { __Client };
|
|
26
27
|
/**
|
|
27
28
|
* @public
|
|
28
29
|
*/
|
|
@@ -137,7 +138,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
137
138
|
/**
|
|
138
139
|
* @public
|
|
139
140
|
*/
|
|
140
|
-
type ServerlessApplicationRepositoryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
141
|
+
export type ServerlessApplicationRepositoryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
141
142
|
/**
|
|
142
143
|
* @public
|
|
143
144
|
*
|
|
@@ -148,7 +149,7 @@ export interface ServerlessApplicationRepositoryClientConfig extends ServerlessA
|
|
|
148
149
|
/**
|
|
149
150
|
* @public
|
|
150
151
|
*/
|
|
151
|
-
type ServerlessApplicationRepositoryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
152
|
+
export type ServerlessApplicationRepositoryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
152
153
|
/**
|
|
153
154
|
* @public
|
|
154
155
|
*
|
|
@@ -192,4 +193,3 @@ export declare class ServerlessApplicationRepositoryClient extends __Client<__Ht
|
|
|
192
193
|
*/
|
|
193
194
|
destroy(): void;
|
|
194
195
|
}
|
|
195
|
-
export {};
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { CreateApplicationVersionRequest, CreateApplicationVersionResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { CreateCloudFormationChangeSetRequest, CreateCloudFormationChangeSetResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { CreateCloudFormationTemplateRequest, CreateCloudFormationTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { DeleteApplicationRequest } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetApplicationPolicyRequest, GetApplicationPolicyResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { GetCloudFormationTemplateRequest, GetCloudFormationTemplateResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListApplicationDependenciesRequest, ListApplicationDependenciesResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { PutApplicationPolicyRequest, PutApplicationPolicyResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UnshareApplicationRequest } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
|
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
|
|
5
5
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
6
10
|
/**
|
|
7
11
|
* @public
|
|
8
12
|
*
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* <p>The AWS Serverless Application Repository makes it easy for developers and enterprises to quickly find
|
|
3
|
+
* and deploy serverless applications in the AWS Cloud. For more information about serverless applications,
|
|
4
|
+
* see Serverless Computing and Applications on the AWS website.</p><p>The AWS Serverless Application Repository is deeply integrated with the AWS Lambda console, so that developers of
|
|
5
|
+
* all levels can get started with serverless computing without needing to learn anything new. You can use category
|
|
6
|
+
* keywords to browse for applications such as web and mobile backends, data processing applications, or chatbots.
|
|
7
|
+
* You can also search for applications by name, publisher, or event source. To use an application, you simply choose it,
|
|
8
|
+
* configure any required fields, and deploy it with a few clicks. </p><p>You can also easily publish applications, sharing them publicly with the community at large, or privately
|
|
9
|
+
* within your team or across your organization. To publish a serverless application (or app), you can use the
|
|
10
|
+
* AWS Management Console, AWS Command Line Interface (AWS CLI), or AWS SDKs to upload the code. Along with the
|
|
11
|
+
* code, you upload a simple manifest file, also known as the AWS Serverless Application Model (AWS SAM) template.
|
|
12
|
+
* For more information about AWS SAM, see AWS Serverless Application Model (AWS SAM) on the AWS Labs
|
|
13
|
+
* GitHub repository.</p><p>The AWS Serverless Application Repository Developer Guide contains more information about the two developer
|
|
14
|
+
* experiences available:</p><ul>
|
|
15
|
+
* <li>
|
|
16
|
+
* <p>Consuming Applications – Browse for applications and view information about them, including
|
|
17
|
+
* source code and readme files. Also install, configure, and deploy applications of your choosing. </p>
|
|
18
|
+
* <p>Publishing Applications – Configure and upload applications to make them available to other
|
|
19
|
+
* developers, and publish new versions of applications. </p>
|
|
20
|
+
* </li>
|
|
21
|
+
* </ul>
|
|
22
|
+
*
|
|
23
|
+
* @packageDocumentation
|
|
24
|
+
*/
|
|
2
25
|
export * from "./ServerlessApplicationRepositoryClient";
|
|
26
|
+
export * from "./ServerlessApplicationRepository";
|
|
3
27
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
28
|
export * from "./pagination";
|
|
29
|
+
export * from "./models";
|
|
6
30
|
export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
|
|
@@ -107,6 +107,7 @@ import {
|
|
|
107
107
|
ClientResolvedEndpointParameters,
|
|
108
108
|
EndpointParameters,
|
|
109
109
|
} from "./endpoint/EndpointParameters";
|
|
110
|
+
export { __Client };
|
|
110
111
|
export type ServiceInputTypes =
|
|
111
112
|
| CreateApplicationCommandInput
|
|
112
113
|
| CreateApplicationVersionCommandInput
|
|
@@ -161,7 +162,7 @@ export interface ClientDefaults
|
|
|
161
162
|
logger?: __Logger;
|
|
162
163
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
163
164
|
}
|
|
164
|
-
type ServerlessApplicationRepositoryClientConfigType = Partial<
|
|
165
|
+
export type ServerlessApplicationRepositoryClientConfigType = Partial<
|
|
165
166
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
166
167
|
> &
|
|
167
168
|
ClientDefaults &
|
|
@@ -174,7 +175,7 @@ type ServerlessApplicationRepositoryClientConfigType = Partial<
|
|
|
174
175
|
ClientInputEndpointParameters;
|
|
175
176
|
export interface ServerlessApplicationRepositoryClientConfig
|
|
176
177
|
extends ServerlessApplicationRepositoryClientConfigType {}
|
|
177
|
-
type ServerlessApplicationRepositoryClientResolvedConfigType =
|
|
178
|
+
export type ServerlessApplicationRepositoryClientResolvedConfigType =
|
|
178
179
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
179
180
|
Required<ClientDefaults> &
|
|
180
181
|
RegionResolvedConfig &
|
|
@@ -196,4 +197,3 @@ export declare class ServerlessApplicationRepositoryClient extends __Client<
|
|
|
196
197
|
constructor(configuration: ServerlessApplicationRepositoryClientConfig);
|
|
197
198
|
destroy(): void;
|
|
198
199
|
}
|
|
199
|
-
export {};
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface CreateApplicationCommandInput
|
|
19
20
|
extends CreateApplicationRequest {}
|
|
20
21
|
export interface CreateApplicationCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface CreateApplicationVersionCommandInput
|
|
19
20
|
extends CreateApplicationVersionRequest {}
|
|
20
21
|
export interface CreateApplicationVersionCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface CreateCloudFormationChangeSetCommandInput
|
|
19
20
|
extends CreateCloudFormationChangeSetRequest {}
|
|
20
21
|
export interface CreateCloudFormationChangeSetCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface CreateCloudFormationTemplateCommandInput
|
|
19
20
|
extends CreateCloudFormationTemplateRequest {}
|
|
20
21
|
export interface CreateCloudFormationTemplateCommandOutput
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ServiceInputTypes,
|
|
13
13
|
ServiceOutputTypes,
|
|
14
14
|
} from "../ServerlessApplicationRepositoryClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
15
16
|
export interface DeleteApplicationCommandInput
|
|
16
17
|
extends DeleteApplicationRequest {}
|
|
17
18
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {}
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
19
20
|
export interface GetApplicationCommandOutput
|
|
20
21
|
extends GetApplicationResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface GetApplicationPolicyCommandInput
|
|
19
20
|
extends GetApplicationPolicyRequest {}
|
|
20
21
|
export interface GetApplicationPolicyCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface GetCloudFormationTemplateCommandInput
|
|
19
20
|
extends GetCloudFormationTemplateRequest {}
|
|
20
21
|
export interface GetCloudFormationTemplateCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface ListApplicationDependenciesCommandInput
|
|
19
20
|
extends ListApplicationDependenciesRequest {}
|
|
20
21
|
export interface ListApplicationDependenciesCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface ListApplicationVersionsCommandInput
|
|
19
20
|
extends ListApplicationVersionsRequest {}
|
|
20
21
|
export interface ListApplicationVersionsCommandOutput
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
19
20
|
export interface ListApplicationsCommandOutput
|
|
20
21
|
extends ListApplicationsResponse,
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface PutApplicationPolicyCommandInput
|
|
19
20
|
extends PutApplicationPolicyRequest {}
|
|
20
21
|
export interface PutApplicationPolicyCommandOutput
|
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
ServiceInputTypes,
|
|
13
13
|
ServiceOutputTypes,
|
|
14
14
|
} from "../ServerlessApplicationRepositoryClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
15
16
|
export interface UnshareApplicationCommandInput
|
|
16
17
|
extends UnshareApplicationRequest {}
|
|
17
18
|
export interface UnshareApplicationCommandOutput extends __MetadataBearer {}
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
ServiceInputTypes,
|
|
16
16
|
ServiceOutputTypes,
|
|
17
17
|
} from "../ServerlessApplicationRepositoryClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
18
19
|
export interface UpdateApplicationCommandInput
|
|
19
20
|
extends UpdateApplicationRequest {}
|
|
20
21
|
export interface UpdateApplicationCommandOutput
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./ServerlessApplicationRepository";
|
|
2
1
|
export * from "./ServerlessApplicationRepositoryClient";
|
|
2
|
+
export * from "./ServerlessApplicationRepository";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models";
|
|
6
6
|
export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
|
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
5
6
|
export declare class ServerlessApplicationRepositoryServiceException extends __ServiceException {
|
|
6
7
|
constructor(options: __ServiceExceptionOptions);
|
|
7
8
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-serverlessapplicationrepository",
|
|
3
3
|
"description": "AWS SDK for JavaScript Serverlessapplicationrepository Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.341.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,36 +21,36 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.341.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.341.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.341.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.341.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.341.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.341.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.341.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.341.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.341.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.341.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.341.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.341.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.341.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.341.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.341.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.341.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.341.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.341.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.341.0",
|
|
43
|
+
"@aws-sdk/types": "3.341.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.341.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.341.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.341.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.341.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.341.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.341.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.341.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
55
55
|
"@smithy/protocol-http": "^1.0.1",
|
|
56
56
|
"@smithy/types": "^1.0.0",
|