aws-sdk-schemas 1.24.0 → 1.26.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 84a0e22fcf8f4ed7788fa3209cbad1e491def71c2c88d88770ec09a02c352d3b
4
- data.tar.gz: 82befb456c76c43d357611eced65f56764f16384ae844f0a2cc4bdee578d8a2d
3
+ metadata.gz: 8fad0cce53c471bdb05bc46f7ae2cd9e1901ce51af1ddafb0df65fcc05d66b97
4
+ data.tar.gz: 326420351525d8ef8aaa6ba259a9e57f81f3186fd448a83d2356ea47affa0622
5
5
  SHA512:
6
- metadata.gz: 3003fe34bc0d2a5dcd852b83302305f70e248318c8ff61e6f1ca8eeb0e3516afca66d6bcdf1a3405d48d3cdf9f9ee08bd1a84ca0b68102f43ec54d4052ff2aa3
7
- data.tar.gz: 92e37ef12b7b822be21d3d8260ca972ec6f394528dfe84c7682d797c277d8b5e7c53610514ff896b795f13255f25f1c29e8fdef3aa9ec1dac5105c150dda6695
6
+ metadata.gz: d74ca6c65621f593f2ab8a9b494cf80e3e4dd67d7e3c8728f1b82943d732cd1a5d7b669151c9a4ac141c1586fa9eaaca1efadbb4b43a4ec6d1402a08255cb21a
7
+ data.tar.gz: 92f4568cc1230a1fa428a02653705fcbebf2f66e5b917f497fdc7f7f0054d0639caa224dee4c1191e7bcc9f6131d220bd0ce408aafba8697e487d474e6acd6d2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.25.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.24.0 (2022-10-25)
5
17
  ------------------
6
18
 
@@ -130,4 +142,4 @@ Unreleased Changes
130
142
  1.0.0 (2019-12-02)
131
143
  ------------------
132
144
 
133
- * Feature - Initial release of `aws-sdk-schemas`.
145
+ * Feature - Initial release of `aws-sdk-schemas`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.26.0
@@ -275,6 +275,11 @@ module Aws::Schemas
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -1555,7 +1560,7 @@ module Aws::Schemas
1555
1560
  params: params,
1556
1561
  config: config)
1557
1562
  context[:gem_name] = 'aws-sdk-schemas'
1558
- context[:gem_version] = '1.24.0'
1563
+ context[:gem_version] = '1.26.0'
1559
1564
  Seahorse::Client::Request.new(handlers, context)
1560
1565
  end
1561
1566
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::Schemas
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://schemas-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://schemas-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://schemas.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://schemas.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3NjaGVtYXMtZmlwcy57UmVnaW9ufS57UGFy
77
- dGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
78
- Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29u
79
- ZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBl
80
- bmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBv
81
- bmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpb
82
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
83
- In0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
84
- cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6
85
- ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwi
86
- c3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
87
- b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
88
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc2NoZW1hcy1m
89
- aXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
90
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
91
- XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxl
92
- ZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwi
93
- dHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVh
94
- bkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVd
95
- fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZu
96
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRy
97
- IiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRz
98
- RHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
99
- aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9zY2hlbWFz
100
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4
101
- fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
102
- b2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sg
103
- aXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
104
- dCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
105
- W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vc2NoZW1hcy57UmVnaW9u
106
- fS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
107
- fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -95,18 +95,6 @@ module Aws::Schemas
95
95
  include Aws::Structure
96
96
  end
97
97
 
98
- # @note When making an API call, you may pass CreateDiscovererRequest
99
- # data as a hash:
100
- #
101
- # {
102
- # description: "__stringMin0Max256",
103
- # source_arn: "__stringMin20Max1600", # required
104
- # cross_account: false,
105
- # tags: {
106
- # "__string" => "__string",
107
- # },
108
- # }
109
- #
110
98
  # @!attribute [rw] description
111
99
  # @return [String]
112
100
  #
@@ -184,17 +172,6 @@ module Aws::Schemas
184
172
  include Aws::Structure
185
173
  end
186
174
 
187
- # @note When making an API call, you may pass CreateRegistryRequest
188
- # data as a hash:
189
- #
190
- # {
191
- # description: "__stringMin0Max256",
192
- # registry_name: "__string", # required
193
- # tags: {
194
- # "__string" => "__string",
195
- # },
196
- # }
197
- #
198
175
  # @!attribute [rw] description
199
176
  # @return [String]
200
177
  #
@@ -266,20 +243,6 @@ module Aws::Schemas
266
243
  include Aws::Structure
267
244
  end
268
245
 
269
- # @note When making an API call, you may pass CreateSchemaRequest
270
- # data as a hash:
271
- #
272
- # {
273
- # content: "__stringMin1Max100000", # required
274
- # description: "__stringMin0Max256",
275
- # registry_name: "__string", # required
276
- # schema_name: "__string", # required
277
- # tags: {
278
- # "__string" => "__string",
279
- # },
280
- # type: "OpenApi3", # required, accepts OpenApi3
281
- # }
282
- #
283
246
  # @!attribute [rw] content
284
247
  # @return [String]
285
248
  #
@@ -352,13 +315,6 @@ module Aws::Schemas
352
315
  include Aws::Structure
353
316
  end
354
317
 
355
- # @note When making an API call, you may pass DeleteDiscovererRequest
356
- # data as a hash:
357
- #
358
- # {
359
- # discoverer_id: "__string", # required
360
- # }
361
- #
362
318
  # @!attribute [rw] discoverer_id
363
319
  # @return [String]
364
320
  #
@@ -370,13 +326,6 @@ module Aws::Schemas
370
326
  include Aws::Structure
371
327
  end
372
328
 
373
- # @note When making an API call, you may pass DeleteRegistryRequest
374
- # data as a hash:
375
- #
376
- # {
377
- # registry_name: "__string", # required
378
- # }
379
- #
380
329
  # @!attribute [rw] registry_name
381
330
  # @return [String]
382
331
  #
@@ -388,13 +337,6 @@ module Aws::Schemas
388
337
  include Aws::Structure
389
338
  end
390
339
 
391
- # @note When making an API call, you may pass DeleteResourcePolicyRequest
392
- # data as a hash:
393
- #
394
- # {
395
- # registry_name: "__string",
396
- # }
397
- #
398
340
  # @!attribute [rw] registry_name
399
341
  # @return [String]
400
342
  #
@@ -406,14 +348,6 @@ module Aws::Schemas
406
348
  include Aws::Structure
407
349
  end
408
350
 
409
- # @note When making an API call, you may pass DeleteSchemaRequest
410
- # data as a hash:
411
- #
412
- # {
413
- # registry_name: "__string", # required
414
- # schema_name: "__string", # required
415
- # }
416
- #
417
351
  # @!attribute [rw] registry_name
418
352
  # @return [String]
419
353
  #
@@ -429,15 +363,6 @@ module Aws::Schemas
429
363
  include Aws::Structure
430
364
  end
431
365
 
432
- # @note When making an API call, you may pass DeleteSchemaVersionRequest
433
- # data as a hash:
434
- #
435
- # {
436
- # registry_name: "__string", # required
437
- # schema_name: "__string", # required
438
- # schema_version: "__string", # required
439
- # }
440
- #
441
366
  # @!attribute [rw] registry_name
442
367
  # @return [String]
443
368
  #
@@ -457,16 +382,6 @@ module Aws::Schemas
457
382
  include Aws::Structure
458
383
  end
459
384
 
460
- # @note When making an API call, you may pass DescribeCodeBindingRequest
461
- # data as a hash:
462
- #
463
- # {
464
- # language: "__string", # required
465
- # registry_name: "__string", # required
466
- # schema_name: "__string", # required
467
- # schema_version: "__string",
468
- # }
469
- #
470
385
  # @!attribute [rw] language
471
386
  # @return [String]
472
387
  #
@@ -513,13 +428,6 @@ module Aws::Schemas
513
428
  include Aws::Structure
514
429
  end
515
430
 
516
- # @note When making an API call, you may pass DescribeDiscovererRequest
517
- # data as a hash:
518
- #
519
- # {
520
- # discoverer_id: "__string", # required
521
- # }
522
- #
523
431
  # @!attribute [rw] discoverer_id
524
432
  # @return [String]
525
433
  #
@@ -567,13 +475,6 @@ module Aws::Schemas
567
475
  include Aws::Structure
568
476
  end
569
477
 
570
- # @note When making an API call, you may pass DescribeRegistryRequest
571
- # data as a hash:
572
- #
573
- # {
574
- # registry_name: "__string", # required
575
- # }
576
- #
577
478
  # @!attribute [rw] registry_name
578
479
  # @return [String]
579
480
  #
@@ -661,15 +562,6 @@ module Aws::Schemas
661
562
  include Aws::Structure
662
563
  end
663
564
 
664
- # @note When making an API call, you may pass DescribeSchemaRequest
665
- # data as a hash:
666
- #
667
- # {
668
- # registry_name: "__string", # required
669
- # schema_name: "__string", # required
670
- # schema_version: "__string",
671
- # }
672
- #
673
565
  # @!attribute [rw] registry_name
674
566
  # @return [String]
675
567
  #
@@ -863,16 +755,6 @@ module Aws::Schemas
863
755
  include Aws::Structure
864
756
  end
865
757
 
866
- # @note When making an API call, you may pass GetCodeBindingSourceRequest
867
- # data as a hash:
868
- #
869
- # {
870
- # language: "__string", # required
871
- # registry_name: "__string", # required
872
- # schema_name: "__string", # required
873
- # schema_version: "__string",
874
- # }
875
- #
876
758
  # @!attribute [rw] language
877
759
  # @return [String]
878
760
  #
@@ -938,14 +820,6 @@ module Aws::Schemas
938
820
  include Aws::Structure
939
821
  end
940
822
 
941
- # @note When making an API call, you may pass GetDiscoveredSchemaRequest
942
- # data as a hash:
943
- #
944
- # {
945
- # events: ["GetDiscoveredSchemaVersionItemInput"], # required
946
- # type: "OpenApi3", # required, accepts OpenApi3
947
- # }
948
- #
949
823
  # @!attribute [rw] events
950
824
  # @return [Array<String>]
951
825
  #
@@ -991,13 +865,6 @@ module Aws::Schemas
991
865
  include Aws::Structure
992
866
  end
993
867
 
994
- # @note When making an API call, you may pass GetResourcePolicyRequest
995
- # data as a hash:
996
- #
997
- # {
998
- # registry_name: "__string",
999
- # }
1000
- #
1001
868
  # @!attribute [rw] registry_name
1002
869
  # @return [String]
1003
870
  #
@@ -1072,16 +939,6 @@ module Aws::Schemas
1072
939
  include Aws::Structure
1073
940
  end
1074
941
 
1075
- # @note When making an API call, you may pass ListDiscoverersRequest
1076
- # data as a hash:
1077
- #
1078
- # {
1079
- # discoverer_id_prefix: "__string",
1080
- # limit: 1,
1081
- # next_token: "__string",
1082
- # source_arn_prefix: "__string",
1083
- # }
1084
- #
1085
942
  # @!attribute [rw] discoverer_id_prefix
1086
943
  # @return [String]
1087
944
  #
@@ -1141,16 +998,6 @@ module Aws::Schemas
1141
998
  include Aws::Structure
1142
999
  end
1143
1000
 
1144
- # @note When making an API call, you may pass ListRegistriesRequest
1145
- # data as a hash:
1146
- #
1147
- # {
1148
- # limit: 1,
1149
- # next_token: "__string",
1150
- # registry_name_prefix: "__string",
1151
- # scope: "__string",
1152
- # }
1153
- #
1154
1001
  # @!attribute [rw] limit
1155
1002
  # @return [Integer]
1156
1003
  #
@@ -1208,16 +1055,6 @@ module Aws::Schemas
1208
1055
  include Aws::Structure
1209
1056
  end
1210
1057
 
1211
- # @note When making an API call, you may pass ListSchemaVersionsRequest
1212
- # data as a hash:
1213
- #
1214
- # {
1215
- # limit: 1,
1216
- # next_token: "__string",
1217
- # registry_name: "__string", # required
1218
- # schema_name: "__string", # required
1219
- # }
1220
- #
1221
1058
  # @!attribute [rw] limit
1222
1059
  # @return [Integer]
1223
1060
  #
@@ -1275,16 +1112,6 @@ module Aws::Schemas
1275
1112
  include Aws::Structure
1276
1113
  end
1277
1114
 
1278
- # @note When making an API call, you may pass ListSchemasRequest
1279
- # data as a hash:
1280
- #
1281
- # {
1282
- # limit: 1,
1283
- # next_token: "__string",
1284
- # registry_name: "__string", # required
1285
- # schema_name_prefix: "__string",
1286
- # }
1287
- #
1288
1115
  # @!attribute [rw] limit
1289
1116
  # @return [Integer]
1290
1117
  #
@@ -1335,13 +1162,6 @@ module Aws::Schemas
1335
1162
  include Aws::Structure
1336
1163
  end
1337
1164
 
1338
- # @note When making an API call, you may pass ListTagsForResourceRequest
1339
- # data as a hash:
1340
- #
1341
- # {
1342
- # resource_arn: "__string", # required
1343
- # }
1344
- #
1345
1165
  # @!attribute [rw] resource_arn
1346
1166
  # @return [String]
1347
1167
  #
@@ -1395,16 +1215,6 @@ module Aws::Schemas
1395
1215
  include Aws::Structure
1396
1216
  end
1397
1217
 
1398
- # @note When making an API call, you may pass PutCodeBindingRequest
1399
- # data as a hash:
1400
- #
1401
- # {
1402
- # language: "__string", # required
1403
- # registry_name: "__string", # required
1404
- # schema_name: "__string", # required
1405
- # schema_version: "__string",
1406
- # }
1407
- #
1408
1218
  # @!attribute [rw] language
1409
1219
  # @return [String]
1410
1220
  #
@@ -1491,15 +1301,6 @@ module Aws::Schemas
1491
1301
  include Aws::Structure
1492
1302
  end
1493
1303
 
1494
- # @note When making an API call, you may pass PutResourcePolicyRequest
1495
- # data as a hash:
1496
- #
1497
- # {
1498
- # policy: "__string", # required
1499
- # registry_name: "__string",
1500
- # revision_id: "__string",
1501
- # }
1502
- #
1503
1304
  # @!attribute [rw] policy
1504
1305
  # @return [String]
1505
1306
  #
@@ -1757,16 +1558,6 @@ module Aws::Schemas
1757
1558
  include Aws::Structure
1758
1559
  end
1759
1560
 
1760
- # @note When making an API call, you may pass SearchSchemasRequest
1761
- # data as a hash:
1762
- #
1763
- # {
1764
- # keywords: "__string", # required
1765
- # limit: 1,
1766
- # next_token: "__string",
1767
- # registry_name: "__string", # required
1768
- # }
1769
- #
1770
1561
  # @!attribute [rw] keywords
1771
1562
  # @return [String]
1772
1563
  #
@@ -1820,13 +1611,6 @@ module Aws::Schemas
1820
1611
  include Aws::Structure
1821
1612
  end
1822
1613
 
1823
- # @note When making an API call, you may pass StartDiscovererRequest
1824
- # data as a hash:
1825
- #
1826
- # {
1827
- # discoverer_id: "__string", # required
1828
- # }
1829
- #
1830
1614
  # @!attribute [rw] discoverer_id
1831
1615
  # @return [String]
1832
1616
  #
@@ -1853,13 +1637,6 @@ module Aws::Schemas
1853
1637
  include Aws::Structure
1854
1638
  end
1855
1639
 
1856
- # @note When making an API call, you may pass StopDiscovererRequest
1857
- # data as a hash:
1858
- #
1859
- # {
1860
- # discoverer_id: "__string", # required
1861
- # }
1862
- #
1863
1640
  # @!attribute [rw] discoverer_id
1864
1641
  # @return [String]
1865
1642
  #
@@ -1898,16 +1675,6 @@ module Aws::Schemas
1898
1675
  include Aws::Structure
1899
1676
  end
1900
1677
 
1901
- # @note When making an API call, you may pass TagResourceRequest
1902
- # data as a hash:
1903
- #
1904
- # {
1905
- # resource_arn: "__string", # required
1906
- # tags: { # required
1907
- # "__string" => "__string",
1908
- # },
1909
- # }
1910
- #
1911
1678
  # @!attribute [rw] resource_arn
1912
1679
  # @return [String]
1913
1680
  #
@@ -1954,14 +1721,6 @@ module Aws::Schemas
1954
1721
  include Aws::Structure
1955
1722
  end
1956
1723
 
1957
- # @note When making an API call, you may pass UntagResourceRequest
1958
- # data as a hash:
1959
- #
1960
- # {
1961
- # resource_arn: "__string", # required
1962
- # tag_keys: ["__string"], # required
1963
- # }
1964
- #
1965
1724
  # @!attribute [rw] resource_arn
1966
1725
  # @return [String]
1967
1726
  #
@@ -1995,15 +1754,6 @@ module Aws::Schemas
1995
1754
  include Aws::Structure
1996
1755
  end
1997
1756
 
1998
- # @note When making an API call, you may pass UpdateDiscovererRequest
1999
- # data as a hash:
2000
- #
2001
- # {
2002
- # description: "__stringMin0Max256",
2003
- # discoverer_id: "__string", # required
2004
- # cross_account: false,
2005
- # }
2006
- #
2007
1757
  # @!attribute [rw] description
2008
1758
  # @return [String]
2009
1759
  #
@@ -2071,14 +1821,6 @@ module Aws::Schemas
2071
1821
  include Aws::Structure
2072
1822
  end
2073
1823
 
2074
- # @note When making an API call, you may pass UpdateRegistryRequest
2075
- # data as a hash:
2076
- #
2077
- # {
2078
- # description: "__stringMin0Max256",
2079
- # registry_name: "__string", # required
2080
- # }
2081
- #
2082
1824
  # @!attribute [rw] description
2083
1825
  # @return [String]
2084
1826
  #
@@ -2148,18 +1890,6 @@ module Aws::Schemas
2148
1890
  include Aws::Structure
2149
1891
  end
2150
1892
 
2151
- # @note When making an API call, you may pass UpdateSchemaRequest
2152
- # data as a hash:
2153
- #
2154
- # {
2155
- # client_token_id: "__stringMin0Max36",
2156
- # content: "__stringMin1Max100000",
2157
- # description: "__stringMin0Max256",
2158
- # registry_name: "__string", # required
2159
- # schema_name: "__string", # required
2160
- # type: "OpenApi3", # accepts OpenApi3
2161
- # }
2162
- #
2163
1893
  # @!attribute [rw] client_token_id
2164
1894
  # **A suitable default value is auto-generated.** You should normally
2165
1895
  # not need to pass this option.
@@ -2265,16 +1995,6 @@ module Aws::Schemas
2265
1995
  include Aws::Structure
2266
1996
  end
2267
1997
 
2268
- # @note When making an API call, you may pass ExportSchemaRequest
2269
- # data as a hash:
2270
- #
2271
- # {
2272
- # registry_name: "__string", # required
2273
- # schema_name: "__string", # required
2274
- # schema_version: "__string",
2275
- # type: "__string", # required
2276
- # }
2277
- #
2278
1998
  # @!attribute [rw] registry_name
2279
1999
  # @return [String]
2280
2000
  #
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-schemas/customizations'
53
53
  # @!group service
54
54
  module Aws::Schemas
55
55
 
56
- GEM_VERSION = '1.24.0'
56
+ GEM_VERSION = '1.26.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-schemas
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement