@aws-sdk/client-serverlessapplicationrepository 3.296.0 → 3.298.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 +2 -3
- package/dist-cjs/commands/CreateApplicationVersionCommand.js +2 -3
- package/dist-cjs/commands/CreateCloudFormationChangeSetCommand.js +2 -3
- package/dist-cjs/commands/CreateCloudFormationTemplateCommand.js +2 -3
- package/dist-cjs/commands/DeleteApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationCommand.js +2 -3
- package/dist-cjs/commands/GetApplicationPolicyCommand.js +2 -3
- package/dist-cjs/commands/GetCloudFormationTemplateCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationDependenciesCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationVersionsCommand.js +2 -3
- package/dist-cjs/commands/ListApplicationsCommand.js +2 -3
- package/dist-cjs/commands/PutApplicationPolicyCommand.js +2 -3
- package/dist-cjs/commands/UnshareApplicationCommand.js +2 -3
- package/dist-cjs/commands/UpdateApplicationCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -145
- package/dist-es/commands/CreateApplicationCommand.js +2 -3
- package/dist-es/commands/CreateApplicationVersionCommand.js +2 -3
- package/dist-es/commands/CreateCloudFormationChangeSetCommand.js +2 -3
- package/dist-es/commands/CreateCloudFormationTemplateCommand.js +2 -3
- package/dist-es/commands/DeleteApplicationCommand.js +2 -3
- package/dist-es/commands/GetApplicationCommand.js +2 -3
- package/dist-es/commands/GetApplicationPolicyCommand.js +2 -3
- package/dist-es/commands/GetCloudFormationTemplateCommand.js +2 -3
- package/dist-es/commands/ListApplicationDependenciesCommand.js +2 -3
- package/dist-es/commands/ListApplicationVersionsCommand.js +2 -3
- package/dist-es/commands/ListApplicationsCommand.js +2 -3
- package/dist-es/commands/PutApplicationPolicyCommand.js +2 -3
- package/dist-es/commands/UnshareApplicationCommand.js +2 -3
- package/dist-es/commands/UpdateApplicationCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -108
- package/dist-types/ServerlessApplicationRepository.d.ts +15 -0
- package/dist-types/ServerlessApplicationRepositoryClient.d.ts +24 -4
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +16 -0
- package/dist-types/commands/UnshareApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/models/ServerlessApplicationRepositoryServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +104 -148
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListApplicationDependenciesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -104
- package/package.json +4 -3
|
@@ -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>
|
|
@@ -1096,147 +1196,3 @@ export interface UpdateApplicationResponse {
|
|
|
1096
1196
|
*/
|
|
1097
1197
|
Version?: Version;
|
|
1098
1198
|
}
|
|
1099
|
-
/**
|
|
1100
|
-
* @internal
|
|
1101
|
-
*/
|
|
1102
|
-
export declare const ApplicationDependencySummaryFilterSensitiveLog: (obj: ApplicationDependencySummary) => any;
|
|
1103
|
-
/**
|
|
1104
|
-
* @internal
|
|
1105
|
-
*/
|
|
1106
|
-
export declare const ApplicationPolicyStatementFilterSensitiveLog: (obj: ApplicationPolicyStatement) => any;
|
|
1107
|
-
/**
|
|
1108
|
-
* @internal
|
|
1109
|
-
*/
|
|
1110
|
-
export declare const ApplicationSummaryFilterSensitiveLog: (obj: ApplicationSummary) => any;
|
|
1111
|
-
/**
|
|
1112
|
-
* @internal
|
|
1113
|
-
*/
|
|
1114
|
-
export declare const ParameterDefinitionFilterSensitiveLog: (obj: ParameterDefinition) => any;
|
|
1115
|
-
/**
|
|
1116
|
-
* @internal
|
|
1117
|
-
*/
|
|
1118
|
-
export declare const ParameterValueFilterSensitiveLog: (obj: ParameterValue) => any;
|
|
1119
|
-
/**
|
|
1120
|
-
* @internal
|
|
1121
|
-
*/
|
|
1122
|
-
export declare const RollbackTriggerFilterSensitiveLog: (obj: RollbackTrigger) => any;
|
|
1123
|
-
/**
|
|
1124
|
-
* @internal
|
|
1125
|
-
*/
|
|
1126
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1127
|
-
/**
|
|
1128
|
-
* @internal
|
|
1129
|
-
*/
|
|
1130
|
-
export declare const VersionSummaryFilterSensitiveLog: (obj: VersionSummary) => any;
|
|
1131
|
-
/**
|
|
1132
|
-
* @internal
|
|
1133
|
-
*/
|
|
1134
|
-
export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
|
|
1135
|
-
/**
|
|
1136
|
-
* @internal
|
|
1137
|
-
*/
|
|
1138
|
-
export declare const VersionFilterSensitiveLog: (obj: Version) => any;
|
|
1139
|
-
/**
|
|
1140
|
-
* @internal
|
|
1141
|
-
*/
|
|
1142
|
-
export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
|
|
1143
|
-
/**
|
|
1144
|
-
* @internal
|
|
1145
|
-
*/
|
|
1146
|
-
export declare const CreateApplicationVersionRequestFilterSensitiveLog: (obj: CreateApplicationVersionRequest) => any;
|
|
1147
|
-
/**
|
|
1148
|
-
* @internal
|
|
1149
|
-
*/
|
|
1150
|
-
export declare const CreateApplicationVersionResponseFilterSensitiveLog: (obj: CreateApplicationVersionResponse) => any;
|
|
1151
|
-
/**
|
|
1152
|
-
* @internal
|
|
1153
|
-
*/
|
|
1154
|
-
export declare const RollbackConfigurationFilterSensitiveLog: (obj: RollbackConfiguration) => any;
|
|
1155
|
-
/**
|
|
1156
|
-
* @internal
|
|
1157
|
-
*/
|
|
1158
|
-
export declare const CreateCloudFormationChangeSetRequestFilterSensitiveLog: (obj: CreateCloudFormationChangeSetRequest) => any;
|
|
1159
|
-
/**
|
|
1160
|
-
* @internal
|
|
1161
|
-
*/
|
|
1162
|
-
export declare const CreateCloudFormationChangeSetResponseFilterSensitiveLog: (obj: CreateCloudFormationChangeSetResponse) => any;
|
|
1163
|
-
/**
|
|
1164
|
-
* @internal
|
|
1165
|
-
*/
|
|
1166
|
-
export declare const CreateCloudFormationTemplateRequestFilterSensitiveLog: (obj: CreateCloudFormationTemplateRequest) => any;
|
|
1167
|
-
/**
|
|
1168
|
-
* @internal
|
|
1169
|
-
*/
|
|
1170
|
-
export declare const CreateCloudFormationTemplateResponseFilterSensitiveLog: (obj: CreateCloudFormationTemplateResponse) => any;
|
|
1171
|
-
/**
|
|
1172
|
-
* @internal
|
|
1173
|
-
*/
|
|
1174
|
-
export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
|
|
1175
|
-
/**
|
|
1176
|
-
* @internal
|
|
1177
|
-
*/
|
|
1178
|
-
export declare const GetApplicationRequestFilterSensitiveLog: (obj: GetApplicationRequest) => any;
|
|
1179
|
-
/**
|
|
1180
|
-
* @internal
|
|
1181
|
-
*/
|
|
1182
|
-
export declare const GetApplicationResponseFilterSensitiveLog: (obj: GetApplicationResponse) => any;
|
|
1183
|
-
/**
|
|
1184
|
-
* @internal
|
|
1185
|
-
*/
|
|
1186
|
-
export declare const GetApplicationPolicyRequestFilterSensitiveLog: (obj: GetApplicationPolicyRequest) => any;
|
|
1187
|
-
/**
|
|
1188
|
-
* @internal
|
|
1189
|
-
*/
|
|
1190
|
-
export declare const GetApplicationPolicyResponseFilterSensitiveLog: (obj: GetApplicationPolicyResponse) => any;
|
|
1191
|
-
/**
|
|
1192
|
-
* @internal
|
|
1193
|
-
*/
|
|
1194
|
-
export declare const GetCloudFormationTemplateRequestFilterSensitiveLog: (obj: GetCloudFormationTemplateRequest) => any;
|
|
1195
|
-
/**
|
|
1196
|
-
* @internal
|
|
1197
|
-
*/
|
|
1198
|
-
export declare const GetCloudFormationTemplateResponseFilterSensitiveLog: (obj: GetCloudFormationTemplateResponse) => any;
|
|
1199
|
-
/**
|
|
1200
|
-
* @internal
|
|
1201
|
-
*/
|
|
1202
|
-
export declare const ListApplicationDependenciesRequestFilterSensitiveLog: (obj: ListApplicationDependenciesRequest) => any;
|
|
1203
|
-
/**
|
|
1204
|
-
* @internal
|
|
1205
|
-
*/
|
|
1206
|
-
export declare const ListApplicationDependenciesResponseFilterSensitiveLog: (obj: ListApplicationDependenciesResponse) => any;
|
|
1207
|
-
/**
|
|
1208
|
-
* @internal
|
|
1209
|
-
*/
|
|
1210
|
-
export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
|
|
1211
|
-
/**
|
|
1212
|
-
* @internal
|
|
1213
|
-
*/
|
|
1214
|
-
export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
|
|
1215
|
-
/**
|
|
1216
|
-
* @internal
|
|
1217
|
-
*/
|
|
1218
|
-
export declare const ListApplicationVersionsRequestFilterSensitiveLog: (obj: ListApplicationVersionsRequest) => any;
|
|
1219
|
-
/**
|
|
1220
|
-
* @internal
|
|
1221
|
-
*/
|
|
1222
|
-
export declare const ListApplicationVersionsResponseFilterSensitiveLog: (obj: ListApplicationVersionsResponse) => any;
|
|
1223
|
-
/**
|
|
1224
|
-
* @internal
|
|
1225
|
-
*/
|
|
1226
|
-
export declare const PutApplicationPolicyRequestFilterSensitiveLog: (obj: PutApplicationPolicyRequest) => any;
|
|
1227
|
-
/**
|
|
1228
|
-
* @internal
|
|
1229
|
-
*/
|
|
1230
|
-
export declare const PutApplicationPolicyResponseFilterSensitiveLog: (obj: PutApplicationPolicyResponse) => any;
|
|
1231
|
-
/**
|
|
1232
|
-
* @internal
|
|
1233
|
-
*/
|
|
1234
|
-
export declare const UnshareApplicationRequestFilterSensitiveLog: (obj: UnshareApplicationRequest) => any;
|
|
1235
|
-
/**
|
|
1236
|
-
* @internal
|
|
1237
|
-
*/
|
|
1238
|
-
export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
|
|
1239
|
-
/**
|
|
1240
|
-
* @internal
|
|
1241
|
-
*/
|
|
1242
|
-
export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
|
|
@@ -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
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput } from "../commands/ListApplicationDependenciesCommand";
|
|
3
3
|
import { ServerlessApplicationRepositoryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApplicationDependencies(config: ServerlessApplicationRepositoryPaginationConfiguration, input: ListApplicationDependenciesCommandInput, ...additionalArguments: any): Paginator<ListApplicationDependenciesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput } from "../commands/ListApplicationVersionsCommand";
|
|
3
3
|
import { ServerlessApplicationRepositoryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApplicationVersions(config: ServerlessApplicationRepositoryPaginationConfiguration, input: ListApplicationVersionsCommandInput, ...additionalArguments: any): Paginator<ListApplicationVersionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
|
|
3
3
|
import { ServerlessApplicationRepositoryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListApplications(config: ServerlessApplicationRepositoryPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
|