@aws-sdk/client-serverlessapplicationrepository 3.478.0 → 3.481.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/commands/CreateApplicationCommand.js +18 -41
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +18 -41
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +18 -41
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +18 -41
- package/dist-cjs/commands/DeleteApplicationCommand.js +18 -41
- package/dist-cjs/commands/GetApplicationCommand.js +18 -41
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +18 -41
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +18 -41
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +18 -41
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +18 -41
- package/dist-cjs/commands/ListApplicationsCommand.js +18 -41
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +18 -41
- package/dist-cjs/commands/UnshareApplicationCommand.js +18 -41
- package/dist-cjs/commands/UpdateApplicationCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/CreateApplicationCommand.js +18 -41
- package/dist-es/commands/CreateApplicationVersionCommand.js +18 -41
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +18 -41
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +18 -41
- package/dist-es/commands/DeleteApplicationCommand.js +18 -41
- package/dist-es/commands/GetApplicationCommand.js +18 -41
- package/dist-es/commands/GetApplicationPolicyCommand.js +18 -41
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +18 -41
- package/dist-es/commands/ListApplicationDependenciesCommand.js +18 -41
- package/dist-es/commands/ListApplicationVersionsCommand.js +18 -41
- package/dist-es/commands/ListApplicationsCommand.js +18 -41
- package/dist-es/commands/PutApplicationPolicyCommand.js +18 -41
- package/dist-es/commands/UnshareApplicationCommand.js +18 -41
- package/dist-es/commands/UpdateApplicationCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +6 -21
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +6 -21
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +6 -21
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +6 -21
- package/dist-types/commands/DeleteApplicationCommand.d.ts +6 -21
- package/dist-types/commands/GetApplicationCommand.d.ts +6 -21
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +6 -21
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +6 -21
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +6 -21
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +6 -21
- package/dist-types/commands/ListApplicationsCommand.d.ts +6 -21
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +6 -21
- package/dist-types/commands/UnshareApplicationCommand.d.ts +6 -21
- package/dist-types/commands/UpdateApplicationCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +12 -24
- package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +9 -9
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { UnshareApplicationRequest } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UnshareApplicationCommandInput extends UnshareApplicationReques
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UnshareApplicationCommand_base: {
|
|
24
|
+
new (input: UnshareApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Unshares an application from an AWS Organization.</p><p>This operation can be called only from the organization's master account.</p>
|
|
@@ -65,23 +68,5 @@ export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
|
65
68
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
66
69
|
*
|
|
67
70
|
*/
|
|
68
|
-
export declare class UnshareApplicationCommand extends
|
|
69
|
-
readonly input: UnshareApplicationCommandInput;
|
|
70
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
-
/**
|
|
72
|
-
* @public
|
|
73
|
-
*/
|
|
74
|
-
constructor(input: UnshareApplicationCommandInput);
|
|
75
|
-
/**
|
|
76
|
-
* @internal
|
|
77
|
-
*/
|
|
78
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnshareApplicationCommandInput, UnshareApplicationCommandOutput>;
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
private serialize;
|
|
83
|
-
/**
|
|
84
|
-
* @internal
|
|
85
|
-
*/
|
|
86
|
-
private deserialize;
|
|
71
|
+
export declare class UnshareApplicationCommand extends UnshareApplicationCommand_base {
|
|
87
72
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
|
|
5
4
|
import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface UpdateApplicationCommandInput extends UpdateApplicationRequest
|
|
|
21
20
|
*/
|
|
22
21
|
export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const UpdateApplicationCommand_base: {
|
|
24
|
+
new (input: UpdateApplicationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Updates the specified application.</p>
|
|
@@ -123,23 +126,5 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
123
126
|
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
124
127
|
*
|
|
125
128
|
*/
|
|
126
|
-
export declare class UpdateApplicationCommand extends
|
|
127
|
-
readonly input: UpdateApplicationCommandInput;
|
|
128
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
129
|
-
/**
|
|
130
|
-
* @public
|
|
131
|
-
*/
|
|
132
|
-
constructor(input: UpdateApplicationCommandInput);
|
|
133
|
-
/**
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
|
|
137
|
-
/**
|
|
138
|
-
* @internal
|
|
139
|
-
*/
|
|
140
|
-
private serialize;
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
private deserialize;
|
|
129
|
+
export declare class UpdateApplicationCommand extends UpdateApplicationCommand_base {
|
|
145
130
|
}
|
|
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
|
14
14
|
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
15
|
defaultSigningName: string;
|
|
16
16
|
};
|
|
17
|
+
export declare const commonParams: {
|
|
18
|
+
readonly UseFIPS: {
|
|
19
|
+
readonly type: "builtInParams";
|
|
20
|
+
readonly name: "useFipsEndpoint";
|
|
21
|
+
};
|
|
22
|
+
readonly Endpoint: {
|
|
23
|
+
readonly type: "builtInParams";
|
|
24
|
+
readonly name: "endpoint";
|
|
25
|
+
};
|
|
26
|
+
readonly Region: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "region";
|
|
29
|
+
};
|
|
30
|
+
readonly UseDualStack: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "useDualstackEndpoint";
|
|
33
|
+
};
|
|
34
|
+
};
|
|
17
35
|
export interface EndpointParameters extends __EndpointParameters {
|
|
18
36
|
Region?: string;
|
|
19
37
|
UseDualStack?: boolean;
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
CreateApplicationRequest,
|
|
11
5
|
CreateApplicationResponse,
|
|
@@ -21,19 +15,16 @@ export interface CreateApplicationCommandInput
|
|
|
21
15
|
export interface CreateApplicationCommandOutput
|
|
22
16
|
extends CreateApplicationResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
private serialize;
|
|
38
|
-
private deserialize;
|
|
39
|
-
}
|
|
18
|
+
declare const CreateApplicationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateApplicationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateApplicationCommandInput,
|
|
23
|
+
CreateApplicationCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateApplicationCommand extends CreateApplicationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
CreateApplicationVersionRequest,
|
|
11
5
|
CreateApplicationVersionResponse,
|
|
@@ -21,22 +15,16 @@ export interface CreateApplicationVersionCommandInput
|
|
|
21
15
|
export interface CreateApplicationVersionCommandOutput
|
|
22
16
|
extends CreateApplicationVersionResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: CreateApplicationVersionCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: CreateApplicationVersionCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const CreateApplicationVersionCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateApplicationVersionCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
CreateApplicationVersionCommandInput,
|
|
38
|
-
CreateApplicationVersionCommandOutput
|
|
23
|
+
CreateApplicationVersionCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateApplicationVersionCommand extends CreateApplicationVersionCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
CreateCloudFormationChangeSetRequest,
|
|
11
5
|
CreateCloudFormationChangeSetResponse,
|
|
@@ -21,22 +15,16 @@ export interface CreateCloudFormationChangeSetCommandInput
|
|
|
21
15
|
export interface CreateCloudFormationChangeSetCommandOutput
|
|
22
16
|
extends CreateCloudFormationChangeSetResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: CreateCloudFormationChangeSetCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: CreateCloudFormationChangeSetCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const CreateCloudFormationChangeSetCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateCloudFormationChangeSetCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
CreateCloudFormationChangeSetCommandInput,
|
|
38
|
-
CreateCloudFormationChangeSetCommandOutput
|
|
23
|
+
CreateCloudFormationChangeSetCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateCloudFormationChangeSetCommand extends CreateCloudFormationChangeSetCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
CreateCloudFormationTemplateRequest,
|
|
11
5
|
CreateCloudFormationTemplateResponse,
|
|
@@ -21,22 +15,16 @@ export interface CreateCloudFormationTemplateCommandInput
|
|
|
21
15
|
export interface CreateCloudFormationTemplateCommandOutput
|
|
22
16
|
extends CreateCloudFormationTemplateResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: CreateCloudFormationTemplateCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: CreateCloudFormationTemplateCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const CreateCloudFormationTemplateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateCloudFormationTemplateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
CreateCloudFormationTemplateCommandInput,
|
|
38
|
-
CreateCloudFormationTemplateCommandOutput
|
|
23
|
+
CreateCloudFormationTemplateCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class CreateCloudFormationTemplateCommand extends CreateCloudFormationTemplateCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import { DeleteApplicationRequest } from "../models/models_0";
|
|
10
4
|
import {
|
|
11
5
|
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
@@ -16,19 +10,16 @@ export { __MetadataBearer, $Command };
|
|
|
16
10
|
export interface DeleteApplicationCommandInput
|
|
17
11
|
extends DeleteApplicationRequest {}
|
|
18
12
|
export interface DeleteApplicationCommandOutput extends __MetadataBearer {}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
private serialize;
|
|
33
|
-
private deserialize;
|
|
34
|
-
}
|
|
13
|
+
declare const DeleteApplicationCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: DeleteApplicationCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
DeleteApplicationCommandInput,
|
|
18
|
+
DeleteApplicationCommandOutput,
|
|
19
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
24
|
+
};
|
|
25
|
+
export declare class DeleteApplicationCommand extends DeleteApplicationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
GetApplicationRequest,
|
|
11
5
|
GetApplicationResponse,
|
|
@@ -20,19 +14,16 @@ export interface GetApplicationCommandInput extends GetApplicationRequest {}
|
|
|
20
14
|
export interface GetApplicationCommandOutput
|
|
21
15
|
extends GetApplicationResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const GetApplicationCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: GetApplicationCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
GetApplicationCommandInput,
|
|
22
|
+
GetApplicationCommandOutput,
|
|
23
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class GetApplicationCommand extends GetApplicationCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
GetApplicationPolicyRequest,
|
|
11
5
|
GetApplicationPolicyResponse,
|
|
@@ -21,22 +15,16 @@ export interface GetApplicationPolicyCommandInput
|
|
|
21
15
|
export interface GetApplicationPolicyCommandOutput
|
|
22
16
|
extends GetApplicationPolicyResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: GetApplicationPolicyCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: GetApplicationPolicyCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const GetApplicationPolicyCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetApplicationPolicyCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
GetApplicationPolicyCommandInput,
|
|
38
|
-
GetApplicationPolicyCommandOutput
|
|
23
|
+
GetApplicationPolicyCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetApplicationPolicyCommand extends GetApplicationPolicyCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
GetCloudFormationTemplateRequest,
|
|
11
5
|
GetCloudFormationTemplateResponse,
|
|
@@ -21,22 +15,16 @@ export interface GetCloudFormationTemplateCommandInput
|
|
|
21
15
|
export interface GetCloudFormationTemplateCommandOutput
|
|
22
16
|
extends GetCloudFormationTemplateResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: GetCloudFormationTemplateCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: GetCloudFormationTemplateCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const GetCloudFormationTemplateCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetCloudFormationTemplateCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
GetCloudFormationTemplateCommandInput,
|
|
38
|
-
GetCloudFormationTemplateCommandOutput
|
|
23
|
+
GetCloudFormationTemplateCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetCloudFormationTemplateCommand extends GetCloudFormationTemplateCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ListApplicationDependenciesRequest,
|
|
11
5
|
ListApplicationDependenciesResponse,
|
|
@@ -21,22 +15,16 @@ export interface ListApplicationDependenciesCommandInput
|
|
|
21
15
|
export interface ListApplicationDependenciesCommandOutput
|
|
22
16
|
extends ListApplicationDependenciesResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: ListApplicationDependenciesCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: ListApplicationDependenciesCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const ListApplicationDependenciesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListApplicationDependenciesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
ListApplicationDependenciesCommandInput,
|
|
38
|
-
ListApplicationDependenciesCommandOutput
|
|
23
|
+
ListApplicationDependenciesCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListApplicationDependenciesCommand extends ListApplicationDependenciesCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ListApplicationVersionsRequest,
|
|
11
5
|
ListApplicationVersionsResponse,
|
|
@@ -21,22 +15,16 @@ export interface ListApplicationVersionsCommandInput
|
|
|
21
15
|
export interface ListApplicationVersionsCommandOutput
|
|
22
16
|
extends ListApplicationVersionsResponse,
|
|
23
17
|
__MetadataBearer {}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
> {
|
|
29
|
-
readonly input: ListApplicationVersionsCommandInput;
|
|
30
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
-
constructor(input: ListApplicationVersionsCommandInput);
|
|
32
|
-
resolveMiddleware(
|
|
33
|
-
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
-
configuration: ServerlessApplicationRepositoryClientResolvedConfig,
|
|
35
|
-
options?: __HttpHandlerOptions
|
|
36
|
-
): Handler<
|
|
18
|
+
declare const ListApplicationVersionsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListApplicationVersionsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
37
22
|
ListApplicationVersionsCommandInput,
|
|
38
|
-
ListApplicationVersionsCommandOutput
|
|
23
|
+
ListApplicationVersionsCommandOutput,
|
|
24
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
39
27
|
>;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class ListApplicationVersionsCommand extends ListApplicationVersionsCommand_base {}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
4
|
-
Handler,
|
|
5
|
-
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
-
MetadataBearer as __MetadataBearer,
|
|
7
|
-
MiddlewareStack,
|
|
8
|
-
} from "@smithy/types";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
9
3
|
import {
|
|
10
4
|
ListApplicationsRequest,
|
|
11
5
|
ListApplicationsResponse,
|
|
@@ -20,19 +14,16 @@ export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
|
|
|
20
14
|
export interface ListApplicationsCommandOutput
|
|
21
15
|
extends ListApplicationsResponse,
|
|
22
16
|
__MetadataBearer {}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
private serialize;
|
|
37
|
-
private deserialize;
|
|
38
|
-
}
|
|
17
|
+
declare const ListApplicationsCommand_base: {
|
|
18
|
+
new (
|
|
19
|
+
input: ListApplicationsCommandInput
|
|
20
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
21
|
+
ListApplicationsCommandInput,
|
|
22
|
+
ListApplicationsCommandOutput,
|
|
23
|
+
ServerlessApplicationRepositoryClientResolvedConfig,
|
|
24
|
+
ServiceInputTypes,
|
|
25
|
+
ServiceOutputTypes
|
|
26
|
+
>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
export declare class ListApplicationsCommand extends ListApplicationsCommand_base {}
|