@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
@@ -25,10 +25,12 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
25
25
  import { UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput } from "./commands/UpdateAttributeGroupCommand";
26
26
  import { ServiceCatalogAppRegistryClient } from "./ServiceCatalogAppRegistryClient";
27
27
  /**
28
+ * @public
28
29
  * <p> Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise.</p>
29
30
  */
30
31
  export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient {
31
32
  /**
33
+ * @public
32
34
  * <p>Associates an attribute group with an application to augment the application's metadata
33
35
  * with the group's attributes. This feature enables applications to be described with
34
36
  * user-defined details that are machine-readable, such as third-party integrations.</p>
@@ -37,18 +39,21 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
37
39
  associateAttributeGroup(args: AssociateAttributeGroupCommandInput, cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void): void;
38
40
  associateAttributeGroup(args: AssociateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void): void;
39
41
  /**
42
+ * @public
40
43
  * <p>Associates a resource with an application. Both the resource and the application can be specified either by ID or name.</p>
41
44
  */
42
45
  associateResource(args: AssociateResourceCommandInput, options?: __HttpHandlerOptions): Promise<AssociateResourceCommandOutput>;
43
46
  associateResource(args: AssociateResourceCommandInput, cb: (err: any, data?: AssociateResourceCommandOutput) => void): void;
44
47
  associateResource(args: AssociateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateResourceCommandOutput) => void): void;
45
48
  /**
49
+ * @public
46
50
  * <p>Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.</p>
47
51
  */
48
52
  createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
49
53
  createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
50
54
  createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
51
55
  /**
56
+ * @public
52
57
  * <p>Creates a new attribute group as a container for user-defined attributes. This feature
53
58
  * enables users to have full control over their cloud application's metadata in a rich
54
59
  * machine-readable format to facilitate integration with automated workflows and third-party
@@ -58,48 +63,56 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
58
63
  createAttributeGroup(args: CreateAttributeGroupCommandInput, cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void): void;
59
64
  createAttributeGroup(args: CreateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void): void;
60
65
  /**
66
+ * @public
61
67
  * <p>Deletes an application that is specified either by its application ID or name. All associated attribute groups and resources must be disassociated from it before deleting an application.</p>
62
68
  */
63
69
  deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
64
70
  deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
65
71
  deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
66
72
  /**
73
+ * @public
67
74
  * <p>Deletes an attribute group, specified either by its attribute group ID or name.</p>
68
75
  */
69
76
  deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAttributeGroupCommandOutput>;
70
77
  deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void): void;
71
78
  deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void): void;
72
79
  /**
80
+ * @public
73
81
  * <p>Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata. This operation reverts <code>AssociateAttributeGroup</code>.</p>
74
82
  */
75
83
  disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAttributeGroupCommandOutput>;
76
84
  disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void): void;
77
85
  disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void): void;
78
86
  /**
87
+ * @public
79
88
  * <p>Disassociates a resource from application. Both the resource and the application can be specified either by ID or name.</p>
80
89
  */
81
90
  disassociateResource(args: DisassociateResourceCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateResourceCommandOutput>;
82
91
  disassociateResource(args: DisassociateResourceCommandInput, cb: (err: any, data?: DisassociateResourceCommandOutput) => void): void;
83
92
  disassociateResource(args: DisassociateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateResourceCommandOutput) => void): void;
84
93
  /**
94
+ * @public
85
95
  * <p>Retrieves metadata information about one of your applications. The application can be specified either by its unique ID or by its name (which is unique within one account in one region at a given point in time). Specify by ID in automated workflows if you want to make sure that the exact same application is returned or a <code>ResourceNotFoundException</code> is thrown, avoiding the ABA addressing problem.</p>
86
96
  */
87
97
  getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
88
98
  getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
89
99
  getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
90
100
  /**
101
+ * @public
91
102
  * <p>Gets the resource associated with the application.</p>
92
103
  */
93
104
  getAssociatedResource(args: GetAssociatedResourceCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociatedResourceCommandOutput>;
94
105
  getAssociatedResource(args: GetAssociatedResourceCommandInput, cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void): void;
95
106
  getAssociatedResource(args: GetAssociatedResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void): void;
96
107
  /**
108
+ * @public
97
109
  * <p>Retrieves an attribute group, either by its name or its ID. The attribute group can be specified either by its unique ID or by its name.</p>
98
110
  */
99
111
  getAttributeGroup(args: GetAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetAttributeGroupCommandOutput>;
100
112
  getAttributeGroup(args: GetAttributeGroupCommandInput, cb: (err: any, data?: GetAttributeGroupCommandOutput) => void): void;
101
113
  getAttributeGroup(args: GetAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttributeGroupCommandOutput) => void): void;
102
114
  /**
115
+ * @public
103
116
  * <p>
104
117
  * Retrieves a <code>TagKey</code> configuration
105
118
  * from an account.
@@ -109,18 +122,21 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
109
122
  getConfiguration(args: GetConfigurationCommandInput, cb: (err: any, data?: GetConfigurationCommandOutput) => void): void;
110
123
  getConfiguration(args: GetConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationCommandOutput) => void): void;
111
124
  /**
125
+ * @public
112
126
  * <p>Retrieves a list of all of your applications. Results are paginated.</p>
113
127
  */
114
128
  listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
115
129
  listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
116
130
  listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
117
131
  /**
132
+ * @public
118
133
  * <p>Lists all attribute groups that are associated with specified application. Results are paginated.</p>
119
134
  */
120
135
  listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociatedAttributeGroupsCommandOutput>;
121
136
  listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void): void;
122
137
  listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void): void;
123
138
  /**
139
+ * @public
124
140
  * <p>
125
141
  * Lists all
126
142
  * of the resources
@@ -147,24 +163,28 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
147
163
  listAssociatedResources(args: ListAssociatedResourcesCommandInput, cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void): void;
148
164
  listAssociatedResources(args: ListAssociatedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void): void;
149
165
  /**
166
+ * @public
150
167
  * <p>Lists all attribute groups which you have access to. Results are paginated.</p>
151
168
  */
152
169
  listAttributeGroups(args: ListAttributeGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListAttributeGroupsCommandOutput>;
153
170
  listAttributeGroups(args: ListAttributeGroupsCommandInput, cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void): void;
154
171
  listAttributeGroups(args: ListAttributeGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void): void;
155
172
  /**
173
+ * @public
156
174
  * <p>Lists the details of all attribute groups associated with a specific application. The results display in pages.</p>
157
175
  */
158
176
  listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, options?: __HttpHandlerOptions): Promise<ListAttributeGroupsForApplicationCommandOutput>;
159
177
  listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, cb: (err: any, data?: ListAttributeGroupsForApplicationCommandOutput) => void): void;
160
178
  listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttributeGroupsForApplicationCommandOutput) => void): void;
161
179
  /**
180
+ * @public
162
181
  * <p>Lists all of the tags on the resource.</p>
163
182
  */
164
183
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
165
184
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
166
185
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
167
186
  /**
187
+ * @public
168
188
  * <p>
169
189
  * Associates a <code>TagKey</code> configuration
170
190
  * to an account.
@@ -174,6 +194,7 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
174
194
  putConfiguration(args: PutConfigurationCommandInput, cb: (err: any, data?: PutConfigurationCommandOutput) => void): void;
175
195
  putConfiguration(args: PutConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutConfigurationCommandOutput) => void): void;
176
196
  /**
197
+ * @public
177
198
  * <p>Syncs the resource with current AppRegistry records.</p>
178
199
  * <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>
179
200
  */
@@ -181,6 +202,7 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
181
202
  syncResource(args: SyncResourceCommandInput, cb: (err: any, data?: SyncResourceCommandOutput) => void): void;
182
203
  syncResource(args: SyncResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SyncResourceCommandOutput) => void): void;
183
204
  /**
205
+ * @public
184
206
  * <p>Assigns one or more tags (key-value pairs) to the specified resource.</p>
185
207
  * <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>
186
208
  * <p>This operation returns an empty response if the call was successful.</p>
@@ -189,6 +211,7 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
189
211
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
190
212
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
191
213
  /**
214
+ * @public
192
215
  * <p>Removes tags from a resource.</p>
193
216
  * <p>This operation returns an empty response if the call was successful.</p>
194
217
  */
@@ -196,12 +219,14 @@ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistry
196
219
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
197
220
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
198
221
  /**
222
+ * @public
199
223
  * <p>Updates an existing application with new attributes.</p>
200
224
  */
201
225
  updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
202
226
  updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
203
227
  updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
204
228
  /**
229
+ * @public
205
230
  * <p>Updates an existing attribute group with new details. </p>
206
231
  */
207
232
  updateAttributeGroup(args: UpdateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttributeGroupCommandOutput>;
@@ -32,15 +32,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
32
32
  import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
33
33
  import { UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput } from "./commands/UpdateAttributeGroupCommand";
34
34
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
35
+ /**
36
+ * @public
37
+ */
35
38
  export type ServiceInputTypes = AssociateAttributeGroupCommandInput | AssociateResourceCommandInput | CreateApplicationCommandInput | CreateAttributeGroupCommandInput | DeleteApplicationCommandInput | DeleteAttributeGroupCommandInput | DisassociateAttributeGroupCommandInput | DisassociateResourceCommandInput | GetApplicationCommandInput | GetAssociatedResourceCommandInput | GetAttributeGroupCommandInput | GetConfigurationCommandInput | ListApplicationsCommandInput | ListAssociatedAttributeGroupsCommandInput | ListAssociatedResourcesCommandInput | ListAttributeGroupsCommandInput | ListAttributeGroupsForApplicationCommandInput | ListTagsForResourceCommandInput | PutConfigurationCommandInput | SyncResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateAttributeGroupCommandInput;
39
+ /**
40
+ * @public
41
+ */
36
42
  export type ServiceOutputTypes = AssociateAttributeGroupCommandOutput | AssociateResourceCommandOutput | CreateApplicationCommandOutput | CreateAttributeGroupCommandOutput | DeleteApplicationCommandOutput | DeleteAttributeGroupCommandOutput | DisassociateAttributeGroupCommandOutput | DisassociateResourceCommandOutput | GetApplicationCommandOutput | GetAssociatedResourceCommandOutput | GetAttributeGroupCommandOutput | GetConfigurationCommandOutput | ListApplicationsCommandOutput | ListAssociatedAttributeGroupsCommandOutput | ListAssociatedResourcesCommandOutput | ListAttributeGroupsCommandOutput | ListAttributeGroupsForApplicationCommandOutput | ListTagsForResourceCommandOutput | PutConfigurationCommandOutput | SyncResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateAttributeGroupCommandOutput;
43
+ /**
44
+ * @public
45
+ */
37
46
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
38
47
  /**
39
48
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
40
49
  */
41
50
  requestHandler?: __HttpHandler;
42
51
  /**
43
- * A constructor for a class implementing the {@link __Checksum} interface
52
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
44
53
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
45
54
  * @internal
46
55
  */
@@ -130,23 +139,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
130
139
  */
131
140
  logger?: __Logger;
132
141
  /**
133
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
142
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
134
143
  */
135
144
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
136
145
  }
146
+ /**
147
+ * @public
148
+ */
137
149
  type ServiceCatalogAppRegistryClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
138
150
  /**
139
- * The configuration interface of ServiceCatalogAppRegistryClient class constructor that set the region, credentials and other options.
151
+ * @public
152
+ *
153
+ * The configuration interface of ServiceCatalogAppRegistryClient class constructor that set the region, credentials and other options.
140
154
  */
141
155
  export interface ServiceCatalogAppRegistryClientConfig extends ServiceCatalogAppRegistryClientConfigType {
142
156
  }
157
+ /**
158
+ * @public
159
+ */
143
160
  type ServiceCatalogAppRegistryClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
144
161
  /**
145
- * The resolved configuration interface of ServiceCatalogAppRegistryClient class. This is resolved and normalized from the {@link ServiceCatalogAppRegistryClientConfig | constructor configuration interface}.
162
+ * @public
163
+ *
164
+ * The resolved configuration interface of ServiceCatalogAppRegistryClient class. This is resolved and normalized from the {@link ServiceCatalogAppRegistryClientConfig | constructor configuration interface}.
146
165
  */
147
166
  export interface ServiceCatalogAppRegistryClientResolvedConfig extends ServiceCatalogAppRegistryClientResolvedConfigType {
148
167
  }
149
168
  /**
169
+ * @public
150
170
  * <p> Amazon Web Services Service Catalog AppRegistry enables organizations to understand the application context of their Amazon Web Services resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise.</p>
151
171
  */
152
172
  export declare class ServiceCatalogAppRegistryClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ServiceCatalogAppRegistryClientResolvedConfig> {
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AssociateAttributeGroupRequest, AssociateAttributeGroupResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AssociateAttributeGroupCommand}.
8
10
  */
9
11
  export interface AssociateAttributeGroupCommandInput extends AssociateAttributeGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AssociateAttributeGroupCommand}.
13
17
  */
14
18
  export interface AssociateAttributeGroupCommandOutput extends AssociateAttributeGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates an attribute group with an application to augment the application's metadata
18
23
  * with the group's attributes. This feature enables applications to be described with
19
24
  * user-defined details that are machine-readable, such as third-party integrations.</p>
@@ -27,6 +32,8 @@ export interface AssociateAttributeGroupCommandOutput extends AssociateAttribute
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param AssociateAttributeGroupCommandInput - {@link AssociateAttributeGroupCommandInput}
36
+ * @returns {@link AssociateAttributeGroupCommandOutput}
30
37
  * @see {@link AssociateAttributeGroupCommandInput} for command's `input` shape.
31
38
  * @see {@link AssociateAttributeGroupCommandOutput} for command's `response` shape.
32
39
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -52,11 +59,20 @@ export interface AssociateAttributeGroupCommandOutput extends AssociateAttribute
52
59
  export declare class AssociateAttributeGroupCommand extends $Command<AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
53
60
  readonly input: AssociateAttributeGroupCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: AssociateAttributeGroupCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AssociateResourceRequest, AssociateResourceResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AssociateResourceCommand}.
8
10
  */
9
11
  export interface AssociateResourceCommandInput extends AssociateResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AssociateResourceCommand}.
13
17
  */
14
18
  export interface AssociateResourceCommandOutput extends AssociateResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates a resource with an application. Both the resource and the application can be specified either by ID or name.</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 AssociateResourceCommandOutput extends AssociateResourceRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param AssociateResourceCommandInput - {@link AssociateResourceCommandInput}
34
+ * @returns {@link AssociateResourceCommandOutput}
28
35
  * @see {@link AssociateResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link AssociateResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -50,11 +57,20 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
50
57
  export declare class AssociateResourceCommand extends $Command<AssociateResourceCommandInput, AssociateResourceCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
51
58
  readonly input: AssociateResourceCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: AssociateResourceCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateResourceCommandInput, AssociateResourceCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateApplicationCommand}.
8
10
  */
9
11
  export interface CreateApplicationCommandInput extends CreateApplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateApplicationCommand}.
13
17
  */
14
18
  export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.</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 CreateApplicationCommandOutput extends CreateApplicationRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
34
+ * @returns {@link CreateApplicationCommandOutput}
28
35
  * @see {@link CreateApplicationCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateApplicationCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -47,11 +54,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
47
54
  export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
48
55
  readonly input: CreateApplicationCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: CreateApplicationCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
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 { CreateAttributeGroupRequest, CreateAttributeGroupResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateAttributeGroupCommand}.
8
10
  */
9
11
  export interface CreateAttributeGroupCommandInput extends CreateAttributeGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateAttributeGroupCommand}.
13
17
  */
14
18
  export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a new attribute group as a container for user-defined attributes. This feature
18
23
  * enables users to have full control over their cloud application's metadata in a rich
19
24
  * machine-readable format to facilitate integration with automated workflows and third-party
@@ -28,6 +33,8 @@ export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupR
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param CreateAttributeGroupCommandInput - {@link CreateAttributeGroupCommandInput}
37
+ * @returns {@link CreateAttributeGroupCommandOutput}
31
38
  * @see {@link CreateAttributeGroupCommandInput} for command's `input` shape.
32
39
  * @see {@link CreateAttributeGroupCommandOutput} for command's `response` shape.
33
40
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -50,11 +57,20 @@ export interface CreateAttributeGroupCommandOutput extends CreateAttributeGroupR
50
57
  export declare class CreateAttributeGroupCommand extends $Command<CreateAttributeGroupCommandInput, CreateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
51
58
  readonly input: CreateAttributeGroupCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: CreateAttributeGroupCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAttributeGroupCommandInput, CreateAttributeGroupCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteApplicationCommand}.
8
10
  */
9
11
  export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteApplicationCommand}.
13
17
  */
14
18
  export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an application that is specified either by its application ID or name. All associated attribute groups and resources must be disassociated from it before deleting an application.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
34
+ * @returns {@link DeleteApplicationCommandOutput}
28
35
  * @see {@link DeleteApplicationCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
43
50
  export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
44
51
  readonly input: DeleteApplicationCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DeleteApplicationCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeleteAttributeGroupRequest, DeleteAttributeGroupResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteAttributeGroupCommand}.
8
10
  */
9
11
  export interface DeleteAttributeGroupCommandInput extends DeleteAttributeGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteAttributeGroupCommand}.
13
17
  */
14
18
  export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an attribute group, specified either by its attribute group ID or name.</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 DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteAttributeGroupCommandInput - {@link DeleteAttributeGroupCommandInput}
34
+ * @returns {@link DeleteAttributeGroupCommandOutput}
28
35
  * @see {@link DeleteAttributeGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteAttributeGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DeleteAttributeGroupCommandOutput extends DeleteAttributeGroupR
43
50
  export declare class DeleteAttributeGroupCommand extends $Command<DeleteAttributeGroupCommandInput, DeleteAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
44
51
  readonly input: DeleteAttributeGroupCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DeleteAttributeGroupCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAttributeGroupCommandInput, DeleteAttributeGroupCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DisassociateAttributeGroupRequest, DisassociateAttributeGroupResponse } from "../models/models_0";
5
5
  import { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogAppRegistryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisassociateAttributeGroupCommand}.
8
10
  */
9
11
  export interface DisassociateAttributeGroupCommandInput extends DisassociateAttributeGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisassociateAttributeGroupCommand}.
13
17
  */
14
18
  export interface DisassociateAttributeGroupCommandOutput extends DisassociateAttributeGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata. This operation reverts <code>AssociateAttributeGroup</code>.</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 DisassociateAttributeGroupCommandOutput extends DisassociateAtt
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DisassociateAttributeGroupCommandInput - {@link DisassociateAttributeGroupCommandInput}
34
+ * @returns {@link DisassociateAttributeGroupCommandOutput}
28
35
  * @see {@link DisassociateAttributeGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link DisassociateAttributeGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceCatalogAppRegistryClientResolvedConfig | config} for ServiceCatalogAppRegistryClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DisassociateAttributeGroupCommandOutput extends DisassociateAtt
43
50
  export declare class DisassociateAttributeGroupCommand extends $Command<DisassociateAttributeGroupCommandInput, DisassociateAttributeGroupCommandOutput, ServiceCatalogAppRegistryClientResolvedConfig> {
44
51
  readonly input: DisassociateAttributeGroupCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DisassociateAttributeGroupCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceCatalogAppRegistryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateAttributeGroupCommandInput, DisassociateAttributeGroupCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }