aws-sdk-neptunegraph 1.26.0 → 1.27.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: 6e49bc4f27e62a7f037e6111172e6b067f8fa797cf9ec5776cd2330f5c83c346
4
- data.tar.gz: 58d9e551c615c7d72412a4ded3a77887ea0898475c8b7b342a893214a63365a3
3
+ metadata.gz: 712fe23b05564c63f41335fa43e4c827c24b4970d7eef0f9e1a49f22e5ed9fd9
4
+ data.tar.gz: e787fcad1851c9a974846e588a28280fae435fdb3c11259167ca8d0341d7de21
5
5
  SHA512:
6
- metadata.gz: 2cbb914d428b7169f62d9204b4521802c66dfb249843f45ddce3ac7b3e6c48aa6177de786de3d1ad78cc8ef0abb4cedb4620b3452f18359248eb286454348c63
7
- data.tar.gz: dd49784daa3a3e5ec1e1d0c6535eef61da017a1b5ce398db723d1cba15ff1947797c396817d708fc45c4511aca4cde4dceb3dabb4979b7699bdc861394d772f5
6
+ metadata.gz: b0880fe311f78eee7af2c956086c8042b18c5621b5ed4c94d33a2b3ea7a222fa89900cb84bf2f4f0d623eee80831b223c54f21fc14e72313c752a57b866b5014
7
+ data.tar.gz: ab4cd1beba0c60d197d99f02cb52da3cb6c790af72a0d7e62f8fef5211bd94ee0210c0b2e62cf09db925605c76f32a01931c90d16487faf9b4d434ac9bc4cf75
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2025-02-04)
5
+ ------------------
6
+
7
+ * Feature - Added argument to `list-export` to filter by graph ID
8
+
4
9
  1.26.0 (2025-01-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.26.0
1
+ 1.27.0
@@ -802,9 +802,9 @@ module Aws::NeptuneGraph
802
802
  # (m-NCUs) to use for the graph. Default: 1024, or the approved upper
803
803
  # limit for your account.
804
804
  #
805
- # If both the minimum and maximum values are specified, the max of the
806
- # `min-provisioned-memory` and `max-provisioned memory` is used to
807
- # create the graph. If neither value is specified 128 m-NCUs are used.
805
+ # If both the minimum and maximum values are specified, the final
806
+ # `provisioned-memory` will be chosen per the actual size of your
807
+ # imported data. If neither value is specified, 128 m-NCUs are used.
808
808
  #
809
809
  # @option params [Integer] :min_provisioned_memory
810
810
  # The minimum provisioned memory-optimized Neptune Capacity Units
@@ -1581,6 +1581,9 @@ module Aws::NeptuneGraph
1581
1581
 
1582
1582
  # Retrieves a list of export tasks.
1583
1583
  #
1584
+ # @option params [String] :graph_identifier
1585
+ # The unique identifier of the Neptune Analytics graph.
1586
+ #
1584
1587
  # @option params [String] :next_token
1585
1588
  # Pagination token used to paginate input.
1586
1589
  #
@@ -1597,6 +1600,7 @@ module Aws::NeptuneGraph
1597
1600
  # @example Request syntax with placeholder values
1598
1601
  #
1599
1602
  # resp = client.list_export_tasks({
1603
+ # graph_identifier: "GraphIdentifier",
1600
1604
  # next_token: "PaginationToken",
1601
1605
  # max_results: 1,
1602
1606
  # })
@@ -2444,7 +2448,7 @@ module Aws::NeptuneGraph
2444
2448
  tracer: tracer
2445
2449
  )
2446
2450
  context[:gem_name] = 'aws-sdk-neptunegraph'
2447
- context[:gem_version] = '1.26.0'
2451
+ context[:gem_version] = '1.27.0'
2448
2452
  Seahorse::Client::Request.new(handlers, context)
2449
2453
  end
2450
2454
 
@@ -576,6 +576,7 @@ module Aws::NeptuneGraph
576
576
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
577
577
  InternalServerException.struct_class = Types::InternalServerException
578
578
 
579
+ ListExportTasksInput.add_member(:graph_identifier, Shapes::ShapeRef.new(shape: GraphIdentifier, location: "querystring", location_name: "graphIdentifier"))
579
580
  ListExportTasksInput.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location: "querystring", location_name: "nextToken"))
580
581
  ListExportTasksInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
581
582
  ListExportTasksInput.struct_class = Types::ListExportTasksInput
@@ -484,9 +484,9 @@ module Aws::NeptuneGraph
484
484
  # (m-NCUs) to use for the graph. Default: 1024, or the approved upper
485
485
  # limit for your account.
486
486
  #
487
- # If both the minimum and maximum values are specified, the max of the
488
- # `min-provisioned-memory` and `max-provisioned memory` is used to
489
- # create the graph. If neither value is specified 128 m-NCUs are used.
487
+ # If both the minimum and maximum values are specified, the final
488
+ # `provisioned-memory` will be chosen per the actual size of your
489
+ # imported data. If neither value is specified, 128 m-NCUs are used.
490
490
  # @return [Integer]
491
491
  #
492
492
  # @!attribute [rw] min_provisioned_memory
@@ -1953,6 +1953,10 @@ module Aws::NeptuneGraph
1953
1953
  include Aws::Structure
1954
1954
  end
1955
1955
 
1956
+ # @!attribute [rw] graph_identifier
1957
+ # The unique identifier of the Neptune Analytics graph.
1958
+ # @return [String]
1959
+ #
1956
1960
  # @!attribute [rw] next_token
1957
1961
  # Pagination token used to paginate input.
1958
1962
  # @return [String]
@@ -1964,6 +1968,7 @@ module Aws::NeptuneGraph
1964
1968
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-graph-2023-11-29/ListExportTasksInput AWS API Documentation
1965
1969
  #
1966
1970
  class ListExportTasksInput < Struct.new(
1971
+ :graph_identifier,
1967
1972
  :next_token,
1968
1973
  :max_results)
1969
1974
  SENSITIVE = []
@@ -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.26.0'
58
+ GEM_VERSION = '1.27.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -427,6 +427,7 @@ module Aws
427
427
  end
428
428
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NeptuneGraph/Client.html#list_export_tasks-instance_method
429
429
  def list_export_tasks: (
430
+ ?graph_identifier: ::String,
430
431
  ?next_token: ::String,
431
432
  ?max_results: ::Integer
432
433
  ) -> _ListExportTasksResponseSuccess
data/sig/types.rbs CHANGED
@@ -478,6 +478,7 @@ module Aws::NeptuneGraph
478
478
  end
479
479
 
480
480
  class ListExportTasksInput
481
+ attr_accessor graph_identifier: ::String
481
482
  attr_accessor next_token: ::String
482
483
  attr_accessor max_results: ::Integer
483
484
  SENSITIVE: []
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.26.0
4
+ version: 1.27.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: 2025-01-15 00:00:00.000000000 Z
11
+ date: 2025-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core