@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,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateCloudFormationTemplateRequest, CreateCloudFormationTemplateResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateCloudFormationTemplateCommandInput extends CreateCloudFor
|
|
|
22
19
|
export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFormationTemplateResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateCloudFormationTemplateCommand_base: {
|
|
25
|
-
new (input: CreateCloudFormationTemplateCommandInput): import("@smithy/core/client").CommandImpl<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateCloudFormationTemplateCommandInput): import("@smithy/core/client").CommandImpl<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateCloudFormationTemplateCommandInput): import("@smithy/core/client").CommandImpl<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateCloudFormationTemplateCommandInput): import("@smithy/core/client").CommandImpl<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates an AWS CloudFormation template.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DeleteApplicationRequest } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteApplicationCommandInput extends DeleteApplicationRequest
|
|
|
22
19
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteApplicationCommand_base: {
|
|
25
|
-
new (input: DeleteApplicationCommandInput): import("@smithy/core/client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteApplicationCommandInput): import("@smithy/core/client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteApplicationCommandInput): import("@smithy/core/client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteApplicationCommandInput): import("@smithy/core/client").CommandImpl<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Deletes the specified application.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetApplicationCommandInput extends GetApplicationRequest {
|
|
|
22
19
|
export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetApplicationCommand_base: {
|
|
25
|
-
new (input: GetApplicationCommandInput): import("@smithy/core/client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetApplicationCommandInput): import("@smithy/core/client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetApplicationCommandInput): import("@smithy/core/client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetApplicationCommandInput): import("@smithy/core/client").CommandImpl<GetApplicationCommandInput, GetApplicationCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Gets the specified application.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetApplicationPolicyRequest, GetApplicationPolicyResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetApplicationPolicyCommandInput extends GetApplicationPolicyRe
|
|
|
22
19
|
export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetApplicationPolicyCommand_base: {
|
|
25
|
-
new (input: GetApplicationPolicyCommandInput): import("@smithy/core/client").CommandImpl<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetApplicationPolicyCommandInput): import("@smithy/core/client").CommandImpl<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetApplicationPolicyCommandInput): import("@smithy/core/client").CommandImpl<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetApplicationPolicyCommandInput): import("@smithy/core/client").CommandImpl<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves the policy for the application.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetCloudFormationTemplateRequest, GetCloudFormationTemplateResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetCloudFormationTemplateCommandInput extends GetCloudFormation
|
|
|
22
19
|
export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormationTemplateResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetCloudFormationTemplateCommand_base: {
|
|
25
|
-
new (input: GetCloudFormationTemplateCommandInput): import("@smithy/core/client").CommandImpl<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetCloudFormationTemplateCommandInput): import("@smithy/core/client").CommandImpl<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetCloudFormationTemplateCommandInput): import("@smithy/core/client").CommandImpl<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetCloudFormationTemplateCommandInput): import("@smithy/core/client").CommandImpl<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Gets the specified AWS CloudFormation template.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListApplicationDependenciesRequest, ListApplicationDependenciesResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListApplicationDependenciesCommandInput extends ListApplication
|
|
|
22
19
|
export interface ListApplicationDependenciesCommandOutput extends ListApplicationDependenciesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListApplicationDependenciesCommand_base: {
|
|
25
|
-
new (input: ListApplicationDependenciesCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListApplicationDependenciesCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListApplicationDependenciesCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListApplicationDependenciesCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves the list of applications nested in the containing application.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListApplicationVersionsCommandInput extends ListApplicationVers
|
|
|
22
19
|
export interface ListApplicationVersionsCommandOutput extends ListApplicationVersionsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListApplicationVersionsCommand_base: {
|
|
25
|
-
new (input: ListApplicationVersionsCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListApplicationVersionsCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListApplicationVersionsCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListApplicationVersionsCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Lists versions for the specified application.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListApplicationsCommandInput extends ListApplicationsRequest {
|
|
|
22
19
|
export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListApplicationsCommand_base: {
|
|
25
|
-
new (input: ListApplicationsCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListApplicationsCommandInput]): import("@smithy/core/client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListApplicationsCommandInput): import("@smithy/core/client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListApplicationsCommandInput]): import("@smithy/core/client").CommandImpl<ListApplicationsCommandInput, ListApplicationsCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Lists applications owned by the requester.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { PutApplicationPolicyRequest, PutApplicationPolicyResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface PutApplicationPolicyCommandInput extends PutApplicationPolicyRe
|
|
|
22
19
|
export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const PutApplicationPolicyCommand_base: {
|
|
25
|
-
new (input: PutApplicationPolicyCommandInput): import("@smithy/core/client").CommandImpl<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: PutApplicationPolicyCommandInput): import("@smithy/core/client").CommandImpl<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: PutApplicationPolicyCommandInput): import("@smithy/core/client").CommandImpl<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: PutApplicationPolicyCommandInput): import("@smithy/core/client").CommandImpl<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Sets the permission policy for an application. For the list of actions supported for this operation, see
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UnshareApplicationRequest } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UnshareApplicationCommandInput extends UnshareApplicationReques
|
|
|
22
19
|
export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UnshareApplicationCommand_base: {
|
|
25
|
-
new (input: UnshareApplicationCommandInput): import("@smithy/core/client").CommandImpl<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UnshareApplicationCommandInput): import("@smithy/core/client").CommandImpl<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UnshareApplicationCommandInput): import("@smithy/core/client").CommandImpl<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UnshareApplicationCommandInput): import("@smithy/core/client").CommandImpl<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Unshares an application from an AWS Organization.</p><p>This operation can be called only from the organization's master account.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
|
|
4
|
-
import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateApplicationCommandInput extends UpdateApplicationRequest
|
|
|
22
19
|
export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateApplicationCommand_base: {
|
|
25
|
-
new (input: UpdateApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateApplicationCommandInput): import("@smithy/core/client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, import("..").ServerlessApplicationRepositoryClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates the specified application.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
28
28
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
29
29
|
export type { ServerlessApplicationRepositoryExtensionConfiguration } from "./extensionConfiguration";
|
|
30
30
|
export * from "./commands";
|
|
31
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
31
32
|
export * from "./schemas/schemas_0";
|
|
32
33
|
export * from "./pagination";
|
|
33
34
|
export * from "./models/enums";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./ServerlessApplicationRepositoryClient";
|
|
7
|
+
export declare const command: <
|
|
8
|
+
I extends ServiceInputTypes,
|
|
9
|
+
O extends ServiceOutputTypes
|
|
10
|
+
>(
|
|
11
|
+
added: EndpointParameterInstructions,
|
|
12
|
+
plugins: (
|
|
13
|
+
CommandCtor: any,
|
|
14
|
+
clientStack: any,
|
|
15
|
+
config: any,
|
|
16
|
+
options: any
|
|
17
|
+
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
|
+
op: string,
|
|
19
|
+
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
+
smithyContext?: Record<string, unknown>
|
|
21
|
+
) => {
|
|
22
|
+
new (input: I): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
I,
|
|
24
|
+
O,
|
|
25
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
I,
|
|
33
|
+
O,
|
|
34
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
+
export declare const _mw0: (
|
|
42
|
+
Command: any,
|
|
43
|
+
cs: any,
|
|
44
|
+
config: any,
|
|
45
|
+
o: any
|
|
46
|
+
) => never[];
|
|
@@ -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
|
CreateApplicationRequest,
|
|
5
4
|
CreateApplicationResponse,
|
|
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 CreateApplicationCommandInput
|
|
15
8
|
extends CreateApplicationRequest {}
|
|
16
9
|
export interface CreateApplicationCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateApplicationCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateApplicationCommandInput,
|
|
24
17
|
CreateApplicationCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateApplicationCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateApplicationCommandInput,
|
|
33
26
|
CreateApplicationCommandOutput,
|
|
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 CreateApplicationCommand extends CreateApplicationCommand_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
|
CreateApplicationVersionRequest,
|
|
5
4
|
CreateApplicationVersionResponse,
|
|
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 CreateApplicationVersionCommandInput
|
|
15
8
|
extends CreateApplicationVersionRequest {}
|
|
16
9
|
export interface CreateApplicationVersionCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateApplicationVersionCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateApplicationVersionCommandInput,
|
|
24
17
|
CreateApplicationVersionCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateApplicationVersionCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateApplicationVersionCommandInput,
|
|
33
26
|
CreateApplicationVersionCommandOutput,
|
|
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 CreateApplicationVersionCommand extends CreateApplicationVersionCommand_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
|
CreateCloudFormationChangeSetRequest,
|
|
5
4
|
CreateCloudFormationChangeSetResponse,
|
|
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 CreateCloudFormationChangeSetCommandInput
|
|
15
8
|
extends CreateCloudFormationChangeSetRequest {}
|
|
16
9
|
export interface CreateCloudFormationChangeSetCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateCloudFormationChangeSetCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateCloudFormationChangeSetCommandInput,
|
|
24
17
|
CreateCloudFormationChangeSetCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateCloudFormationChangeSetCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateCloudFormationChangeSetCommandInput,
|
|
33
26
|
CreateCloudFormationChangeSetCommandOutput,
|
|
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 CreateCloudFormationChangeSetCommand extends CreateCloudFormationChangeSetCommand_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
|
CreateCloudFormationTemplateRequest,
|
|
5
4
|
CreateCloudFormationTemplateResponse,
|
|
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 CreateCloudFormationTemplateCommandInput
|
|
15
8
|
extends CreateCloudFormationTemplateRequest {}
|
|
16
9
|
export interface CreateCloudFormationTemplateCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const CreateCloudFormationTemplateCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
CreateCloudFormationTemplateCommandInput,
|
|
24
17
|
CreateCloudFormationTemplateCommandOutput,
|
|
25
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: CreateCloudFormationTemplateCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
CreateCloudFormationTemplateCommandInput,
|
|
33
26
|
CreateCloudFormationTemplateCommandOutput,
|
|
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 CreateCloudFormationTemplateCommand extends CreateCloudFormationTemplateCommand_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 { DeleteApplicationRequest } 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 DeleteApplicationCommandInput
|
|
12
5
|
extends DeleteApplicationRequest {}
|
|
13
6
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {}
|
|
@@ -17,22 +10,20 @@ declare const DeleteApplicationCommand_base: {
|
|
|
17
10
|
): import("@smithy/core/client").CommandImpl<
|
|
18
11
|
DeleteApplicationCommandInput,
|
|
19
12
|
DeleteApplicationCommandOutput,
|
|
20
|
-
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
21
|
-
ServiceInputTypes,
|
|
22
|
-
ServiceOutputTypes
|
|
13
|
+
import("..").ServerlessApplicationRepositoryClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
23
16
|
>;
|
|
24
17
|
new (
|
|
25
18
|
input: DeleteApplicationCommandInput
|
|
26
19
|
): import("@smithy/core/client").CommandImpl<
|
|
27
20
|
DeleteApplicationCommandInput,
|
|
28
21
|
DeleteApplicationCommandOutput,
|
|
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 DeleteApplicationCommand extends DeleteApplicationCommand_base {
|
|
38
29
|
protected static __types: {
|