@aws-sdk/client-serverlessapplicationrepository 3.325.0 → 3.327.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-types/commands/CreateApplicationCommand.d.ts +52 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +36 -0
- package/dist-types/commands/CreateCloudFormationChangeSetCommand.d.ts +9 -0
- package/dist-types/commands/CreateCloudFormationTemplateCommand.d.ts +12 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +52 -0
- package/dist-types/commands/GetApplicationPolicyCommand.d.ts +19 -0
- package/dist-types/commands/GetCloudFormationTemplateCommand.d.ts +12 -0
- package/dist-types/commands/ListApplicationDependenciesCommand.d.ts +12 -0
- package/dist-types/commands/ListApplicationVersionsCommand.d.ts +14 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +20 -0
- package/dist-types/commands/PutApplicationPolicyCommand.d.ts +19 -0
- package/dist-types/commands/UnshareApplicationCommand.d.ts +4 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +52 -0
- package/package.json +7 -7
|
@@ -47,6 +47,56 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
47
47
|
* };
|
|
48
48
|
* const command = new CreateApplicationCommand(input);
|
|
49
49
|
* const response = await client.send(command);
|
|
50
|
+
* // { // CreateApplicationResponse
|
|
51
|
+
* // ApplicationId: "STRING_VALUE",
|
|
52
|
+
* // Author: "STRING_VALUE",
|
|
53
|
+
* // CreationTime: "STRING_VALUE",
|
|
54
|
+
* // Description: "STRING_VALUE",
|
|
55
|
+
* // HomePageUrl: "STRING_VALUE",
|
|
56
|
+
* // IsVerifiedAuthor: true || false,
|
|
57
|
+
* // Labels: [ // __listOf__string
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // LicenseUrl: "STRING_VALUE",
|
|
61
|
+
* // Name: "STRING_VALUE",
|
|
62
|
+
* // ReadmeUrl: "STRING_VALUE",
|
|
63
|
+
* // SpdxLicenseId: "STRING_VALUE",
|
|
64
|
+
* // VerifiedAuthorUrl: "STRING_VALUE",
|
|
65
|
+
* // Version: { // Version
|
|
66
|
+
* // ApplicationId: "STRING_VALUE", // required
|
|
67
|
+
* // CreationTime: "STRING_VALUE", // required
|
|
68
|
+
* // ParameterDefinitions: [ // __listOfParameterDefinition // required
|
|
69
|
+
* // { // ParameterDefinition
|
|
70
|
+
* // AllowedPattern: "STRING_VALUE",
|
|
71
|
+
* // AllowedValues: [
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // ConstraintDescription: "STRING_VALUE",
|
|
75
|
+
* // DefaultValue: "STRING_VALUE",
|
|
76
|
+
* // Description: "STRING_VALUE",
|
|
77
|
+
* // MaxLength: Number("int"),
|
|
78
|
+
* // MaxValue: Number("int"),
|
|
79
|
+
* // MinLength: Number("int"),
|
|
80
|
+
* // MinValue: Number("int"),
|
|
81
|
+
* // Name: "STRING_VALUE", // required
|
|
82
|
+
* // NoEcho: true || false,
|
|
83
|
+
* // ReferencedByResources: [ // required
|
|
84
|
+
* // "STRING_VALUE",
|
|
85
|
+
* // ],
|
|
86
|
+
* // Type: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // RequiredCapabilities: [ // __listOfCapability // required
|
|
90
|
+
* // "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND" || "CAPABILITY_RESOURCE_POLICY",
|
|
91
|
+
* // ],
|
|
92
|
+
* // ResourcesSupported: true || false, // required
|
|
93
|
+
* // SemanticVersion: "STRING_VALUE", // required
|
|
94
|
+
* // SourceCodeArchiveUrl: "STRING_VALUE",
|
|
95
|
+
* // SourceCodeUrl: "STRING_VALUE",
|
|
96
|
+
* // TemplateUrl: "STRING_VALUE", // required
|
|
97
|
+
* // },
|
|
98
|
+
* // };
|
|
99
|
+
*
|
|
50
100
|
* ```
|
|
51
101
|
*
|
|
52
102
|
* @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
|
|
@@ -70,6 +120,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
70
120
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
71
121
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
72
122
|
*
|
|
123
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
124
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
73
125
|
*
|
|
74
126
|
*/
|
|
75
127
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -36,6 +36,40 @@ export interface CreateApplicationVersionCommandOutput extends CreateApplication
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new CreateApplicationVersionCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // CreateApplicationVersionResponse
|
|
40
|
+
* // ApplicationId: "STRING_VALUE",
|
|
41
|
+
* // CreationTime: "STRING_VALUE",
|
|
42
|
+
* // ParameterDefinitions: [ // __listOfParameterDefinition
|
|
43
|
+
* // { // ParameterDefinition
|
|
44
|
+
* // AllowedPattern: "STRING_VALUE",
|
|
45
|
+
* // AllowedValues: [ // __listOf__string
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // ConstraintDescription: "STRING_VALUE",
|
|
49
|
+
* // DefaultValue: "STRING_VALUE",
|
|
50
|
+
* // Description: "STRING_VALUE",
|
|
51
|
+
* // MaxLength: Number("int"),
|
|
52
|
+
* // MaxValue: Number("int"),
|
|
53
|
+
* // MinLength: Number("int"),
|
|
54
|
+
* // MinValue: Number("int"),
|
|
55
|
+
* // Name: "STRING_VALUE", // required
|
|
56
|
+
* // NoEcho: true || false,
|
|
57
|
+
* // ReferencedByResources: [ // required
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // Type: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // RequiredCapabilities: [ // __listOfCapability
|
|
64
|
+
* // "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND" || "CAPABILITY_RESOURCE_POLICY",
|
|
65
|
+
* // ],
|
|
66
|
+
* // ResourcesSupported: true || false,
|
|
67
|
+
* // SemanticVersion: "STRING_VALUE",
|
|
68
|
+
* // SourceCodeArchiveUrl: "STRING_VALUE",
|
|
69
|
+
* // SourceCodeUrl: "STRING_VALUE",
|
|
70
|
+
* // TemplateUrl: "STRING_VALUE",
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
39
73
|
* ```
|
|
40
74
|
*
|
|
41
75
|
* @param CreateApplicationVersionCommandInput - {@link CreateApplicationVersionCommandInput}
|
|
@@ -59,6 +93,8 @@ export interface CreateApplicationVersionCommandOutput extends CreateApplication
|
|
|
59
93
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
60
94
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
61
95
|
*
|
|
96
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
62
98
|
*
|
|
63
99
|
*/
|
|
64
100
|
export declare class CreateApplicationVersionCommand extends $Command<CreateApplicationVersionCommandInput, CreateApplicationVersionCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -67,6 +67,13 @@ export interface CreateCloudFormationChangeSetCommandOutput extends CreateCloudF
|
|
|
67
67
|
* };
|
|
68
68
|
* const command = new CreateCloudFormationChangeSetCommand(input);
|
|
69
69
|
* const response = await client.send(command);
|
|
70
|
+
* // { // CreateCloudFormationChangeSetResponse
|
|
71
|
+
* // ApplicationId: "STRING_VALUE",
|
|
72
|
+
* // ChangeSetId: "STRING_VALUE",
|
|
73
|
+
* // SemanticVersion: "STRING_VALUE",
|
|
74
|
+
* // StackId: "STRING_VALUE",
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
70
77
|
* ```
|
|
71
78
|
*
|
|
72
79
|
* @param CreateCloudFormationChangeSetCommandInput - {@link CreateCloudFormationChangeSetCommandInput}
|
|
@@ -87,6 +94,8 @@ export interface CreateCloudFormationChangeSetCommandOutput extends CreateCloudF
|
|
|
87
94
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
88
95
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
89
96
|
*
|
|
97
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
90
99
|
*
|
|
91
100
|
*/
|
|
92
101
|
export declare class CreateCloudFormationChangeSetCommand extends $Command<CreateCloudFormationChangeSetCommandInput, CreateCloudFormationChangeSetCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new CreateCloudFormationTemplateCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // CreateCloudFormationTemplateResponse
|
|
36
|
+
* // ApplicationId: "STRING_VALUE",
|
|
37
|
+
* // CreationTime: "STRING_VALUE",
|
|
38
|
+
* // ExpirationTime: "STRING_VALUE",
|
|
39
|
+
* // SemanticVersion: "STRING_VALUE",
|
|
40
|
+
* // Status: "PREPARING" || "ACTIVE" || "EXPIRED",
|
|
41
|
+
* // TemplateId: "STRING_VALUE",
|
|
42
|
+
* // TemplateUrl: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param CreateCloudFormationTemplateCommandInput - {@link CreateCloudFormationTemplateCommandInput}
|
|
@@ -55,6 +65,8 @@ export interface CreateCloudFormationTemplateCommandOutput extends CreateCloudFo
|
|
|
55
65
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
66
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
57
67
|
*
|
|
68
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
58
70
|
*
|
|
59
71
|
*/
|
|
60
72
|
export declare class CreateCloudFormationTemplateCommand extends $Command<CreateCloudFormationTemplateCommandInput, CreateCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteApplicationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
|
|
|
57
59
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
58
60
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -32,6 +32,56 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetApplicationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetApplicationResponse
|
|
36
|
+
* // ApplicationId: "STRING_VALUE",
|
|
37
|
+
* // Author: "STRING_VALUE",
|
|
38
|
+
* // CreationTime: "STRING_VALUE",
|
|
39
|
+
* // Description: "STRING_VALUE",
|
|
40
|
+
* // HomePageUrl: "STRING_VALUE",
|
|
41
|
+
* // IsVerifiedAuthor: true || false,
|
|
42
|
+
* // Labels: [ // __listOf__string
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // LicenseUrl: "STRING_VALUE",
|
|
46
|
+
* // Name: "STRING_VALUE",
|
|
47
|
+
* // ReadmeUrl: "STRING_VALUE",
|
|
48
|
+
* // SpdxLicenseId: "STRING_VALUE",
|
|
49
|
+
* // VerifiedAuthorUrl: "STRING_VALUE",
|
|
50
|
+
* // Version: { // Version
|
|
51
|
+
* // ApplicationId: "STRING_VALUE", // required
|
|
52
|
+
* // CreationTime: "STRING_VALUE", // required
|
|
53
|
+
* // ParameterDefinitions: [ // __listOfParameterDefinition // required
|
|
54
|
+
* // { // ParameterDefinition
|
|
55
|
+
* // AllowedPattern: "STRING_VALUE",
|
|
56
|
+
* // AllowedValues: [
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // ConstraintDescription: "STRING_VALUE",
|
|
60
|
+
* // DefaultValue: "STRING_VALUE",
|
|
61
|
+
* // Description: "STRING_VALUE",
|
|
62
|
+
* // MaxLength: Number("int"),
|
|
63
|
+
* // MaxValue: Number("int"),
|
|
64
|
+
* // MinLength: Number("int"),
|
|
65
|
+
* // MinValue: Number("int"),
|
|
66
|
+
* // Name: "STRING_VALUE", // required
|
|
67
|
+
* // NoEcho: true || false,
|
|
68
|
+
* // ReferencedByResources: [ // required
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // Type: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // RequiredCapabilities: [ // __listOfCapability // required
|
|
75
|
+
* // "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND" || "CAPABILITY_RESOURCE_POLICY",
|
|
76
|
+
* // ],
|
|
77
|
+
* // ResourcesSupported: true || false, // required
|
|
78
|
+
* // SemanticVersion: "STRING_VALUE", // required
|
|
79
|
+
* // SourceCodeArchiveUrl: "STRING_VALUE",
|
|
80
|
+
* // SourceCodeUrl: "STRING_VALUE",
|
|
81
|
+
* // TemplateUrl: "STRING_VALUE", // required
|
|
82
|
+
* // },
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
35
85
|
* ```
|
|
36
86
|
*
|
|
37
87
|
* @param GetApplicationCommandInput - {@link GetApplicationCommandInput}
|
|
@@ -55,6 +105,8 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
55
105
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
106
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
57
107
|
*
|
|
108
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
109
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
58
110
|
*
|
|
59
111
|
*/
|
|
60
112
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -31,6 +31,23 @@ export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetApplicationPolicyCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetApplicationPolicyResponse
|
|
35
|
+
* // Statements: [ // __listOfApplicationPolicyStatement
|
|
36
|
+
* // { // ApplicationPolicyStatement
|
|
37
|
+
* // Actions: [ // __listOf__string // required
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // PrincipalOrgIDs: [
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // Principals: [ // required
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // StatementId: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
34
51
|
* ```
|
|
35
52
|
*
|
|
36
53
|
* @param GetApplicationPolicyCommandInput - {@link GetApplicationPolicyCommandInput}
|
|
@@ -54,6 +71,8 @@ export interface GetApplicationPolicyCommandOutput extends GetApplicationPolicyR
|
|
|
54
71
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
55
72
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
56
73
|
*
|
|
74
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
57
76
|
*
|
|
58
77
|
*/
|
|
59
78
|
export declare class GetApplicationPolicyCommand extends $Command<GetApplicationPolicyCommandInput, GetApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormatio
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetCloudFormationTemplateCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetCloudFormationTemplateResponse
|
|
36
|
+
* // ApplicationId: "STRING_VALUE",
|
|
37
|
+
* // CreationTime: "STRING_VALUE",
|
|
38
|
+
* // ExpirationTime: "STRING_VALUE",
|
|
39
|
+
* // SemanticVersion: "STRING_VALUE",
|
|
40
|
+
* // Status: "PREPARING" || "ACTIVE" || "EXPIRED",
|
|
41
|
+
* // TemplateId: "STRING_VALUE",
|
|
42
|
+
* // TemplateUrl: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param GetCloudFormationTemplateCommandInput - {@link GetCloudFormationTemplateCommandInput}
|
|
@@ -55,6 +65,8 @@ export interface GetCloudFormationTemplateCommandOutput extends GetCloudFormatio
|
|
|
55
65
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
66
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
57
67
|
*
|
|
68
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
58
70
|
*
|
|
59
71
|
*/
|
|
60
72
|
export declare class GetCloudFormationTemplateCommand extends $Command<GetCloudFormationTemplateCommandInput, GetCloudFormationTemplateCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -34,6 +34,16 @@ export interface ListApplicationDependenciesCommandOutput extends ListApplicatio
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListApplicationDependenciesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListApplicationDependenciesResponse
|
|
38
|
+
* // Dependencies: [ // __listOfApplicationDependencySummary
|
|
39
|
+
* // { // ApplicationDependencySummary
|
|
40
|
+
* // ApplicationId: "STRING_VALUE", // required
|
|
41
|
+
* // SemanticVersion: "STRING_VALUE", // required
|
|
42
|
+
* // },
|
|
43
|
+
* // ],
|
|
44
|
+
* // NextToken: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
37
47
|
* ```
|
|
38
48
|
*
|
|
39
49
|
* @param ListApplicationDependenciesCommandInput - {@link ListApplicationDependenciesCommandInput}
|
|
@@ -57,6 +67,8 @@ export interface ListApplicationDependenciesCommandOutput extends ListApplicatio
|
|
|
57
67
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
58
68
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
59
69
|
*
|
|
70
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
60
72
|
*
|
|
61
73
|
*/
|
|
62
74
|
export declare class ListApplicationDependenciesCommand extends $Command<ListApplicationDependenciesCommandInput, ListApplicationDependenciesCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -33,6 +33,18 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListApplicationVersionsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListApplicationVersionsResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // Versions: [ // __listOfVersionSummary
|
|
39
|
+
* // { // VersionSummary
|
|
40
|
+
* // ApplicationId: "STRING_VALUE", // required
|
|
41
|
+
* // CreationTime: "STRING_VALUE", // required
|
|
42
|
+
* // SemanticVersion: "STRING_VALUE", // required
|
|
43
|
+
* // SourceCodeUrl: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
36
48
|
* ```
|
|
37
49
|
*
|
|
38
50
|
* @param ListApplicationVersionsCommandInput - {@link ListApplicationVersionsCommandInput}
|
|
@@ -56,6 +68,8 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
|
|
|
56
68
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
57
69
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
58
70
|
*
|
|
71
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
59
73
|
*
|
|
60
74
|
*/
|
|
61
75
|
export declare class ListApplicationVersionsCommand extends $Command<ListApplicationVersionsCommandInput, ListApplicationVersionsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -32,6 +32,24 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListApplicationsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListApplicationsResponse
|
|
36
|
+
* // Applications: [ // __listOfApplicationSummary
|
|
37
|
+
* // { // ApplicationSummary
|
|
38
|
+
* // ApplicationId: "STRING_VALUE", // required
|
|
39
|
+
* // Author: "STRING_VALUE", // required
|
|
40
|
+
* // CreationTime: "STRING_VALUE",
|
|
41
|
+
* // Description: "STRING_VALUE", // required
|
|
42
|
+
* // HomePageUrl: "STRING_VALUE",
|
|
43
|
+
* // Labels: [ // __listOf__string
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // Name: "STRING_VALUE", // required
|
|
47
|
+
* // SpdxLicenseId: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // NextToken: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
35
53
|
* ```
|
|
36
54
|
*
|
|
37
55
|
* @param ListApplicationsCommandInput - {@link ListApplicationsCommandInput}
|
|
@@ -52,6 +70,8 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
52
70
|
* @throws {@link NotFoundException} (client fault)
|
|
53
71
|
* <p>The resource (for example, an access policy statement) specified in the request doesn't exist.</p>
|
|
54
72
|
*
|
|
73
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
55
75
|
*
|
|
56
76
|
*/
|
|
57
77
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -48,6 +48,23 @@ export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyR
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new PutApplicationPolicyCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // PutApplicationPolicyResponse
|
|
52
|
+
* // Statements: [ // __listOfApplicationPolicyStatement
|
|
53
|
+
* // { // ApplicationPolicyStatement
|
|
54
|
+
* // Actions: [ // __listOf__string // required
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // PrincipalOrgIDs: [
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // Principals: [ // required
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // StatementId: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
51
68
|
* ```
|
|
52
69
|
*
|
|
53
70
|
* @param PutApplicationPolicyCommandInput - {@link PutApplicationPolicyCommandInput}
|
|
@@ -71,6 +88,8 @@ export interface PutApplicationPolicyCommandOutput extends PutApplicationPolicyR
|
|
|
71
88
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
72
89
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
73
90
|
*
|
|
91
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
74
93
|
*
|
|
75
94
|
*/
|
|
76
95
|
export declare class PutApplicationPolicyCommand extends $Command<PutApplicationPolicyCommandInput, PutApplicationPolicyCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UnshareApplicationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param UnshareApplicationCommandInput - {@link UnshareApplicationCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface UnshareApplicationCommandOutput extends __MetadataBearer {
|
|
|
55
57
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
56
58
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class UnshareApplicationCommand extends $Command<UnshareApplicationCommandInput, UnshareApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
|
@@ -39,6 +39,56 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new UpdateApplicationCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // UpdateApplicationResponse
|
|
43
|
+
* // ApplicationId: "STRING_VALUE",
|
|
44
|
+
* // Author: "STRING_VALUE",
|
|
45
|
+
* // CreationTime: "STRING_VALUE",
|
|
46
|
+
* // Description: "STRING_VALUE",
|
|
47
|
+
* // HomePageUrl: "STRING_VALUE",
|
|
48
|
+
* // IsVerifiedAuthor: true || false,
|
|
49
|
+
* // Labels: [ // __listOf__string
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // LicenseUrl: "STRING_VALUE",
|
|
53
|
+
* // Name: "STRING_VALUE",
|
|
54
|
+
* // ReadmeUrl: "STRING_VALUE",
|
|
55
|
+
* // SpdxLicenseId: "STRING_VALUE",
|
|
56
|
+
* // VerifiedAuthorUrl: "STRING_VALUE",
|
|
57
|
+
* // Version: { // Version
|
|
58
|
+
* // ApplicationId: "STRING_VALUE", // required
|
|
59
|
+
* // CreationTime: "STRING_VALUE", // required
|
|
60
|
+
* // ParameterDefinitions: [ // __listOfParameterDefinition // required
|
|
61
|
+
* // { // ParameterDefinition
|
|
62
|
+
* // AllowedPattern: "STRING_VALUE",
|
|
63
|
+
* // AllowedValues: [
|
|
64
|
+
* // "STRING_VALUE",
|
|
65
|
+
* // ],
|
|
66
|
+
* // ConstraintDescription: "STRING_VALUE",
|
|
67
|
+
* // DefaultValue: "STRING_VALUE",
|
|
68
|
+
* // Description: "STRING_VALUE",
|
|
69
|
+
* // MaxLength: Number("int"),
|
|
70
|
+
* // MaxValue: Number("int"),
|
|
71
|
+
* // MinLength: Number("int"),
|
|
72
|
+
* // MinValue: Number("int"),
|
|
73
|
+
* // Name: "STRING_VALUE", // required
|
|
74
|
+
* // NoEcho: true || false,
|
|
75
|
+
* // ReferencedByResources: [ // required
|
|
76
|
+
* // "STRING_VALUE",
|
|
77
|
+
* // ],
|
|
78
|
+
* // Type: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // RequiredCapabilities: [ // __listOfCapability // required
|
|
82
|
+
* // "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND" || "CAPABILITY_RESOURCE_POLICY",
|
|
83
|
+
* // ],
|
|
84
|
+
* // ResourcesSupported: true || false, // required
|
|
85
|
+
* // SemanticVersion: "STRING_VALUE", // required
|
|
86
|
+
* // SourceCodeArchiveUrl: "STRING_VALUE",
|
|
87
|
+
* // SourceCodeUrl: "STRING_VALUE",
|
|
88
|
+
* // TemplateUrl: "STRING_VALUE", // required
|
|
89
|
+
* // },
|
|
90
|
+
* // };
|
|
91
|
+
*
|
|
42
92
|
* ```
|
|
43
93
|
*
|
|
44
94
|
* @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
|
|
@@ -65,6 +115,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
65
115
|
* @throws {@link TooManyRequestsException} (client fault)
|
|
66
116
|
* <p>The client is sending more than the allowed number of requests per unit of time.</p>
|
|
67
117
|
*
|
|
118
|
+
* @throws {@link ServerlessApplicationRepositoryServiceException}
|
|
119
|
+
* <p>Base exception class for all service exceptions from ServerlessApplicationRepository service.</p>
|
|
68
120
|
*
|
|
69
121
|
*/
|
|
70
122
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServerlessApplicationRepositoryClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-serverlessapplicationrepository",
|
|
3
3
|
"description": "AWS SDK for JavaScript Serverlessapplicationrepository Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.327.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|