@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ServiceCatalogAppRegistry.d.ts +406 -115
- package/dist-types/ts3.4/ServiceCatalogAppRegistryClient.d.ts +262 -95
- package/dist-types/ts3.4/commands/AssociateAttributeGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AssociateResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateAttributeGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteAttributeGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateAttributeGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateResourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetAssociatedResourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAttributeGroupCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListAssociatedAttributeGroupsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAssociatedResourcesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAttributeGroupsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAttributeGroupsForApplicationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/SyncResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateAttributeGroupCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +22 -22
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ServiceCatalogAppRegistryServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +610 -556
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAssociatedAttributeGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAssociatedResourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAttributeGroupsForApplicationPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAttributeGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- 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
|
|
5
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
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: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
+
};
|