@aws-sdk/client-serverlessapplicationrepository 3.169.0 → 3.171.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +242 -75
  3. package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +189 -87
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +31 -17
  9. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +31 -17
  17. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/index.d.ts +14 -14
  19. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  20. package/dist-types/ts3.4/index.d.ts +6 -6
  21. package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +7 -6
  22. package/dist-types/ts3.4/models/index.d.ts +1 -1
  23. package/dist-types/ts3.4/models/models_0.d.ts +421 -601
  24. package/dist-types/ts3.4/pagination/Interfaces.d.ts +9 -6
  25. package/dist-types/ts3.4/pagination/ListApplicationDependenciesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  28. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +173 -44
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  34. package/package.json +34 -34
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { PutApplicationPolicyRequest, PutApplicationPolicyResponse } from "../models/models_0";
4
- import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
- export interface PutApplicationPolicyCommandInput extends PutApplicationPolicyRequest {
6
- }
7
- export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutApplicationPolicyCommand extends $Command<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
- readonly input: PutApplicationPolicyCommandInput;
12
- constructor(input: PutApplicationPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ PutApplicationPolicyRequest,
10
+ PutApplicationPolicyResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServerlessApplicationRepositoryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServerlessApplicationRepositoryClient";
17
+ export interface PutApplicationPolicyCommandInput
18
+ extends PutApplicationPolicyRequest {}
19
+ export interface PutApplicationPolicyCommandOutput
20
+ extends PutApplicationPolicyResponse,
21
+ __MetadataBearer {}
22
+ export declare class PutApplicationPolicyCommand extends $Command<
23
+ PutApplicationPolicyCommandInput,
24
+ PutApplicationPolicyCommandOutput,
25
+ ServerlessApplicationRepositoryClientResolvedConfig
26
+ > {
27
+ readonly input: PutApplicationPolicyCommandInput;
28
+ constructor(input: PutApplicationPolicyCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ServerlessApplicationRepositoryClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ PutApplicationPolicyCommandInput,
35
+ PutApplicationPolicyCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,31 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UnshareApplicationRequest } from "../models/models_0";
4
- import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
- export interface UnshareApplicationCommandInput extends UnshareApplicationRequest {
6
- }
7
- export interface UnshareApplicationCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UnshareApplicationCommand extends $Command<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
- readonly input: UnshareApplicationCommandInput;
12
- constructor(input: UnshareApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnshareApplicationCommandInput, UnshareApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { UnshareApplicationRequest } from "../models/models_0";
9
+ import {
10
+ ServerlessApplicationRepositoryClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../ServerlessApplicationRepositoryClient";
14
+ export interface UnshareApplicationCommandInput
15
+ extends UnshareApplicationRequest {}
16
+ export interface UnshareApplicationCommandOutput extends __MetadataBearer {}
17
+ export declare class UnshareApplicationCommand extends $Command<
18
+ UnshareApplicationCommandInput,
19
+ UnshareApplicationCommandOutput,
20
+ ServerlessApplicationRepositoryClientResolvedConfig
21
+ > {
22
+ readonly input: UnshareApplicationCommandInput;
23
+ constructor(input: UnshareApplicationCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: ServerlessApplicationRepositoryClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<UnshareApplicationCommandInput, UnshareApplicationCommandOutput>;
29
+ private serialize;
30
+ private deserialize;
31
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
4
- import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
- export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
6
- }
7
- export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
- readonly input: UpdateApplicationCommandInput;
12
- constructor(input: UpdateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ UpdateApplicationRequest,
10
+ UpdateApplicationResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServerlessApplicationRepositoryClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../ServerlessApplicationRepositoryClient";
17
+ export interface UpdateApplicationCommandInput
18
+ extends UpdateApplicationRequest {}
19
+ export interface UpdateApplicationCommandOutput
20
+ extends UpdateApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class UpdateApplicationCommand extends $Command<
23
+ UpdateApplicationCommandInput,
24
+ UpdateApplicationCommandOutput,
25
+ ServerlessApplicationRepositoryClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateApplicationCommandInput;
28
+ constructor(input: UpdateApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ServerlessApplicationRepositoryClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,14 +1,14 @@
1
- export * from "./CreateApplicationCommand";
2
- export * from "./CreateApplicationVersionCommand";
3
- export * from "./CreateCloudFormationChangeSetCommand";
4
- export * from "./CreateCloudFormationTemplateCommand";
5
- export * from "./DeleteApplicationCommand";
6
- export * from "./GetApplicationCommand";
7
- export * from "./GetApplicationPolicyCommand";
8
- export * from "./GetCloudFormationTemplateCommand";
9
- export * from "./ListApplicationDependenciesCommand";
10
- export * from "./ListApplicationVersionsCommand";
11
- export * from "./ListApplicationsCommand";
12
- export * from "./PutApplicationPolicyCommand";
13
- export * from "./UnshareApplicationCommand";
14
- export * from "./UpdateApplicationCommand";
1
+ export * from "./CreateApplicationCommand";
2
+ export * from "./CreateApplicationVersionCommand";
3
+ export * from "./CreateCloudFormationChangeSetCommand";
4
+ export * from "./CreateCloudFormationTemplateCommand";
5
+ export * from "./DeleteApplicationCommand";
6
+ export * from "./GetApplicationCommand";
7
+ export * from "./GetApplicationPolicyCommand";
8
+ export * from "./GetCloudFormationTemplateCommand";
9
+ export * from "./ListApplicationDependenciesCommand";
10
+ export * from "./ListApplicationVersionsCommand";
11
+ export * from "./ListApplicationsCommand";
12
+ export * from "./PutApplicationPolicyCommand";
13
+ export * from "./UnshareApplicationCommand";
14
+ export * from "./UpdateApplicationCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./ServerlessApplicationRepository";
2
- export * from "./ServerlessApplicationRepositoryClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
1
+ export * from "./ServerlessApplicationRepository";
2
+ export * from "./ServerlessApplicationRepositoryClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ServerlessApplicationRepositoryServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class ServerlessApplicationRepositoryServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";