@aws-sdk/client-service-catalog-appregistry 3.168.0 → 3.170.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 (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +406 -115
  3. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +262 -95
  4. package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  21. package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/index.d.ts +22 -22
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  28. package/dist-types/ts3.4/index.d.ts +6 -6
  29. package/dist-types/ts3.4/models/ServiceCatalogAppRegistryServiceException.d.ts +8 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +610 -556
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  33. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/ListAssociatedAttributeGroupsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/ListAssociatedResourcesPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListAttributeGroupsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  44. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
@@ -1,115 +1,406 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput } from "./commands/AssociateAttributeGroupCommand";
3
- import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "./commands/AssociateResourceCommand";
4
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
5
- import { CreateAttributeGroupCommandInput, CreateAttributeGroupCommandOutput } from "./commands/CreateAttributeGroupCommand";
6
- import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
7
- import { DeleteAttributeGroupCommandInput, DeleteAttributeGroupCommandOutput } from "./commands/DeleteAttributeGroupCommand";
8
- import { DisassociateAttributeGroupCommandInput, DisassociateAttributeGroupCommandOutput } from "./commands/DisassociateAttributeGroupCommand";
9
- import { DisassociateResourceCommandInput, DisassociateResourceCommandOutput } from "./commands/DisassociateResourceCommand";
10
- import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
11
- import { GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput } from "./commands/GetAssociatedResourceCommand";
12
- import { GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput } from "./commands/GetAttributeGroupCommand";
13
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
14
- import { ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput } from "./commands/ListAssociatedAttributeGroupsCommand";
15
- import { ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput } from "./commands/ListAssociatedResourcesCommand";
16
- import { ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput } from "./commands/ListAttributeGroupsCommand";
17
- import { ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput } from "./commands/ListAttributeGroupsForApplicationCommand";
18
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
19
- import { SyncResourceCommandInput, SyncResourceCommandOutput } from "./commands/SyncResourceCommand";
20
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
22
- import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
23
- import { UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput } from "./commands/UpdateAttributeGroupCommand";
24
- import { ServiceCatalogAppRegistryClient } from "./ServiceCatalogAppRegistryClient";
25
-
26
- export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient {
27
-
28
- associateAttributeGroup(args: AssociateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociateAttributeGroupCommandOutput>;
29
- associateAttributeGroup(args: AssociateAttributeGroupCommandInput, cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void): void;
30
- associateAttributeGroup(args: AssociateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void): void;
31
-
32
- associateResource(args: AssociateResourceCommandInput, options?: __HttpHandlerOptions): Promise<AssociateResourceCommandOutput>;
33
- associateResource(args: AssociateResourceCommandInput, cb: (err: any, data?: AssociateResourceCommandOutput) => void): void;
34
- associateResource(args: AssociateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateResourceCommandOutput) => void): void;
35
-
36
- createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
37
- createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
38
- createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
39
-
40
- createAttributeGroup(args: CreateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateAttributeGroupCommandOutput>;
41
- createAttributeGroup(args: CreateAttributeGroupCommandInput, cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void): void;
42
- createAttributeGroup(args: CreateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void): void;
43
-
44
- deleteApplication(args: DeleteApplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteApplicationCommandOutput>;
45
- deleteApplication(args: DeleteApplicationCommandInput, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
46
- deleteApplication(args: DeleteApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteApplicationCommandOutput) => void): void;
47
-
48
- deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAttributeGroupCommandOutput>;
49
- deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void): void;
50
- deleteAttributeGroup(args: DeleteAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void): void;
51
-
52
- disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateAttributeGroupCommandOutput>;
53
- disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void): void;
54
- disassociateAttributeGroup(args: DisassociateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void): void;
55
-
56
- disassociateResource(args: DisassociateResourceCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateResourceCommandOutput>;
57
- disassociateResource(args: DisassociateResourceCommandInput, cb: (err: any, data?: DisassociateResourceCommandOutput) => void): void;
58
- disassociateResource(args: DisassociateResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateResourceCommandOutput) => void): void;
59
-
60
- getApplication(args: GetApplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetApplicationCommandOutput>;
61
- getApplication(args: GetApplicationCommandInput, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
62
- getApplication(args: GetApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetApplicationCommandOutput) => void): void;
63
-
64
- getAssociatedResource(args: GetAssociatedResourceCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociatedResourceCommandOutput>;
65
- getAssociatedResource(args: GetAssociatedResourceCommandInput, cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void): void;
66
- getAssociatedResource(args: GetAssociatedResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void): void;
67
-
68
- getAttributeGroup(args: GetAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetAttributeGroupCommandOutput>;
69
- getAttributeGroup(args: GetAttributeGroupCommandInput, cb: (err: any, data?: GetAttributeGroupCommandOutput) => void): void;
70
- getAttributeGroup(args: GetAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttributeGroupCommandOutput) => void): void;
71
-
72
- listApplications(args: ListApplicationsCommandInput, options?: __HttpHandlerOptions): Promise<ListApplicationsCommandOutput>;
73
- listApplications(args: ListApplicationsCommandInput, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
74
- listApplications(args: ListApplicationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListApplicationsCommandOutput) => void): void;
75
-
76
- listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociatedAttributeGroupsCommandOutput>;
77
- listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void): void;
78
- listAssociatedAttributeGroups(args: ListAssociatedAttributeGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void): void;
79
-
80
- listAssociatedResources(args: ListAssociatedResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociatedResourcesCommandOutput>;
81
- listAssociatedResources(args: ListAssociatedResourcesCommandInput, cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void): void;
82
- listAssociatedResources(args: ListAssociatedResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void): void;
83
-
84
- listAttributeGroups(args: ListAttributeGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListAttributeGroupsCommandOutput>;
85
- listAttributeGroups(args: ListAttributeGroupsCommandInput, cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void): void;
86
- listAttributeGroups(args: ListAttributeGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void): void;
87
-
88
- listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, options?: __HttpHandlerOptions): Promise<ListAttributeGroupsForApplicationCommandOutput>;
89
- listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, cb: (err: any, data?: ListAttributeGroupsForApplicationCommandOutput) => void): void;
90
- listAttributeGroupsForApplication(args: ListAttributeGroupsForApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttributeGroupsForApplicationCommandOutput) => void): void;
91
-
92
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
93
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
94
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
95
-
96
- syncResource(args: SyncResourceCommandInput, options?: __HttpHandlerOptions): Promise<SyncResourceCommandOutput>;
97
- syncResource(args: SyncResourceCommandInput, cb: (err: any, data?: SyncResourceCommandOutput) => void): void;
98
- syncResource(args: SyncResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SyncResourceCommandOutput) => void): void;
99
-
100
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
101
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
102
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
103
-
104
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
105
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
106
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
107
-
108
- updateApplication(args: UpdateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationCommandOutput>;
109
- updateApplication(args: UpdateApplicationCommandInput, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
110
- updateApplication(args: UpdateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationCommandOutput) => void): void;
111
-
112
- updateAttributeGroup(args: UpdateAttributeGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttributeGroupCommandOutput>;
113
- updateAttributeGroup(args: UpdateAttributeGroupCommandInput, cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void): void;
114
- updateAttributeGroup(args: UpdateAttributeGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void): void;
115
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ AssociateAttributeGroupCommandInput,
4
+ AssociateAttributeGroupCommandOutput,
5
+ } from "./commands/AssociateAttributeGroupCommand";
6
+ import {
7
+ AssociateResourceCommandInput,
8
+ AssociateResourceCommandOutput,
9
+ } from "./commands/AssociateResourceCommand";
10
+ import {
11
+ CreateApplicationCommandInput,
12
+ CreateApplicationCommandOutput,
13
+ } from "./commands/CreateApplicationCommand";
14
+ import {
15
+ CreateAttributeGroupCommandInput,
16
+ CreateAttributeGroupCommandOutput,
17
+ } from "./commands/CreateAttributeGroupCommand";
18
+ import {
19
+ DeleteApplicationCommandInput,
20
+ DeleteApplicationCommandOutput,
21
+ } from "./commands/DeleteApplicationCommand";
22
+ import {
23
+ DeleteAttributeGroupCommandInput,
24
+ DeleteAttributeGroupCommandOutput,
25
+ } from "./commands/DeleteAttributeGroupCommand";
26
+ import {
27
+ DisassociateAttributeGroupCommandInput,
28
+ DisassociateAttributeGroupCommandOutput,
29
+ } from "./commands/DisassociateAttributeGroupCommand";
30
+ import {
31
+ DisassociateResourceCommandInput,
32
+ DisassociateResourceCommandOutput,
33
+ } from "./commands/DisassociateResourceCommand";
34
+ import {
35
+ GetApplicationCommandInput,
36
+ GetApplicationCommandOutput,
37
+ } from "./commands/GetApplicationCommand";
38
+ import {
39
+ GetAssociatedResourceCommandInput,
40
+ GetAssociatedResourceCommandOutput,
41
+ } from "./commands/GetAssociatedResourceCommand";
42
+ import {
43
+ GetAttributeGroupCommandInput,
44
+ GetAttributeGroupCommandOutput,
45
+ } from "./commands/GetAttributeGroupCommand";
46
+ import {
47
+ ListApplicationsCommandInput,
48
+ ListApplicationsCommandOutput,
49
+ } from "./commands/ListApplicationsCommand";
50
+ import {
51
+ ListAssociatedAttributeGroupsCommandInput,
52
+ ListAssociatedAttributeGroupsCommandOutput,
53
+ } from "./commands/ListAssociatedAttributeGroupsCommand";
54
+ import {
55
+ ListAssociatedResourcesCommandInput,
56
+ ListAssociatedResourcesCommandOutput,
57
+ } from "./commands/ListAssociatedResourcesCommand";
58
+ import {
59
+ ListAttributeGroupsCommandInput,
60
+ ListAttributeGroupsCommandOutput,
61
+ } from "./commands/ListAttributeGroupsCommand";
62
+ import {
63
+ ListAttributeGroupsForApplicationCommandInput,
64
+ ListAttributeGroupsForApplicationCommandOutput,
65
+ } from "./commands/ListAttributeGroupsForApplicationCommand";
66
+ import {
67
+ ListTagsForResourceCommandInput,
68
+ ListTagsForResourceCommandOutput,
69
+ } from "./commands/ListTagsForResourceCommand";
70
+ import {
71
+ SyncResourceCommandInput,
72
+ SyncResourceCommandOutput,
73
+ } from "./commands/SyncResourceCommand";
74
+ import {
75
+ TagResourceCommandInput,
76
+ TagResourceCommandOutput,
77
+ } from "./commands/TagResourceCommand";
78
+ import {
79
+ UntagResourceCommandInput,
80
+ UntagResourceCommandOutput,
81
+ } from "./commands/UntagResourceCommand";
82
+ import {
83
+ UpdateApplicationCommandInput,
84
+ UpdateApplicationCommandOutput,
85
+ } from "./commands/UpdateApplicationCommand";
86
+ import {
87
+ UpdateAttributeGroupCommandInput,
88
+ UpdateAttributeGroupCommandOutput,
89
+ } from "./commands/UpdateAttributeGroupCommand";
90
+ import { ServiceCatalogAppRegistryClient } from "./ServiceCatalogAppRegistryClient";
91
+
92
+ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient {
93
+ associateAttributeGroup(
94
+ args: AssociateAttributeGroupCommandInput,
95
+ options?: __HttpHandlerOptions
96
+ ): Promise<AssociateAttributeGroupCommandOutput>;
97
+ associateAttributeGroup(
98
+ args: AssociateAttributeGroupCommandInput,
99
+ cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void
100
+ ): void;
101
+ associateAttributeGroup(
102
+ args: AssociateAttributeGroupCommandInput,
103
+ options: __HttpHandlerOptions,
104
+ cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void
105
+ ): void;
106
+
107
+ associateResource(
108
+ args: AssociateResourceCommandInput,
109
+ options?: __HttpHandlerOptions
110
+ ): Promise<AssociateResourceCommandOutput>;
111
+ associateResource(
112
+ args: AssociateResourceCommandInput,
113
+ cb: (err: any, data?: AssociateResourceCommandOutput) => void
114
+ ): void;
115
+ associateResource(
116
+ args: AssociateResourceCommandInput,
117
+ options: __HttpHandlerOptions,
118
+ cb: (err: any, data?: AssociateResourceCommandOutput) => void
119
+ ): void;
120
+
121
+ createApplication(
122
+ args: CreateApplicationCommandInput,
123
+ options?: __HttpHandlerOptions
124
+ ): Promise<CreateApplicationCommandOutput>;
125
+ createApplication(
126
+ args: CreateApplicationCommandInput,
127
+ cb: (err: any, data?: CreateApplicationCommandOutput) => void
128
+ ): void;
129
+ createApplication(
130
+ args: CreateApplicationCommandInput,
131
+ options: __HttpHandlerOptions,
132
+ cb: (err: any, data?: CreateApplicationCommandOutput) => void
133
+ ): void;
134
+
135
+ createAttributeGroup(
136
+ args: CreateAttributeGroupCommandInput,
137
+ options?: __HttpHandlerOptions
138
+ ): Promise<CreateAttributeGroupCommandOutput>;
139
+ createAttributeGroup(
140
+ args: CreateAttributeGroupCommandInput,
141
+ cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void
142
+ ): void;
143
+ createAttributeGroup(
144
+ args: CreateAttributeGroupCommandInput,
145
+ options: __HttpHandlerOptions,
146
+ cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void
147
+ ): void;
148
+
149
+ deleteApplication(
150
+ args: DeleteApplicationCommandInput,
151
+ options?: __HttpHandlerOptions
152
+ ): Promise<DeleteApplicationCommandOutput>;
153
+ deleteApplication(
154
+ args: DeleteApplicationCommandInput,
155
+ cb: (err: any, data?: DeleteApplicationCommandOutput) => void
156
+ ): void;
157
+ deleteApplication(
158
+ args: DeleteApplicationCommandInput,
159
+ options: __HttpHandlerOptions,
160
+ cb: (err: any, data?: DeleteApplicationCommandOutput) => void
161
+ ): void;
162
+
163
+ deleteAttributeGroup(
164
+ args: DeleteAttributeGroupCommandInput,
165
+ options?: __HttpHandlerOptions
166
+ ): Promise<DeleteAttributeGroupCommandOutput>;
167
+ deleteAttributeGroup(
168
+ args: DeleteAttributeGroupCommandInput,
169
+ cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void
170
+ ): void;
171
+ deleteAttributeGroup(
172
+ args: DeleteAttributeGroupCommandInput,
173
+ options: __HttpHandlerOptions,
174
+ cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void
175
+ ): void;
176
+
177
+ disassociateAttributeGroup(
178
+ args: DisassociateAttributeGroupCommandInput,
179
+ options?: __HttpHandlerOptions
180
+ ): Promise<DisassociateAttributeGroupCommandOutput>;
181
+ disassociateAttributeGroup(
182
+ args: DisassociateAttributeGroupCommandInput,
183
+ cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void
184
+ ): void;
185
+ disassociateAttributeGroup(
186
+ args: DisassociateAttributeGroupCommandInput,
187
+ options: __HttpHandlerOptions,
188
+ cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void
189
+ ): void;
190
+
191
+ disassociateResource(
192
+ args: DisassociateResourceCommandInput,
193
+ options?: __HttpHandlerOptions
194
+ ): Promise<DisassociateResourceCommandOutput>;
195
+ disassociateResource(
196
+ args: DisassociateResourceCommandInput,
197
+ cb: (err: any, data?: DisassociateResourceCommandOutput) => void
198
+ ): void;
199
+ disassociateResource(
200
+ args: DisassociateResourceCommandInput,
201
+ options: __HttpHandlerOptions,
202
+ cb: (err: any, data?: DisassociateResourceCommandOutput) => void
203
+ ): void;
204
+
205
+ getApplication(
206
+ args: GetApplicationCommandInput,
207
+ options?: __HttpHandlerOptions
208
+ ): Promise<GetApplicationCommandOutput>;
209
+ getApplication(
210
+ args: GetApplicationCommandInput,
211
+ cb: (err: any, data?: GetApplicationCommandOutput) => void
212
+ ): void;
213
+ getApplication(
214
+ args: GetApplicationCommandInput,
215
+ options: __HttpHandlerOptions,
216
+ cb: (err: any, data?: GetApplicationCommandOutput) => void
217
+ ): void;
218
+
219
+ getAssociatedResource(
220
+ args: GetAssociatedResourceCommandInput,
221
+ options?: __HttpHandlerOptions
222
+ ): Promise<GetAssociatedResourceCommandOutput>;
223
+ getAssociatedResource(
224
+ args: GetAssociatedResourceCommandInput,
225
+ cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void
226
+ ): void;
227
+ getAssociatedResource(
228
+ args: GetAssociatedResourceCommandInput,
229
+ options: __HttpHandlerOptions,
230
+ cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void
231
+ ): void;
232
+
233
+ getAttributeGroup(
234
+ args: GetAttributeGroupCommandInput,
235
+ options?: __HttpHandlerOptions
236
+ ): Promise<GetAttributeGroupCommandOutput>;
237
+ getAttributeGroup(
238
+ args: GetAttributeGroupCommandInput,
239
+ cb: (err: any, data?: GetAttributeGroupCommandOutput) => void
240
+ ): void;
241
+ getAttributeGroup(
242
+ args: GetAttributeGroupCommandInput,
243
+ options: __HttpHandlerOptions,
244
+ cb: (err: any, data?: GetAttributeGroupCommandOutput) => void
245
+ ): void;
246
+
247
+ listApplications(
248
+ args: ListApplicationsCommandInput,
249
+ options?: __HttpHandlerOptions
250
+ ): Promise<ListApplicationsCommandOutput>;
251
+ listApplications(
252
+ args: ListApplicationsCommandInput,
253
+ cb: (err: any, data?: ListApplicationsCommandOutput) => void
254
+ ): void;
255
+ listApplications(
256
+ args: ListApplicationsCommandInput,
257
+ options: __HttpHandlerOptions,
258
+ cb: (err: any, data?: ListApplicationsCommandOutput) => void
259
+ ): void;
260
+
261
+ listAssociatedAttributeGroups(
262
+ args: ListAssociatedAttributeGroupsCommandInput,
263
+ options?: __HttpHandlerOptions
264
+ ): Promise<ListAssociatedAttributeGroupsCommandOutput>;
265
+ listAssociatedAttributeGroups(
266
+ args: ListAssociatedAttributeGroupsCommandInput,
267
+ cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void
268
+ ): void;
269
+ listAssociatedAttributeGroups(
270
+ args: ListAssociatedAttributeGroupsCommandInput,
271
+ options: __HttpHandlerOptions,
272
+ cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void
273
+ ): void;
274
+
275
+ listAssociatedResources(
276
+ args: ListAssociatedResourcesCommandInput,
277
+ options?: __HttpHandlerOptions
278
+ ): Promise<ListAssociatedResourcesCommandOutput>;
279
+ listAssociatedResources(
280
+ args: ListAssociatedResourcesCommandInput,
281
+ cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void
282
+ ): void;
283
+ listAssociatedResources(
284
+ args: ListAssociatedResourcesCommandInput,
285
+ options: __HttpHandlerOptions,
286
+ cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void
287
+ ): void;
288
+
289
+ listAttributeGroups(
290
+ args: ListAttributeGroupsCommandInput,
291
+ options?: __HttpHandlerOptions
292
+ ): Promise<ListAttributeGroupsCommandOutput>;
293
+ listAttributeGroups(
294
+ args: ListAttributeGroupsCommandInput,
295
+ cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void
296
+ ): void;
297
+ listAttributeGroups(
298
+ args: ListAttributeGroupsCommandInput,
299
+ options: __HttpHandlerOptions,
300
+ cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void
301
+ ): void;
302
+
303
+ listAttributeGroupsForApplication(
304
+ args: ListAttributeGroupsForApplicationCommandInput,
305
+ options?: __HttpHandlerOptions
306
+ ): Promise<ListAttributeGroupsForApplicationCommandOutput>;
307
+ listAttributeGroupsForApplication(
308
+ args: ListAttributeGroupsForApplicationCommandInput,
309
+ cb: (
310
+ err: any,
311
+ data?: ListAttributeGroupsForApplicationCommandOutput
312
+ ) => void
313
+ ): void;
314
+ listAttributeGroupsForApplication(
315
+ args: ListAttributeGroupsForApplicationCommandInput,
316
+ options: __HttpHandlerOptions,
317
+ cb: (
318
+ err: any,
319
+ data?: ListAttributeGroupsForApplicationCommandOutput
320
+ ) => void
321
+ ): void;
322
+
323
+ listTagsForResource(
324
+ args: ListTagsForResourceCommandInput,
325
+ options?: __HttpHandlerOptions
326
+ ): Promise<ListTagsForResourceCommandOutput>;
327
+ listTagsForResource(
328
+ args: ListTagsForResourceCommandInput,
329
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
330
+ ): void;
331
+ listTagsForResource(
332
+ args: ListTagsForResourceCommandInput,
333
+ options: __HttpHandlerOptions,
334
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
335
+ ): void;
336
+
337
+ syncResource(
338
+ args: SyncResourceCommandInput,
339
+ options?: __HttpHandlerOptions
340
+ ): Promise<SyncResourceCommandOutput>;
341
+ syncResource(
342
+ args: SyncResourceCommandInput,
343
+ cb: (err: any, data?: SyncResourceCommandOutput) => void
344
+ ): void;
345
+ syncResource(
346
+ args: SyncResourceCommandInput,
347
+ options: __HttpHandlerOptions,
348
+ cb: (err: any, data?: SyncResourceCommandOutput) => void
349
+ ): void;
350
+
351
+ tagResource(
352
+ args: TagResourceCommandInput,
353
+ options?: __HttpHandlerOptions
354
+ ): Promise<TagResourceCommandOutput>;
355
+ tagResource(
356
+ args: TagResourceCommandInput,
357
+ cb: (err: any, data?: TagResourceCommandOutput) => void
358
+ ): void;
359
+ tagResource(
360
+ args: TagResourceCommandInput,
361
+ options: __HttpHandlerOptions,
362
+ cb: (err: any, data?: TagResourceCommandOutput) => void
363
+ ): void;
364
+
365
+ untagResource(
366
+ args: UntagResourceCommandInput,
367
+ options?: __HttpHandlerOptions
368
+ ): Promise<UntagResourceCommandOutput>;
369
+ untagResource(
370
+ args: UntagResourceCommandInput,
371
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
372
+ ): void;
373
+ untagResource(
374
+ args: UntagResourceCommandInput,
375
+ options: __HttpHandlerOptions,
376
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
377
+ ): void;
378
+
379
+ updateApplication(
380
+ args: UpdateApplicationCommandInput,
381
+ options?: __HttpHandlerOptions
382
+ ): Promise<UpdateApplicationCommandOutput>;
383
+ updateApplication(
384
+ args: UpdateApplicationCommandInput,
385
+ cb: (err: any, data?: UpdateApplicationCommandOutput) => void
386
+ ): void;
387
+ updateApplication(
388
+ args: UpdateApplicationCommandInput,
389
+ options: __HttpHandlerOptions,
390
+ cb: (err: any, data?: UpdateApplicationCommandOutput) => void
391
+ ): void;
392
+
393
+ updateAttributeGroup(
394
+ args: UpdateAttributeGroupCommandInput,
395
+ options?: __HttpHandlerOptions
396
+ ): Promise<UpdateAttributeGroupCommandOutput>;
397
+ updateAttributeGroup(
398
+ args: UpdateAttributeGroupCommandInput,
399
+ cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void
400
+ ): void;
401
+ updateAttributeGroup(
402
+ args: UpdateAttributeGroupCommandInput,
403
+ options: __HttpHandlerOptions,
404
+ cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void
405
+ ): void;
406
+ }