aws-sdk-neptunegraph 1.22.0 → 1.23.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: 56e385f630ebfacfcc22471446c79341ba82d4b1100744c2aa35ac78c03c03ea
4
- data.tar.gz: a06ff3179cb35422c90beed62f6d8a7d0802fdf5d125f71ae8f45c91580b9655
3
+ metadata.gz: 476ba0f3eea4f6863cc38f5d0656a2723cead45ddc9a6ad2bbfa21a72df8b5e6
4
+ data.tar.gz: b8cd840e868d2c9f9c9f0083d5600feb4058e243da865ce3c279cc07baa62cee
5
5
  SHA512:
6
- metadata.gz: 2d9f7198737eb2a57249ff1b45ab639919049630689bcfc33a7e80d13d5b7febbff3ac6d4d1ebd65318ddf7812138f9c89daacba841e7fc143a290df4eed8bfa
7
- data.tar.gz: a88bb6143b87c850ee9a6eb6b46bbcd582b5729829abcf915652be18493955cc821653ed57373c704ab5f9306e384bbc770a6220702b2cc032efef7c0b8cab98
6
+ metadata.gz: 1fbc31478f702e5397d07c1a66a17f909017524bb6d3d00e75a5901af7477230785b8f620cfb33be40db15109659c23b1fed46b0ec1eb00891cf7dde0a93ca46
7
+ data.tar.gz: 3abb8cf1fd37edd986e7d027f6cdbbc4bc0eb96f1fd0670f9c221928f21aaa6d23ae9f495814008ef25972f6f9db791da90e224da47dea180569cb37c8264341
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2024-10-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.22.0 (2024-10-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -2138,7 +2138,7 @@ module Aws::NeptuneGraph
2138
2138
  tracer: tracer
2139
2139
  )
2140
2140
  context[:gem_name] = 'aws-sdk-neptunegraph'
2141
- context[:gem_version] = '1.22.0'
2141
+ context[:gem_version] = '1.23.0'
2142
2142
  Seahorse::Client::Request.new(handlers, context)
2143
2143
  end
2144
2144
 
@@ -59,19 +59,22 @@ module Aws::NeptuneGraph
59
59
  self[:region] = options[:region]
60
60
  self[:use_fips] = options[:use_fips]
61
61
  self[:use_fips] = false if self[:use_fips].nil?
62
- if self[:use_fips].nil?
63
- raise ArgumentError, "Missing required EndpointParameter: :use_fips"
64
- end
65
62
  self[:use_dual_stack] = options[:use_dual_stack]
66
63
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
67
- if self[:use_dual_stack].nil?
68
- raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
69
- end
70
64
  self[:endpoint] = options[:endpoint]
71
65
  self[:api_type] = options[:api_type]
72
66
  if self[:api_type].nil?
73
67
  raise ArgumentError, "Missing required EndpointParameter: :api_type"
74
68
  end
75
69
  end
70
+
71
+ def self.create(config, options={})
72
+ new({
73
+ region: config.region,
74
+ use_fips: config.use_fips_endpoint,
75
+ use_dual_stack: config.use_dualstack_endpoint,
76
+ endpoint: (config.endpoint.to_s unless config.regional_endpoint),
77
+ }.merge(options))
78
+ end
76
79
  end
77
80
  end
@@ -14,11 +14,8 @@ module Aws::NeptuneGraph
14
14
 
15
15
  class CancelImportTask
16
16
  def self.build(context)
17
- Aws::NeptuneGraph::EndpointParameters.new(
18
- region: context.config.region,
19
- use_fips: context.config.use_fips_endpoint,
20
- use_dual_stack: context.config.use_dualstack_endpoint,
21
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
17
+ Aws::NeptuneGraph::EndpointParameters.create(
18
+ context.config,
22
19
  api_type: "ControlPlane",
23
20
  )
24
21
  end
@@ -26,11 +23,8 @@ module Aws::NeptuneGraph
26
23
 
27
24
  class CancelQuery
28
25
  def self.build(context)
29
- Aws::NeptuneGraph::EndpointParameters.new(
30
- region: context.config.region,
31
- use_fips: context.config.use_fips_endpoint,
32
- use_dual_stack: context.config.use_dualstack_endpoint,
33
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
26
+ Aws::NeptuneGraph::EndpointParameters.create(
27
+ context.config,
34
28
  api_type: "DataPlane",
35
29
  )
36
30
  end
@@ -38,11 +32,8 @@ module Aws::NeptuneGraph
38
32
 
39
33
  class CreateGraph
40
34
  def self.build(context)
41
- Aws::NeptuneGraph::EndpointParameters.new(
42
- region: context.config.region,
43
- use_fips: context.config.use_fips_endpoint,
44
- use_dual_stack: context.config.use_dualstack_endpoint,
45
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
35
+ Aws::NeptuneGraph::EndpointParameters.create(
36
+ context.config,
46
37
  api_type: "ControlPlane",
47
38
  )
48
39
  end
@@ -50,11 +41,8 @@ module Aws::NeptuneGraph
50
41
 
51
42
  class CreateGraphSnapshot
52
43
  def self.build(context)
53
- Aws::NeptuneGraph::EndpointParameters.new(
54
- region: context.config.region,
55
- use_fips: context.config.use_fips_endpoint,
56
- use_dual_stack: context.config.use_dualstack_endpoint,
57
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
44
+ Aws::NeptuneGraph::EndpointParameters.create(
45
+ context.config,
58
46
  api_type: "ControlPlane",
59
47
  )
60
48
  end
@@ -62,11 +50,8 @@ module Aws::NeptuneGraph
62
50
 
63
51
  class CreateGraphUsingImportTask
64
52
  def self.build(context)
65
- Aws::NeptuneGraph::EndpointParameters.new(
66
- region: context.config.region,
67
- use_fips: context.config.use_fips_endpoint,
68
- use_dual_stack: context.config.use_dualstack_endpoint,
69
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
53
+ Aws::NeptuneGraph::EndpointParameters.create(
54
+ context.config,
70
55
  api_type: "ControlPlane",
71
56
  )
72
57
  end
@@ -74,11 +59,8 @@ module Aws::NeptuneGraph
74
59
 
75
60
  class CreatePrivateGraphEndpoint
76
61
  def self.build(context)
77
- Aws::NeptuneGraph::EndpointParameters.new(
78
- region: context.config.region,
79
- use_fips: context.config.use_fips_endpoint,
80
- use_dual_stack: context.config.use_dualstack_endpoint,
81
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
62
+ Aws::NeptuneGraph::EndpointParameters.create(
63
+ context.config,
82
64
  api_type: "ControlPlane",
83
65
  )
84
66
  end
@@ -86,11 +68,8 @@ module Aws::NeptuneGraph
86
68
 
87
69
  class DeleteGraph
88
70
  def self.build(context)
89
- Aws::NeptuneGraph::EndpointParameters.new(
90
- region: context.config.region,
91
- use_fips: context.config.use_fips_endpoint,
92
- use_dual_stack: context.config.use_dualstack_endpoint,
93
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
71
+ Aws::NeptuneGraph::EndpointParameters.create(
72
+ context.config,
94
73
  api_type: "ControlPlane",
95
74
  )
96
75
  end
@@ -98,11 +77,8 @@ module Aws::NeptuneGraph
98
77
 
99
78
  class DeleteGraphSnapshot
100
79
  def self.build(context)
101
- Aws::NeptuneGraph::EndpointParameters.new(
102
- region: context.config.region,
103
- use_fips: context.config.use_fips_endpoint,
104
- use_dual_stack: context.config.use_dualstack_endpoint,
105
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
80
+ Aws::NeptuneGraph::EndpointParameters.create(
81
+ context.config,
106
82
  api_type: "ControlPlane",
107
83
  )
108
84
  end
@@ -110,11 +86,8 @@ module Aws::NeptuneGraph
110
86
 
111
87
  class DeletePrivateGraphEndpoint
112
88
  def self.build(context)
113
- Aws::NeptuneGraph::EndpointParameters.new(
114
- region: context.config.region,
115
- use_fips: context.config.use_fips_endpoint,
116
- use_dual_stack: context.config.use_dualstack_endpoint,
117
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
89
+ Aws::NeptuneGraph::EndpointParameters.create(
90
+ context.config,
118
91
  api_type: "ControlPlane",
119
92
  )
120
93
  end
@@ -122,11 +95,8 @@ module Aws::NeptuneGraph
122
95
 
123
96
  class ExecuteQuery
124
97
  def self.build(context)
125
- Aws::NeptuneGraph::EndpointParameters.new(
126
- region: context.config.region,
127
- use_fips: context.config.use_fips_endpoint,
128
- use_dual_stack: context.config.use_dualstack_endpoint,
129
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
98
+ Aws::NeptuneGraph::EndpointParameters.create(
99
+ context.config,
130
100
  api_type: "DataPlane",
131
101
  )
132
102
  end
@@ -134,11 +104,8 @@ module Aws::NeptuneGraph
134
104
 
135
105
  class GetGraph
136
106
  def self.build(context)
137
- Aws::NeptuneGraph::EndpointParameters.new(
138
- region: context.config.region,
139
- use_fips: context.config.use_fips_endpoint,
140
- use_dual_stack: context.config.use_dualstack_endpoint,
141
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
107
+ Aws::NeptuneGraph::EndpointParameters.create(
108
+ context.config,
142
109
  api_type: "ControlPlane",
143
110
  )
144
111
  end
@@ -146,11 +113,8 @@ module Aws::NeptuneGraph
146
113
 
147
114
  class GetGraphSnapshot
148
115
  def self.build(context)
149
- Aws::NeptuneGraph::EndpointParameters.new(
150
- region: context.config.region,
151
- use_fips: context.config.use_fips_endpoint,
152
- use_dual_stack: context.config.use_dualstack_endpoint,
153
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
116
+ Aws::NeptuneGraph::EndpointParameters.create(
117
+ context.config,
154
118
  api_type: "ControlPlane",
155
119
  )
156
120
  end
@@ -158,11 +122,8 @@ module Aws::NeptuneGraph
158
122
 
159
123
  class GetGraphSummary
160
124
  def self.build(context)
161
- Aws::NeptuneGraph::EndpointParameters.new(
162
- region: context.config.region,
163
- use_fips: context.config.use_fips_endpoint,
164
- use_dual_stack: context.config.use_dualstack_endpoint,
165
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
125
+ Aws::NeptuneGraph::EndpointParameters.create(
126
+ context.config,
166
127
  api_type: "DataPlane",
167
128
  )
168
129
  end
@@ -170,11 +131,8 @@ module Aws::NeptuneGraph
170
131
 
171
132
  class GetImportTask
172
133
  def self.build(context)
173
- Aws::NeptuneGraph::EndpointParameters.new(
174
- region: context.config.region,
175
- use_fips: context.config.use_fips_endpoint,
176
- use_dual_stack: context.config.use_dualstack_endpoint,
177
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
134
+ Aws::NeptuneGraph::EndpointParameters.create(
135
+ context.config,
178
136
  api_type: "ControlPlane",
179
137
  )
180
138
  end
@@ -182,11 +140,8 @@ module Aws::NeptuneGraph
182
140
 
183
141
  class GetPrivateGraphEndpoint
184
142
  def self.build(context)
185
- Aws::NeptuneGraph::EndpointParameters.new(
186
- region: context.config.region,
187
- use_fips: context.config.use_fips_endpoint,
188
- use_dual_stack: context.config.use_dualstack_endpoint,
189
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
143
+ Aws::NeptuneGraph::EndpointParameters.create(
144
+ context.config,
190
145
  api_type: "ControlPlane",
191
146
  )
192
147
  end
@@ -194,11 +149,8 @@ module Aws::NeptuneGraph
194
149
 
195
150
  class GetQuery
196
151
  def self.build(context)
197
- Aws::NeptuneGraph::EndpointParameters.new(
198
- region: context.config.region,
199
- use_fips: context.config.use_fips_endpoint,
200
- use_dual_stack: context.config.use_dualstack_endpoint,
201
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
152
+ Aws::NeptuneGraph::EndpointParameters.create(
153
+ context.config,
202
154
  api_type: "DataPlane",
203
155
  )
204
156
  end
@@ -206,11 +158,8 @@ module Aws::NeptuneGraph
206
158
 
207
159
  class ListGraphSnapshots
208
160
  def self.build(context)
209
- Aws::NeptuneGraph::EndpointParameters.new(
210
- region: context.config.region,
211
- use_fips: context.config.use_fips_endpoint,
212
- use_dual_stack: context.config.use_dualstack_endpoint,
213
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
161
+ Aws::NeptuneGraph::EndpointParameters.create(
162
+ context.config,
214
163
  api_type: "ControlPlane",
215
164
  )
216
165
  end
@@ -218,11 +167,8 @@ module Aws::NeptuneGraph
218
167
 
219
168
  class ListGraphs
220
169
  def self.build(context)
221
- Aws::NeptuneGraph::EndpointParameters.new(
222
- region: context.config.region,
223
- use_fips: context.config.use_fips_endpoint,
224
- use_dual_stack: context.config.use_dualstack_endpoint,
225
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
170
+ Aws::NeptuneGraph::EndpointParameters.create(
171
+ context.config,
226
172
  api_type: "ControlPlane",
227
173
  )
228
174
  end
@@ -230,11 +176,8 @@ module Aws::NeptuneGraph
230
176
 
231
177
  class ListImportTasks
232
178
  def self.build(context)
233
- Aws::NeptuneGraph::EndpointParameters.new(
234
- region: context.config.region,
235
- use_fips: context.config.use_fips_endpoint,
236
- use_dual_stack: context.config.use_dualstack_endpoint,
237
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
179
+ Aws::NeptuneGraph::EndpointParameters.create(
180
+ context.config,
238
181
  api_type: "ControlPlane",
239
182
  )
240
183
  end
@@ -242,11 +185,8 @@ module Aws::NeptuneGraph
242
185
 
243
186
  class ListPrivateGraphEndpoints
244
187
  def self.build(context)
245
- Aws::NeptuneGraph::EndpointParameters.new(
246
- region: context.config.region,
247
- use_fips: context.config.use_fips_endpoint,
248
- use_dual_stack: context.config.use_dualstack_endpoint,
249
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
188
+ Aws::NeptuneGraph::EndpointParameters.create(
189
+ context.config,
250
190
  api_type: "ControlPlane",
251
191
  )
252
192
  end
@@ -254,11 +194,8 @@ module Aws::NeptuneGraph
254
194
 
255
195
  class ListQueries
256
196
  def self.build(context)
257
- Aws::NeptuneGraph::EndpointParameters.new(
258
- region: context.config.region,
259
- use_fips: context.config.use_fips_endpoint,
260
- use_dual_stack: context.config.use_dualstack_endpoint,
261
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
197
+ Aws::NeptuneGraph::EndpointParameters.create(
198
+ context.config,
262
199
  api_type: "DataPlane",
263
200
  )
264
201
  end
@@ -266,11 +203,8 @@ module Aws::NeptuneGraph
266
203
 
267
204
  class ListTagsForResource
268
205
  def self.build(context)
269
- Aws::NeptuneGraph::EndpointParameters.new(
270
- region: context.config.region,
271
- use_fips: context.config.use_fips_endpoint,
272
- use_dual_stack: context.config.use_dualstack_endpoint,
273
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
206
+ Aws::NeptuneGraph::EndpointParameters.create(
207
+ context.config,
274
208
  api_type: "ControlPlane",
275
209
  )
276
210
  end
@@ -278,11 +212,8 @@ module Aws::NeptuneGraph
278
212
 
279
213
  class ResetGraph
280
214
  def self.build(context)
281
- Aws::NeptuneGraph::EndpointParameters.new(
282
- region: context.config.region,
283
- use_fips: context.config.use_fips_endpoint,
284
- use_dual_stack: context.config.use_dualstack_endpoint,
285
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
215
+ Aws::NeptuneGraph::EndpointParameters.create(
216
+ context.config,
286
217
  api_type: "ControlPlane",
287
218
  )
288
219
  end
@@ -290,11 +221,8 @@ module Aws::NeptuneGraph
290
221
 
291
222
  class RestoreGraphFromSnapshot
292
223
  def self.build(context)
293
- Aws::NeptuneGraph::EndpointParameters.new(
294
- region: context.config.region,
295
- use_fips: context.config.use_fips_endpoint,
296
- use_dual_stack: context.config.use_dualstack_endpoint,
297
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
224
+ Aws::NeptuneGraph::EndpointParameters.create(
225
+ context.config,
298
226
  api_type: "ControlPlane",
299
227
  )
300
228
  end
@@ -302,11 +230,8 @@ module Aws::NeptuneGraph
302
230
 
303
231
  class StartImportTask
304
232
  def self.build(context)
305
- Aws::NeptuneGraph::EndpointParameters.new(
306
- region: context.config.region,
307
- use_fips: context.config.use_fips_endpoint,
308
- use_dual_stack: context.config.use_dualstack_endpoint,
309
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
233
+ Aws::NeptuneGraph::EndpointParameters.create(
234
+ context.config,
310
235
  api_type: "ControlPlane",
311
236
  )
312
237
  end
@@ -314,11 +239,8 @@ module Aws::NeptuneGraph
314
239
 
315
240
  class TagResource
316
241
  def self.build(context)
317
- Aws::NeptuneGraph::EndpointParameters.new(
318
- region: context.config.region,
319
- use_fips: context.config.use_fips_endpoint,
320
- use_dual_stack: context.config.use_dualstack_endpoint,
321
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
242
+ Aws::NeptuneGraph::EndpointParameters.create(
243
+ context.config,
322
244
  api_type: "ControlPlane",
323
245
  )
324
246
  end
@@ -326,11 +248,8 @@ module Aws::NeptuneGraph
326
248
 
327
249
  class UntagResource
328
250
  def self.build(context)
329
- Aws::NeptuneGraph::EndpointParameters.new(
330
- region: context.config.region,
331
- use_fips: context.config.use_fips_endpoint,
332
- use_dual_stack: context.config.use_dualstack_endpoint,
333
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
251
+ Aws::NeptuneGraph::EndpointParameters.create(
252
+ context.config,
334
253
  api_type: "ControlPlane",
335
254
  )
336
255
  end
@@ -338,15 +257,75 @@ module Aws::NeptuneGraph
338
257
 
339
258
  class UpdateGraph
340
259
  def self.build(context)
341
- Aws::NeptuneGraph::EndpointParameters.new(
342
- region: context.config.region,
343
- use_fips: context.config.use_fips_endpoint,
344
- use_dual_stack: context.config.use_dualstack_endpoint,
345
- endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
260
+ Aws::NeptuneGraph::EndpointParameters.create(
261
+ context.config,
346
262
  api_type: "ControlPlane",
347
263
  )
348
264
  end
349
265
  end
350
266
 
267
+
268
+ def self.parameters_for_operation(context)
269
+ case context.operation_name
270
+ when :cancel_import_task
271
+ CancelImportTask.build(context)
272
+ when :cancel_query
273
+ CancelQuery.build(context)
274
+ when :create_graph
275
+ CreateGraph.build(context)
276
+ when :create_graph_snapshot
277
+ CreateGraphSnapshot.build(context)
278
+ when :create_graph_using_import_task
279
+ CreateGraphUsingImportTask.build(context)
280
+ when :create_private_graph_endpoint
281
+ CreatePrivateGraphEndpoint.build(context)
282
+ when :delete_graph
283
+ DeleteGraph.build(context)
284
+ when :delete_graph_snapshot
285
+ DeleteGraphSnapshot.build(context)
286
+ when :delete_private_graph_endpoint
287
+ DeletePrivateGraphEndpoint.build(context)
288
+ when :execute_query
289
+ ExecuteQuery.build(context)
290
+ when :get_graph
291
+ GetGraph.build(context)
292
+ when :get_graph_snapshot
293
+ GetGraphSnapshot.build(context)
294
+ when :get_graph_summary
295
+ GetGraphSummary.build(context)
296
+ when :get_import_task
297
+ GetImportTask.build(context)
298
+ when :get_private_graph_endpoint
299
+ GetPrivateGraphEndpoint.build(context)
300
+ when :get_query
301
+ GetQuery.build(context)
302
+ when :list_graph_snapshots
303
+ ListGraphSnapshots.build(context)
304
+ when :list_graphs
305
+ ListGraphs.build(context)
306
+ when :list_import_tasks
307
+ ListImportTasks.build(context)
308
+ when :list_private_graph_endpoints
309
+ ListPrivateGraphEndpoints.build(context)
310
+ when :list_queries
311
+ ListQueries.build(context)
312
+ when :list_tags_for_resource
313
+ ListTagsForResource.build(context)
314
+ when :reset_graph
315
+ ResetGraph.build(context)
316
+ when :restore_graph_from_snapshot
317
+ RestoreGraphFromSnapshot.build(context)
318
+ when :start_import_task
319
+ StartImportTask.build(context)
320
+ when :tag_resource
321
+ TagResource.build(context)
322
+ when :untag_resource
323
+ UntagResource.build(context)
324
+ when :update_graph
325
+ UpdateGraph.build(context)
326
+ else
327
+ Aws::NeptuneGraph::EndpointParameters.create(context.config)
328
+ end
329
+ end
351
330
  end
352
331
  end
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
27
27
  class Handler < Seahorse::Client::Handler
28
28
  def call(context)
29
29
  unless context[:discovered_endpoint]
30
- params = parameters_for_operation(context)
30
+ params = Aws::NeptuneGraph::Endpoints.parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
@@ -67,67 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
67
67
  context.http_request.headers[key] = value
68
68
  end
69
69
  end
70
-
71
- def parameters_for_operation(context)
72
- case context.operation_name
73
- when :cancel_import_task
74
- Aws::NeptuneGraph::Endpoints::CancelImportTask.build(context)
75
- when :cancel_query
76
- Aws::NeptuneGraph::Endpoints::CancelQuery.build(context)
77
- when :create_graph
78
- Aws::NeptuneGraph::Endpoints::CreateGraph.build(context)
79
- when :create_graph_snapshot
80
- Aws::NeptuneGraph::Endpoints::CreateGraphSnapshot.build(context)
81
- when :create_graph_using_import_task
82
- Aws::NeptuneGraph::Endpoints::CreateGraphUsingImportTask.build(context)
83
- when :create_private_graph_endpoint
84
- Aws::NeptuneGraph::Endpoints::CreatePrivateGraphEndpoint.build(context)
85
- when :delete_graph
86
- Aws::NeptuneGraph::Endpoints::DeleteGraph.build(context)
87
- when :delete_graph_snapshot
88
- Aws::NeptuneGraph::Endpoints::DeleteGraphSnapshot.build(context)
89
- when :delete_private_graph_endpoint
90
- Aws::NeptuneGraph::Endpoints::DeletePrivateGraphEndpoint.build(context)
91
- when :execute_query
92
- Aws::NeptuneGraph::Endpoints::ExecuteQuery.build(context)
93
- when :get_graph
94
- Aws::NeptuneGraph::Endpoints::GetGraph.build(context)
95
- when :get_graph_snapshot
96
- Aws::NeptuneGraph::Endpoints::GetGraphSnapshot.build(context)
97
- when :get_graph_summary
98
- Aws::NeptuneGraph::Endpoints::GetGraphSummary.build(context)
99
- when :get_import_task
100
- Aws::NeptuneGraph::Endpoints::GetImportTask.build(context)
101
- when :get_private_graph_endpoint
102
- Aws::NeptuneGraph::Endpoints::GetPrivateGraphEndpoint.build(context)
103
- when :get_query
104
- Aws::NeptuneGraph::Endpoints::GetQuery.build(context)
105
- when :list_graph_snapshots
106
- Aws::NeptuneGraph::Endpoints::ListGraphSnapshots.build(context)
107
- when :list_graphs
108
- Aws::NeptuneGraph::Endpoints::ListGraphs.build(context)
109
- when :list_import_tasks
110
- Aws::NeptuneGraph::Endpoints::ListImportTasks.build(context)
111
- when :list_private_graph_endpoints
112
- Aws::NeptuneGraph::Endpoints::ListPrivateGraphEndpoints.build(context)
113
- when :list_queries
114
- Aws::NeptuneGraph::Endpoints::ListQueries.build(context)
115
- when :list_tags_for_resource
116
- Aws::NeptuneGraph::Endpoints::ListTagsForResource.build(context)
117
- when :reset_graph
118
- Aws::NeptuneGraph::Endpoints::ResetGraph.build(context)
119
- when :restore_graph_from_snapshot
120
- Aws::NeptuneGraph::Endpoints::RestoreGraphFromSnapshot.build(context)
121
- when :start_import_task
122
- Aws::NeptuneGraph::Endpoints::StartImportTask.build(context)
123
- when :tag_resource
124
- Aws::NeptuneGraph::Endpoints::TagResource.build(context)
125
- when :untag_resource
126
- Aws::NeptuneGraph::Endpoints::UntagResource.build(context)
127
- when :update_graph
128
- Aws::NeptuneGraph::Endpoints::UpdateGraph.build(context)
129
- end
130
- end
131
70
  end
132
71
 
133
72
  def add_handlers(handlers, _config)
@@ -55,7 +55,7 @@ module Aws::NeptuneGraph
55
55
  autoload :EndpointProvider, 'aws-sdk-neptunegraph/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-neptunegraph/endpoints'
57
57
 
58
- GEM_VERSION = '1.22.0'
58
+ GEM_VERSION = '1.23.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-neptunegraph
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.23.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: 2024-10-10 00:00:00.000000000 Z
11
+ date: 2024-10-18 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.207.0
22
+ version: 3.210.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.207.0
32
+ version: 3.210.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement