@aws-sdk/client-service-catalog-appregistry 3.289.0 → 3.292.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/AssociateAttributeGroupCommand.d.ts +17 -0
- package/dist-types/commands/AssociateResourceCommand.d.ts +17 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +14 -0
- package/dist-types/commands/CreateAttributeGroupCommand.d.ts +14 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +10 -0
- package/dist-types/commands/DeleteAttributeGroupCommand.d.ts +10 -0
- package/dist-types/commands/DisassociateAttributeGroupCommand.d.ts +10 -0
- package/dist-types/commands/DisassociateResourceCommand.d.ts +10 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +14 -0
- package/dist-types/commands/GetAssociatedResourceCommand.d.ts +10 -0
- package/dist-types/commands/GetAttributeGroupCommand.d.ts +14 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +7 -0
- package/dist-types/commands/ListAssociatedAttributeGroupsCommand.d.ts +10 -0
- package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +10 -0
- package/dist-types/commands/ListAttributeGroupsCommand.d.ts +7 -0
- package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +10 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
- package/dist-types/commands/PutConfigurationCommand.d.ts +11 -0
- package/dist-types/commands/SyncResourceCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +14 -0
- package/dist-types/commands/UpdateAttributeGroupCommand.d.ts +14 -0
- package/package.json +35 -40
|
@@ -31,6 +31,23 @@ export interface AssociateAttributeGroupCommandOutput extends AssociateAttribute
|
|
|
31
31
|
* @see {@link AssociateAttributeGroupCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link ConflictException} (client fault)
|
|
35
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
36
|
+
* name already exists within the account).</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* <p>The service is experiencing internal problems.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* <p>The specified resource does not exist.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* <p>The maximum number of resources per account has been reached.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
49
|
+
*
|
|
50
|
+
*
|
|
34
51
|
*/
|
|
35
52
|
export declare class AssociateAttributeGroupCommand extends $Command<AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
36
53
|
readonly input: AssociateAttributeGroupCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
|
|
|
29
29
|
* @see {@link AssociateResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
34
|
+
* name already exists within the account).</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>The service is experiencing internal problems.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
43
|
+
* <p>The maximum number of resources per account has been reached.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class AssociateResourceCommand extends $Command<AssociateResourceCommandInput, AssociateResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
51
|
readonly input: AssociateResourceCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
29
29
|
* @see {@link CreateApplicationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
34
|
+
* name already exists within the account).</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>The service is experiencing internal problems.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
40
|
+
* <p>The maximum number of resources per account has been reached.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
48
|
readonly input: CreateApplicationCommandInput;
|
|
@@ -32,6 +32,20 @@ export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupR
|
|
|
32
32
|
* @see {@link CreateAttributeGroupCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
37
|
+
* name already exists within the account).</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>The service is experiencing internal problems.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
43
|
+
* <p>The maximum number of resources per account has been reached.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ValidationException} (client fault)
|
|
46
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
35
49
|
*/
|
|
36
50
|
export declare class CreateAttributeGroupCommand extends $Command<CreateAttributeGroupCommandInput, CreateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
37
51
|
readonly input: CreateAttributeGroupCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
29
29
|
* @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified resource does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
44
|
readonly input: DeleteApplicationCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupR
|
|
|
29
29
|
* @see {@link DeleteAttributeGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified resource does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class DeleteAttributeGroupCommand extends $Command<DeleteAttributeGroupCommandInput, DeleteAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
44
|
readonly input: DeleteAttributeGroupCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DisassociateAttributeGroupCommandOutput extends DisassociateAtt
|
|
|
29
29
|
* @see {@link DisassociateAttributeGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified resource does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class DisassociateAttributeGroupCommand extends $Command<DisassociateAttributeGroupCommandInput, DisassociateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
44
|
readonly input: DisassociateAttributeGroupCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
|
|
|
29
29
|
* @see {@link DisassociateResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified resource does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class DisassociateResourceCommand extends $Command<DisassociateResourceCommandInput, DisassociateResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
44
|
readonly input: DisassociateResourceCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
|
|
|
29
29
|
* @see {@link GetApplicationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
34
|
+
* name already exists within the account).</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>The service is experiencing internal problems.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class GetApplicationCommand extends $Command<GetApplicationCommandInput, GetApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
48
|
readonly input: GetApplicationCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface GetAssociatedResourceCommandOutput extends GetAssociatedResourc
|
|
|
29
29
|
* @see {@link GetAssociatedResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified resource does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class GetAssociatedResourceCommand extends $Command<GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
44
|
readonly input: GetAssociatedResourceCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface GetAttributeGroupCommandOutput extends GetAttributeGroupRespons
|
|
|
29
29
|
* @see {@link GetAttributeGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
34
|
+
* name already exists within the account).</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>The service is experiencing internal problems.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class GetAttributeGroupCommand extends $Command<GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
48
|
readonly input: GetAttributeGroupCommandInput;
|
|
@@ -32,6 +32,10 @@ export interface GetConfigurationCommandOutput extends GetConfigurationResponse,
|
|
|
32
32
|
* @see {@link GetConfigurationCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* <p>The service is experiencing internal problems.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
35
39
|
*/
|
|
36
40
|
export declare class GetConfigurationCommand extends $Command<GetConfigurationCommandInput, GetConfigurationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
37
41
|
readonly input: GetConfigurationCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
29
29
|
* @see {@link ListApplicationsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ValidationException} (client fault)
|
|
36
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
41
|
readonly input: ListApplicationsCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface ListAssociatedAttributeGroupsCommandOutput extends ListAssociat
|
|
|
29
29
|
* @see {@link ListAssociatedAttributeGroupsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified resource does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class ListAssociatedAttributeGroupsCommand extends $Command<ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
44
|
readonly input: ListAssociatedAttributeGroupsCommandInput;
|
|
@@ -49,6 +49,16 @@ export interface ListAssociatedResourcesCommandOutput extends ListAssociatedReso
|
|
|
49
49
|
* @see {@link ListAssociatedResourcesCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link InternalServerException} (server fault)
|
|
53
|
+
* <p>The service is experiencing internal problems.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified resource does not exist.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ValidationException} (client fault)
|
|
59
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
52
62
|
*/
|
|
53
63
|
export declare class ListAssociatedResourcesCommand extends $Command<ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
54
64
|
readonly input: ListAssociatedResourcesCommandInput;
|
|
@@ -29,6 +29,13 @@ export interface ListAttributeGroupsCommandOutput extends ListAttributeGroupsRes
|
|
|
29
29
|
* @see {@link ListAttributeGroupsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ValidationException} (client fault)
|
|
36
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class ListAttributeGroupsCommand extends $Command<ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
41
|
readonly input: ListAttributeGroupsCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface ListAttributeGroupsForApplicationCommandOutput extends ListAttr
|
|
|
29
29
|
* @see {@link ListAttributeGroupsForApplicationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified resource does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class ListAttributeGroupsForApplicationCommand extends $Command<ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
44
|
readonly input: ListAttributeGroupsForApplicationCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalServerException} (server fault)
|
|
33
|
+
* <p>The service is experiencing internal problems.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified resource does not exist.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ValidationException} (client fault)
|
|
39
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
44
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -32,6 +32,17 @@ export interface PutConfigurationCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* @see {@link PutConfigurationCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
37
|
+
* name already exists within the account).</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerException} (server fault)
|
|
40
|
+
* <p>The service is experiencing internal problems.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
35
46
|
*/
|
|
36
47
|
export declare class PutConfigurationCommand extends $Command<PutConfigurationCommandInput, PutConfigurationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
37
48
|
readonly input: PutConfigurationCommandInput;
|
|
@@ -30,6 +30,17 @@ export interface SyncResourceCommandOutput extends SyncResourceResponse, __Metad
|
|
|
30
30
|
* @see {@link SyncResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link ConflictException} (client fault)
|
|
34
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
35
|
+
* name already exists within the account).</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalServerException} (server fault)
|
|
38
|
+
* <p>The service is experiencing internal problems.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
41
|
+
* <p>The specified resource does not exist.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
33
44
|
*/
|
|
34
45
|
export declare class SyncResourceCommand extends $Command<SyncResourceCommandInput, SyncResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
35
46
|
readonly input: SyncResourceCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
31
31
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalServerException} (server fault)
|
|
35
|
+
* <p>The service is experiencing internal problems.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
38
|
+
* <p>The specified resource does not exist.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ValidationException} (client fault)
|
|
41
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
36
46
|
readonly input: TagResourceCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
30
30
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InternalServerException} (server fault)
|
|
34
|
+
* <p>The service is experiencing internal problems.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
37
|
+
* <p>The specified resource does not exist.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ValidationException} (client fault)
|
|
40
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
35
45
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
29
29
|
* @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
34
|
+
* name already exists within the account).</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>The service is experiencing internal problems.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
48
|
readonly input: UpdateApplicationCommandInput;
|
|
@@ -29,6 +29,20 @@ export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupR
|
|
|
29
29
|
* @see {@link UpdateAttributeGroupCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ConflictException} (client fault)
|
|
33
|
+
* <p>There was a conflict when processing the request (for example, a resource with the given
|
|
34
|
+
* name already exists within the account).</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerException} (server fault)
|
|
37
|
+
* <p>The service is experiencing internal problems.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource does not exist.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ValidationException} (client fault)
|
|
43
|
+
* <p>The request has invalid or missing parameters.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
32
46
|
*/
|
|
33
47
|
export declare class UpdateAttributeGroupCommand extends $Command<UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
|
|
34
48
|
readonly input: UpdateAttributeGroupCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-service-catalog-appregistry",
|
|
3
3
|
"description": "AWS SDK for JavaScript Service Catalog Appregistry Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.292.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",
|
|
@@ -20,57 +20,52 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
-
"@aws-sdk/util-utf8": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.292.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.292.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.292.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.292.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.292.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.292.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.292.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.292.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.292.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.292.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.292.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.292.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.292.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.292.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.292.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.292.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.292.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.292.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.292.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.292.0",
|
|
43
|
+
"@aws-sdk/types": "3.292.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.292.0",
|
|
45
|
+
"@aws-sdk/util-base64": "3.292.0",
|
|
46
|
+
"@aws-sdk/util-body-length-browser": "3.292.0",
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.292.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.292.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.292.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.292.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.292.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.292.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.292.0",
|
|
54
|
+
"@aws-sdk/util-utf8": "3.292.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.292.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"@types/uuid": "^8.3.0",
|
|
63
63
|
"concurrently": "7.0.0",
|
|
64
64
|
"downlevel-dts": "0.10.1",
|
|
65
65
|
"rimraf": "3.0.2",
|
|
66
|
-
"typedoc": "0.
|
|
66
|
+
"typedoc": "0.23.23",
|
|
67
67
|
"typescript": "~4.6.2"
|
|
68
68
|
},
|
|
69
|
-
"overrides": {
|
|
70
|
-
"typedoc": {
|
|
71
|
-
"typescript": "~4.6.2"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
69
|
"engines": {
|
|
75
70
|
"node": ">=14.0.0"
|
|
76
71
|
},
|