@aws-sdk/client-service-catalog-appregistry 3.169.0 → 3.171.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 +384 -115
  3. package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +237 -95
  4. package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +39 -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 +7 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +449 -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 +67 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -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.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-service-catalog-appregistry
@@ -1,115 +1,384 @@
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
+ export declare class ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient {
92
+ associateAttributeGroup(
93
+ args: AssociateAttributeGroupCommandInput,
94
+ options?: __HttpHandlerOptions
95
+ ): Promise<AssociateAttributeGroupCommandOutput>;
96
+ associateAttributeGroup(
97
+ args: AssociateAttributeGroupCommandInput,
98
+ cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void
99
+ ): void;
100
+ associateAttributeGroup(
101
+ args: AssociateAttributeGroupCommandInput,
102
+ options: __HttpHandlerOptions,
103
+ cb: (err: any, data?: AssociateAttributeGroupCommandOutput) => void
104
+ ): void;
105
+ associateResource(
106
+ args: AssociateResourceCommandInput,
107
+ options?: __HttpHandlerOptions
108
+ ): Promise<AssociateResourceCommandOutput>;
109
+ associateResource(
110
+ args: AssociateResourceCommandInput,
111
+ cb: (err: any, data?: AssociateResourceCommandOutput) => void
112
+ ): void;
113
+ associateResource(
114
+ args: AssociateResourceCommandInput,
115
+ options: __HttpHandlerOptions,
116
+ cb: (err: any, data?: AssociateResourceCommandOutput) => void
117
+ ): void;
118
+ createApplication(
119
+ args: CreateApplicationCommandInput,
120
+ options?: __HttpHandlerOptions
121
+ ): Promise<CreateApplicationCommandOutput>;
122
+ createApplication(
123
+ args: CreateApplicationCommandInput,
124
+ cb: (err: any, data?: CreateApplicationCommandOutput) => void
125
+ ): void;
126
+ createApplication(
127
+ args: CreateApplicationCommandInput,
128
+ options: __HttpHandlerOptions,
129
+ cb: (err: any, data?: CreateApplicationCommandOutput) => void
130
+ ): void;
131
+ createAttributeGroup(
132
+ args: CreateAttributeGroupCommandInput,
133
+ options?: __HttpHandlerOptions
134
+ ): Promise<CreateAttributeGroupCommandOutput>;
135
+ createAttributeGroup(
136
+ args: CreateAttributeGroupCommandInput,
137
+ cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void
138
+ ): void;
139
+ createAttributeGroup(
140
+ args: CreateAttributeGroupCommandInput,
141
+ options: __HttpHandlerOptions,
142
+ cb: (err: any, data?: CreateAttributeGroupCommandOutput) => void
143
+ ): void;
144
+ deleteApplication(
145
+ args: DeleteApplicationCommandInput,
146
+ options?: __HttpHandlerOptions
147
+ ): Promise<DeleteApplicationCommandOutput>;
148
+ deleteApplication(
149
+ args: DeleteApplicationCommandInput,
150
+ cb: (err: any, data?: DeleteApplicationCommandOutput) => void
151
+ ): void;
152
+ deleteApplication(
153
+ args: DeleteApplicationCommandInput,
154
+ options: __HttpHandlerOptions,
155
+ cb: (err: any, data?: DeleteApplicationCommandOutput) => void
156
+ ): void;
157
+ deleteAttributeGroup(
158
+ args: DeleteAttributeGroupCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<DeleteAttributeGroupCommandOutput>;
161
+ deleteAttributeGroup(
162
+ args: DeleteAttributeGroupCommandInput,
163
+ cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void
164
+ ): void;
165
+ deleteAttributeGroup(
166
+ args: DeleteAttributeGroupCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: DeleteAttributeGroupCommandOutput) => void
169
+ ): void;
170
+ disassociateAttributeGroup(
171
+ args: DisassociateAttributeGroupCommandInput,
172
+ options?: __HttpHandlerOptions
173
+ ): Promise<DisassociateAttributeGroupCommandOutput>;
174
+ disassociateAttributeGroup(
175
+ args: DisassociateAttributeGroupCommandInput,
176
+ cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void
177
+ ): void;
178
+ disassociateAttributeGroup(
179
+ args: DisassociateAttributeGroupCommandInput,
180
+ options: __HttpHandlerOptions,
181
+ cb: (err: any, data?: DisassociateAttributeGroupCommandOutput) => void
182
+ ): void;
183
+ disassociateResource(
184
+ args: DisassociateResourceCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<DisassociateResourceCommandOutput>;
187
+ disassociateResource(
188
+ args: DisassociateResourceCommandInput,
189
+ cb: (err: any, data?: DisassociateResourceCommandOutput) => void
190
+ ): void;
191
+ disassociateResource(
192
+ args: DisassociateResourceCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: DisassociateResourceCommandOutput) => void
195
+ ): void;
196
+ getApplication(
197
+ args: GetApplicationCommandInput,
198
+ options?: __HttpHandlerOptions
199
+ ): Promise<GetApplicationCommandOutput>;
200
+ getApplication(
201
+ args: GetApplicationCommandInput,
202
+ cb: (err: any, data?: GetApplicationCommandOutput) => void
203
+ ): void;
204
+ getApplication(
205
+ args: GetApplicationCommandInput,
206
+ options: __HttpHandlerOptions,
207
+ cb: (err: any, data?: GetApplicationCommandOutput) => void
208
+ ): void;
209
+ getAssociatedResource(
210
+ args: GetAssociatedResourceCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<GetAssociatedResourceCommandOutput>;
213
+ getAssociatedResource(
214
+ args: GetAssociatedResourceCommandInput,
215
+ cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void
216
+ ): void;
217
+ getAssociatedResource(
218
+ args: GetAssociatedResourceCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: GetAssociatedResourceCommandOutput) => void
221
+ ): void;
222
+ getAttributeGroup(
223
+ args: GetAttributeGroupCommandInput,
224
+ options?: __HttpHandlerOptions
225
+ ): Promise<GetAttributeGroupCommandOutput>;
226
+ getAttributeGroup(
227
+ args: GetAttributeGroupCommandInput,
228
+ cb: (err: any, data?: GetAttributeGroupCommandOutput) => void
229
+ ): void;
230
+ getAttributeGroup(
231
+ args: GetAttributeGroupCommandInput,
232
+ options: __HttpHandlerOptions,
233
+ cb: (err: any, data?: GetAttributeGroupCommandOutput) => void
234
+ ): void;
235
+ listApplications(
236
+ args: ListApplicationsCommandInput,
237
+ options?: __HttpHandlerOptions
238
+ ): Promise<ListApplicationsCommandOutput>;
239
+ listApplications(
240
+ args: ListApplicationsCommandInput,
241
+ cb: (err: any, data?: ListApplicationsCommandOutput) => void
242
+ ): void;
243
+ listApplications(
244
+ args: ListApplicationsCommandInput,
245
+ options: __HttpHandlerOptions,
246
+ cb: (err: any, data?: ListApplicationsCommandOutput) => void
247
+ ): void;
248
+ listAssociatedAttributeGroups(
249
+ args: ListAssociatedAttributeGroupsCommandInput,
250
+ options?: __HttpHandlerOptions
251
+ ): Promise<ListAssociatedAttributeGroupsCommandOutput>;
252
+ listAssociatedAttributeGroups(
253
+ args: ListAssociatedAttributeGroupsCommandInput,
254
+ cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void
255
+ ): void;
256
+ listAssociatedAttributeGroups(
257
+ args: ListAssociatedAttributeGroupsCommandInput,
258
+ options: __HttpHandlerOptions,
259
+ cb: (err: any, data?: ListAssociatedAttributeGroupsCommandOutput) => void
260
+ ): void;
261
+ listAssociatedResources(
262
+ args: ListAssociatedResourcesCommandInput,
263
+ options?: __HttpHandlerOptions
264
+ ): Promise<ListAssociatedResourcesCommandOutput>;
265
+ listAssociatedResources(
266
+ args: ListAssociatedResourcesCommandInput,
267
+ cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void
268
+ ): void;
269
+ listAssociatedResources(
270
+ args: ListAssociatedResourcesCommandInput,
271
+ options: __HttpHandlerOptions,
272
+ cb: (err: any, data?: ListAssociatedResourcesCommandOutput) => void
273
+ ): void;
274
+ listAttributeGroups(
275
+ args: ListAttributeGroupsCommandInput,
276
+ options?: __HttpHandlerOptions
277
+ ): Promise<ListAttributeGroupsCommandOutput>;
278
+ listAttributeGroups(
279
+ args: ListAttributeGroupsCommandInput,
280
+ cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void
281
+ ): void;
282
+ listAttributeGroups(
283
+ args: ListAttributeGroupsCommandInput,
284
+ options: __HttpHandlerOptions,
285
+ cb: (err: any, data?: ListAttributeGroupsCommandOutput) => void
286
+ ): void;
287
+ listAttributeGroupsForApplication(
288
+ args: ListAttributeGroupsForApplicationCommandInput,
289
+ options?: __HttpHandlerOptions
290
+ ): Promise<ListAttributeGroupsForApplicationCommandOutput>;
291
+ listAttributeGroupsForApplication(
292
+ args: ListAttributeGroupsForApplicationCommandInput,
293
+ cb: (
294
+ err: any,
295
+ data?: ListAttributeGroupsForApplicationCommandOutput
296
+ ) => void
297
+ ): void;
298
+ listAttributeGroupsForApplication(
299
+ args: ListAttributeGroupsForApplicationCommandInput,
300
+ options: __HttpHandlerOptions,
301
+ cb: (
302
+ err: any,
303
+ data?: ListAttributeGroupsForApplicationCommandOutput
304
+ ) => void
305
+ ): void;
306
+ listTagsForResource(
307
+ args: ListTagsForResourceCommandInput,
308
+ options?: __HttpHandlerOptions
309
+ ): Promise<ListTagsForResourceCommandOutput>;
310
+ listTagsForResource(
311
+ args: ListTagsForResourceCommandInput,
312
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
313
+ ): void;
314
+ listTagsForResource(
315
+ args: ListTagsForResourceCommandInput,
316
+ options: __HttpHandlerOptions,
317
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
318
+ ): void;
319
+ syncResource(
320
+ args: SyncResourceCommandInput,
321
+ options?: __HttpHandlerOptions
322
+ ): Promise<SyncResourceCommandOutput>;
323
+ syncResource(
324
+ args: SyncResourceCommandInput,
325
+ cb: (err: any, data?: SyncResourceCommandOutput) => void
326
+ ): void;
327
+ syncResource(
328
+ args: SyncResourceCommandInput,
329
+ options: __HttpHandlerOptions,
330
+ cb: (err: any, data?: SyncResourceCommandOutput) => void
331
+ ): void;
332
+ tagResource(
333
+ args: TagResourceCommandInput,
334
+ options?: __HttpHandlerOptions
335
+ ): Promise<TagResourceCommandOutput>;
336
+ tagResource(
337
+ args: TagResourceCommandInput,
338
+ cb: (err: any, data?: TagResourceCommandOutput) => void
339
+ ): void;
340
+ tagResource(
341
+ args: TagResourceCommandInput,
342
+ options: __HttpHandlerOptions,
343
+ cb: (err: any, data?: TagResourceCommandOutput) => void
344
+ ): void;
345
+ untagResource(
346
+ args: UntagResourceCommandInput,
347
+ options?: __HttpHandlerOptions
348
+ ): Promise<UntagResourceCommandOutput>;
349
+ untagResource(
350
+ args: UntagResourceCommandInput,
351
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
352
+ ): void;
353
+ untagResource(
354
+ args: UntagResourceCommandInput,
355
+ options: __HttpHandlerOptions,
356
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
357
+ ): void;
358
+ updateApplication(
359
+ args: UpdateApplicationCommandInput,
360
+ options?: __HttpHandlerOptions
361
+ ): Promise<UpdateApplicationCommandOutput>;
362
+ updateApplication(
363
+ args: UpdateApplicationCommandInput,
364
+ cb: (err: any, data?: UpdateApplicationCommandOutput) => void
365
+ ): void;
366
+ updateApplication(
367
+ args: UpdateApplicationCommandInput,
368
+ options: __HttpHandlerOptions,
369
+ cb: (err: any, data?: UpdateApplicationCommandOutput) => void
370
+ ): void;
371
+ updateAttributeGroup(
372
+ args: UpdateAttributeGroupCommandInput,
373
+ options?: __HttpHandlerOptions
374
+ ): Promise<UpdateAttributeGroupCommandOutput>;
375
+ updateAttributeGroup(
376
+ args: UpdateAttributeGroupCommandInput,
377
+ cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void
378
+ ): void;
379
+ updateAttributeGroup(
380
+ args: UpdateAttributeGroupCommandInput,
381
+ options: __HttpHandlerOptions,
382
+ cb: (err: any, data?: UpdateAttributeGroupCommandOutput) => void
383
+ ): void;
384
+ }