@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
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { ServiceCatalogAppRegistry } from "../ServiceCatalogAppRegistry";
3
- import { ServiceCatalogAppRegistryClient } from "../ServiceCatalogAppRegistryClient";
4
- export interface ServiceCatalogAppRegistryPaginationConfiguration extends PaginationConfiguration {
5
- client: ServiceCatalogAppRegistry | ServiceCatalogAppRegistryClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { ServiceCatalogAppRegistry } from "../ServiceCatalogAppRegistry";
3
+ import { ServiceCatalogAppRegistryClient } from "../ServiceCatalogAppRegistryClient";
4
+ export interface ServiceCatalogAppRegistryPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: ServiceCatalogAppRegistry | ServiceCatalogAppRegistryClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListApplications(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListApplicationsCommandInput, ...additionalArguments: any): Paginator<ListApplicationsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListApplicationsCommandInput,
4
+ ListApplicationsCommandOutput,
5
+ } from "../commands/ListApplicationsCommand";
6
+ import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListApplications(
8
+ config: ServiceCatalogAppRegistryPaginationConfiguration,
9
+ input: ListApplicationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListApplicationsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput } from "../commands/ListAssociatedAttributeGroupsCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAssociatedAttributeGroups(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAssociatedAttributeGroupsCommandInput, ...additionalArguments: any): Paginator<ListAssociatedAttributeGroupsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAssociatedAttributeGroupsCommandInput,
4
+ ListAssociatedAttributeGroupsCommandOutput,
5
+ } from "../commands/ListAssociatedAttributeGroupsCommand";
6
+ import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAssociatedAttributeGroups(
8
+ config: ServiceCatalogAppRegistryPaginationConfiguration,
9
+ input: ListAssociatedAttributeGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAssociatedAttributeGroupsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput } from "../commands/ListAssociatedResourcesCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAssociatedResources(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAssociatedResourcesCommandInput, ...additionalArguments: any): Paginator<ListAssociatedResourcesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAssociatedResourcesCommandInput,
4
+ ListAssociatedResourcesCommandOutput,
5
+ } from "../commands/ListAssociatedResourcesCommand";
6
+ import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAssociatedResources(
8
+ config: ServiceCatalogAppRegistryPaginationConfiguration,
9
+ input: ListAssociatedResourcesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAssociatedResourcesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput } from "../commands/ListAttributeGroupsForApplicationCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAttributeGroupsForApplication(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAttributeGroupsForApplicationCommandInput, ...additionalArguments: any): Paginator<ListAttributeGroupsForApplicationCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAttributeGroupsForApplicationCommandInput,
4
+ ListAttributeGroupsForApplicationCommandOutput,
5
+ } from "../commands/ListAttributeGroupsForApplicationCommand";
6
+ import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAttributeGroupsForApplication(
8
+ config: ServiceCatalogAppRegistryPaginationConfiguration,
9
+ input: ListAttributeGroupsForApplicationCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAttributeGroupsForApplicationCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput } from "../commands/ListAttributeGroupsCommand";
3
- import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAttributeGroups(config: ServiceCatalogAppRegistryPaginationConfiguration, input: ListAttributeGroupsCommandInput, ...additionalArguments: any): Paginator<ListAttributeGroupsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListAttributeGroupsCommandInput,
4
+ ListAttributeGroupsCommandOutput,
5
+ } from "../commands/ListAttributeGroupsCommand";
6
+ import { ServiceCatalogAppRegistryPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListAttributeGroups(
8
+ config: ServiceCatalogAppRegistryPaginationConfiguration,
9
+ input: ListAttributeGroupsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListAttributeGroupsCommandOutput>;
@@ -1,6 +1,6 @@
1
- export * from "./Interfaces";
2
- export * from "./ListApplicationsPaginator";
3
- export * from "./ListAssociatedAttributeGroupsPaginator";
4
- export * from "./ListAssociatedResourcesPaginator";
5
- export * from "./ListAttributeGroupsForApplicationPaginator";
6
- export * from "./ListAttributeGroupsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListApplicationsPaginator";
3
+ export * from "./ListAssociatedAttributeGroupsPaginator";
4
+ export * from "./ListAssociatedResourcesPaginator";
5
+ export * from "./ListAttributeGroupsForApplicationPaginator";
6
+ export * from "./ListAttributeGroupsPaginator";
@@ -1,68 +1,269 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { AssociateAttributeGroupCommandInput, AssociateAttributeGroupCommandOutput } from "../commands/AssociateAttributeGroupCommand";
4
- import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "../commands/AssociateResourceCommand";
5
- import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "../commands/CreateApplicationCommand";
6
- import { CreateAttributeGroupCommandInput, CreateAttributeGroupCommandOutput } from "../commands/CreateAttributeGroupCommand";
7
- import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "../commands/DeleteApplicationCommand";
8
- import { DeleteAttributeGroupCommandInput, DeleteAttributeGroupCommandOutput } from "../commands/DeleteAttributeGroupCommand";
9
- import { DisassociateAttributeGroupCommandInput, DisassociateAttributeGroupCommandOutput } from "../commands/DisassociateAttributeGroupCommand";
10
- import { DisassociateResourceCommandInput, DisassociateResourceCommandOutput } from "../commands/DisassociateResourceCommand";
11
- import { GetApplicationCommandInput, GetApplicationCommandOutput } from "../commands/GetApplicationCommand";
12
- import { GetAssociatedResourceCommandInput, GetAssociatedResourceCommandOutput } from "../commands/GetAssociatedResourceCommand";
13
- import { GetAttributeGroupCommandInput, GetAttributeGroupCommandOutput } from "../commands/GetAttributeGroupCommand";
14
- import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "../commands/ListApplicationsCommand";
15
- import { ListAssociatedAttributeGroupsCommandInput, ListAssociatedAttributeGroupsCommandOutput } from "../commands/ListAssociatedAttributeGroupsCommand";
16
- import { ListAssociatedResourcesCommandInput, ListAssociatedResourcesCommandOutput } from "../commands/ListAssociatedResourcesCommand";
17
- import { ListAttributeGroupsCommandInput, ListAttributeGroupsCommandOutput } from "../commands/ListAttributeGroupsCommand";
18
- import { ListAttributeGroupsForApplicationCommandInput, ListAttributeGroupsForApplicationCommandOutput } from "../commands/ListAttributeGroupsForApplicationCommand";
19
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
20
- import { SyncResourceCommandInput, SyncResourceCommandOutput } from "../commands/SyncResourceCommand";
21
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
22
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
23
- import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "../commands/UpdateApplicationCommand";
24
- import { UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput } from "../commands/UpdateAttributeGroupCommand";
25
- export declare const serializeAws_restJson1AssociateAttributeGroupCommand: (input: AssociateAttributeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1AssociateResourceCommand: (input: AssociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1CreateApplicationCommand: (input: CreateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1CreateAttributeGroupCommand: (input: CreateAttributeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1DeleteApplicationCommand: (input: DeleteApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1DeleteAttributeGroupCommand: (input: DeleteAttributeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DisassociateAttributeGroupCommand: (input: DisassociateAttributeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1DisassociateResourceCommand: (input: DisassociateResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1GetApplicationCommand: (input: GetApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1GetAssociatedResourceCommand: (input: GetAssociatedResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1GetAttributeGroupCommand: (input: GetAttributeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1ListApplicationsCommand: (input: ListApplicationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1ListAssociatedAttributeGroupsCommand: (input: ListAssociatedAttributeGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1ListAssociatedResourcesCommand: (input: ListAssociatedResourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1ListAttributeGroupsCommand: (input: ListAttributeGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1ListAttributeGroupsForApplicationCommand: (input: ListAttributeGroupsForApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1SyncResourceCommand: (input: SyncResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1UpdateApplicationCommand: (input: UpdateApplicationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1UpdateAttributeGroupCommand: (input: UpdateAttributeGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const deserializeAws_restJson1AssociateAttributeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateAttributeGroupCommandOutput>;
48
- export declare const deserializeAws_restJson1AssociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateResourceCommandOutput>;
49
- export declare const deserializeAws_restJson1CreateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateApplicationCommandOutput>;
50
- export declare const deserializeAws_restJson1CreateAttributeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAttributeGroupCommandOutput>;
51
- export declare const deserializeAws_restJson1DeleteApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteApplicationCommandOutput>;
52
- export declare const deserializeAws_restJson1DeleteAttributeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAttributeGroupCommandOutput>;
53
- export declare const deserializeAws_restJson1DisassociateAttributeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateAttributeGroupCommandOutput>;
54
- export declare const deserializeAws_restJson1DisassociateResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateResourceCommandOutput>;
55
- export declare const deserializeAws_restJson1GetApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetApplicationCommandOutput>;
56
- export declare const deserializeAws_restJson1GetAssociatedResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssociatedResourceCommandOutput>;
57
- export declare const deserializeAws_restJson1GetAttributeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAttributeGroupCommandOutput>;
58
- export declare const deserializeAws_restJson1ListApplicationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListApplicationsCommandOutput>;
59
- export declare const deserializeAws_restJson1ListAssociatedAttributeGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedAttributeGroupsCommandOutput>;
60
- export declare const deserializeAws_restJson1ListAssociatedResourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssociatedResourcesCommandOutput>;
61
- export declare const deserializeAws_restJson1ListAttributeGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttributeGroupsCommandOutput>;
62
- export declare const deserializeAws_restJson1ListAttributeGroupsForApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttributeGroupsForApplicationCommandOutput>;
63
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
64
- export declare const deserializeAws_restJson1SyncResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SyncResourceCommandOutput>;
65
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
66
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
67
- export declare const deserializeAws_restJson1UpdateApplicationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateApplicationCommandOutput>;
68
- export declare const deserializeAws_restJson1UpdateAttributeGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAttributeGroupCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ AssociateAttributeGroupCommandInput,
8
+ AssociateAttributeGroupCommandOutput,
9
+ } from "../commands/AssociateAttributeGroupCommand";
10
+ import {
11
+ AssociateResourceCommandInput,
12
+ AssociateResourceCommandOutput,
13
+ } from "../commands/AssociateResourceCommand";
14
+ import {
15
+ CreateApplicationCommandInput,
16
+ CreateApplicationCommandOutput,
17
+ } from "../commands/CreateApplicationCommand";
18
+ import {
19
+ CreateAttributeGroupCommandInput,
20
+ CreateAttributeGroupCommandOutput,
21
+ } from "../commands/CreateAttributeGroupCommand";
22
+ import {
23
+ DeleteApplicationCommandInput,
24
+ DeleteApplicationCommandOutput,
25
+ } from "../commands/DeleteApplicationCommand";
26
+ import {
27
+ DeleteAttributeGroupCommandInput,
28
+ DeleteAttributeGroupCommandOutput,
29
+ } from "../commands/DeleteAttributeGroupCommand";
30
+ import {
31
+ DisassociateAttributeGroupCommandInput,
32
+ DisassociateAttributeGroupCommandOutput,
33
+ } from "../commands/DisassociateAttributeGroupCommand";
34
+ import {
35
+ DisassociateResourceCommandInput,
36
+ DisassociateResourceCommandOutput,
37
+ } from "../commands/DisassociateResourceCommand";
38
+ import {
39
+ GetApplicationCommandInput,
40
+ GetApplicationCommandOutput,
41
+ } from "../commands/GetApplicationCommand";
42
+ import {
43
+ GetAssociatedResourceCommandInput,
44
+ GetAssociatedResourceCommandOutput,
45
+ } from "../commands/GetAssociatedResourceCommand";
46
+ import {
47
+ GetAttributeGroupCommandInput,
48
+ GetAttributeGroupCommandOutput,
49
+ } from "../commands/GetAttributeGroupCommand";
50
+ import {
51
+ ListApplicationsCommandInput,
52
+ ListApplicationsCommandOutput,
53
+ } from "../commands/ListApplicationsCommand";
54
+ import {
55
+ ListAssociatedAttributeGroupsCommandInput,
56
+ ListAssociatedAttributeGroupsCommandOutput,
57
+ } from "../commands/ListAssociatedAttributeGroupsCommand";
58
+ import {
59
+ ListAssociatedResourcesCommandInput,
60
+ ListAssociatedResourcesCommandOutput,
61
+ } from "../commands/ListAssociatedResourcesCommand";
62
+ import {
63
+ ListAttributeGroupsCommandInput,
64
+ ListAttributeGroupsCommandOutput,
65
+ } from "../commands/ListAttributeGroupsCommand";
66
+ import {
67
+ ListAttributeGroupsForApplicationCommandInput,
68
+ ListAttributeGroupsForApplicationCommandOutput,
69
+ } from "../commands/ListAttributeGroupsForApplicationCommand";
70
+ import {
71
+ ListTagsForResourceCommandInput,
72
+ ListTagsForResourceCommandOutput,
73
+ } from "../commands/ListTagsForResourceCommand";
74
+ import {
75
+ SyncResourceCommandInput,
76
+ SyncResourceCommandOutput,
77
+ } from "../commands/SyncResourceCommand";
78
+ import {
79
+ TagResourceCommandInput,
80
+ TagResourceCommandOutput,
81
+ } from "../commands/TagResourceCommand";
82
+ import {
83
+ UntagResourceCommandInput,
84
+ UntagResourceCommandOutput,
85
+ } from "../commands/UntagResourceCommand";
86
+ import {
87
+ UpdateApplicationCommandInput,
88
+ UpdateApplicationCommandOutput,
89
+ } from "../commands/UpdateApplicationCommand";
90
+ import {
91
+ UpdateAttributeGroupCommandInput,
92
+ UpdateAttributeGroupCommandOutput,
93
+ } from "../commands/UpdateAttributeGroupCommand";
94
+ export declare const serializeAws_restJson1AssociateAttributeGroupCommand: (
95
+ input: AssociateAttributeGroupCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1AssociateResourceCommand: (
99
+ input: AssociateResourceCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1CreateApplicationCommand: (
103
+ input: CreateApplicationCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1CreateAttributeGroupCommand: (
107
+ input: CreateAttributeGroupCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const serializeAws_restJson1DeleteApplicationCommand: (
111
+ input: DeleteApplicationCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const serializeAws_restJson1DeleteAttributeGroupCommand: (
115
+ input: DeleteAttributeGroupCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const serializeAws_restJson1DisassociateAttributeGroupCommand: (
119
+ input: DisassociateAttributeGroupCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const serializeAws_restJson1DisassociateResourceCommand: (
123
+ input: DisassociateResourceCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1GetApplicationCommand: (
127
+ input: GetApplicationCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1GetAssociatedResourceCommand: (
131
+ input: GetAssociatedResourceCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1GetAttributeGroupCommand: (
135
+ input: GetAttributeGroupCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1ListApplicationsCommand: (
139
+ input: ListApplicationsCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1ListAssociatedAttributeGroupsCommand: (
143
+ input: ListAssociatedAttributeGroupsCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1ListAssociatedResourcesCommand: (
147
+ input: ListAssociatedResourcesCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1ListAttributeGroupsCommand: (
151
+ input: ListAttributeGroupsCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1ListAttributeGroupsForApplicationCommand: (
155
+ input: ListAttributeGroupsForApplicationCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
159
+ input: ListTagsForResourceCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1SyncResourceCommand: (
163
+ input: SyncResourceCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1TagResourceCommand: (
167
+ input: TagResourceCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1UntagResourceCommand: (
171
+ input: UntagResourceCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1UpdateApplicationCommand: (
175
+ input: UpdateApplicationCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1UpdateAttributeGroupCommand: (
179
+ input: UpdateAttributeGroupCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const deserializeAws_restJson1AssociateAttributeGroupCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<AssociateAttributeGroupCommandOutput>;
186
+ export declare const deserializeAws_restJson1AssociateResourceCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<AssociateResourceCommandOutput>;
190
+ export declare const deserializeAws_restJson1CreateApplicationCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<CreateApplicationCommandOutput>;
194
+ export declare const deserializeAws_restJson1CreateAttributeGroupCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<CreateAttributeGroupCommandOutput>;
198
+ export declare const deserializeAws_restJson1DeleteApplicationCommand: (
199
+ output: __HttpResponse,
200
+ context: __SerdeContext
201
+ ) => Promise<DeleteApplicationCommandOutput>;
202
+ export declare const deserializeAws_restJson1DeleteAttributeGroupCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<DeleteAttributeGroupCommandOutput>;
206
+ export declare const deserializeAws_restJson1DisassociateAttributeGroupCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<DisassociateAttributeGroupCommandOutput>;
210
+ export declare const deserializeAws_restJson1DisassociateResourceCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<DisassociateResourceCommandOutput>;
214
+ export declare const deserializeAws_restJson1GetApplicationCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<GetApplicationCommandOutput>;
218
+ export declare const deserializeAws_restJson1GetAssociatedResourceCommand: (
219
+ output: __HttpResponse,
220
+ context: __SerdeContext
221
+ ) => Promise<GetAssociatedResourceCommandOutput>;
222
+ export declare const deserializeAws_restJson1GetAttributeGroupCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<GetAttributeGroupCommandOutput>;
226
+ export declare const deserializeAws_restJson1ListApplicationsCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<ListApplicationsCommandOutput>;
230
+ export declare const deserializeAws_restJson1ListAssociatedAttributeGroupsCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<ListAssociatedAttributeGroupsCommandOutput>;
234
+ export declare const deserializeAws_restJson1ListAssociatedResourcesCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<ListAssociatedResourcesCommandOutput>;
238
+ export declare const deserializeAws_restJson1ListAttributeGroupsCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<ListAttributeGroupsCommandOutput>;
242
+ export declare const deserializeAws_restJson1ListAttributeGroupsForApplicationCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<ListAttributeGroupsForApplicationCommandOutput>;
246
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<ListTagsForResourceCommandOutput>;
250
+ export declare const deserializeAws_restJson1SyncResourceCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<SyncResourceCommandOutput>;
254
+ export declare const deserializeAws_restJson1TagResourceCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<TagResourceCommandOutput>;
258
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<UntagResourceCommandOutput>;
262
+ export declare const deserializeAws_restJson1UpdateApplicationCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<UpdateApplicationCommandOutput>;
266
+ export declare const deserializeAws_restJson1UpdateAttributeGroupCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<UpdateAttributeGroupCommandOutput>;
@@ -1,38 +1,68 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient";
3
-
4
- export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: ServiceCatalogAppRegistryClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<any>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };