@aws-sdk/client-service-catalog-appregistry 3.295.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist-types/ServiceCatalogAppRegistry.d.ts +25 -0
  2. package/dist-types/ServiceCatalogAppRegistryClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateAttributeGroupCommand.d.ts +16 -0
  4. package/dist-types/commands/AssociateResourceCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateAttributeGroupCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAttributeGroupCommand.d.ts +16 -0
  9. package/dist-types/commands/DisassociateAttributeGroupCommand.d.ts +16 -0
  10. package/dist-types/commands/DisassociateResourceCommand.d.ts +16 -0
  11. package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
  12. package/dist-types/commands/GetAssociatedResourceCommand.d.ts +16 -0
  13. package/dist-types/commands/GetAttributeGroupCommand.d.ts +16 -0
  14. package/dist-types/commands/GetConfigurationCommand.d.ts +16 -0
  15. package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListAssociatedAttributeGroupsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListAssociatedResourcesCommand.d.ts +16 -0
  18. package/dist-types/commands/ListAttributeGroupsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListAttributeGroupsForApplicationCommand.d.ts +16 -0
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  21. package/dist-types/commands/PutConfigurationCommand.d.ts +16 -0
  22. package/dist-types/commands/SyncResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateAttributeGroupCommand.d.ts +16 -0
  27. package/dist-types/models/ServiceCatalogAppRegistryServiceException.d.ts +2 -0
  28. package/dist-types/models/models_0.d.ts +165 -0
  29. package/dist-types/pagination/Interfaces.d.ts +3 -0
  30. package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
  31. package/dist-types/pagination/ListAssociatedAttributeGroupsPaginator.d.ts +3 -0
  32. package/dist-types/pagination/ListAssociatedResourcesPaginator.d.ts +3 -0
  33. package/dist-types/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +3 -0
  34. package/dist-types/pagination/ListAttributeGroupsPaginator.d.ts +3 -0
  35. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { SyncResourceRequest, SyncResourceResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link SyncResourceCommand}.
8
10
  */
9
11
  export interface SyncResourceCommandInput extends SyncResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link SyncResourceCommand}.
13
17
  */
14
18
  export interface SyncResourceCommandOutput extends SyncResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Syncs the resource with current AppRegistry records.</p>
18
23
  * <p>Specifically, the resource’s AppRegistry system tags sync with its associated application. We remove the resource's AppRegistry system tags if it does not associate with the application. The caller must have permissions to read and update the resource.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface SyncResourceCommandOutput extends SyncResourceResponse, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param SyncResourceCommandInput - {@link SyncResourceCommandInput}
35
+ * @returns {@link SyncResourceCommandOutput}
29
36
  * @see {@link SyncResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link SyncResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -45,11 +52,20 @@ export interface SyncResourceCommandOutput extends SyncResourceResponse, __Metad
45
52
  export declare class SyncResourceCommand extends $Command<SyncResourceCommandInput, SyncResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
46
53
  readonly input: SyncResourceCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: SyncResourceCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SyncResourceCommandInput, SyncResourceCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Assigns one or more tags (key-value pairs) to the specified resource.</p>
18
23
  * <p>Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.</p>
19
24
  * <p>This operation returns an empty response if the call was successful.</p>
@@ -27,6 +32,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
36
+ * @returns {@link TagResourceCommandOutput}
30
37
  * @see {@link TagResourceCommandInput} for command's `input` shape.
31
38
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
32
39
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -45,11 +52,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
45
52
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
46
53
  readonly input: TagResourceCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: TagResourceCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes tags from a resource.</p>
18
23
  * <p>This operation returns an empty response if the call was successful.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
35
+ * @returns {@link UntagResourceCommandOutput}
29
36
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
44
51
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
45
52
  readonly input: UntagResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UntagResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateApplicationCommand}.
8
10
  */
9
11
  export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateApplicationCommand}.
13
17
  */
14
18
  export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing application with new attributes.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateApplicationCommandInput - {@link UpdateApplicationCommandInput}
34
+ * @returns {@link UpdateApplicationCommandOutput}
28
35
  * @see {@link UpdateApplicationCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -47,11 +54,20 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
47
54
  export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
48
55
  readonly input: UpdateApplicationCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: UpdateApplicationCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateAttributeGroupRequest, UpdateAttributeGroupResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAttributeGroupCommand}.
8
10
  */
9
11
  export interface UpdateAttributeGroupCommandInput extends UpdateAttributeGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAttributeGroupCommand}.
13
17
  */
14
18
  export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an existing attribute group with new details. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateAttributeGroupCommandInput - {@link UpdateAttributeGroupCommandInput}
34
+ * @returns {@link UpdateAttributeGroupCommandOutput}
28
35
  * @see {@link UpdateAttributeGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateAttributeGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -47,11 +54,20 @@ export interface UpdateAttributeGroupCommandOutput extends UpdateAttributeGroupR
47
54
  export declare class UpdateAttributeGroupCommand extends $Command<UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
48
55
  readonly input: UpdateAttributeGroupCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: UpdateAttributeGroupCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from ServiceCatalogAppRegistry service.
4
6
  */
5
7
  export declare class ServiceCatalogAppRegistryServiceException extends __ServiceException {