@aws-sdk/client-schemas 3.296.0 → 3.297.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 (42) hide show
  1. package/dist-types/Schemas.d.ts +34 -0
  2. package/dist-types/SchemasClient.d.ts +24 -4
  3. package/dist-types/commands/CreateDiscovererCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateRegistryCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateSchemaCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteDiscovererCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteRegistryCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteSchemaCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteSchemaVersionCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeCodeBindingCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeDiscovererCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeRegistryCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeSchemaCommand.d.ts +16 -0
  15. package/dist-types/commands/ExportSchemaCommand.d.ts +13 -0
  16. package/dist-types/commands/GetCodeBindingSourceCommand.d.ts +16 -0
  17. package/dist-types/commands/GetDiscoveredSchemaCommand.d.ts +16 -0
  18. package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
  19. package/dist-types/commands/ListDiscoverersCommand.d.ts +16 -0
  20. package/dist-types/commands/ListRegistriesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListSchemaVersionsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListSchemasCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/PutCodeBindingCommand.d.ts +16 -0
  25. package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
  26. package/dist-types/commands/SearchSchemasCommand.d.ts +16 -0
  27. package/dist-types/commands/StartDiscovererCommand.d.ts +16 -0
  28. package/dist-types/commands/StopDiscovererCommand.d.ts +16 -0
  29. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateDiscovererCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateRegistryCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateSchemaCommand.d.ts +16 -0
  34. package/dist-types/models/SchemasServiceException.d.ts +2 -0
  35. package/dist-types/models/models_0.d.ts +214 -0
  36. package/dist-types/pagination/Interfaces.d.ts +3 -0
  37. package/dist-types/pagination/ListDiscoverersPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListRegistriesPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListSchemaVersionsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListSchemasPaginator.d.ts +3 -0
  41. package/dist-types/pagination/SearchSchemasPaginator.d.ts +3 -0
  42. package/package.json +3 -3
@@ -32,187 +32,221 @@ import { UpdateRegistryCommandInput, UpdateRegistryCommandOutput } from "./comma
32
32
  import { UpdateSchemaCommandInput, UpdateSchemaCommandOutput } from "./commands/UpdateSchemaCommand";
33
33
  import { SchemasClient } from "./SchemasClient";
34
34
  /**
35
+ * @public
35
36
  * <p>Amazon EventBridge Schema Registry</p>
36
37
  */
37
38
  export declare class Schemas extends SchemasClient {
38
39
  /**
40
+ * @public
39
41
  * <p>Creates a discoverer.</p>
40
42
  */
41
43
  createDiscoverer(args: CreateDiscovererCommandInput, options?: __HttpHandlerOptions): Promise<CreateDiscovererCommandOutput>;
42
44
  createDiscoverer(args: CreateDiscovererCommandInput, cb: (err: any, data?: CreateDiscovererCommandOutput) => void): void;
43
45
  createDiscoverer(args: CreateDiscovererCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDiscovererCommandOutput) => void): void;
44
46
  /**
47
+ * @public
45
48
  * <p>Creates a registry.</p>
46
49
  */
47
50
  createRegistry(args: CreateRegistryCommandInput, options?: __HttpHandlerOptions): Promise<CreateRegistryCommandOutput>;
48
51
  createRegistry(args: CreateRegistryCommandInput, cb: (err: any, data?: CreateRegistryCommandOutput) => void): void;
49
52
  createRegistry(args: CreateRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRegistryCommandOutput) => void): void;
50
53
  /**
54
+ * @public
51
55
  * <p>Creates a schema definition.</p> <note><p>Inactive schemas will be deleted after two years.</p></note>
52
56
  */
53
57
  createSchema(args: CreateSchemaCommandInput, options?: __HttpHandlerOptions): Promise<CreateSchemaCommandOutput>;
54
58
  createSchema(args: CreateSchemaCommandInput, cb: (err: any, data?: CreateSchemaCommandOutput) => void): void;
55
59
  createSchema(args: CreateSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSchemaCommandOutput) => void): void;
56
60
  /**
61
+ * @public
57
62
  * <p>Deletes a discoverer.</p>
58
63
  */
59
64
  deleteDiscoverer(args: DeleteDiscovererCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDiscovererCommandOutput>;
60
65
  deleteDiscoverer(args: DeleteDiscovererCommandInput, cb: (err: any, data?: DeleteDiscovererCommandOutput) => void): void;
61
66
  deleteDiscoverer(args: DeleteDiscovererCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDiscovererCommandOutput) => void): void;
62
67
  /**
68
+ * @public
63
69
  * <p>Deletes a Registry.</p>
64
70
  */
65
71
  deleteRegistry(args: DeleteRegistryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRegistryCommandOutput>;
66
72
  deleteRegistry(args: DeleteRegistryCommandInput, cb: (err: any, data?: DeleteRegistryCommandOutput) => void): void;
67
73
  deleteRegistry(args: DeleteRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRegistryCommandOutput) => void): void;
68
74
  /**
75
+ * @public
69
76
  * <p>Delete the resource-based policy attached to the specified registry.</p>
70
77
  */
71
78
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
72
79
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
73
80
  deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
74
81
  /**
82
+ * @public
75
83
  * <p>Delete a schema definition.</p>
76
84
  */
77
85
  deleteSchema(args: DeleteSchemaCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSchemaCommandOutput>;
78
86
  deleteSchema(args: DeleteSchemaCommandInput, cb: (err: any, data?: DeleteSchemaCommandOutput) => void): void;
79
87
  deleteSchema(args: DeleteSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSchemaCommandOutput) => void): void;
80
88
  /**
89
+ * @public
81
90
  * <p>Delete the schema version definition</p>
82
91
  */
83
92
  deleteSchemaVersion(args: DeleteSchemaVersionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSchemaVersionCommandOutput>;
84
93
  deleteSchemaVersion(args: DeleteSchemaVersionCommandInput, cb: (err: any, data?: DeleteSchemaVersionCommandOutput) => void): void;
85
94
  deleteSchemaVersion(args: DeleteSchemaVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSchemaVersionCommandOutput) => void): void;
86
95
  /**
96
+ * @public
87
97
  * <p>Describe the code binding URI.</p>
88
98
  */
89
99
  describeCodeBinding(args: DescribeCodeBindingCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCodeBindingCommandOutput>;
90
100
  describeCodeBinding(args: DescribeCodeBindingCommandInput, cb: (err: any, data?: DescribeCodeBindingCommandOutput) => void): void;
91
101
  describeCodeBinding(args: DescribeCodeBindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCodeBindingCommandOutput) => void): void;
92
102
  /**
103
+ * @public
93
104
  * <p>Describes the discoverer.</p>
94
105
  */
95
106
  describeDiscoverer(args: DescribeDiscovererCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDiscovererCommandOutput>;
96
107
  describeDiscoverer(args: DescribeDiscovererCommandInput, cb: (err: any, data?: DescribeDiscovererCommandOutput) => void): void;
97
108
  describeDiscoverer(args: DescribeDiscovererCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDiscovererCommandOutput) => void): void;
98
109
  /**
110
+ * @public
99
111
  * <p>Describes the registry.</p>
100
112
  */
101
113
  describeRegistry(args: DescribeRegistryCommandInput, options?: __HttpHandlerOptions): Promise<DescribeRegistryCommandOutput>;
102
114
  describeRegistry(args: DescribeRegistryCommandInput, cb: (err: any, data?: DescribeRegistryCommandOutput) => void): void;
103
115
  describeRegistry(args: DescribeRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRegistryCommandOutput) => void): void;
104
116
  /**
117
+ * @public
105
118
  * <p>Retrieve the schema definition.</p>
106
119
  */
107
120
  describeSchema(args: DescribeSchemaCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSchemaCommandOutput>;
108
121
  describeSchema(args: DescribeSchemaCommandInput, cb: (err: any, data?: DescribeSchemaCommandOutput) => void): void;
109
122
  describeSchema(args: DescribeSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSchemaCommandOutput) => void): void;
123
+ /**
124
+ * @public
125
+ */
110
126
  exportSchema(args: ExportSchemaCommandInput, options?: __HttpHandlerOptions): Promise<ExportSchemaCommandOutput>;
111
127
  exportSchema(args: ExportSchemaCommandInput, cb: (err: any, data?: ExportSchemaCommandOutput) => void): void;
112
128
  exportSchema(args: ExportSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportSchemaCommandOutput) => void): void;
113
129
  /**
130
+ * @public
114
131
  * <p>Get the code binding source URI.</p>
115
132
  */
116
133
  getCodeBindingSource(args: GetCodeBindingSourceCommandInput, options?: __HttpHandlerOptions): Promise<GetCodeBindingSourceCommandOutput>;
117
134
  getCodeBindingSource(args: GetCodeBindingSourceCommandInput, cb: (err: any, data?: GetCodeBindingSourceCommandOutput) => void): void;
118
135
  getCodeBindingSource(args: GetCodeBindingSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCodeBindingSourceCommandOutput) => void): void;
119
136
  /**
137
+ * @public
120
138
  * <p>Get the discovered schema that was generated based on sampled events.</p>
121
139
  */
122
140
  getDiscoveredSchema(args: GetDiscoveredSchemaCommandInput, options?: __HttpHandlerOptions): Promise<GetDiscoveredSchemaCommandOutput>;
123
141
  getDiscoveredSchema(args: GetDiscoveredSchemaCommandInput, cb: (err: any, data?: GetDiscoveredSchemaCommandOutput) => void): void;
124
142
  getDiscoveredSchema(args: GetDiscoveredSchemaCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDiscoveredSchemaCommandOutput) => void): void;
125
143
  /**
144
+ * @public
126
145
  * <p>Retrieves the resource-based policy attached to a given registry.</p>
127
146
  */
128
147
  getResourcePolicy(args: GetResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePolicyCommandOutput>;
129
148
  getResourcePolicy(args: GetResourcePolicyCommandInput, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
130
149
  getResourcePolicy(args: GetResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
131
150
  /**
151
+ * @public
132
152
  * <p>List the discoverers.</p>
133
153
  */
134
154
  listDiscoverers(args: ListDiscoverersCommandInput, options?: __HttpHandlerOptions): Promise<ListDiscoverersCommandOutput>;
135
155
  listDiscoverers(args: ListDiscoverersCommandInput, cb: (err: any, data?: ListDiscoverersCommandOutput) => void): void;
136
156
  listDiscoverers(args: ListDiscoverersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDiscoverersCommandOutput) => void): void;
137
157
  /**
158
+ * @public
138
159
  * <p>List the registries.</p>
139
160
  */
140
161
  listRegistries(args: ListRegistriesCommandInput, options?: __HttpHandlerOptions): Promise<ListRegistriesCommandOutput>;
141
162
  listRegistries(args: ListRegistriesCommandInput, cb: (err: any, data?: ListRegistriesCommandOutput) => void): void;
142
163
  listRegistries(args: ListRegistriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRegistriesCommandOutput) => void): void;
143
164
  /**
165
+ * @public
144
166
  * <p>List the schemas.</p>
145
167
  */
146
168
  listSchemas(args: ListSchemasCommandInput, options?: __HttpHandlerOptions): Promise<ListSchemasCommandOutput>;
147
169
  listSchemas(args: ListSchemasCommandInput, cb: (err: any, data?: ListSchemasCommandOutput) => void): void;
148
170
  listSchemas(args: ListSchemasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchemasCommandOutput) => void): void;
149
171
  /**
172
+ * @public
150
173
  * <p>Provides a list of the schema versions and related information.</p>
151
174
  */
152
175
  listSchemaVersions(args: ListSchemaVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSchemaVersionsCommandOutput>;
153
176
  listSchemaVersions(args: ListSchemaVersionsCommandInput, cb: (err: any, data?: ListSchemaVersionsCommandOutput) => void): void;
154
177
  listSchemaVersions(args: ListSchemaVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchemaVersionsCommandOutput) => void): void;
155
178
  /**
179
+ * @public
156
180
  * <p>Get tags for resource.</p>
157
181
  */
158
182
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
159
183
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
160
184
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
161
185
  /**
186
+ * @public
162
187
  * <p>Put code binding URI</p>
163
188
  */
164
189
  putCodeBinding(args: PutCodeBindingCommandInput, options?: __HttpHandlerOptions): Promise<PutCodeBindingCommandOutput>;
165
190
  putCodeBinding(args: PutCodeBindingCommandInput, cb: (err: any, data?: PutCodeBindingCommandOutput) => void): void;
166
191
  putCodeBinding(args: PutCodeBindingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutCodeBindingCommandOutput) => void): void;
167
192
  /**
193
+ * @public
168
194
  * <p>The name of the policy.</p>
169
195
  */
170
196
  putResourcePolicy(args: PutResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePolicyCommandOutput>;
171
197
  putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
172
198
  putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
173
199
  /**
200
+ * @public
174
201
  * <p>Search the schemas</p>
175
202
  */
176
203
  searchSchemas(args: SearchSchemasCommandInput, options?: __HttpHandlerOptions): Promise<SearchSchemasCommandOutput>;
177
204
  searchSchemas(args: SearchSchemasCommandInput, cb: (err: any, data?: SearchSchemasCommandOutput) => void): void;
178
205
  searchSchemas(args: SearchSchemasCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSchemasCommandOutput) => void): void;
179
206
  /**
207
+ * @public
180
208
  * <p>Starts the discoverer</p>
181
209
  */
182
210
  startDiscoverer(args: StartDiscovererCommandInput, options?: __HttpHandlerOptions): Promise<StartDiscovererCommandOutput>;
183
211
  startDiscoverer(args: StartDiscovererCommandInput, cb: (err: any, data?: StartDiscovererCommandOutput) => void): void;
184
212
  startDiscoverer(args: StartDiscovererCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDiscovererCommandOutput) => void): void;
185
213
  /**
214
+ * @public
186
215
  * <p>Stops the discoverer</p>
187
216
  */
188
217
  stopDiscoverer(args: StopDiscovererCommandInput, options?: __HttpHandlerOptions): Promise<StopDiscovererCommandOutput>;
189
218
  stopDiscoverer(args: StopDiscovererCommandInput, cb: (err: any, data?: StopDiscovererCommandOutput) => void): void;
190
219
  stopDiscoverer(args: StopDiscovererCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDiscovererCommandOutput) => void): void;
191
220
  /**
221
+ * @public
192
222
  * <p>Add tags to a resource.</p>
193
223
  */
194
224
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
195
225
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
196
226
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
197
227
  /**
228
+ * @public
198
229
  * <p>Removes tags from a resource.</p>
199
230
  */
200
231
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
201
232
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
202
233
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
203
234
  /**
235
+ * @public
204
236
  * <p>Updates the discoverer</p>
205
237
  */
206
238
  updateDiscoverer(args: UpdateDiscovererCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDiscovererCommandOutput>;
207
239
  updateDiscoverer(args: UpdateDiscovererCommandInput, cb: (err: any, data?: UpdateDiscovererCommandOutput) => void): void;
208
240
  updateDiscoverer(args: UpdateDiscovererCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDiscovererCommandOutput) => void): void;
209
241
  /**
242
+ * @public
210
243
  * <p>Updates a registry.</p>
211
244
  */
212
245
  updateRegistry(args: UpdateRegistryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRegistryCommandOutput>;
213
246
  updateRegistry(args: UpdateRegistryCommandInput, cb: (err: any, data?: UpdateRegistryCommandOutput) => void): void;
214
247
  updateRegistry(args: UpdateRegistryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRegistryCommandOutput) => void): void;
215
248
  /**
249
+ * @public
216
250
  * <p>Updates the schema definition</p> <note><p>Inactive schemas will be deleted after two years.</p></note>
217
251
  */
218
252
  updateSchema(args: UpdateSchemaCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSchemaCommandOutput>;
@@ -39,15 +39,24 @@ import { UpdateDiscovererCommandInput, UpdateDiscovererCommandOutput } from "./c
39
39
  import { UpdateRegistryCommandInput, UpdateRegistryCommandOutput } from "./commands/UpdateRegistryCommand";
40
40
  import { UpdateSchemaCommandInput, UpdateSchemaCommandOutput } from "./commands/UpdateSchemaCommand";
41
41
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
42
+ /**
43
+ * @public
44
+ */
42
45
  export type ServiceInputTypes = CreateDiscovererCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | DeleteDiscovererCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionCommandInput | DescribeCodeBindingCommandInput | DescribeDiscovererCommandInput | DescribeRegistryCommandInput | DescribeSchemaCommandInput | ExportSchemaCommandInput | GetCodeBindingSourceCommandInput | GetDiscoveredSchemaCommandInput | GetResourcePolicyCommandInput | ListDiscoverersCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListTagsForResourceCommandInput | PutCodeBindingCommandInput | PutResourcePolicyCommandInput | SearchSchemasCommandInput | StartDiscovererCommandInput | StopDiscovererCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDiscovererCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput;
46
+ /**
47
+ * @public
48
+ */
43
49
  export type ServiceOutputTypes = CreateDiscovererCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | DeleteDiscovererCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionCommandOutput | DescribeCodeBindingCommandOutput | DescribeDiscovererCommandOutput | DescribeRegistryCommandOutput | DescribeSchemaCommandOutput | ExportSchemaCommandOutput | GetCodeBindingSourceCommandOutput | GetDiscoveredSchemaCommandOutput | GetResourcePolicyCommandOutput | ListDiscoverersCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListTagsForResourceCommandOutput | PutCodeBindingCommandOutput | PutResourcePolicyCommandOutput | SearchSchemasCommandOutput | StartDiscovererCommandOutput | StopDiscovererCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDiscovererCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput;
50
+ /**
51
+ * @public
52
+ */
44
53
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
45
54
  /**
46
55
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
47
56
  */
48
57
  requestHandler?: __HttpHandler;
49
58
  /**
50
- * A constructor for a class implementing the {@link __Checksum} interface
59
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
51
60
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
52
61
  * @internal
53
62
  */
@@ -137,23 +146,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
137
146
  */
138
147
  logger?: __Logger;
139
148
  /**
140
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
149
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
141
150
  */
142
151
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
143
152
  }
153
+ /**
154
+ * @public
155
+ */
144
156
  type SchemasClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
145
157
  /**
146
- * The configuration interface of SchemasClient class constructor that set the region, credentials and other options.
158
+ * @public
159
+ *
160
+ * The configuration interface of SchemasClient class constructor that set the region, credentials and other options.
147
161
  */
148
162
  export interface SchemasClientConfig extends SchemasClientConfigType {
149
163
  }
164
+ /**
165
+ * @public
166
+ */
150
167
  type SchemasClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
151
168
  /**
152
- * The resolved configuration interface of SchemasClient class. This is resolved and normalized from the {@link SchemasClientConfig | constructor configuration interface}.
169
+ * @public
170
+ *
171
+ * The resolved configuration interface of SchemasClient class. This is resolved and normalized from the {@link SchemasClientConfig | constructor configuration interface}.
153
172
  */
154
173
  export interface SchemasClientResolvedConfig extends SchemasClientResolvedConfigType {
155
174
  }
156
175
  /**
176
+ * @public
157
177
  * <p>Amazon EventBridge Schema Registry</p>
158
178
  */
159
179
  export declare class SchemasClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SchemasClientResolvedConfig> {
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateDiscovererRequest, CreateDiscovererResponse } from "../models/models_0";
5
5
  import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateDiscovererCommand}.
8
10
  */
9
11
  export interface CreateDiscovererCommandInput extends CreateDiscovererRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateDiscovererCommand}.
13
17
  */
14
18
  export interface CreateDiscovererCommandOutput extends CreateDiscovererResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a discoverer.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateDiscovererCommandOutput extends CreateDiscovererResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateDiscovererCommandInput - {@link CreateDiscovererCommandInput}
34
+ * @returns {@link CreateDiscovererCommandOutput}
28
35
  * @see {@link CreateDiscovererCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateDiscovererCommandOutput} for command's `response` shape.
30
37
  * @see {@link SchemasClientResolvedConfig | config} for SchemasClient's `config` shape.
@@ -46,11 +53,20 @@ export interface CreateDiscovererCommandOutput extends CreateDiscovererResponse,
46
53
  export declare class CreateDiscovererCommand extends $Command<CreateDiscovererCommandInput, CreateDiscovererCommandOutput, SchemasClientResolvedConfig> {
47
54
  readonly input: CreateDiscovererCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: CreateDiscovererCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchemasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDiscovererCommandInput, CreateDiscovererCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateRegistryRequest, CreateRegistryResponse } from "../models/models_0";
5
5
  import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateRegistryCommand}.
8
10
  */
9
11
  export interface CreateRegistryCommandInput extends CreateRegistryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateRegistryCommand}.
13
17
  */
14
18
  export interface CreateRegistryCommandOutput extends CreateRegistryResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a registry.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateRegistryCommandOutput extends CreateRegistryResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateRegistryCommandInput - {@link CreateRegistryCommandInput}
34
+ * @returns {@link CreateRegistryCommandOutput}
28
35
  * @see {@link CreateRegistryCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateRegistryCommandOutput} for command's `response` shape.
30
37
  * @see {@link SchemasClientResolvedConfig | config} for SchemasClient's `config` shape.
@@ -46,11 +53,20 @@ export interface CreateRegistryCommandOutput extends CreateRegistryResponse, __M
46
53
  export declare class CreateRegistryCommand extends $Command<CreateRegistryCommandInput, CreateRegistryCommandOutput, SchemasClientResolvedConfig> {
47
54
  readonly input: CreateRegistryCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: CreateRegistryCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchemasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRegistryCommandInput, CreateRegistryCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CreateSchemaRequest, CreateSchemaResponse } from "../models/models_0";
5
5
  import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateSchemaCommand}.
8
10
  */
9
11
  export interface CreateSchemaCommandInput extends CreateSchemaRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateSchemaCommand}.
13
17
  */
14
18
  export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a schema definition.</p> <note><p>Inactive schemas will be deleted after two years.</p></note>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param CreateSchemaCommandInput - {@link CreateSchemaCommandInput}
34
+ * @returns {@link CreateSchemaCommandOutput}
28
35
  * @see {@link CreateSchemaCommandInput} for command's `input` shape.
29
36
  * @see {@link CreateSchemaCommandOutput} for command's `response` shape.
30
37
  * @see {@link SchemasClientResolvedConfig | config} for SchemasClient's `config` shape.
@@ -42,11 +49,20 @@ export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __Metad
42
49
  export declare class CreateSchemaCommand extends $Command<CreateSchemaCommandInput, CreateSchemaCommandOutput, SchemasClientResolvedConfig> {
43
50
  readonly input: CreateSchemaCommandInput;
44
51
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
52
+ /**
53
+ * @public
54
+ */
45
55
  constructor(input: CreateSchemaCommandInput);
46
56
  /**
47
57
  * @internal
48
58
  */
49
59
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchemasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSchemaCommandInput, CreateSchemaCommandOutput>;
60
+ /**
61
+ * @internal
62
+ */
50
63
  private serialize;
64
+ /**
65
+ * @internal
66
+ */
51
67
  private deserialize;
52
68
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeleteDiscovererRequest } from "../models/models_0";
5
5
  import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteDiscovererCommand}.
8
10
  */
9
11
  export interface DeleteDiscovererCommandInput extends DeleteDiscovererRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteDiscovererCommand}.
13
17
  */
14
18
  export interface DeleteDiscovererCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a discoverer.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteDiscovererCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteDiscovererCommandInput - {@link DeleteDiscovererCommandInput}
34
+ * @returns {@link DeleteDiscovererCommandOutput}
28
35
  * @see {@link DeleteDiscovererCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteDiscovererCommandOutput} for command's `response` shape.
30
37
  * @see {@link SchemasClientResolvedConfig | config} for SchemasClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DeleteDiscovererCommandOutput extends __MetadataBearer {
46
53
  export declare class DeleteDiscovererCommand extends $Command<DeleteDiscovererCommandInput, DeleteDiscovererCommandOutput, SchemasClientResolvedConfig> {
47
54
  readonly input: DeleteDiscovererCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DeleteDiscovererCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchemasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDiscovererCommandInput, DeleteDiscovererCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeleteRegistryRequest } from "../models/models_0";
5
5
  import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteRegistryCommand}.
8
10
  */
9
11
  export interface DeleteRegistryCommandInput extends DeleteRegistryRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteRegistryCommand}.
13
17
  */
14
18
  export interface DeleteRegistryCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes a Registry.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteRegistryCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteRegistryCommandInput - {@link DeleteRegistryCommandInput}
34
+ * @returns {@link DeleteRegistryCommandOutput}
28
35
  * @see {@link DeleteRegistryCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteRegistryCommandOutput} for command's `response` shape.
30
37
  * @see {@link SchemasClientResolvedConfig | config} for SchemasClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DeleteRegistryCommandOutput extends __MetadataBearer {
46
53
  export declare class DeleteRegistryCommand extends $Command<DeleteRegistryCommandInput, DeleteRegistryCommandOutput, SchemasClientResolvedConfig> {
47
54
  readonly input: DeleteRegistryCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DeleteRegistryCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchemasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRegistryCommandInput, DeleteRegistryCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeleteResourcePolicyRequest } from "../models/models_0";
5
5
  import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteResourcePolicyCommand}.
8
10
  */
9
11
  export interface DeleteResourcePolicyCommandInput extends DeleteResourcePolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteResourcePolicyCommand}.
13
17
  */
14
18
  export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Delete the resource-based policy attached to the specified registry.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteResourcePolicyCommandInput - {@link DeleteResourcePolicyCommandInput}
34
+ * @returns {@link DeleteResourcePolicyCommandOutput}
28
35
  * @see {@link DeleteResourcePolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteResourcePolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link SchemasClientResolvedConfig | config} for SchemasClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DeleteResourcePolicyCommandOutput extends __MetadataBearer {
46
53
  export declare class DeleteResourcePolicyCommand extends $Command<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput, SchemasClientResolvedConfig> {
47
54
  readonly input: DeleteResourcePolicyCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DeleteResourcePolicyCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchemasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResourcePolicyCommandInput, DeleteResourcePolicyCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DeleteSchemaRequest } from "../models/models_0";
5
5
  import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteSchemaCommand}.
8
10
  */
9
11
  export interface DeleteSchemaCommandInput extends DeleteSchemaRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteSchemaCommand}.
13
17
  */
14
18
  export interface DeleteSchemaCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Delete a schema definition.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteSchemaCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteSchemaCommandInput - {@link DeleteSchemaCommandInput}
34
+ * @returns {@link DeleteSchemaCommandOutput}
28
35
  * @see {@link DeleteSchemaCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteSchemaCommandOutput} for command's `response` shape.
30
37
  * @see {@link SchemasClientResolvedConfig | config} for SchemasClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DeleteSchemaCommandOutput extends __MetadataBearer {
46
53
  export declare class DeleteSchemaCommand extends $Command<DeleteSchemaCommandInput, DeleteSchemaCommandOutput, SchemasClientResolvedConfig> {
47
54
  readonly input: DeleteSchemaCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DeleteSchemaCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SchemasClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSchemaCommandInput, DeleteSchemaCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }