@aws-sdk/client-serverlessapplicationrepository 3.295.0 → 3.297.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 (23) hide show
  1. package/dist-types/ServerlessApplicationRepository.d.ts +15 -0
  2. package/dist-types/ServerlessApplicationRepositoryClient.d.ts +24 -4
  3. package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateApplicationVersionCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
  8. package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
  9. package/dist-types/commands/GetApplicationPolicyCommand.d.ts +16 -0
  10. package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +16 -0
  11. package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +16 -0
  12. package/dist-types/commands/ListApplicationVersionsCommand.d.ts +16 -0
  13. package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
  14. package/dist-types/commands/PutApplicationPolicyCommand.d.ts +16 -0
  15. package/dist-types/commands/UnshareApplicationCommand.d.ts +16 -0
  16. package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
  17. package/dist-types/models/ServerlessApplicationRepositoryServiceException.d.ts +2 -0
  18. package/dist-types/models/models_0.d.ts +104 -4
  19. package/dist-types/pagination/Interfaces.d.ts +3 -0
  20. package/dist-types/pagination/ListApplicationDependenciesPaginator.d.ts +3 -0
  21. package/dist-types/pagination/ListApplicationVersionsPaginator.d.ts +3 -0
  22. package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
  23. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0";
5
5
  import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListApplicationVersionsCommand}.
8
10
  */
9
11
  export interface ListApplicationVersionsCommandInput extends ListApplicationVersionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListApplicationVersionsCommand}.
13
17
  */
14
18
  export interface ListApplicationVersionsCommandOutput extends ListApplicationVersionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists versions for the specified application.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListApplicationVersionsCommandInput - {@link ListApplicationVersionsCommandInput}
34
+ * @returns {@link ListApplicationVersionsCommandOutput}
28
35
  * @see {@link ListApplicationVersionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListApplicationVersionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
49
56
  export declare class ListApplicationVersionsCommand extends $Command<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
50
57
  readonly input: ListApplicationVersionsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListApplicationVersionsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
5
5
  import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListApplicationsCommand}.
8
10
  */
9
11
  export interface ListApplicationsCommandInput extends ListApplicationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListApplicationsCommand}.
13
17
  */
14
18
  export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists applications owned by the requester.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
34
+ * @returns {@link ListApplicationsCommandOutput}
28
35
  * @see {@link ListApplicationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListApplicationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
46
53
  export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
47
54
  readonly input: ListApplicationsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListApplicationsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { PutApplicationPolicyRequest, PutApplicationPolicyResponse } from "../models/models_0";
5
5
  import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutApplicationPolicyCommand}.
8
10
  */
9
11
  export interface PutApplicationPolicyCommandInput extends PutApplicationPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutApplicationPolicyCommand}.
13
17
  */
14
18
  export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Sets the permission policy for an application. For the list of actions supported for this operation, see
18
23
  * <a href="https://docs.aws.amazon.com/serverlessrepo/latest/devguide/access-control-resource-based.html#application-permissions">Application
19
24
  * Permissions</a>
@@ -28,6 +33,8 @@ export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyR
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param PutApplicationPolicyCommandInput - {@link PutApplicationPolicyCommandInput}
37
+ * @returns {@link PutApplicationPolicyCommandOutput}
31
38
  * @see {@link PutApplicationPolicyCommandInput} for command's `input` shape.
32
39
  * @see {@link PutApplicationPolicyCommandOutput} for command's `response` shape.
33
40
  * @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
@@ -52,11 +59,20 @@ export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyR
52
59
  export declare class PutApplicationPolicyCommand extends $Command<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
53
60
  readonly input: PutApplicationPolicyCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: PutApplicationPolicyCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UnshareApplicationRequest } from "../models/models_0";
5
5
  import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UnshareApplicationCommand}.
8
10
  */
9
11
  export interface UnshareApplicationCommandInput extends UnshareApplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UnshareApplicationCommand}.
13
17
  */
14
18
  export interface UnshareApplicationCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Unshares an application from an AWS Organization.</p><p>This operation can be called only from the organization's master account.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UnshareApplicationCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UnshareApplicationCommandInput - {@link UnshareApplicationCommandInput}
34
+ * @returns {@link UnshareApplicationCommandOutput}
28
35
  * @see {@link UnshareApplicationCommandInput} for command's `input` shape.
29
36
  * @see {@link UnshareApplicationCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UnshareApplicationCommandOutput extends __MetadataBearer {
49
56
  export declare class UnshareApplicationCommand extends $Command<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
50
57
  readonly input: UnshareApplicationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UnshareApplicationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnshareApplicationCommandInput, UnshareApplicationCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
5
5
  import { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServerlessApplicationRepositoryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateApplicationCommand}.
8
10
  */
9
11
  export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateApplicationCommand}.
13
17
  */
14
18
  export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the specified application.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
34
+ * @returns {@link UpdateApplicationCommandOutput}
28
35
  * @see {@link UpdateApplicationCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServerlessApplicationRepositoryClientResolvedConfig | config} for ServerlessApplicationRepositoryClient's `config` shape.
@@ -52,11 +59,20 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
52
59
  export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
53
60
  readonly input: UpdateApplicationCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: UpdateApplicationCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServerlessApplicationRepositoryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from ServerlessApplicationRepository service.
4
6
  */
5
7
  export declare class ServerlessApplicationRepositoryServiceException extends __ServiceException {
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ServerlessApplicationRepositoryServiceException as __BaseException } from "./ServerlessApplicationRepositoryServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>A nested application summary.</p>
5
6
  */
6
7
  export interface ApplicationDependencySummary {
@@ -14,6 +15,7 @@ export interface ApplicationDependencySummary {
14
15
  SemanticVersion: string | undefined;
15
16
  }
16
17
  /**
18
+ * @public
17
19
  * <p>Policy statement applied to the application.</p>
18
20
  */
19
21
  export interface ApplicationPolicyStatement {
@@ -36,6 +38,7 @@ export interface ApplicationPolicyStatement {
36
38
  StatementId?: string;
37
39
  }
38
40
  /**
41
+ * @public
39
42
  * <p>Summary of details about the application.</p>
40
43
  */
41
44
  export interface ApplicationSummary {
@@ -72,6 +75,9 @@ export interface ApplicationSummary {
72
75
  */
73
76
  SpdxLicenseId?: string;
74
77
  }
78
+ /**
79
+ * @public
80
+ */
75
81
  export declare enum Capability {
76
82
  CAPABILITY_AUTO_EXPAND = "CAPABILITY_AUTO_EXPAND",
77
83
  CAPABILITY_IAM = "CAPABILITY_IAM",
@@ -79,6 +85,7 @@ export declare enum Capability {
79
85
  CAPABILITY_RESOURCE_POLICY = "CAPABILITY_RESOURCE_POLICY"
80
86
  }
81
87
  /**
88
+ * @public
82
89
  * <p>Parameters supported by the application.</p>
83
90
  */
84
91
  export interface ParameterDefinition {
@@ -153,6 +160,7 @@ export interface ParameterDefinition {
153
160
  Type?: string;
154
161
  }
155
162
  /**
163
+ * @public
156
164
  * <p>Parameter value of the application.</p>
157
165
  */
158
166
  export interface ParameterValue {
@@ -167,6 +175,7 @@ export interface ParameterValue {
167
175
  Value: string | undefined;
168
176
  }
169
177
  /**
178
+ * @public
170
179
  * <p>This property corresponds to the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackTrigger">RollbackTrigger</a>
171
180
  * </i> Data Type.</p>
172
181
  */
@@ -183,6 +192,7 @@ export interface RollbackTrigger {
183
192
  Type: string | undefined;
184
193
  }
185
194
  /**
195
+ * @public
186
196
  * <p>This property corresponds to the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/Tag">Tag</a>
187
197
  * </i> Data Type.</p>
188
198
  */
@@ -201,6 +211,7 @@ export interface Tag {
201
211
  Value: string | undefined;
202
212
  }
203
213
  /**
214
+ * @public
204
215
  * <p>An application version summary.</p>
205
216
  */
206
217
  export interface VersionSummary {
@@ -224,6 +235,7 @@ export interface VersionSummary {
224
235
  SourceCodeUrl?: string;
225
236
  }
226
237
  /**
238
+ * @public
227
239
  * <p>One of the parameters in the request is invalid.</p>
228
240
  */
229
241
  export declare class BadRequestException extends __BaseException {
@@ -243,6 +255,7 @@ export declare class BadRequestException extends __BaseException {
243
255
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
244
256
  }
245
257
  /**
258
+ * @public
246
259
  * <p>The resource already exists.</p>
247
260
  */
248
261
  export declare class ConflictException extends __BaseException {
@@ -261,6 +274,9 @@ export declare class ConflictException extends __BaseException {
261
274
  */
262
275
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
263
276
  }
277
+ /**
278
+ * @public
279
+ */
264
280
  export interface CreateApplicationRequest {
265
281
  /**
266
282
  * <p>The name of the author publishing the app.</p><p>Minimum length=1. Maximum length=127.</p><p>Pattern "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$";</p>
@@ -329,6 +345,7 @@ export interface CreateApplicationRequest {
329
345
  TemplateUrl?: string;
330
346
  }
331
347
  /**
348
+ * @public
332
349
  * <p>Application version details.</p>
333
350
  */
334
351
  export interface Version {
@@ -394,6 +411,9 @@ export interface Version {
394
411
  */
395
412
  TemplateUrl: string | undefined;
396
413
  }
414
+ /**
415
+ * @public
416
+ */
397
417
  export interface CreateApplicationResponse {
398
418
  /**
399
419
  * <p>The application Amazon Resource Name (ARN).</p>
@@ -449,6 +469,7 @@ export interface CreateApplicationResponse {
449
469
  Version?: Version;
450
470
  }
451
471
  /**
472
+ * @public
452
473
  * <p>The client is not authenticated.</p>
453
474
  */
454
475
  export declare class ForbiddenException extends __BaseException {
@@ -468,6 +489,7 @@ export declare class ForbiddenException extends __BaseException {
468
489
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
469
490
  }
470
491
  /**
492
+ * @public
471
493
  * <p>The AWS Serverless Application Repository service encountered an internal error.</p>
472
494
  */
473
495
  export declare class InternalServerErrorException extends __BaseException {
@@ -487,6 +509,7 @@ export declare class InternalServerErrorException extends __BaseException {
487
509
  constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
488
510
  }
489
511
  /**
512
+ * @public
490
513
  * <p>The client is sending more than the allowed number of requests per unit of time.</p>
491
514
  */
492
515
  export declare class TooManyRequestsException extends __BaseException {
@@ -505,6 +528,9 @@ export declare class TooManyRequestsException extends __BaseException {
505
528
  */
506
529
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
507
530
  }
531
+ /**
532
+ * @public
533
+ */
508
534
  export interface CreateApplicationVersionRequest {
509
535
  /**
510
536
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -531,6 +557,9 @@ export interface CreateApplicationVersionRequest {
531
557
  */
532
558
  TemplateUrl?: string;
533
559
  }
560
+ /**
561
+ * @public
562
+ */
534
563
  export interface CreateApplicationVersionResponse {
535
564
  /**
536
565
  * <p>The application Amazon Resource Name (ARN).</p>
@@ -595,6 +624,7 @@ export interface CreateApplicationVersionResponse {
595
624
  TemplateUrl?: string;
596
625
  }
597
626
  /**
627
+ * @public
598
628
  * <p>This property corresponds to the <i>AWS CloudFormation <a href="https://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/RollbackConfiguration">RollbackConfiguration</a>
599
629
  * </i> Data Type.</p>
600
630
  */
@@ -610,6 +640,9 @@ export interface RollbackConfiguration {
610
640
  */
611
641
  RollbackTriggers?: RollbackTrigger[];
612
642
  }
643
+ /**
644
+ * @public
645
+ */
613
646
  export interface CreateCloudFormationChangeSetRequest {
614
647
  /**
615
648
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -692,10 +725,13 @@ export interface CreateCloudFormationChangeSetRequest {
692
725
  */
693
726
  Tags?: Tag[];
694
727
  /**
695
- * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}</p>
728
+ * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
696
729
  */
697
730
  TemplateId?: string;
698
731
  }
732
+ /**
733
+ * @public
734
+ */
699
735
  export interface CreateCloudFormationChangeSetResponse {
700
736
  /**
701
737
  * <p>The application Amazon Resource Name (ARN).</p>
@@ -716,6 +752,9 @@ export interface CreateCloudFormationChangeSetResponse {
716
752
  */
717
753
  StackId?: string;
718
754
  }
755
+ /**
756
+ * @public
757
+ */
719
758
  export interface CreateCloudFormationTemplateRequest {
720
759
  /**
721
760
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -728,11 +767,17 @@ export interface CreateCloudFormationTemplateRequest {
728
767
  */
729
768
  SemanticVersion?: string;
730
769
  }
770
+ /**
771
+ * @public
772
+ */
731
773
  export declare enum Status {
732
774
  ACTIVE = "ACTIVE",
733
775
  EXPIRED = "EXPIRED",
734
776
  PREPARING = "PREPARING"
735
777
  }
778
+ /**
779
+ * @public
780
+ */
736
781
  export interface CreateCloudFormationTemplateResponse {
737
782
  /**
738
783
  * <p>The application Amazon Resource Name (ARN).</p>
@@ -759,7 +804,7 @@ export interface CreateCloudFormationTemplateResponse {
759
804
  */
760
805
  Status?: Status | string;
761
806
  /**
762
- * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}</p>
807
+ * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
763
808
  */
764
809
  TemplateId?: string;
765
810
  /**
@@ -769,6 +814,7 @@ export interface CreateCloudFormationTemplateResponse {
769
814
  TemplateUrl?: string;
770
815
  }
771
816
  /**
817
+ * @public
772
818
  * <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
773
819
  */
774
820
  export declare class NotFoundException extends __BaseException {
@@ -787,12 +833,18 @@ export declare class NotFoundException extends __BaseException {
787
833
  */
788
834
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
789
835
  }
836
+ /**
837
+ * @public
838
+ */
790
839
  export interface DeleteApplicationRequest {
791
840
  /**
792
841
  * <p>The Amazon Resource Name (ARN) of the application.</p>
793
842
  */
794
843
  ApplicationId: string | undefined;
795
844
  }
845
+ /**
846
+ * @public
847
+ */
796
848
  export interface GetApplicationRequest {
797
849
  /**
798
850
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -803,6 +855,9 @@ export interface GetApplicationRequest {
803
855
  */
804
856
  SemanticVersion?: string;
805
857
  }
858
+ /**
859
+ * @public
860
+ */
806
861
  export interface GetApplicationResponse {
807
862
  /**
808
863
  * <p>The application Amazon Resource Name (ARN).</p>
@@ -857,28 +912,40 @@ export interface GetApplicationResponse {
857
912
  */
858
913
  Version?: Version;
859
914
  }
915
+ /**
916
+ * @public
917
+ */
860
918
  export interface GetApplicationPolicyRequest {
861
919
  /**
862
920
  * <p>The Amazon Resource Name (ARN) of the application.</p>
863
921
  */
864
922
  ApplicationId: string | undefined;
865
923
  }
924
+ /**
925
+ * @public
926
+ */
866
927
  export interface GetApplicationPolicyResponse {
867
928
  /**
868
929
  * <p>An array of policy statements applied to the application.</p>
869
930
  */
870
931
  Statements?: ApplicationPolicyStatement[];
871
932
  }
933
+ /**
934
+ * @public
935
+ */
872
936
  export interface GetCloudFormationTemplateRequest {
873
937
  /**
874
938
  * <p>The Amazon Resource Name (ARN) of the application.</p>
875
939
  */
876
940
  ApplicationId: string | undefined;
877
941
  /**
878
- * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}</p>
942
+ * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
879
943
  */
880
944
  TemplateId: string | undefined;
881
945
  }
946
+ /**
947
+ * @public
948
+ */
882
949
  export interface GetCloudFormationTemplateResponse {
883
950
  /**
884
951
  * <p>The application Amazon Resource Name (ARN).</p>
@@ -905,7 +972,7 @@ export interface GetCloudFormationTemplateResponse {
905
972
  */
906
973
  Status?: Status | string;
907
974
  /**
908
- * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}</p>
975
+ * <p>The UUID returned by CreateCloudFormationTemplate.</p><p>Pattern: [0-9a-fA-F]\{8\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{4\}\-[0-9a-fA-F]\{12\}</p>
909
976
  */
910
977
  TemplateId?: string;
911
978
  /**
@@ -914,6 +981,9 @@ export interface GetCloudFormationTemplateResponse {
914
981
  */
915
982
  TemplateUrl?: string;
916
983
  }
984
+ /**
985
+ * @public
986
+ */
917
987
  export interface ListApplicationDependenciesRequest {
918
988
  /**
919
989
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -932,6 +1002,9 @@ export interface ListApplicationDependenciesRequest {
932
1002
  */
933
1003
  SemanticVersion?: string;
934
1004
  }
1005
+ /**
1006
+ * @public
1007
+ */
935
1008
  export interface ListApplicationDependenciesResponse {
936
1009
  /**
937
1010
  * <p>An array of application summaries nested in the application.</p>
@@ -942,6 +1015,9 @@ export interface ListApplicationDependenciesResponse {
942
1015
  */
943
1016
  NextToken?: string;
944
1017
  }
1018
+ /**
1019
+ * @public
1020
+ */
945
1021
  export interface ListApplicationsRequest {
946
1022
  /**
947
1023
  * <p>The total number of items to return.</p>
@@ -952,6 +1028,9 @@ export interface ListApplicationsRequest {
952
1028
  */
953
1029
  NextToken?: string;
954
1030
  }
1031
+ /**
1032
+ * @public
1033
+ */
955
1034
  export interface ListApplicationsResponse {
956
1035
  /**
957
1036
  * <p>An array of application summaries.</p>
@@ -962,6 +1041,9 @@ export interface ListApplicationsResponse {
962
1041
  */
963
1042
  NextToken?: string;
964
1043
  }
1044
+ /**
1045
+ * @public
1046
+ */
965
1047
  export interface ListApplicationVersionsRequest {
966
1048
  /**
967
1049
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -976,6 +1058,9 @@ export interface ListApplicationVersionsRequest {
976
1058
  */
977
1059
  NextToken?: string;
978
1060
  }
1061
+ /**
1062
+ * @public
1063
+ */
979
1064
  export interface ListApplicationVersionsResponse {
980
1065
  /**
981
1066
  * <p>The token to request the next page of results.</p>
@@ -986,6 +1071,9 @@ export interface ListApplicationVersionsResponse {
986
1071
  */
987
1072
  Versions?: VersionSummary[];
988
1073
  }
1074
+ /**
1075
+ * @public
1076
+ */
989
1077
  export interface PutApplicationPolicyRequest {
990
1078
  /**
991
1079
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -996,12 +1084,18 @@ export interface PutApplicationPolicyRequest {
996
1084
  */
997
1085
  Statements: ApplicationPolicyStatement[] | undefined;
998
1086
  }
1087
+ /**
1088
+ * @public
1089
+ */
999
1090
  export interface PutApplicationPolicyResponse {
1000
1091
  /**
1001
1092
  * <p>An array of policy statements applied to the application.</p>
1002
1093
  */
1003
1094
  Statements?: ApplicationPolicyStatement[];
1004
1095
  }
1096
+ /**
1097
+ * @public
1098
+ */
1005
1099
  export interface UnshareApplicationRequest {
1006
1100
  /**
1007
1101
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -1012,6 +1106,9 @@ export interface UnshareApplicationRequest {
1012
1106
  */
1013
1107
  OrganizationId: string | undefined;
1014
1108
  }
1109
+ /**
1110
+ * @public
1111
+ */
1015
1112
  export interface UpdateApplicationRequest {
1016
1113
  /**
1017
1114
  * <p>The Amazon Resource Name (ARN) of the application.</p>
@@ -1042,6 +1139,9 @@ export interface UpdateApplicationRequest {
1042
1139
  */
1043
1140
  ReadmeUrl?: string;
1044
1141
  }
1142
+ /**
1143
+ * @public
1144
+ */
1045
1145
  export interface UpdateApplicationResponse {
1046
1146
  /**
1047
1147
  * <p>The application Amazon Resource Name (ARN).</p>
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { ServerlessApplicationRepositoryClient } from "../ServerlessApplicationRepositoryClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface ServerlessApplicationRepositoryPaginationConfiguration extends PaginationConfiguration {
4
7
  client: ServerlessApplicationRepositoryClient;
5
8
  }