aws-sdk-finspace 1.26.0 → 1.27.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-finspace/client.rb +1094 -12
- data/lib/aws-sdk-finspace/client_api.rb +640 -9
- data/lib/aws-sdk-finspace/endpoints.rb +196 -0
- data/lib/aws-sdk-finspace/plugins/endpoints.rb +28 -0
- data/lib/aws-sdk-finspace/types.rb +2010 -123
- data/lib/aws-sdk-finspace.rb +1 -1
- metadata +2 -2
@@ -68,6 +68,20 @@ module Aws::Finspace
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
+
class CreateKxDataview
|
72
|
+
def self.build(context)
|
73
|
+
unless context.config.regional_endpoint
|
74
|
+
endpoint = context.config.endpoint.to_s
|
75
|
+
end
|
76
|
+
Aws::Finspace::EndpointParameters.new(
|
77
|
+
region: context.config.region,
|
78
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
79
|
+
use_fips: context.config.use_fips_endpoint,
|
80
|
+
endpoint: endpoint,
|
81
|
+
)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
71
85
|
class CreateKxEnvironment
|
72
86
|
def self.build(context)
|
73
87
|
unless context.config.regional_endpoint
|
@@ -82,6 +96,20 @@ module Aws::Finspace
|
|
82
96
|
end
|
83
97
|
end
|
84
98
|
|
99
|
+
class CreateKxScalingGroup
|
100
|
+
def self.build(context)
|
101
|
+
unless context.config.regional_endpoint
|
102
|
+
endpoint = context.config.endpoint.to_s
|
103
|
+
end
|
104
|
+
Aws::Finspace::EndpointParameters.new(
|
105
|
+
region: context.config.region,
|
106
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
107
|
+
use_fips: context.config.use_fips_endpoint,
|
108
|
+
endpoint: endpoint,
|
109
|
+
)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
85
113
|
class CreateKxUser
|
86
114
|
def self.build(context)
|
87
115
|
unless context.config.regional_endpoint
|
@@ -96,6 +124,20 @@ module Aws::Finspace
|
|
96
124
|
end
|
97
125
|
end
|
98
126
|
|
127
|
+
class CreateKxVolume
|
128
|
+
def self.build(context)
|
129
|
+
unless context.config.regional_endpoint
|
130
|
+
endpoint = context.config.endpoint.to_s
|
131
|
+
end
|
132
|
+
Aws::Finspace::EndpointParameters.new(
|
133
|
+
region: context.config.region,
|
134
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
135
|
+
use_fips: context.config.use_fips_endpoint,
|
136
|
+
endpoint: endpoint,
|
137
|
+
)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
99
141
|
class DeleteEnvironment
|
100
142
|
def self.build(context)
|
101
143
|
unless context.config.regional_endpoint
|
@@ -138,6 +180,20 @@ module Aws::Finspace
|
|
138
180
|
end
|
139
181
|
end
|
140
182
|
|
183
|
+
class DeleteKxDataview
|
184
|
+
def self.build(context)
|
185
|
+
unless context.config.regional_endpoint
|
186
|
+
endpoint = context.config.endpoint.to_s
|
187
|
+
end
|
188
|
+
Aws::Finspace::EndpointParameters.new(
|
189
|
+
region: context.config.region,
|
190
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
191
|
+
use_fips: context.config.use_fips_endpoint,
|
192
|
+
endpoint: endpoint,
|
193
|
+
)
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
141
197
|
class DeleteKxEnvironment
|
142
198
|
def self.build(context)
|
143
199
|
unless context.config.regional_endpoint
|
@@ -152,6 +208,20 @@ module Aws::Finspace
|
|
152
208
|
end
|
153
209
|
end
|
154
210
|
|
211
|
+
class DeleteKxScalingGroup
|
212
|
+
def self.build(context)
|
213
|
+
unless context.config.regional_endpoint
|
214
|
+
endpoint = context.config.endpoint.to_s
|
215
|
+
end
|
216
|
+
Aws::Finspace::EndpointParameters.new(
|
217
|
+
region: context.config.region,
|
218
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
219
|
+
use_fips: context.config.use_fips_endpoint,
|
220
|
+
endpoint: endpoint,
|
221
|
+
)
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
155
225
|
class DeleteKxUser
|
156
226
|
def self.build(context)
|
157
227
|
unless context.config.regional_endpoint
|
@@ -166,6 +236,20 @@ module Aws::Finspace
|
|
166
236
|
end
|
167
237
|
end
|
168
238
|
|
239
|
+
class DeleteKxVolume
|
240
|
+
def self.build(context)
|
241
|
+
unless context.config.regional_endpoint
|
242
|
+
endpoint = context.config.endpoint.to_s
|
243
|
+
end
|
244
|
+
Aws::Finspace::EndpointParameters.new(
|
245
|
+
region: context.config.region,
|
246
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
247
|
+
use_fips: context.config.use_fips_endpoint,
|
248
|
+
endpoint: endpoint,
|
249
|
+
)
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
169
253
|
class GetEnvironment
|
170
254
|
def self.build(context)
|
171
255
|
unless context.config.regional_endpoint
|
@@ -236,6 +320,20 @@ module Aws::Finspace
|
|
236
320
|
end
|
237
321
|
end
|
238
322
|
|
323
|
+
class GetKxDataview
|
324
|
+
def self.build(context)
|
325
|
+
unless context.config.regional_endpoint
|
326
|
+
endpoint = context.config.endpoint.to_s
|
327
|
+
end
|
328
|
+
Aws::Finspace::EndpointParameters.new(
|
329
|
+
region: context.config.region,
|
330
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
331
|
+
use_fips: context.config.use_fips_endpoint,
|
332
|
+
endpoint: endpoint,
|
333
|
+
)
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
239
337
|
class GetKxEnvironment
|
240
338
|
def self.build(context)
|
241
339
|
unless context.config.regional_endpoint
|
@@ -250,6 +348,20 @@ module Aws::Finspace
|
|
250
348
|
end
|
251
349
|
end
|
252
350
|
|
351
|
+
class GetKxScalingGroup
|
352
|
+
def self.build(context)
|
353
|
+
unless context.config.regional_endpoint
|
354
|
+
endpoint = context.config.endpoint.to_s
|
355
|
+
end
|
356
|
+
Aws::Finspace::EndpointParameters.new(
|
357
|
+
region: context.config.region,
|
358
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
359
|
+
use_fips: context.config.use_fips_endpoint,
|
360
|
+
endpoint: endpoint,
|
361
|
+
)
|
362
|
+
end
|
363
|
+
end
|
364
|
+
|
253
365
|
class GetKxUser
|
254
366
|
def self.build(context)
|
255
367
|
unless context.config.regional_endpoint
|
@@ -264,6 +376,20 @@ module Aws::Finspace
|
|
264
376
|
end
|
265
377
|
end
|
266
378
|
|
379
|
+
class GetKxVolume
|
380
|
+
def self.build(context)
|
381
|
+
unless context.config.regional_endpoint
|
382
|
+
endpoint = context.config.endpoint.to_s
|
383
|
+
end
|
384
|
+
Aws::Finspace::EndpointParameters.new(
|
385
|
+
region: context.config.region,
|
386
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
387
|
+
use_fips: context.config.use_fips_endpoint,
|
388
|
+
endpoint: endpoint,
|
389
|
+
)
|
390
|
+
end
|
391
|
+
end
|
392
|
+
|
267
393
|
class ListEnvironments
|
268
394
|
def self.build(context)
|
269
395
|
unless context.config.regional_endpoint
|
@@ -334,6 +460,20 @@ module Aws::Finspace
|
|
334
460
|
end
|
335
461
|
end
|
336
462
|
|
463
|
+
class ListKxDataviews
|
464
|
+
def self.build(context)
|
465
|
+
unless context.config.regional_endpoint
|
466
|
+
endpoint = context.config.endpoint.to_s
|
467
|
+
end
|
468
|
+
Aws::Finspace::EndpointParameters.new(
|
469
|
+
region: context.config.region,
|
470
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
471
|
+
use_fips: context.config.use_fips_endpoint,
|
472
|
+
endpoint: endpoint,
|
473
|
+
)
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
337
477
|
class ListKxEnvironments
|
338
478
|
def self.build(context)
|
339
479
|
unless context.config.regional_endpoint
|
@@ -348,6 +488,20 @@ module Aws::Finspace
|
|
348
488
|
end
|
349
489
|
end
|
350
490
|
|
491
|
+
class ListKxScalingGroups
|
492
|
+
def self.build(context)
|
493
|
+
unless context.config.regional_endpoint
|
494
|
+
endpoint = context.config.endpoint.to_s
|
495
|
+
end
|
496
|
+
Aws::Finspace::EndpointParameters.new(
|
497
|
+
region: context.config.region,
|
498
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
499
|
+
use_fips: context.config.use_fips_endpoint,
|
500
|
+
endpoint: endpoint,
|
501
|
+
)
|
502
|
+
end
|
503
|
+
end
|
504
|
+
|
351
505
|
class ListKxUsers
|
352
506
|
def self.build(context)
|
353
507
|
unless context.config.regional_endpoint
|
@@ -362,6 +516,20 @@ module Aws::Finspace
|
|
362
516
|
end
|
363
517
|
end
|
364
518
|
|
519
|
+
class ListKxVolumes
|
520
|
+
def self.build(context)
|
521
|
+
unless context.config.regional_endpoint
|
522
|
+
endpoint = context.config.endpoint.to_s
|
523
|
+
end
|
524
|
+
Aws::Finspace::EndpointParameters.new(
|
525
|
+
region: context.config.region,
|
526
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
527
|
+
use_fips: context.config.use_fips_endpoint,
|
528
|
+
endpoint: endpoint,
|
529
|
+
)
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
365
533
|
class ListTagsForResource
|
366
534
|
def self.build(context)
|
367
535
|
unless context.config.regional_endpoint
|
@@ -460,6 +628,20 @@ module Aws::Finspace
|
|
460
628
|
end
|
461
629
|
end
|
462
630
|
|
631
|
+
class UpdateKxDataview
|
632
|
+
def self.build(context)
|
633
|
+
unless context.config.regional_endpoint
|
634
|
+
endpoint = context.config.endpoint.to_s
|
635
|
+
end
|
636
|
+
Aws::Finspace::EndpointParameters.new(
|
637
|
+
region: context.config.region,
|
638
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
639
|
+
use_fips: context.config.use_fips_endpoint,
|
640
|
+
endpoint: endpoint,
|
641
|
+
)
|
642
|
+
end
|
643
|
+
end
|
644
|
+
|
463
645
|
class UpdateKxEnvironment
|
464
646
|
def self.build(context)
|
465
647
|
unless context.config.regional_endpoint
|
@@ -502,5 +684,19 @@ module Aws::Finspace
|
|
502
684
|
end
|
503
685
|
end
|
504
686
|
|
687
|
+
class UpdateKxVolume
|
688
|
+
def self.build(context)
|
689
|
+
unless context.config.regional_endpoint
|
690
|
+
endpoint = context.config.endpoint.to_s
|
691
|
+
end
|
692
|
+
Aws::Finspace::EndpointParameters.new(
|
693
|
+
region: context.config.region,
|
694
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
695
|
+
use_fips: context.config.use_fips_endpoint,
|
696
|
+
endpoint: endpoint,
|
697
|
+
)
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
505
701
|
end
|
506
702
|
end
|
@@ -65,20 +65,32 @@ module Aws::Finspace
|
|
65
65
|
Aws::Finspace::Endpoints::CreateKxCluster.build(context)
|
66
66
|
when :create_kx_database
|
67
67
|
Aws::Finspace::Endpoints::CreateKxDatabase.build(context)
|
68
|
+
when :create_kx_dataview
|
69
|
+
Aws::Finspace::Endpoints::CreateKxDataview.build(context)
|
68
70
|
when :create_kx_environment
|
69
71
|
Aws::Finspace::Endpoints::CreateKxEnvironment.build(context)
|
72
|
+
when :create_kx_scaling_group
|
73
|
+
Aws::Finspace::Endpoints::CreateKxScalingGroup.build(context)
|
70
74
|
when :create_kx_user
|
71
75
|
Aws::Finspace::Endpoints::CreateKxUser.build(context)
|
76
|
+
when :create_kx_volume
|
77
|
+
Aws::Finspace::Endpoints::CreateKxVolume.build(context)
|
72
78
|
when :delete_environment
|
73
79
|
Aws::Finspace::Endpoints::DeleteEnvironment.build(context)
|
74
80
|
when :delete_kx_cluster
|
75
81
|
Aws::Finspace::Endpoints::DeleteKxCluster.build(context)
|
76
82
|
when :delete_kx_database
|
77
83
|
Aws::Finspace::Endpoints::DeleteKxDatabase.build(context)
|
84
|
+
when :delete_kx_dataview
|
85
|
+
Aws::Finspace::Endpoints::DeleteKxDataview.build(context)
|
78
86
|
when :delete_kx_environment
|
79
87
|
Aws::Finspace::Endpoints::DeleteKxEnvironment.build(context)
|
88
|
+
when :delete_kx_scaling_group
|
89
|
+
Aws::Finspace::Endpoints::DeleteKxScalingGroup.build(context)
|
80
90
|
when :delete_kx_user
|
81
91
|
Aws::Finspace::Endpoints::DeleteKxUser.build(context)
|
92
|
+
when :delete_kx_volume
|
93
|
+
Aws::Finspace::Endpoints::DeleteKxVolume.build(context)
|
82
94
|
when :get_environment
|
83
95
|
Aws::Finspace::Endpoints::GetEnvironment.build(context)
|
84
96
|
when :get_kx_changeset
|
@@ -89,10 +101,16 @@ module Aws::Finspace
|
|
89
101
|
Aws::Finspace::Endpoints::GetKxConnectionString.build(context)
|
90
102
|
when :get_kx_database
|
91
103
|
Aws::Finspace::Endpoints::GetKxDatabase.build(context)
|
104
|
+
when :get_kx_dataview
|
105
|
+
Aws::Finspace::Endpoints::GetKxDataview.build(context)
|
92
106
|
when :get_kx_environment
|
93
107
|
Aws::Finspace::Endpoints::GetKxEnvironment.build(context)
|
108
|
+
when :get_kx_scaling_group
|
109
|
+
Aws::Finspace::Endpoints::GetKxScalingGroup.build(context)
|
94
110
|
when :get_kx_user
|
95
111
|
Aws::Finspace::Endpoints::GetKxUser.build(context)
|
112
|
+
when :get_kx_volume
|
113
|
+
Aws::Finspace::Endpoints::GetKxVolume.build(context)
|
96
114
|
when :list_environments
|
97
115
|
Aws::Finspace::Endpoints::ListEnvironments.build(context)
|
98
116
|
when :list_kx_changesets
|
@@ -103,10 +121,16 @@ module Aws::Finspace
|
|
103
121
|
Aws::Finspace::Endpoints::ListKxClusters.build(context)
|
104
122
|
when :list_kx_databases
|
105
123
|
Aws::Finspace::Endpoints::ListKxDatabases.build(context)
|
124
|
+
when :list_kx_dataviews
|
125
|
+
Aws::Finspace::Endpoints::ListKxDataviews.build(context)
|
106
126
|
when :list_kx_environments
|
107
127
|
Aws::Finspace::Endpoints::ListKxEnvironments.build(context)
|
128
|
+
when :list_kx_scaling_groups
|
129
|
+
Aws::Finspace::Endpoints::ListKxScalingGroups.build(context)
|
108
130
|
when :list_kx_users
|
109
131
|
Aws::Finspace::Endpoints::ListKxUsers.build(context)
|
132
|
+
when :list_kx_volumes
|
133
|
+
Aws::Finspace::Endpoints::ListKxVolumes.build(context)
|
110
134
|
when :list_tags_for_resource
|
111
135
|
Aws::Finspace::Endpoints::ListTagsForResource.build(context)
|
112
136
|
when :tag_resource
|
@@ -121,12 +145,16 @@ module Aws::Finspace
|
|
121
145
|
Aws::Finspace::Endpoints::UpdateKxClusterDatabases.build(context)
|
122
146
|
when :update_kx_database
|
123
147
|
Aws::Finspace::Endpoints::UpdateKxDatabase.build(context)
|
148
|
+
when :update_kx_dataview
|
149
|
+
Aws::Finspace::Endpoints::UpdateKxDataview.build(context)
|
124
150
|
when :update_kx_environment
|
125
151
|
Aws::Finspace::Endpoints::UpdateKxEnvironment.build(context)
|
126
152
|
when :update_kx_environment_network
|
127
153
|
Aws::Finspace::Endpoints::UpdateKxEnvironmentNetwork.build(context)
|
128
154
|
when :update_kx_user
|
129
155
|
Aws::Finspace::Endpoints::UpdateKxUser.build(context)
|
156
|
+
when :update_kx_volume
|
157
|
+
Aws::Finspace::Endpoints::UpdateKxVolume.build(context)
|
130
158
|
end
|
131
159
|
end
|
132
160
|
end
|