@aws-sdk/client-serverlessapplicationrepository 3.50.0 → 3.53.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 (45) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/ServerlessApplicationRepositoryServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +92 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +178 -615
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/ServerlessApplicationRepositoryServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +86 -1
  9. package/dist-es/protocols/Aws_restJson1.js +349 -678
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/ServerlessApplicationRepositoryServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +44 -19
  13. package/dist-types/ts3.4/ServerlessApplicationRepository.d.ts +75 -0
  14. package/dist-types/ts3.4/ServerlessApplicationRepositoryClient.d.ts +87 -0
  15. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateApplicationVersionCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateCloudFormationChangeSetCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateCloudFormationTemplateCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetApplicationPolicyCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetCloudFormationTemplateCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListApplicationDependenciesCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/PutApplicationPolicyCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/UnshareApplicationCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  30. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  31. package/dist-types/ts3.4/index.d.ts +6 -0
  32. package/dist-types/ts3.4/models/ServerlessApplicationRepositoryServiceException.d.ts +6 -0
  33. package/dist-types/ts3.4/models/index.d.ts +1 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +673 -0
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  36. package/dist-types/ts3.4/pagination/ListApplicationDependenciesPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/ListApplicationVersionsPaginator.d.ts +4 -0
  38. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +4 -0
  39. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +44 -0
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  45. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./ServerlessApplicationRepositoryClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { ServerlessApplicationRepositoryServiceException } from "./models/ServerlessApplicationRepositoryServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from ServerlessApplicationRepository service.
4
+ */
5
+ export declare class ServerlessApplicationRepositoryServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ServerlessApplicationRepositoryServiceException as __BaseException } from "./ServerlessApplicationRepositoryServiceException";
2
3
  /**
3
4
  * <p>A nested application summary.</p>
4
5
  */
@@ -273,9 +274,9 @@ export declare namespace VersionSummary {
273
274
  /**
274
275
  * <p>One of the parameters in the request is invalid.</p>
275
276
  */
276
- export interface BadRequestException extends __SmithyException, $MetadataBearer {
277
- name: "BadRequestException";
278
- $fault: "client";
277
+ export declare class BadRequestException extends __BaseException {
278
+ readonly name: "BadRequestException";
279
+ readonly $fault: "client";
279
280
  /**
280
281
  * <p>400</p>
281
282
  */
@@ -284,13 +285,17 @@ export interface BadRequestException extends __SmithyException, $MetadataBearer
284
285
  * <p>One of the parameters in the request is invalid.</p>
285
286
  */
286
287
  Message?: string;
288
+ /**
289
+ * @internal
290
+ */
291
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
287
292
  }
288
293
  /**
289
294
  * <p>The resource already exists.</p>
290
295
  */
291
- export interface ConflictException extends __SmithyException, $MetadataBearer {
292
- name: "ConflictException";
293
- $fault: "client";
296
+ export declare class ConflictException extends __BaseException {
297
+ readonly name: "ConflictException";
298
+ readonly $fault: "client";
294
299
  /**
295
300
  * <p>409</p>
296
301
  */
@@ -299,6 +304,10 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
299
304
  * <p>The resource already exists.</p>
300
305
  */
301
306
  Message?: string;
307
+ /**
308
+ * @internal
309
+ */
310
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
302
311
  }
303
312
  export interface CreateApplicationRequest {
304
313
  /**
@@ -508,9 +517,9 @@ export declare namespace CreateApplicationResponse {
508
517
  /**
509
518
  * <p>The client is not authenticated.</p>
510
519
  */
511
- export interface ForbiddenException extends __SmithyException, $MetadataBearer {
512
- name: "ForbiddenException";
513
- $fault: "client";
520
+ export declare class ForbiddenException extends __BaseException {
521
+ readonly name: "ForbiddenException";
522
+ readonly $fault: "client";
514
523
  /**
515
524
  * <p>403</p>
516
525
  */
@@ -519,13 +528,17 @@ export interface ForbiddenException extends __SmithyException, $MetadataBearer {
519
528
  * <p>The client is not authenticated.</p>
520
529
  */
521
530
  Message?: string;
531
+ /**
532
+ * @internal
533
+ */
534
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
522
535
  }
523
536
  /**
524
537
  * <p>The AWS Serverless Application Repository service encountered an internal error.</p>
525
538
  */
526
- export interface InternalServerErrorException extends __SmithyException, $MetadataBearer {
527
- name: "InternalServerErrorException";
528
- $fault: "server";
539
+ export declare class InternalServerErrorException extends __BaseException {
540
+ readonly name: "InternalServerErrorException";
541
+ readonly $fault: "server";
529
542
  /**
530
543
  * <p>500</p>
531
544
  */
@@ -534,13 +547,17 @@ export interface InternalServerErrorException extends __SmithyException, $Metada
534
547
  * <p>The AWS Serverless Application Repository service encountered an internal error.</p>
535
548
  */
536
549
  Message?: string;
550
+ /**
551
+ * @internal
552
+ */
553
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
537
554
  }
538
555
  /**
539
556
  * <p>The client is sending more than the allowed number of requests per unit of time.</p>
540
557
  */
541
- export interface TooManyRequestsException extends __SmithyException, $MetadataBearer {
542
- name: "TooManyRequestsException";
543
- $fault: "client";
558
+ export declare class TooManyRequestsException extends __BaseException {
559
+ readonly name: "TooManyRequestsException";
560
+ readonly $fault: "client";
544
561
  /**
545
562
  * <p>429</p>
546
563
  */
@@ -549,6 +566,10 @@ export interface TooManyRequestsException extends __SmithyException, $MetadataBe
549
566
  * <p>The client is sending more than the allowed number of requests per unit of time.</p>
550
567
  */
551
568
  Message?: string;
569
+ /**
570
+ * @internal
571
+ */
572
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
552
573
  }
553
574
  export interface CreateApplicationVersionRequest {
554
575
  /**
@@ -858,9 +879,9 @@ export declare namespace CreateCloudFormationTemplateResponse {
858
879
  /**
859
880
  * <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
860
881
  */
861
- export interface NotFoundException extends __SmithyException, $MetadataBearer {
862
- name: "NotFoundException";
863
- $fault: "client";
882
+ export declare class NotFoundException extends __BaseException {
883
+ readonly name: "NotFoundException";
884
+ readonly $fault: "client";
864
885
  /**
865
886
  * <p>404</p>
866
887
  */
@@ -869,6 +890,10 @@ export interface NotFoundException extends __SmithyException, $MetadataBearer {
869
890
  * <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
870
891
  */
871
892
  Message?: string;
893
+ /**
894
+ * @internal
895
+ */
896
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
872
897
  }
873
898
  export interface DeleteApplicationRequest {
874
899
  /**
@@ -0,0 +1,75 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
3
+ import { CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput } from "./commands/CreateApplicationVersionCommand";
4
+ import { CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput } from "./commands/CreateCloudFormationChangeSetCommand";
5
+ import { CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput } from "./commands/CreateCloudFormationTemplateCommand";
6
+ import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
7
+ import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
8
+ import { GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput } from "./commands/GetApplicationPolicyCommand";
9
+ import { GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput } from "./commands/GetCloudFormationTemplateCommand";
10
+ import { ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput } from "./commands/ListApplicationDependenciesCommand";
11
+ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
12
+ import { ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput } from "./commands/ListApplicationVersionsCommand";
13
+ import { PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput } from "./commands/PutApplicationPolicyCommand";
14
+ import { UnshareApplicationCommandInput, UnshareApplicationCommandOutput } from "./commands/UnshareApplicationCommand";
15
+ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
16
+ import { ServerlessApplicationRepositoryClient } from "./ServerlessApplicationRepositoryClient";
17
+
18
+ export declare class ServerlessApplicationRepository extends ServerlessApplicationRepositoryClient {
19
+
20
+ createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
21
+ createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
22
+ createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
23
+
24
+ createApplicationVersion(args: CreateApplicationVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationVersionCommandOutput>;
25
+ createApplicationVersion(args: CreateApplicationVersionCommandInput, cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void): void;
26
+ createApplicationVersion(args: CreateApplicationVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationVersionCommandOutput) => void): void;
27
+
28
+ createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudFormationChangeSetCommandOutput>;
29
+ createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void): void;
30
+ createCloudFormationChangeSet(args: CreateCloudFormationChangeSetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudFormationChangeSetCommandOutput) => void): void;
31
+
32
+ createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateCloudFormationTemplateCommandOutput>;
33
+ createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void): void;
34
+ createCloudFormationTemplate(args: CreateCloudFormationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCloudFormationTemplateCommandOutput) => void): void;
35
+
36
+ deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
37
+ deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
38
+ deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
39
+
40
+ getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
41
+ getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
42
+ getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
43
+
44
+ getApplicationPolicy(args: GetApplicationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationPolicyCommandOutput>;
45
+ getApplicationPolicy(args: GetApplicationPolicyCommandInput, cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void): void;
46
+ getApplicationPolicy(args: GetApplicationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationPolicyCommandOutput) => void): void;
47
+
48
+ getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetCloudFormationTemplateCommandOutput>;
49
+ getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void): void;
50
+ getCloudFormationTemplate(args: GetCloudFormationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCloudFormationTemplateCommandOutput) => void): void;
51
+
52
+ listApplicationDependencies(args: ListApplicationDependenciesCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationDependenciesCommandOutput>;
53
+ listApplicationDependencies(args: ListApplicationDependenciesCommandInput, cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void): void;
54
+ listApplicationDependencies(args: ListApplicationDependenciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationDependenciesCommandOutput) => void): void;
55
+
56
+ listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
57
+ listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
58
+ listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
59
+
60
+ listApplicationVersions(args: ListApplicationVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationVersionsCommandOutput>;
61
+ listApplicationVersions(args: ListApplicationVersionsCommandInput, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
62
+ listApplicationVersions(args: ListApplicationVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationVersionsCommandOutput) => void): void;
63
+
64
+ putApplicationPolicy(args: PutApplicationPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutApplicationPolicyCommandOutput>;
65
+ putApplicationPolicy(args: PutApplicationPolicyCommandInput, cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void): void;
66
+ putApplicationPolicy(args: PutApplicationPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutApplicationPolicyCommandOutput) => void): void;
67
+
68
+ unshareApplication(args: UnshareApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UnshareApplicationCommandOutput>;
69
+ unshareApplication(args: UnshareApplicationCommandInput, cb: (err: any, data?: UnshareApplicationCommandOutput) => void): void;
70
+ unshareApplication(args: UnshareApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnshareApplicationCommandOutput) => void): void;
71
+
72
+ updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
73
+ updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
74
+ updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
75
+ }
@@ -0,0 +1,87 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
10
+ import { CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput } from "./commands/CreateApplicationVersionCommand";
11
+ import { CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput } from "./commands/CreateCloudFormationChangeSetCommand";
12
+ import { CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput } from "./commands/CreateCloudFormationTemplateCommand";
13
+ import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
14
+ import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
15
+ import { GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput } from "./commands/GetApplicationPolicyCommand";
16
+ import { GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput } from "./commands/GetCloudFormationTemplateCommand";
17
+ import { ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput } from "./commands/ListApplicationDependenciesCommand";
18
+ import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
19
+ import { ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput } from "./commands/ListApplicationVersionsCommand";
20
+ import { PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput } from "./commands/PutApplicationPolicyCommand";
21
+ import { UnshareApplicationCommandInput, UnshareApplicationCommandOutput } from "./commands/UnshareApplicationCommand";
22
+ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
23
+ export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateApplicationVersionCommandInput | CreateCloudFormationChangeSetCommandInput | CreateCloudFormationTemplateCommandInput | DeleteApplicationCommandInput | GetApplicationCommandInput | GetApplicationPolicyCommandInput | GetCloudFormationTemplateCommandInput | ListApplicationDependenciesCommandInput | ListApplicationVersionsCommandInput | ListApplicationsCommandInput | PutApplicationPolicyCommandInput | UnshareApplicationCommandInput | UpdateApplicationCommandInput;
24
+ export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateApplicationVersionCommandOutput | CreateCloudFormationChangeSetCommandOutput | CreateCloudFormationTemplateCommandOutput | DeleteApplicationCommandOutput | GetApplicationCommandOutput | GetApplicationPolicyCommandOutput | GetCloudFormationTemplateCommandOutput | ListApplicationDependenciesCommandOutput | ListApplicationVersionsCommandOutput | ListApplicationsCommandOutput | PutApplicationPolicyCommandOutput | UnshareApplicationCommandOutput | UpdateApplicationCommandOutput;
25
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
26
+
27
+ requestHandler?: __HttpHandler;
28
+
29
+ sha256?: __HashConstructor;
30
+
31
+ urlParser?: __UrlParser;
32
+
33
+ bodyLengthChecker?: (body: any) => number | undefined;
34
+
35
+ streamCollector?: __StreamCollector;
36
+
37
+ base64Decoder?: __Decoder;
38
+
39
+ base64Encoder?: __Encoder;
40
+
41
+ utf8Decoder?: __Decoder;
42
+
43
+ utf8Encoder?: __Encoder;
44
+
45
+ runtime?: string;
46
+
47
+ disableHostPrefix?: boolean;
48
+
49
+ maxAttempts?: number | __Provider<number>;
50
+
51
+ retryMode?: string | __Provider<string>;
52
+
53
+ logger?: __Logger;
54
+
55
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
56
+
57
+ useFipsEndpoint?: boolean | __Provider<boolean>;
58
+
59
+ serviceId?: string;
60
+
61
+ region?: string | __Provider<string>;
62
+
63
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
64
+
65
+ regionInfoProvider?: RegionInfoProvider;
66
+
67
+ defaultUserAgentProvider?: Provider<__UserAgent>;
68
+
69
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
70
+ }
71
+ declare type ServerlessApplicationRepositoryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
72
+
73
+ export interface ServerlessApplicationRepositoryClientConfig extends ServerlessApplicationRepositoryClientConfigType {
74
+ }
75
+ declare type ServerlessApplicationRepositoryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
76
+
77
+ export interface ServerlessApplicationRepositoryClientResolvedConfig extends ServerlessApplicationRepositoryClientResolvedConfigType {
78
+ }
79
+
80
+ export declare class ServerlessApplicationRepositoryClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ServerlessApplicationRepositoryClientResolvedConfig> {
81
+
82
+ readonly config: ServerlessApplicationRepositoryClientResolvedConfig;
83
+ constructor(configuration: ServerlessApplicationRepositoryClientConfig);
84
+
85
+ destroy(): void;
86
+ }
87
+ export {};
@@ -0,0 +1,17 @@
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 { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface CreateApplicationCommandInput extends CreateApplicationRequest {
6
+ }
7
+ export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: CreateApplicationCommandInput;
12
+ constructor(input: CreateApplicationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { CreateApplicationVersionRequest, CreateApplicationVersionResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface CreateApplicationVersionCommandInput extends CreateApplicationVersionRequest {
6
+ }
7
+ export interface CreateApplicationVersionCommandOutput extends CreateApplicationVersionResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateApplicationVersionCommand extends $Command<CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: CreateApplicationVersionCommandInput;
12
+ constructor(input: CreateApplicationVersionCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { CreateCloudFormationChangeSetRequest, CreateCloudFormationChangeSetResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface CreateCloudFormationChangeSetCommandInput extends CreateCloudFormationChangeSetRequest {
6
+ }
7
+ export interface CreateCloudFormationChangeSetCommandOutput extends CreateCloudFormationChangeSetResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateCloudFormationChangeSetCommand extends $Command<CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: CreateCloudFormationChangeSetCommandInput;
12
+ constructor(input: CreateCloudFormationChangeSetCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { CreateCloudFormationTemplateRequest, CreateCloudFormationTemplateResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface CreateCloudFormationTemplateCommandInput extends CreateCloudFormationTemplateRequest {
6
+ }
7
+ export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFormationTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateCloudFormationTemplateCommand extends $Command<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: CreateCloudFormationTemplateCommandInput;
12
+ constructor(input: CreateCloudFormationTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DeleteApplicationRequest } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
6
+ }
7
+ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: DeleteApplicationCommandInput;
12
+ constructor(input: DeleteApplicationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { GetApplicationRequest, GetApplicationResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface GetApplicationCommandInput extends GetApplicationRequest {
6
+ }
7
+ export interface GetApplicationCommandOutput extends GetApplicationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: GetApplicationCommandInput;
12
+ constructor(input: GetApplicationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationCommandInput, GetApplicationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { GetApplicationPolicyRequest, GetApplicationPolicyResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface GetApplicationPolicyCommandInput extends GetApplicationPolicyRequest {
6
+ }
7
+ export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetApplicationPolicyCommand extends $Command<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: GetApplicationPolicyCommandInput;
12
+ constructor(input: GetApplicationPolicyCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { GetCloudFormationTemplateRequest, GetCloudFormationTemplateResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface GetCloudFormationTemplateCommandInput extends GetCloudFormationTemplateRequest {
6
+ }
7
+ export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormationTemplateResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetCloudFormationTemplateCommand extends $Command<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: GetCloudFormationTemplateCommandInput;
12
+ constructor(input: GetCloudFormationTemplateCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListApplicationDependenciesRequest, ListApplicationDependenciesResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface ListApplicationDependenciesCommandInput extends ListApplicationDependenciesRequest {
6
+ }
7
+ export interface ListApplicationDependenciesCommandOutput extends ListApplicationDependenciesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListApplicationDependenciesCommand extends $Command<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: ListApplicationDependenciesCommandInput;
12
+ constructor(input: ListApplicationDependenciesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface ListApplicationVersionsCommandInput extends ListApplicationVersionsRequest {
6
+ }
7
+ export interface ListApplicationVersionsCommandOutput extends ListApplicationVersionsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListApplicationVersionsCommand extends $Command<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: ListApplicationVersionsCommandInput;
12
+ constructor(input: ListApplicationVersionsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
4
+ import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
5
+ export interface ListApplicationsCommandInput extends ListApplicationsRequest {
6
+ }
7
+ export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
11
+ readonly input: ListApplicationsCommandInput;
12
+ constructor(input: ListApplicationsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +1,17 @@
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
+ }
@@ -0,0 +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";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +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";
@@ -0,0 +1,6 @@
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
+ }