@aws-sdk/client-serverlessapplicationrepository 3.1077.0 → 3.1079.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/index.js +22 -143
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateApplicationCommand.js +2 -14
- package/dist-es/commands/CreateApplicationVersionCommand.js +2 -14
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +2 -14
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +2 -14
- package/dist-es/commands/DeleteApplicationCommand.js +2 -14
- package/dist-es/commands/GetApplicationCommand.js +2 -14
- package/dist-es/commands/GetApplicationPolicyCommand.js +2 -14
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +2 -14
- package/dist-es/commands/ListApplicationDependenciesCommand.js +2 -14
- package/dist-es/commands/ListApplicationVersionsCommand.js +2 -14
- package/dist-es/commands/ListApplicationsCommand.js +2 -14
- package/dist-es/commands/PutApplicationPolicyCommand.js +2 -14
- package/dist-es/commands/UnshareApplicationCommand.js +2 -14
- package/dist-es/commands/UpdateApplicationCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +3 -8
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +3 -8
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +3 -8
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +3 -8
- package/dist-types/commands/DeleteApplicationCommand.d.ts +3 -8
- package/dist-types/commands/GetApplicationCommand.d.ts +3 -8
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +3 -8
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +3 -8
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +3 -8
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +3 -8
- package/dist-types/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +3 -8
- package/dist-types/commands/UnshareApplicationCommand.d.ts +3 -8
- package/dist-types/commands/UpdateApplicationCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetApplicationRequest,
|
|
5
4
|
GetApplicationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
15
8
|
export interface GetApplicationCommandOutput
|
|
16
9
|
extends GetApplicationResponse,
|
|
@@ -21,22 +14,20 @@ declare const GetApplicationCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetApplicationCommandInput,
|
|
23
16
|
GetApplicationCommandOutput,
|
|
24
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: GetApplicationCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetApplicationCommandInput,
|
|
32
25
|
GetApplicationCommandOutput,
|
|
33
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class GetApplicationCommand extends GetApplicationCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetApplicationPolicyRequest,
|
|
5
4
|
GetApplicationPolicyResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetApplicationPolicyCommandInput
|
|
15
8
|
extends GetApplicationPolicyRequest {}
|
|
16
9
|
export interface GetApplicationPolicyCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetApplicationPolicyCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetApplicationPolicyCommandInput,
|
|
24
17
|
GetApplicationPolicyCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetApplicationPolicyCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetApplicationPolicyCommandInput,
|
|
33
26
|
GetApplicationPolicyCommandOutput,
|
|
34
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetApplicationPolicyCommand extends GetApplicationPolicyCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetCloudFormationTemplateRequest,
|
|
5
4
|
GetCloudFormationTemplateResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetCloudFormationTemplateCommandInput
|
|
15
8
|
extends GetCloudFormationTemplateRequest {}
|
|
16
9
|
export interface GetCloudFormationTemplateCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const GetCloudFormationTemplateCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
GetCloudFormationTemplateCommandInput,
|
|
24
17
|
GetCloudFormationTemplateCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: GetCloudFormationTemplateCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
GetCloudFormationTemplateCommandInput,
|
|
33
26
|
GetCloudFormationTemplateCommandOutput,
|
|
34
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class GetCloudFormationTemplateCommand extends GetCloudFormationTemplateCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListApplicationDependenciesRequest,
|
|
5
4
|
ListApplicationDependenciesResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListApplicationDependenciesCommandInput
|
|
15
8
|
extends ListApplicationDependenciesRequest {}
|
|
16
9
|
export interface ListApplicationDependenciesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListApplicationDependenciesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListApplicationDependenciesCommandInput,
|
|
24
17
|
ListApplicationDependenciesCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListApplicationDependenciesCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListApplicationDependenciesCommandInput,
|
|
33
26
|
ListApplicationDependenciesCommandOutput,
|
|
34
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListApplicationDependenciesCommand extends ListApplicationDependenciesCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListApplicationVersionsRequest,
|
|
5
4
|
ListApplicationVersionsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListApplicationVersionsCommandInput
|
|
15
8
|
extends ListApplicationVersionsRequest {}
|
|
16
9
|
export interface ListApplicationVersionsCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ListApplicationVersionsCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ListApplicationVersionsCommandInput,
|
|
24
17
|
ListApplicationVersionsCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ListApplicationVersionsCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ListApplicationVersionsCommandInput,
|
|
33
26
|
ListApplicationVersionsCommandOutput,
|
|
34
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class ListApplicationVersionsCommand extends ListApplicationVersionsCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
ListApplicationsRequest,
|
|
5
4
|
ListApplicationsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
15
8
|
export interface ListApplicationsCommandOutput
|
|
16
9
|
extends ListApplicationsResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListApplicationsCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListApplicationsCommandInput,
|
|
23
16
|
ListApplicationsCommandOutput,
|
|
24
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [ListApplicationsCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListApplicationsCommandInput,
|
|
32
25
|
ListApplicationsCommandOutput,
|
|
33
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
27
|
+
import("..").ServiceInputTypes,
|
|
28
|
+
import("..").ServiceOutputTypes
|
|
36
29
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
30
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
40
31
|
};
|
|
41
32
|
export declare class ListApplicationsCommand extends ListApplicationsCommand_base {
|
|
42
33
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
PutApplicationPolicyRequest,
|
|
5
4
|
PutApplicationPolicyResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface PutApplicationPolicyCommandInput
|
|
15
8
|
extends PutApplicationPolicyRequest {}
|
|
16
9
|
export interface PutApplicationPolicyCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const PutApplicationPolicyCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
PutApplicationPolicyCommandInput,
|
|
24
17
|
PutApplicationPolicyCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: PutApplicationPolicyCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
PutApplicationPolicyCommandInput,
|
|
33
26
|
PutApplicationPolicyCommandOutput,
|
|
34
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class PutApplicationPolicyCommand extends PutApplicationPolicyCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { UnshareApplicationRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
6
|
-
ServiceInputTypes,
|
|
7
|
-
ServiceOutputTypes,
|
|
8
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface UnshareApplicationCommandInput
|
|
12
5
|
extends UnshareApplicationRequest {}
|
|
13
6
|
export interface UnshareApplicationCommandOutput extends __MetadataBearer {}
|
|
@@ -17,22 +10,20 @@ declare const UnshareApplicationCommand_base: {
|
|
|
17
10
|
): import("@smithy/core/client").CommandImpl<
|
|
18
11
|
UnshareApplicationCommandInput,
|
|
19
12
|
UnshareApplicationCommandOutput,
|
|
20
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
21
|
-
ServiceInputTypes,
|
|
22
|
-
ServiceOutputTypes
|
|
13
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
23
16
|
>;
|
|
24
17
|
new (
|
|
25
18
|
input: UnshareApplicationCommandInput
|
|
26
19
|
): import("@smithy/core/client").CommandImpl<
|
|
27
20
|
UnshareApplicationCommandInput,
|
|
28
21
|
UnshareApplicationCommandOutput,
|
|
29
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
30
|
-
ServiceInputTypes,
|
|
31
|
-
ServiceOutputTypes
|
|
22
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
32
25
|
>;
|
|
33
|
-
getEndpointParameterInstructions():
|
|
34
|
-
[x: string]: unknown;
|
|
35
|
-
};
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
36
27
|
};
|
|
37
28
|
export declare class UnshareApplicationCommand extends UnshareApplicationCommand_base {
|
|
38
29
|
protected static __types: {
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
UpdateApplicationRequest,
|
|
5
4
|
UpdateApplicationResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
9
|
-
ServiceInputTypes,
|
|
10
|
-
ServiceOutputTypes,
|
|
11
|
-
} from "../ServerlessApplicationRepositoryClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface UpdateApplicationCommandInput
|
|
15
8
|
extends UpdateApplicationRequest {}
|
|
16
9
|
export interface UpdateApplicationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const UpdateApplicationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
UpdateApplicationCommandInput,
|
|
24
17
|
UpdateApplicationCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: UpdateApplicationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
UpdateApplicationCommandInput,
|
|
33
26
|
UpdateApplicationCommandOutput,
|
|
34
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class UpdateApplicationCommand extends UpdateApplicationCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { ServerlessApplicationRepositoryExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
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.1079.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"module": "./dist-es/index.js",
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.974.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.973.
|
|
25
|
-
"@smithy/core": "^3.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
28
|
-
"@smithy/types": "^4.15.
|
|
22
|
+
"@aws-sdk/core": "^3.974.27",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "^3.972.62",
|
|
24
|
+
"@aws-sdk/types": "^3.973.15",
|
|
25
|
+
"@smithy/core": "^3.29.0",
|
|
26
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
27
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
28
|
+
"@smithy/types": "^4.15.1",
|
|
29
29
|
"tslib": "^2.6.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|