aws-sdk-neptunedata 1.27.0 → 1.29.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptunedata/client.rb +20 -10
- data/lib/aws-sdk-neptunedata/client_api.rb +21 -20
- data/lib/aws-sdk-neptunedata.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6181df610514b90cfdd321a99e528f9e1c17196c6784476910dd74d91db23520
|
4
|
+
data.tar.gz: d5f335fdf571c5648231f7bfda86d95e54d12f447d1435fc2797bdc15dad169b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6dc03bacbf97e19e91179b26c3dd87c6b6d59a9baea825ed75574d763962f2ed3f8a27ee6409fd525eea9af2129947d2f191823d85c37ac78af193d1e58d5019
|
7
|
+
data.tar.gz: 43333aa0fd8c231757108651aef1ea7ca12a2c8888e32007ee74a655edb6a1448932c10fe7b51992e0a40724032a27756dd0d1cb4732bd196526fdc335244086
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.29.0 (2025-07-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release updates the supported regions for Neptune API to include current AWS regions.
|
8
|
+
|
9
|
+
1.28.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.27.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.0
|
@@ -95,7 +95,7 @@ module Aws::Neptunedata
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::Neptunedata
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::Neptunedata
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::Neptunedata
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::Neptunedata
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -2985,7 +2995,7 @@ module Aws::Neptunedata
|
|
2985
2995
|
# resp = client.start_loader_job({
|
2986
2996
|
# source: "String", # required
|
2987
2997
|
# format: "csv", # required, accepts csv, opencypher, ntriples, nquads, rdfxml, turtle
|
2988
|
-
# s3_bucket_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, sa-east-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, me-south-1, af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-southeast-1, ap-southeast-2, ap-south-1, cn-north-1, cn-northwest-1, us-gov-west-1, us-gov-east-1
|
2998
|
+
# s3_bucket_region: "us-east-1", # required, accepts us-east-1, us-east-2, us-west-1, us-west-2, ca-central-1, sa-east-1, eu-north-1, eu-west-1, eu-west-2, eu-west-3, eu-central-1, me-south-1, af-south-1, ap-east-1, ap-northeast-1, ap-northeast-2, ap-southeast-1, ap-southeast-2, ap-south-1, cn-north-1, cn-northwest-1, us-gov-west-1, us-gov-east-1, ca-west-1, eu-south-2, il-central-1, me-central-1, ap-northeast-3, ap-southeast-3, ap-southeast-4, ap-southeast-5, ap-southeast-7, mx-central-1, ap-east-2, ap-south-2, eu-central-2
|
2989
2999
|
# iam_role_arn: "String", # required
|
2990
3000
|
# mode: "RESUME", # accepts RESUME, NEW, AUTO
|
2991
3001
|
# fail_on_error: false,
|
@@ -3420,7 +3430,7 @@ module Aws::Neptunedata
|
|
3420
3430
|
tracer: tracer
|
3421
3431
|
)
|
3422
3432
|
context[:gem_name] = 'aws-sdk-neptunedata'
|
3423
|
-
context[:gem_version] = '1.
|
3433
|
+
context[:gem_version] = '1.29.0'
|
3424
3434
|
Seahorse::Client::Request.new(handlers, context)
|
3425
3435
|
end
|
3426
3436
|
|
@@ -983,9 +983,10 @@ module Aws::Neptunedata
|
|
983
983
|
|
984
984
|
api.metadata = {
|
985
985
|
"apiVersion" => "2023-08-01",
|
986
|
+
"auth" => ["aws.auth#sigv4"],
|
986
987
|
"endpointPrefix" => "neptune-db",
|
987
|
-
"jsonVersion" => "1.1",
|
988
988
|
"protocol" => "rest-json",
|
989
|
+
"protocols" => ["rest-json"],
|
989
990
|
"serviceFullName" => "Amazon NeptuneData",
|
990
991
|
"serviceId" => "neptunedata",
|
991
992
|
"signatureVersion" => "v4",
|
@@ -1044,8 +1045,8 @@ module Aws::Neptunedata
|
|
1044
1045
|
o.output = Shapes::ShapeRef.new(shape: CancelMLDataProcessingJobOutput)
|
1045
1046
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1046
1047
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1047
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1048
1048
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1049
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1049
1050
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1050
1051
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1051
1052
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1063,8 +1064,8 @@ module Aws::Neptunedata
|
|
1063
1064
|
o.output = Shapes::ShapeRef.new(shape: CancelMLModelTrainingJobOutput)
|
1064
1065
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1065
1066
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1066
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1067
1067
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1068
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1068
1069
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1069
1070
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1070
1071
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1082,8 +1083,8 @@ module Aws::Neptunedata
|
|
1082
1083
|
o.output = Shapes::ShapeRef.new(shape: CancelMLModelTransformJobOutput)
|
1083
1084
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1084
1085
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1085
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1086
1086
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1087
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1087
1088
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1088
1089
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1089
1090
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1124,8 +1125,8 @@ module Aws::Neptunedata
|
|
1124
1125
|
o.output = Shapes::ShapeRef.new(shape: CreateMLEndpointOutput)
|
1125
1126
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1126
1127
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1127
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1128
1128
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1129
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1129
1130
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1130
1131
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1131
1132
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1143,8 +1144,8 @@ module Aws::Neptunedata
|
|
1143
1144
|
o.output = Shapes::ShapeRef.new(shape: DeleteMLEndpointOutput)
|
1144
1145
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1145
1146
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1146
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1147
1147
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1148
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1148
1149
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1149
1150
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1150
1151
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1208,9 +1209,9 @@ module Aws::Neptunedata
|
|
1208
1209
|
o.errors << Shapes::ShapeRef.new(shape: IllegalArgumentException)
|
1209
1210
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1210
1211
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1211
|
-
o.errors << Shapes::ShapeRef.new(shape: ServerShutdownException)
|
1212
|
-
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1213
1212
|
o.errors << Shapes::ShapeRef.new(shape: MethodNotAllowedException)
|
1213
|
+
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1214
|
+
o.errors << Shapes::ShapeRef.new(shape: ServerShutdownException)
|
1214
1215
|
o.errors << Shapes::ShapeRef.new(shape: ReadOnlyViolationException)
|
1215
1216
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
1216
1217
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
@@ -1428,8 +1429,8 @@ module Aws::Neptunedata
|
|
1428
1429
|
o.output = Shapes::ShapeRef.new(shape: GetMLDataProcessingJobOutput)
|
1429
1430
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1430
1431
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1431
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1432
1432
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1433
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1433
1434
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1434
1435
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1435
1436
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1447,8 +1448,8 @@ module Aws::Neptunedata
|
|
1447
1448
|
o.output = Shapes::ShapeRef.new(shape: GetMLEndpointOutput)
|
1448
1449
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1449
1450
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1450
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1451
1451
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1452
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1452
1453
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1453
1454
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1454
1455
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1466,8 +1467,8 @@ module Aws::Neptunedata
|
|
1466
1467
|
o.output = Shapes::ShapeRef.new(shape: GetMLModelTrainingJobOutput)
|
1467
1468
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1468
1469
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1469
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1470
1470
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1471
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1471
1472
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1472
1473
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1473
1474
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1485,8 +1486,8 @@ module Aws::Neptunedata
|
|
1485
1486
|
o.output = Shapes::ShapeRef.new(shape: GetMLModelTransformJobOutput)
|
1486
1487
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1487
1488
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1488
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1489
1489
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1490
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1490
1491
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1491
1492
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1492
1493
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1697,8 +1698,8 @@ module Aws::Neptunedata
|
|
1697
1698
|
o.output = Shapes::ShapeRef.new(shape: ListMLDataProcessingJobsOutput)
|
1698
1699
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1699
1700
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1700
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1701
1701
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1702
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1702
1703
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1703
1704
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1704
1705
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1716,8 +1717,8 @@ module Aws::Neptunedata
|
|
1716
1717
|
o.output = Shapes::ShapeRef.new(shape: ListMLEndpointsOutput)
|
1717
1718
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1718
1719
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1719
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1720
1720
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1721
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1721
1722
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1722
1723
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1723
1724
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1735,8 +1736,8 @@ module Aws::Neptunedata
|
|
1735
1736
|
o.output = Shapes::ShapeRef.new(shape: ListMLModelTrainingJobsOutput)
|
1736
1737
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1737
1738
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1738
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1739
1739
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1740
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1740
1741
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1741
1742
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1742
1743
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1754,8 +1755,8 @@ module Aws::Neptunedata
|
|
1754
1755
|
o.output = Shapes::ShapeRef.new(shape: ListMLModelTransformJobsOutput)
|
1755
1756
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1756
1757
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1757
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1758
1758
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1759
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1759
1760
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1760
1761
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1761
1762
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1847,8 +1848,8 @@ module Aws::Neptunedata
|
|
1847
1848
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1848
1849
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1849
1850
|
o.errors << Shapes::ShapeRef.new(shape: InternalFailureException)
|
1850
|
-
o.errors << Shapes::ShapeRef.new(shape: S3Exception)
|
1851
1851
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1852
|
+
o.errors << Shapes::ShapeRef.new(shape: S3Exception)
|
1852
1853
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
1853
1854
|
o.errors << Shapes::ShapeRef.new(shape: InvalidArgumentException)
|
1854
1855
|
o.errors << Shapes::ShapeRef.new(shape: MissingParameterException)
|
@@ -1862,8 +1863,8 @@ module Aws::Neptunedata
|
|
1862
1863
|
o.output = Shapes::ShapeRef.new(shape: StartMLDataProcessingJobOutput)
|
1863
1864
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1864
1865
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1865
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1866
1866
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1867
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1867
1868
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1868
1869
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1869
1870
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1881,8 +1882,8 @@ module Aws::Neptunedata
|
|
1881
1882
|
o.output = Shapes::ShapeRef.new(shape: StartMLModelTrainingJobOutput)
|
1882
1883
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1883
1884
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1884
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1885
1885
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1886
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1886
1887
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1887
1888
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1888
1889
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
@@ -1900,8 +1901,8 @@ module Aws::Neptunedata
|
|
1900
1901
|
o.output = Shapes::ShapeRef.new(shape: StartMLModelTransformJobOutput)
|
1901
1902
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
|
1902
1903
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1903
|
-
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1904
1904
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
1905
|
+
o.errors << Shapes::ShapeRef.new(shape: MLResourceNotFoundException)
|
1905
1906
|
o.errors << Shapes::ShapeRef.new(shape: ClientTimeoutException)
|
1906
1907
|
o.errors << Shapes::ShapeRef.new(shape: PreconditionsFailedException)
|
1907
1908
|
o.errors << Shapes::ShapeRef.new(shape: ConstraintViolationException)
|
data/lib/aws-sdk-neptunedata.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -574,7 +575,7 @@ module Aws
|
|
574
575
|
def start_loader_job: (
|
575
576
|
source: ::String,
|
576
577
|
format: ("csv" | "opencypher" | "ntriples" | "nquads" | "rdfxml" | "turtle"),
|
577
|
-
s3_bucket_region: ("us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "ca-central-1" | "sa-east-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-central-1" | "me-south-1" | "af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-south-1" | "cn-north-1" | "cn-northwest-1" | "us-gov-west-1" | "us-gov-east-1"),
|
578
|
+
s3_bucket_region: ("us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "ca-central-1" | "sa-east-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-central-1" | "me-south-1" | "af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-south-1" | "cn-north-1" | "cn-northwest-1" | "us-gov-west-1" | "us-gov-east-1" | "ca-west-1" | "eu-south-2" | "il-central-1" | "me-central-1" | "ap-northeast-3" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "mx-central-1" | "ap-east-2" | "ap-south-2" | "eu-central-2"),
|
578
579
|
iam_role_arn: ::String,
|
579
580
|
?mode: ("RESUME" | "NEW" | "AUTO"),
|
580
581
|
?fail_on_error: bool,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -846,7 +846,7 @@ module Aws::Neptunedata
|
|
846
846
|
class StartLoaderJobInput
|
847
847
|
attr_accessor source: ::String
|
848
848
|
attr_accessor format: ("csv" | "opencypher" | "ntriples" | "nquads" | "rdfxml" | "turtle")
|
849
|
-
attr_accessor s3_bucket_region: ("us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "ca-central-1" | "sa-east-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-central-1" | "me-south-1" | "af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-south-1" | "cn-north-1" | "cn-northwest-1" | "us-gov-west-1" | "us-gov-east-1")
|
849
|
+
attr_accessor s3_bucket_region: ("us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "ca-central-1" | "sa-east-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-central-1" | "me-south-1" | "af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-south-1" | "cn-north-1" | "cn-northwest-1" | "us-gov-west-1" | "us-gov-east-1" | "ca-west-1" | "eu-south-2" | "il-central-1" | "me-central-1" | "ap-northeast-3" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ap-southeast-7" | "mx-central-1" | "ap-east-2" | "ap-south-2" | "eu-central-2")
|
850
850
|
attr_accessor iam_role_arn: ::String
|
851
851
|
attr_accessor mode: ("RESUME" | "NEW" | "AUTO")
|
852
852
|
attr_accessor fail_on_error: bool
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-neptunedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,21 +28,21 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
35
35
|
requirements:
|
36
36
|
- - "~>"
|
37
37
|
- !ruby/object:Gem::Version
|
38
|
-
version: '1.
|
38
|
+
version: '1.5'
|
39
39
|
type: :runtime
|
40
40
|
prerelease: false
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
42
42
|
requirements:
|
43
43
|
- - "~>"
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: '1.
|
45
|
+
version: '1.5'
|
46
46
|
description: Official AWS Ruby gem for Amazon NeptuneData. This gem is part of the
|
47
47
|
AWS SDK for Ruby.
|
48
48
|
email:
|