@aws-sdk/client-agent-registry-control 3.1105.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 (133) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +286 -0
  3. package/dist-cjs/index.js +1536 -0
  4. package/dist-es/AgentRegistryControl.js +49 -0
  5. package/dist-es/AgentRegistryControlClient.js +47 -0
  6. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  7. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  8. package/dist-es/commandBuilder.js +6 -0
  9. package/dist-es/commands/CreateRegistryCommand.js +4 -0
  10. package/dist-es/commands/CreateRegistryRecordCommand.js +4 -0
  11. package/dist-es/commands/DeleteRegistryCommand.js +4 -0
  12. package/dist-es/commands/DeleteRegistryRecordCommand.js +4 -0
  13. package/dist-es/commands/GetRegistryCommand.js +4 -0
  14. package/dist-es/commands/GetRegistryRecordCommand.js +4 -0
  15. package/dist-es/commands/ListRegistriesCommand.js +4 -0
  16. package/dist-es/commands/ListRegistryRecordsCommand.js +4 -0
  17. package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
  18. package/dist-es/commands/SubmitRegistryRecordForApprovalCommand.js +4 -0
  19. package/dist-es/commands/TagResourceCommand.js +4 -0
  20. package/dist-es/commands/UntagResourceCommand.js +4 -0
  21. package/dist-es/commands/UpdateRegistryCommand.js +4 -0
  22. package/dist-es/commands/UpdateRegistryRecordCommand.js +4 -0
  23. package/dist-es/commands/UpdateRegistryRecordStatusCommand.js +4 -0
  24. package/dist-es/commands/index.js +15 -0
  25. package/dist-es/endpoint/EndpointParameters.js +9 -0
  26. package/dist-es/endpoint/bdd.js +22 -0
  27. package/dist-es/endpoint/endpointResolver.js +14 -0
  28. package/dist-es/extensionConfiguration.js +1 -0
  29. package/dist-es/index.js +11 -0
  30. package/dist-es/models/AgentRegistryControlServiceException.js +8 -0
  31. package/dist-es/models/enums.js +69 -0
  32. package/dist-es/models/errors.js +89 -0
  33. package/dist-es/models/models_0.js +1 -0
  34. package/dist-es/pagination/Interfaces.js +1 -0
  35. package/dist-es/pagination/ListRegistriesPaginator.js +4 -0
  36. package/dist-es/pagination/ListRegistryRecordsPaginator.js +4 -0
  37. package/dist-es/pagination/index.js +3 -0
  38. package/dist-es/runtimeConfig.browser.js +29 -0
  39. package/dist-es/runtimeConfig.js +43 -0
  40. package/dist-es/runtimeConfig.native.js +9 -0
  41. package/dist-es/runtimeConfig.shared.js +40 -0
  42. package/dist-es/runtimeExtensions.js +9 -0
  43. package/dist-es/schemas/schemas_0.js +783 -0
  44. package/dist-es/waiters/index.js +2 -0
  45. package/dist-es/waiters/waitForRegistryReady.js +58 -0
  46. package/dist-es/waiters/waitForRegistryRecordApproved.js +58 -0
  47. package/dist-types/AgentRegistryControl.d.ts +143 -0
  48. package/dist-types/AgentRegistryControlClient.d.ts +201 -0
  49. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  50. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  51. package/dist-types/commandBuilder.d.ts +18 -0
  52. package/dist-types/commands/CreateRegistryCommand.d.ts +172 -0
  53. package/dist-types/commands/CreateRegistryRecordCommand.d.ts +212 -0
  54. package/dist-types/commands/DeleteRegistryCommand.d.ts +89 -0
  55. package/dist-types/commands/DeleteRegistryRecordCommand.d.ts +88 -0
  56. package/dist-types/commands/GetRegistryCommand.d.ts +173 -0
  57. package/dist-types/commands/GetRegistryRecordCommand.d.ts +211 -0
  58. package/dist-types/commands/ListRegistriesCommand.d.ts +179 -0
  59. package/dist-types/commands/ListRegistryRecordsCommand.d.ts +114 -0
  60. package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
  61. package/dist-types/commands/SubmitRegistryRecordForApprovalCommand.d.ts +94 -0
  62. package/dist-types/commands/TagResourceCommand.d.ts +90 -0
  63. package/dist-types/commands/UntagResourceCommand.d.ts +87 -0
  64. package/dist-types/commands/UpdateRegistryCommand.d.ts +266 -0
  65. package/dist-types/commands/UpdateRegistryRecordCommand.d.ts +375 -0
  66. package/dist-types/commands/UpdateRegistryRecordStatusCommand.d.ts +97 -0
  67. package/dist-types/commands/index.d.ts +15 -0
  68. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  69. package/dist-types/endpoint/bdd.d.ts +2 -0
  70. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  71. package/dist-types/extensionConfiguration.d.ts +9 -0
  72. package/dist-types/index.d.ts +19 -0
  73. package/dist-types/models/AgentRegistryControlServiceException.d.ts +14 -0
  74. package/dist-types/models/enums.d.ts +173 -0
  75. package/dist-types/models/errors.d.ts +98 -0
  76. package/dist-types/models/models_0.d.ts +1886 -0
  77. package/dist-types/pagination/Interfaces.d.ts +8 -0
  78. package/dist-types/pagination/ListRegistriesPaginator.d.ts +7 -0
  79. package/dist-types/pagination/ListRegistryRecordsPaginator.d.ts +7 -0
  80. package/dist-types/pagination/index.d.ts +3 -0
  81. package/dist-types/runtimeConfig.browser.d.ts +57 -0
  82. package/dist-types/runtimeConfig.d.ts +57 -0
  83. package/dist-types/runtimeConfig.native.d.ts +56 -0
  84. package/dist-types/runtimeConfig.shared.d.ts +28 -0
  85. package/dist-types/runtimeExtensions.d.ts +17 -0
  86. package/dist-types/schemas/schemas_0.d.ts +118 -0
  87. package/dist-types/ts3.4/AgentRegistryControl.d.ts +295 -0
  88. package/dist-types/ts3.4/AgentRegistryControlClient.d.ts +187 -0
  89. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +27 -0
  90. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +43 -0
  91. package/dist-types/ts3.4/commandBuilder.d.ts +40 -0
  92. package/dist-types/ts3.4/commands/CreateRegistryCommand.d.ts +38 -0
  93. package/dist-types/ts3.4/commands/CreateRegistryRecordCommand.d.ts +39 -0
  94. package/dist-types/ts3.4/commands/DeleteRegistryCommand.d.ts +38 -0
  95. package/dist-types/ts3.4/commands/DeleteRegistryRecordCommand.d.ts +39 -0
  96. package/dist-types/ts3.4/commands/GetRegistryCommand.d.ts +38 -0
  97. package/dist-types/ts3.4/commands/GetRegistryRecordCommand.d.ts +39 -0
  98. package/dist-types/ts3.4/commands/ListRegistriesCommand.d.ts +38 -0
  99. package/dist-types/ts3.4/commands/ListRegistryRecordsCommand.d.ts +39 -0
  100. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  101. package/dist-types/ts3.4/commands/SubmitRegistryRecordForApprovalCommand.d.ts +42 -0
  102. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
  103. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  104. package/dist-types/ts3.4/commands/UpdateRegistryCommand.d.ts +38 -0
  105. package/dist-types/ts3.4/commands/UpdateRegistryRecordCommand.d.ts +39 -0
  106. package/dist-types/ts3.4/commands/UpdateRegistryRecordStatusCommand.d.ts +42 -0
  107. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  108. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +39 -0
  109. package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
  110. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  111. package/dist-types/ts3.4/extensionConfiguration.d.ts +10 -0
  112. package/dist-types/ts3.4/index.d.ts +14 -0
  113. package/dist-types/ts3.4/models/AgentRegistryControlServiceException.d.ts +9 -0
  114. package/dist-types/ts3.4/models/enums.d.ts +90 -0
  115. package/dist-types/ts3.4/models/errors.d.ts +41 -0
  116. package/dist-types/ts3.4/models/models_0.d.ts +528 -0
  117. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  118. package/dist-types/ts3.4/pagination/ListRegistriesPaginator.d.ts +11 -0
  119. package/dist-types/ts3.4/pagination/ListRegistryRecordsPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  121. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  122. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  123. package/dist-types/ts3.4/runtimeConfig.native.d.ts +99 -0
  124. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +31 -0
  125. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  126. package/dist-types/ts3.4/schemas/schemas_0.d.ts +118 -0
  127. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  128. package/dist-types/ts3.4/waiters/waitForRegistryReady.d.ts +12 -0
  129. package/dist-types/ts3.4/waiters/waitForRegistryRecordApproved.d.ts +15 -0
  130. package/dist-types/waiters/index.d.ts +2 -0
  131. package/dist-types/waiters/waitForRegistryReady.d.ts +15 -0
  132. package/dist-types/waiters/waitForRegistryRecordApproved.d.ts +15 -0
  133. package/package.json +69 -0
@@ -0,0 +1,295 @@
1
+ import { WaiterResult } from "@smithy/core/client";
2
+ import {
3
+ HttpHandlerOptions as __HttpHandlerOptions,
4
+ PaginationConfiguration,
5
+ Paginator,
6
+ WaiterConfiguration,
7
+ } from "@smithy/types";
8
+ import { AgentRegistryControlClient } from "./AgentRegistryControlClient";
9
+ import {
10
+ CreateRegistryCommandInput,
11
+ CreateRegistryCommandOutput,
12
+ } from "./commands/CreateRegistryCommand";
13
+ import {
14
+ CreateRegistryRecordCommandInput,
15
+ CreateRegistryRecordCommandOutput,
16
+ } from "./commands/CreateRegistryRecordCommand";
17
+ import {
18
+ DeleteRegistryCommandInput,
19
+ DeleteRegistryCommandOutput,
20
+ } from "./commands/DeleteRegistryCommand";
21
+ import {
22
+ DeleteRegistryRecordCommandInput,
23
+ DeleteRegistryRecordCommandOutput,
24
+ } from "./commands/DeleteRegistryRecordCommand";
25
+ import { GetRegistryCommandInput, GetRegistryCommandOutput } from "./commands/GetRegistryCommand";
26
+ import {
27
+ GetRegistryRecordCommandInput,
28
+ GetRegistryRecordCommandOutput,
29
+ } from "./commands/GetRegistryRecordCommand";
30
+ import {
31
+ ListRegistriesCommandInput,
32
+ ListRegistriesCommandOutput,
33
+ } from "./commands/ListRegistriesCommand";
34
+ import {
35
+ ListRegistryRecordsCommandInput,
36
+ ListRegistryRecordsCommandOutput,
37
+ } from "./commands/ListRegistryRecordsCommand";
38
+ import {
39
+ ListTagsForResourceCommandInput,
40
+ ListTagsForResourceCommandOutput,
41
+ } from "./commands/ListTagsForResourceCommand";
42
+ import {
43
+ SubmitRegistryRecordForApprovalCommandInput,
44
+ SubmitRegistryRecordForApprovalCommandOutput,
45
+ } from "./commands/SubmitRegistryRecordForApprovalCommand";
46
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
47
+ import {
48
+ UntagResourceCommandInput,
49
+ UntagResourceCommandOutput,
50
+ } from "./commands/UntagResourceCommand";
51
+ import {
52
+ UpdateRegistryCommandInput,
53
+ UpdateRegistryCommandOutput,
54
+ } from "./commands/UpdateRegistryCommand";
55
+ import {
56
+ UpdateRegistryRecordCommandInput,
57
+ UpdateRegistryRecordCommandOutput,
58
+ } from "./commands/UpdateRegistryRecordCommand";
59
+ import {
60
+ UpdateRegistryRecordStatusCommandInput,
61
+ UpdateRegistryRecordStatusCommandOutput,
62
+ } from "./commands/UpdateRegistryRecordStatusCommand";
63
+ export interface AgentRegistryControl {
64
+ createRegistry(
65
+ args: CreateRegistryCommandInput,
66
+ options?: __HttpHandlerOptions,
67
+ ): Promise<CreateRegistryCommandOutput>;
68
+ createRegistry(
69
+ args: CreateRegistryCommandInput,
70
+ cb: (err: any, data?: CreateRegistryCommandOutput) => void,
71
+ ): void;
72
+ createRegistry(
73
+ args: CreateRegistryCommandInput,
74
+ options: __HttpHandlerOptions,
75
+ cb: (err: any, data?: CreateRegistryCommandOutput) => void,
76
+ ): void;
77
+ createRegistryRecord(
78
+ args: CreateRegistryRecordCommandInput,
79
+ options?: __HttpHandlerOptions,
80
+ ): Promise<CreateRegistryRecordCommandOutput>;
81
+ createRegistryRecord(
82
+ args: CreateRegistryRecordCommandInput,
83
+ cb: (err: any, data?: CreateRegistryRecordCommandOutput) => void,
84
+ ): void;
85
+ createRegistryRecord(
86
+ args: CreateRegistryRecordCommandInput,
87
+ options: __HttpHandlerOptions,
88
+ cb: (err: any, data?: CreateRegistryRecordCommandOutput) => void,
89
+ ): void;
90
+ deleteRegistry(
91
+ args: DeleteRegistryCommandInput,
92
+ options?: __HttpHandlerOptions,
93
+ ): Promise<DeleteRegistryCommandOutput>;
94
+ deleteRegistry(
95
+ args: DeleteRegistryCommandInput,
96
+ cb: (err: any, data?: DeleteRegistryCommandOutput) => void,
97
+ ): void;
98
+ deleteRegistry(
99
+ args: DeleteRegistryCommandInput,
100
+ options: __HttpHandlerOptions,
101
+ cb: (err: any, data?: DeleteRegistryCommandOutput) => void,
102
+ ): void;
103
+ deleteRegistryRecord(
104
+ args: DeleteRegistryRecordCommandInput,
105
+ options?: __HttpHandlerOptions,
106
+ ): Promise<DeleteRegistryRecordCommandOutput>;
107
+ deleteRegistryRecord(
108
+ args: DeleteRegistryRecordCommandInput,
109
+ cb: (err: any, data?: DeleteRegistryRecordCommandOutput) => void,
110
+ ): void;
111
+ deleteRegistryRecord(
112
+ args: DeleteRegistryRecordCommandInput,
113
+ options: __HttpHandlerOptions,
114
+ cb: (err: any, data?: DeleteRegistryRecordCommandOutput) => void,
115
+ ): void;
116
+ getRegistry(
117
+ args: GetRegistryCommandInput,
118
+ options?: __HttpHandlerOptions,
119
+ ): Promise<GetRegistryCommandOutput>;
120
+ getRegistry(
121
+ args: GetRegistryCommandInput,
122
+ cb: (err: any, data?: GetRegistryCommandOutput) => void,
123
+ ): void;
124
+ getRegistry(
125
+ args: GetRegistryCommandInput,
126
+ options: __HttpHandlerOptions,
127
+ cb: (err: any, data?: GetRegistryCommandOutput) => void,
128
+ ): void;
129
+ getRegistryRecord(
130
+ args: GetRegistryRecordCommandInput,
131
+ options?: __HttpHandlerOptions,
132
+ ): Promise<GetRegistryRecordCommandOutput>;
133
+ getRegistryRecord(
134
+ args: GetRegistryRecordCommandInput,
135
+ cb: (err: any, data?: GetRegistryRecordCommandOutput) => void,
136
+ ): void;
137
+ getRegistryRecord(
138
+ args: GetRegistryRecordCommandInput,
139
+ options: __HttpHandlerOptions,
140
+ cb: (err: any, data?: GetRegistryRecordCommandOutput) => void,
141
+ ): void;
142
+ listRegistries(): Promise<ListRegistriesCommandOutput>;
143
+ listRegistries(
144
+ args: ListRegistriesCommandInput,
145
+ options?: __HttpHandlerOptions,
146
+ ): Promise<ListRegistriesCommandOutput>;
147
+ listRegistries(
148
+ args: ListRegistriesCommandInput,
149
+ cb: (err: any, data?: ListRegistriesCommandOutput) => void,
150
+ ): void;
151
+ listRegistries(
152
+ args: ListRegistriesCommandInput,
153
+ options: __HttpHandlerOptions,
154
+ cb: (err: any, data?: ListRegistriesCommandOutput) => void,
155
+ ): void;
156
+ listRegistryRecords(
157
+ args: ListRegistryRecordsCommandInput,
158
+ options?: __HttpHandlerOptions,
159
+ ): Promise<ListRegistryRecordsCommandOutput>;
160
+ listRegistryRecords(
161
+ args: ListRegistryRecordsCommandInput,
162
+ cb: (err: any, data?: ListRegistryRecordsCommandOutput) => void,
163
+ ): void;
164
+ listRegistryRecords(
165
+ args: ListRegistryRecordsCommandInput,
166
+ options: __HttpHandlerOptions,
167
+ cb: (err: any, data?: ListRegistryRecordsCommandOutput) => void,
168
+ ): void;
169
+ listTagsForResource(
170
+ args: ListTagsForResourceCommandInput,
171
+ options?: __HttpHandlerOptions,
172
+ ): Promise<ListTagsForResourceCommandOutput>;
173
+ listTagsForResource(
174
+ args: ListTagsForResourceCommandInput,
175
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
176
+ ): void;
177
+ listTagsForResource(
178
+ args: ListTagsForResourceCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
181
+ ): void;
182
+ submitRegistryRecordForApproval(
183
+ args: SubmitRegistryRecordForApprovalCommandInput,
184
+ options?: __HttpHandlerOptions,
185
+ ): Promise<SubmitRegistryRecordForApprovalCommandOutput>;
186
+ submitRegistryRecordForApproval(
187
+ args: SubmitRegistryRecordForApprovalCommandInput,
188
+ cb: (err: any, data?: SubmitRegistryRecordForApprovalCommandOutput) => void,
189
+ ): void;
190
+ submitRegistryRecordForApproval(
191
+ args: SubmitRegistryRecordForApprovalCommandInput,
192
+ options: __HttpHandlerOptions,
193
+ cb: (err: any, data?: SubmitRegistryRecordForApprovalCommandOutput) => void,
194
+ ): void;
195
+ tagResource(
196
+ args: TagResourceCommandInput,
197
+ options?: __HttpHandlerOptions,
198
+ ): Promise<TagResourceCommandOutput>;
199
+ tagResource(
200
+ args: TagResourceCommandInput,
201
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
202
+ ): void;
203
+ tagResource(
204
+ args: TagResourceCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
207
+ ): void;
208
+ untagResource(
209
+ args: UntagResourceCommandInput,
210
+ options?: __HttpHandlerOptions,
211
+ ): Promise<UntagResourceCommandOutput>;
212
+ untagResource(
213
+ args: UntagResourceCommandInput,
214
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
215
+ ): void;
216
+ untagResource(
217
+ args: UntagResourceCommandInput,
218
+ options: __HttpHandlerOptions,
219
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
220
+ ): void;
221
+ updateRegistry(
222
+ args: UpdateRegistryCommandInput,
223
+ options?: __HttpHandlerOptions,
224
+ ): Promise<UpdateRegistryCommandOutput>;
225
+ updateRegistry(
226
+ args: UpdateRegistryCommandInput,
227
+ cb: (err: any, data?: UpdateRegistryCommandOutput) => void,
228
+ ): void;
229
+ updateRegistry(
230
+ args: UpdateRegistryCommandInput,
231
+ options: __HttpHandlerOptions,
232
+ cb: (err: any, data?: UpdateRegistryCommandOutput) => void,
233
+ ): void;
234
+ updateRegistryRecord(
235
+ args: UpdateRegistryRecordCommandInput,
236
+ options?: __HttpHandlerOptions,
237
+ ): Promise<UpdateRegistryRecordCommandOutput>;
238
+ updateRegistryRecord(
239
+ args: UpdateRegistryRecordCommandInput,
240
+ cb: (err: any, data?: UpdateRegistryRecordCommandOutput) => void,
241
+ ): void;
242
+ updateRegistryRecord(
243
+ args: UpdateRegistryRecordCommandInput,
244
+ options: __HttpHandlerOptions,
245
+ cb: (err: any, data?: UpdateRegistryRecordCommandOutput) => void,
246
+ ): void;
247
+ updateRegistryRecordStatus(
248
+ args: UpdateRegistryRecordStatusCommandInput,
249
+ options?: __HttpHandlerOptions,
250
+ ): Promise<UpdateRegistryRecordStatusCommandOutput>;
251
+ updateRegistryRecordStatus(
252
+ args: UpdateRegistryRecordStatusCommandInput,
253
+ cb: (err: any, data?: UpdateRegistryRecordStatusCommandOutput) => void,
254
+ ): void;
255
+ updateRegistryRecordStatus(
256
+ args: UpdateRegistryRecordStatusCommandInput,
257
+ options: __HttpHandlerOptions,
258
+ cb: (err: any, data?: UpdateRegistryRecordStatusCommandOutput) => void,
259
+ ): void;
260
+ paginateListRegistries(
261
+ args?: ListRegistriesCommandInput,
262
+ paginationConfig?: Pick<
263
+ PaginationConfiguration,
264
+ Exclude<keyof PaginationConfiguration, "client">
265
+ >,
266
+ ): Paginator<ListRegistriesCommandOutput>;
267
+ paginateListRegistryRecords(
268
+ args: ListRegistryRecordsCommandInput,
269
+ paginationConfig?: Pick<
270
+ PaginationConfiguration,
271
+ Exclude<keyof PaginationConfiguration, "client">
272
+ >,
273
+ ): Paginator<ListRegistryRecordsCommandOutput>;
274
+ waitUntilRegistryReady(
275
+ args: GetRegistryCommandInput,
276
+ waiterConfig:
277
+ | number
278
+ | Pick<
279
+ WaiterConfiguration<AgentRegistryControl>,
280
+ Exclude<keyof WaiterConfiguration<AgentRegistryControl>, "client">
281
+ >,
282
+ ): Promise<WaiterResult<GetRegistryCommandOutput>>;
283
+ waitUntilRegistryRecordApproved(
284
+ args: GetRegistryRecordCommandInput,
285
+ waiterConfig:
286
+ | number
287
+ | Pick<
288
+ WaiterConfiguration<AgentRegistryControl>,
289
+ Exclude<keyof WaiterConfiguration<AgentRegistryControl>, "client">
290
+ >,
291
+ ): Promise<WaiterResult<GetRegistryRecordCommandOutput>>;
292
+ }
293
+ export declare class AgentRegistryControl
294
+ extends AgentRegistryControlClient
295
+ implements AgentRegistryControl {}
@@ -0,0 +1,187 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ UserAgentInputConfig,
5
+ UserAgentResolvedConfig,
6
+ } from "@aws-sdk/core/client";
7
+ import {
8
+ DefaultsMode as __DefaultsMode,
9
+ SmithyConfiguration as __SmithyConfiguration,
10
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
11
+ Client as __Client,
12
+ } from "@smithy/core/client";
13
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
15
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
16
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
17
+ import {
18
+ AwsCredentialIdentityProvider,
19
+ BodyLengthCalculator as __BodyLengthCalculator,
20
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
21
+ ChecksumConstructor as __ChecksumConstructor,
22
+ Decoder as __Decoder,
23
+ Encoder as __Encoder,
24
+ HashConstructor as __HashConstructor,
25
+ HttpHandlerOptions as __HttpHandlerOptions,
26
+ Logger as __Logger,
27
+ Provider as __Provider,
28
+ StreamCollector as __StreamCollector,
29
+ UrlParser as __UrlParser,
30
+ UserAgent as __UserAgent,
31
+ } from "@smithy/types";
32
+ import {
33
+ HttpAuthSchemeInputConfig,
34
+ HttpAuthSchemeResolvedConfig,
35
+ } from "./auth/httpAuthSchemeProvider";
36
+ import {
37
+ CreateRegistryCommandInput,
38
+ CreateRegistryCommandOutput,
39
+ } from "./commands/CreateRegistryCommand";
40
+ import {
41
+ CreateRegistryRecordCommandInput,
42
+ CreateRegistryRecordCommandOutput,
43
+ } from "./commands/CreateRegistryRecordCommand";
44
+ import {
45
+ DeleteRegistryCommandInput,
46
+ DeleteRegistryCommandOutput,
47
+ } from "./commands/DeleteRegistryCommand";
48
+ import {
49
+ DeleteRegistryRecordCommandInput,
50
+ DeleteRegistryRecordCommandOutput,
51
+ } from "./commands/DeleteRegistryRecordCommand";
52
+ import { GetRegistryCommandInput, GetRegistryCommandOutput } from "./commands/GetRegistryCommand";
53
+ import {
54
+ GetRegistryRecordCommandInput,
55
+ GetRegistryRecordCommandOutput,
56
+ } from "./commands/GetRegistryRecordCommand";
57
+ import {
58
+ ListRegistriesCommandInput,
59
+ ListRegistriesCommandOutput,
60
+ } from "./commands/ListRegistriesCommand";
61
+ import {
62
+ ListRegistryRecordsCommandInput,
63
+ ListRegistryRecordsCommandOutput,
64
+ } from "./commands/ListRegistryRecordsCommand";
65
+ import {
66
+ ListTagsForResourceCommandInput,
67
+ ListTagsForResourceCommandOutput,
68
+ } from "./commands/ListTagsForResourceCommand";
69
+ import {
70
+ SubmitRegistryRecordForApprovalCommandInput,
71
+ SubmitRegistryRecordForApprovalCommandOutput,
72
+ } from "./commands/SubmitRegistryRecordForApprovalCommand";
73
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
74
+ import {
75
+ UntagResourceCommandInput,
76
+ UntagResourceCommandOutput,
77
+ } from "./commands/UntagResourceCommand";
78
+ import {
79
+ UpdateRegistryCommandInput,
80
+ UpdateRegistryCommandOutput,
81
+ } from "./commands/UpdateRegistryCommand";
82
+ import {
83
+ UpdateRegistryRecordCommandInput,
84
+ UpdateRegistryRecordCommandOutput,
85
+ } from "./commands/UpdateRegistryRecordCommand";
86
+ import {
87
+ UpdateRegistryRecordStatusCommandInput,
88
+ UpdateRegistryRecordStatusCommandOutput,
89
+ } from "./commands/UpdateRegistryRecordStatusCommand";
90
+ import {
91
+ ClientInputEndpointParameters,
92
+ ClientResolvedEndpointParameters,
93
+ EndpointParameters,
94
+ } from "./endpoint/EndpointParameters";
95
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
96
+ export { __Client };
97
+ export type ServiceInputTypes =
98
+ | CreateRegistryCommandInput
99
+ | CreateRegistryRecordCommandInput
100
+ | DeleteRegistryCommandInput
101
+ | DeleteRegistryRecordCommandInput
102
+ | GetRegistryCommandInput
103
+ | GetRegistryRecordCommandInput
104
+ | ListRegistriesCommandInput
105
+ | ListRegistryRecordsCommandInput
106
+ | ListTagsForResourceCommandInput
107
+ | SubmitRegistryRecordForApprovalCommandInput
108
+ | TagResourceCommandInput
109
+ | UntagResourceCommandInput
110
+ | UpdateRegistryCommandInput
111
+ | UpdateRegistryRecordCommandInput
112
+ | UpdateRegistryRecordStatusCommandInput;
113
+ export type ServiceOutputTypes =
114
+ | CreateRegistryCommandOutput
115
+ | CreateRegistryRecordCommandOutput
116
+ | DeleteRegistryCommandOutput
117
+ | DeleteRegistryRecordCommandOutput
118
+ | GetRegistryCommandOutput
119
+ | GetRegistryRecordCommandOutput
120
+ | ListRegistriesCommandOutput
121
+ | ListRegistryRecordsCommandOutput
122
+ | ListTagsForResourceCommandOutput
123
+ | SubmitRegistryRecordForApprovalCommandOutput
124
+ | TagResourceCommandOutput
125
+ | UntagResourceCommandOutput
126
+ | UpdateRegistryCommandOutput
127
+ | UpdateRegistryRecordCommandOutput
128
+ | UpdateRegistryRecordStatusCommandOutput;
129
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
130
+ requestHandler?: __HttpHandlerUserInput;
131
+ sha256?: __ChecksumConstructor | __HashConstructor;
132
+ urlParser?: __UrlParser;
133
+ bodyLengthChecker?: __BodyLengthCalculator;
134
+ streamCollector?: __StreamCollector;
135
+ base64Decoder?: __Decoder;
136
+ base64Encoder?: __Encoder;
137
+ utf8Decoder?: __Decoder;
138
+ utf8Encoder?: __Encoder;
139
+ runtime?: string;
140
+ disableHostPrefix?: boolean;
141
+ serviceId?: string;
142
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
143
+ useFipsEndpoint?: boolean | __Provider<boolean>;
144
+ region?: string | __Provider<string>;
145
+ profile?: string;
146
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
147
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
148
+ maxAttempts?: number | __Provider<number>;
149
+ retryMode?: string | __Provider<string>;
150
+ logger?: __Logger;
151
+ extensions?: RuntimeExtension[];
152
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
153
+ }
154
+ export type AgentRegistryControlClientConfigType = Partial<
155
+ __SmithyConfiguration<__HttpHandlerOptions>
156
+ > &
157
+ ClientDefaults &
158
+ UserAgentInputConfig &
159
+ RetryInputConfig &
160
+ RegionInputConfig &
161
+ HostHeaderInputConfig &
162
+ EndpointInputConfig<EndpointParameters> &
163
+ HttpAuthSchemeInputConfig &
164
+ ClientInputEndpointParameters;
165
+ export interface AgentRegistryControlClientConfig extends AgentRegistryControlClientConfigType {}
166
+ export type AgentRegistryControlClientResolvedConfigType =
167
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
168
+ Required<ClientDefaults> &
169
+ RuntimeExtensionsConfig &
170
+ UserAgentResolvedConfig &
171
+ RetryResolvedConfig &
172
+ RegionResolvedConfig &
173
+ HostHeaderResolvedConfig &
174
+ EndpointResolvedConfig<EndpointParameters> &
175
+ HttpAuthSchemeResolvedConfig &
176
+ ClientResolvedEndpointParameters;
177
+ export interface AgentRegistryControlClientResolvedConfig extends AgentRegistryControlClientResolvedConfigType {}
178
+ export declare class AgentRegistryControlClient extends __Client<
179
+ __HttpHandlerOptions,
180
+ ServiceInputTypes,
181
+ ServiceOutputTypes,
182
+ AgentRegistryControlClientResolvedConfig
183
+ > {
184
+ readonly config: AgentRegistryControlClientResolvedConfig;
185
+ constructor(...[configuration]: __CheckOptionalClientConfig<AgentRegistryControlClientConfig>);
186
+ destroy(): void;
187
+ }
@@ -0,0 +1,27 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { AgentRegistryControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: AgentRegistryControlHttpAuthSchemeProvider,
12
+ ): void;
13
+ httpAuthSchemeProvider(): AgentRegistryControlHttpAuthSchemeProvider;
14
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
15
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
16
+ }
17
+ export type HttpAuthRuntimeConfig = Partial<{
18
+ httpAuthSchemes: HttpAuthScheme[];
19
+ httpAuthSchemeProvider: AgentRegistryControlHttpAuthSchemeProvider;
20
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
21
+ }>;
22
+ export declare const getHttpAuthExtensionConfiguration: (
23
+ runtimeConfig: HttpAuthRuntimeConfig,
24
+ ) => HttpAuthExtensionConfiguration;
25
+ export declare const resolveHttpAuthRuntimeConfig: (
26
+ config: HttpAuthExtensionConfiguration,
27
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,43 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core/httpAuthSchemes";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ Provider,
13
+ } from "@smithy/types";
14
+ import { AgentRegistryControlClientResolvedConfig } from "../AgentRegistryControlClient";
15
+ export interface AgentRegistryControlHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface AgentRegistryControlHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ AgentRegistryControlClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ AgentRegistryControlHttpAuthSchemeParameters,
22
+ object
23
+ > {}
24
+ export declare const defaultAgentRegistryControlHttpAuthSchemeParametersProvider: (
25
+ config: AgentRegistryControlClientResolvedConfig,
26
+ context: HandlerExecutionContext,
27
+ input: object,
28
+ ) => Promise<AgentRegistryControlHttpAuthSchemeParameters>;
29
+ export interface AgentRegistryControlHttpAuthSchemeProvider extends HttpAuthSchemeProvider<AgentRegistryControlHttpAuthSchemeParameters> {}
30
+ export declare const defaultAgentRegistryControlHttpAuthSchemeProvider: AgentRegistryControlHttpAuthSchemeProvider;
31
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
+ authSchemePreference?: string[] | Provider<string[]>;
33
+ httpAuthSchemes?: HttpAuthScheme[];
34
+ httpAuthSchemeProvider?: AgentRegistryControlHttpAuthSchemeProvider;
35
+ }
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
37
+ readonly authSchemePreference: Provider<string[]>;
38
+ readonly httpAuthSchemes: HttpAuthScheme[];
39
+ readonly httpAuthSchemeProvider: AgentRegistryControlHttpAuthSchemeProvider;
40
+ }
41
+ export declare const resolveHttpAuthSchemeConfig: <T>(
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
43
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,40 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ AgentRegistryControlClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./AgentRegistryControlClient";
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
8
+ added: EndpointParameterInstructions,
9
+ plugins: (
10
+ CommandCtor: any,
11
+ clientStack: any,
12
+ config: any,
13
+ options: any,
14
+ ) => import("@smithy/types").Pluggable<any, any>[],
15
+ op: string,
16
+ $: import("@smithy/types").StaticOperationSchema,
17
+ smithyContext?: Record<string, unknown>,
18
+ ) => {
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
22
+ I,
23
+ O,
24
+ AgentRegistryControlClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: import("@smithy/types").OptionalParameter<I>
30
+ ): import("@smithy/core/client").CommandImpl<
31
+ I,
32
+ O,
33
+ AgentRegistryControlClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
38
+ };
39
+ export declare const _ep0: EndpointParameterInstructions;
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -0,0 +1,38 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { CreateRegistryRequest, CreateRegistryResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface CreateRegistryCommandInput extends CreateRegistryRequest {}
5
+ export interface CreateRegistryCommandOutput extends CreateRegistryResponse, __MetadataBearer {}
6
+ declare const CreateRegistryCommand_base: {
7
+ new (
8
+ input: CreateRegistryCommandInput,
9
+ ): import("@smithy/core/client").CommandImpl<
10
+ CreateRegistryCommandInput,
11
+ CreateRegistryCommandOutput,
12
+ import("..").AgentRegistryControlClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
15
+ >;
16
+ new (
17
+ input: CreateRegistryCommandInput,
18
+ ): import("@smithy/core/client").CommandImpl<
19
+ CreateRegistryCommandInput,
20
+ CreateRegistryCommandOutput,
21
+ import("..").AgentRegistryControlClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
24
+ >;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
26
+ };
27
+ export declare class CreateRegistryCommand extends CreateRegistryCommand_base {
28
+ protected static __types: {
29
+ api: {
30
+ input: CreateRegistryRequest;
31
+ output: CreateRegistryResponse;
32
+ };
33
+ sdk: {
34
+ input: CreateRegistryCommandInput;
35
+ output: CreateRegistryCommandOutput;
36
+ };
37
+ };
38
+ }
@@ -0,0 +1,39 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import { CreateRegistryRecordRequest, CreateRegistryRecordResponse } from "../models/models_0";
3
+ export { __MetadataBearer };
4
+ export interface CreateRegistryRecordCommandInput extends CreateRegistryRecordRequest {}
5
+ export interface CreateRegistryRecordCommandOutput
6
+ extends CreateRegistryRecordResponse, __MetadataBearer {}
7
+ declare const CreateRegistryRecordCommand_base: {
8
+ new (
9
+ input: CreateRegistryRecordCommandInput,
10
+ ): import("@smithy/core/client").CommandImpl<
11
+ CreateRegistryRecordCommandInput,
12
+ CreateRegistryRecordCommandOutput,
13
+ import("..").AgentRegistryControlClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
16
+ >;
17
+ new (
18
+ input: CreateRegistryRecordCommandInput,
19
+ ): import("@smithy/core/client").CommandImpl<
20
+ CreateRegistryRecordCommandInput,
21
+ CreateRegistryRecordCommandOutput,
22
+ import("..").AgentRegistryControlClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
25
+ >;
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
27
+ };
28
+ export declare class CreateRegistryRecordCommand extends CreateRegistryRecordCommand_base {
29
+ protected static __types: {
30
+ api: {
31
+ input: CreateRegistryRecordRequest;
32
+ output: CreateRegistryRecordResponse;
33
+ };
34
+ sdk: {
35
+ input: CreateRegistryRecordCommandInput;
36
+ output: CreateRegistryRecordCommandOutput;
37
+ };
38
+ };
39
+ }