aws-sdk-neptune 1.38.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0c11d9b3f34dc347e64646eef72fbcb79dd86bffafcc5399c340b090dfc1429
4
- data.tar.gz: c83031dbdd59b632fa3efaa91601117cac3b8a19b92997dd95c92f07bd580c30
3
+ metadata.gz: 48f5c62e98bf75de3cf99f54f9441015ce100364eb5896a87c4b81a4cd782b80
4
+ data.tar.gz: 393ad6686fe50135dc845a7372c780e0f9edf9a35e7c44bd40d05634b4539253
5
5
  SHA512:
6
- metadata.gz: e4842a620acff76a255a42dfda6712a8067769f08a93ed9446523a270796480b61ce48d4da7544d7e9f4495a04c39b5eeeac1e53079d444631d33dee8f5232a8
7
- data.tar.gz: c249af146a7e3655db9fb1c823e80653e339b94fad1a7974271d662e4e70f9776c0f0fb3b153358ec2666bcc0403d79bb7da2674ae5b3e83e97f149e1ba8729b
6
+ metadata.gz: face125e015e1b415d7b2bda6657e69149236c9c5295bea9391de40b0e16ea7b09fbdf4cc55f33f277b99a9a28f554bda724313e6851f09769f169eeb3a2c515
7
+ data.tar.gz: 903cfe7c119318ff2a09ae77585948d9852b0b595c2cf1887a096f6cc9be36e8c3994b580904be82d6f642f49d89f7375580462c46ef84443b10f152b979087e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.41.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.40.0 (2021-11-01)
15
+ ------------------
16
+
17
+ * Feature - Adds support for major version upgrades to ModifyDbCluster API
18
+
19
+ 1.39.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.38.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.42.0
@@ -121,7 +121,9 @@ module Aws::Neptune
121
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
122
  # are very aggressive. Construct and pass an instance of
123
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
125
127
  #
126
128
  # @option options [required, String] :region
127
129
  # The AWS region to connect to. The configured `:region` is
@@ -277,6 +279,15 @@ module Aws::Neptune
277
279
  # ** Please note ** When response stubbing is enabled, no HTTP
278
280
  # requests are made, and retries are disabled.
279
281
  #
282
+ # @option options [Boolean] :use_dualstack_endpoint
283
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
284
+ # will be used if available.
285
+ #
286
+ # @option options [Boolean] :use_fips_endpoint
287
+ # When set to `true`, fips compatible endpoints will be used if available.
288
+ # When a `fips` region is used, the region is normalized and this config
289
+ # is set to `true`.
290
+ #
280
291
  # @option options [Boolean] :validate_params (true)
281
292
  # When `true`, request parameters are validated before
282
293
  # sending the request.
@@ -329,7 +340,7 @@ module Aws::Neptune
329
340
 
330
341
  # @!group API Operations
331
342
 
332
- # Associates an Identity and Access Management (IAM) role from an
343
+ # Associates an Identity and Access Management (IAM) role with an
333
344
  # Neptune DB cluster.
334
345
  #
335
346
  # @option params [required, String] :db_cluster_identifier
@@ -343,7 +354,7 @@ module Aws::Neptune
343
354
  # @option params [String] :feature_name
344
355
  # The name of the feature for the Neptune DB cluster that the IAM role
345
356
  # is to be associated with. For the list of supported feature names, see
346
- # DBEngineVersion.
357
+ # [DBEngineVersion](neptune/latest/userguide/api-other-apis.html#DBEngineVersion).
347
358
  #
348
359
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
349
360
  #
@@ -2971,7 +2982,7 @@ module Aws::Neptune
2971
2982
  # automatically taken by Amazon Neptune for my Amazon account.
2972
2983
  #
2973
2984
  # * `manual` - Return all DB cluster snapshots that have been taken by
2974
- # my AWS account.
2985
+ # my Amazon account.
2975
2986
  #
2976
2987
  # * `shared` - Return all manual DB cluster snapshots that have been
2977
2988
  # shared to my Amazon account.
@@ -3012,7 +3023,7 @@ module Aws::Neptune
3012
3023
  #
3013
3024
  # @option params [Boolean] :include_shared
3014
3025
  # True to include shared manual DB cluster snapshots from other Amazon
3015
- # accounts that this AWS account has been given permission to copy or
3026
+ # accounts that this Amazon account has been given permission to copy or
3016
3027
  # restore, and otherwise false. The default is `false`.
3017
3028
  #
3018
3029
  # You can give an Amazon account permission to restore a manual DB
@@ -4654,6 +4665,34 @@ module Aws::Neptune
4654
4665
  # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases.html
4655
4666
  # [2]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
4656
4667
  #
4668
+ # @option params [Boolean] :allow_major_version_upgrade
4669
+ # A value that indicates whether upgrades between different major
4670
+ # versions are allowed.
4671
+ #
4672
+ # Constraints: You must set the allow-major-version-upgrade flag when
4673
+ # providing an `EngineVersion` parameter that uses a different major
4674
+ # version than the DB cluster's current version.
4675
+ #
4676
+ # @option params [String] :db_instance_parameter_group_name
4677
+ # The name of the DB parameter group to apply to all instances of the DB
4678
+ # cluster.
4679
+ #
4680
+ # <note markdown="1"> When you apply a parameter group using `DBInstanceParameterGroupName`,
4681
+ # parameter changes aren't applied during the next maintenance window
4682
+ # but instead are applied immediately.
4683
+ #
4684
+ # </note>
4685
+ #
4686
+ # Default: The existing name setting
4687
+ #
4688
+ # Constraints:
4689
+ #
4690
+ # * The DB parameter group must be in the same DB parameter group family
4691
+ # as the target DB cluster version.
4692
+ #
4693
+ # * The `DBInstanceParameterGroupName` parameter is only valid in
4694
+ # combination with the `AllowMajorVersionUpgrade` parameter.
4695
+ #
4657
4696
  # @option params [Boolean] :deletion_protection
4658
4697
  # A value that indicates whether the DB cluster has deletion protection
4659
4698
  # enabled. The database can't be deleted when deletion protection is
@@ -4687,6 +4726,8 @@ module Aws::Neptune
4687
4726
  # disable_log_types: ["String"],
4688
4727
  # },
4689
4728
  # engine_version: "String",
4729
+ # allow_major_version_upgrade: false,
4730
+ # db_instance_parameter_group_name: "String",
4690
4731
  # deletion_protection: false,
4691
4732
  # copy_tags_to_snapshot: false,
4692
4733
  # })
@@ -4927,7 +4968,7 @@ module Aws::Neptune
4927
4968
  # IDs, or `all` to make the manual DB cluster snapshot restorable by any
4928
4969
  # Amazon account. Do not add the `all` value for any manual DB cluster
4929
4970
  # snapshots that contain private information that you don't want
4930
- # available to all AWS accounts.
4971
+ # available to all Amazon accounts.
4931
4972
  #
4932
4973
  # @option params [Array<String>] :values_to_remove
4933
4974
  # A list of DB cluster snapshot attributes to remove from the attribute
@@ -4992,7 +5033,7 @@ module Aws::Neptune
4992
5033
  #
4993
5034
  # @option params [String] :db_instance_class
4994
5035
  # The new compute and memory capacity of the DB instance, for example,
4995
- # `db.m4.large`. Not all DB instance classes are available in all AWS
5036
+ # `db.m4.large`. Not all DB instance classes are available in all Amazon
4996
5037
  # Regions.
4997
5038
  #
4998
5039
  # If you modify the DB instance class, an outage occurs during the
@@ -5875,7 +5916,11 @@ module Aws::Neptune
5875
5916
  # @option params [String] :feature_name
5876
5917
  # The name of the feature for the DB cluster that the IAM role is to be
5877
5918
  # disassociated from. For the list of supported feature names, see
5878
- # DBEngineVersion.
5919
+ # [DescribeDBEngineVersions][1].
5920
+ #
5921
+ #
5922
+ #
5923
+ # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
5879
5924
  #
5880
5925
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5881
5926
  #
@@ -6587,7 +6632,7 @@ module Aws::Neptune
6587
6632
  req.send_request(options)
6588
6633
  end
6589
6634
 
6590
- # Starts an Amazon Neptune DB cluster that was stopped using the AWS
6635
+ # Starts an Amazon Neptune DB cluster that was stopped using the Amazon
6591
6636
  # console, the Amazon CLI stop-db-cluster command, or the StopDBCluster
6592
6637
  # API.
6593
6638
  #
@@ -6771,7 +6816,7 @@ module Aws::Neptune
6771
6816
  params: params,
6772
6817
  config: config)
6773
6818
  context[:gem_name] = 'aws-sdk-neptune'
6774
- context[:gem_version] = '1.38.0'
6819
+ context[:gem_version] = '1.42.0'
6775
6820
  Seahorse::Client::Request.new(handlers, context)
6776
6821
  end
6777
6822
 
@@ -1201,6 +1201,8 @@ module Aws::Neptune
1201
1201
  ModifyDBClusterMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
1202
1202
  ModifyDBClusterMessage.add_member(:cloudwatch_logs_export_configuration, Shapes::ShapeRef.new(shape: CloudwatchLogsExportConfiguration, location_name: "CloudwatchLogsExportConfiguration"))
1203
1203
  ModifyDBClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
1204
+ ModifyDBClusterMessage.add_member(:allow_major_version_upgrade, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowMajorVersionUpgrade"))
1205
+ ModifyDBClusterMessage.add_member(:db_instance_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceParameterGroupName"))
1204
1206
  ModifyDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
1205
1207
  ModifyDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
1206
1208
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
@@ -42,7 +42,11 @@ module Aws
42
42
  credentials_provider: context.config.credentials
43
43
  )
44
44
  url = Aws::Partitions::EndpointProvider.resolve(
45
- signer.region, 'rds'
45
+ signer.region, 'rds', 'regional',
46
+ {
47
+ dualstack: context.config.use_dualstack_endpoint,
48
+ fips: context.config.use_fips_endpoint
49
+ }
46
50
  )
47
51
  url += "?#{param_list}"
48
52
  signer.presign_url(
@@ -32,7 +32,8 @@ module Aws::Neptune
32
32
  # @!attribute [rw] feature_name
33
33
  # The name of the feature for the Neptune DB cluster that the IAM role
34
34
  # is to be associated with. For the list of supported feature names,
35
- # see DBEngineVersion.
35
+ # see
36
+ # [DBEngineVersion](neptune/latest/userguide/api-other-apis.html#DBEngineVersion).
36
37
  # @return [String]
37
38
  #
38
39
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/AddRoleToDBClusterMessage AWS API Documentation
@@ -2441,7 +2442,11 @@ module Aws::Neptune
2441
2442
  # @!attribute [rw] feature_name
2442
2443
  # The name of the feature associated with the Amazon Identity and
2443
2444
  # Access Management (IAM) role. For the list of supported feature
2444
- # names, see DBEngineVersion.
2445
+ # names, see [DescribeDBEngineVersions][1].
2446
+ #
2447
+ #
2448
+ #
2449
+ # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
2445
2450
  # @return [String]
2446
2451
  #
2447
2452
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRole AWS API Documentation
@@ -4168,7 +4173,7 @@ module Aws::Neptune
4168
4173
  # automatically taken by Amazon Neptune for my Amazon account.
4169
4174
  #
4170
4175
  # * `manual` - Return all DB cluster snapshots that have been taken by
4171
- # my AWS account.
4176
+ # my Amazon account.
4172
4177
  #
4173
4178
  # * `shared` - Return all manual DB cluster snapshots that have been
4174
4179
  # shared to my Amazon account.
@@ -4214,8 +4219,8 @@ module Aws::Neptune
4214
4219
  #
4215
4220
  # @!attribute [rw] include_shared
4216
4221
  # True to include shared manual DB cluster snapshots from other Amazon
4217
- # accounts that this AWS account has been given permission to copy or
4218
- # restore, and otherwise false. The default is `false`.
4222
+ # accounts that this Amazon account has been given permission to copy
4223
+ # or restore, and otherwise false. The default is `false`.
4219
4224
  #
4220
4225
  # You can give an Amazon account permission to restore a manual DB
4221
4226
  # cluster snapshot from another Amazon account by the
@@ -5865,6 +5870,8 @@ module Aws::Neptune
5865
5870
  # disable_log_types: ["String"],
5866
5871
  # },
5867
5872
  # engine_version: "String",
5873
+ # allow_major_version_upgrade: false,
5874
+ # db_instance_parameter_group_name: "String",
5868
5875
  # deletion_protection: false,
5869
5876
  # copy_tags_to_snapshot: false,
5870
5877
  # }
@@ -6011,6 +6018,37 @@ module Aws::Neptune
6011
6018
  # [2]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
6012
6019
  # @return [String]
6013
6020
  #
6021
+ # @!attribute [rw] allow_major_version_upgrade
6022
+ # A value that indicates whether upgrades between different major
6023
+ # versions are allowed.
6024
+ #
6025
+ # Constraints: You must set the allow-major-version-upgrade flag when
6026
+ # providing an `EngineVersion` parameter that uses a different major
6027
+ # version than the DB cluster's current version.
6028
+ # @return [Boolean]
6029
+ #
6030
+ # @!attribute [rw] db_instance_parameter_group_name
6031
+ # The name of the DB parameter group to apply to all instances of the
6032
+ # DB cluster.
6033
+ #
6034
+ # <note markdown="1"> When you apply a parameter group using
6035
+ # `DBInstanceParameterGroupName`, parameter changes aren't applied
6036
+ # during the next maintenance window but instead are applied
6037
+ # immediately.
6038
+ #
6039
+ # </note>
6040
+ #
6041
+ # Default: The existing name setting
6042
+ #
6043
+ # Constraints:
6044
+ #
6045
+ # * The DB parameter group must be in the same DB parameter group
6046
+ # family as the target DB cluster version.
6047
+ #
6048
+ # * The `DBInstanceParameterGroupName` parameter is only valid in
6049
+ # combination with the `AllowMajorVersionUpgrade` parameter.
6050
+ # @return [String]
6051
+ #
6014
6052
  # @!attribute [rw] deletion_protection
6015
6053
  # A value that indicates whether the DB cluster has deletion
6016
6054
  # protection enabled. The database can't be deleted when deletion
@@ -6039,6 +6077,8 @@ module Aws::Neptune
6039
6077
  :enable_iam_database_authentication,
6040
6078
  :cloudwatch_logs_export_configuration,
6041
6079
  :engine_version,
6080
+ :allow_major_version_upgrade,
6081
+ :db_instance_parameter_group_name,
6042
6082
  :deletion_protection,
6043
6083
  :copy_tags_to_snapshot)
6044
6084
  SENSITIVE = []
@@ -6129,7 +6169,7 @@ module Aws::Neptune
6129
6169
  # account IDs, or `all` to make the manual DB cluster snapshot
6130
6170
  # restorable by any Amazon account. Do not add the `all` value for any
6131
6171
  # manual DB cluster snapshots that contain private information that
6132
- # you don't want available to all AWS accounts.
6172
+ # you don't want available to all Amazon accounts.
6133
6173
  # @return [Array<String>]
6134
6174
  #
6135
6175
  # @!attribute [rw] values_to_remove
@@ -6237,8 +6277,8 @@ module Aws::Neptune
6237
6277
  #
6238
6278
  # @!attribute [rw] db_instance_class
6239
6279
  # The new compute and memory capacity of the DB instance, for example,
6240
- # `db.m4.large`. Not all DB instance classes are available in all AWS
6241
- # Regions.
6280
+ # `db.m4.large`. Not all DB instance classes are available in all
6281
+ # Amazon Regions.
6242
6282
  #
6243
6283
  # If you modify the DB instance class, an outage occurs during the
6244
6284
  # change. The change is applied during the next maintenance window,
@@ -7347,7 +7387,11 @@ module Aws::Neptune
7347
7387
  # @!attribute [rw] feature_name
7348
7388
  # The name of the feature for the DB cluster that the IAM role is to
7349
7389
  # be disassociated from. For the list of supported feature names, see
7350
- # DBEngineVersion.
7390
+ # [DescribeDBEngineVersions][1].
7391
+ #
7392
+ #
7393
+ #
7394
+ # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
7351
7395
  # @return [String]
7352
7396
  #
7353
7397
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RemoveRoleFromDBClusterMessage AWS API Documentation
@@ -8175,18 +8219,18 @@ module Aws::Neptune
8175
8219
  # @!attribute [rw] key
8176
8220
  # A key is the required name of the tag. The string value can be from
8177
8221
  # 1 to 128 Unicode characters in length and can't be prefixed with
8178
- # "aws:" or "rds:". The string can only contain only the set of
8179
- # Unicode letters, digits, white-space, '\_', '.', '/', '=',
8180
- # '+', '-' (Java regex:
8222
+ # `aws:` or `rds:`. The string can only contain the set of Unicode
8223
+ # letters, digits, white-space, '\_', '.', '/', '=', '+',
8224
+ # '-' (Java regex:
8181
8225
  # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
8182
8226
  # @return [String]
8183
8227
  #
8184
8228
  # @!attribute [rw] value
8185
8229
  # A value is the optional value of the tag. The string value can be
8186
8230
  # from 1 to 256 Unicode characters in length and can't be prefixed
8187
- # with "aws:" or "rds:". The string can only contain only the set
8188
- # of Unicode letters, digits, white-space, '\_', '.', '/',
8189
- # '=', '+', '-' (Java regex:
8231
+ # with `aws:` or `rds:`. The string can only contain the set of
8232
+ # Unicode letters, digits, white-space, '\_', '.', '/', '=',
8233
+ # '+', '-' (Java regex:
8190
8234
  # "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-\]*)$").
8191
8235
  # @return [String]
8192
8236
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-neptune/customizations'
49
49
  # @!group service
50
50
  module Aws::Neptune
51
51
 
52
- GEM_VERSION = '1.38.0'
52
+ GEM_VERSION = '1.42.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-neptune
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.42.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-30 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.120.0
22
+ version: 3.122.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.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement