aws-sdk-dynamodb 1.144.0 → 1.146.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-dynamodb/client.rb +95 -71
- data/lib/aws-sdk-dynamodb/client_api.rb +28 -0
- data/lib/aws-sdk-dynamodb/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-dynamodb/errors.rb +4 -0
- data/lib/aws-sdk-dynamodb/table.rb +50 -26
- data/lib/aws-sdk-dynamodb/types.rb +137 -29
- data/lib/aws-sdk-dynamodb.rb +1 -1
- data/sig/client.rbs +10 -0
- data/sig/table.rbs +14 -1
- data/sig/types.rbs +30 -6
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -293,6 +293,11 @@ module Aws::DynamoDB
|
|
293
293
|
SENSITIVE: []
|
294
294
|
end
|
295
295
|
|
296
|
+
class CreateGlobalTableWitnessGroupMemberAction
|
297
|
+
attr_accessor region_name: ::String
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
296
301
|
class CreateReplicaAction
|
297
302
|
attr_accessor region_name: ::String
|
298
303
|
SENSITIVE: []
|
@@ -363,6 +368,11 @@ module Aws::DynamoDB
|
|
363
368
|
SENSITIVE: []
|
364
369
|
end
|
365
370
|
|
371
|
+
class DeleteGlobalTableWitnessGroupMemberAction
|
372
|
+
attr_accessor region_name: ::String
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
366
376
|
class DeleteItemInput
|
367
377
|
attr_accessor table_name: ::String
|
368
378
|
attr_accessor key: ::Hash[::String, Types::AttributeValue]
|
@@ -804,6 +814,18 @@ module Aws::DynamoDB
|
|
804
814
|
SENSITIVE: []
|
805
815
|
end
|
806
816
|
|
817
|
+
class GlobalTableWitnessDescription
|
818
|
+
attr_accessor region_name: ::String
|
819
|
+
attr_accessor witness_status: ("CREATING" | "DELETING" | "ACTIVE")
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class GlobalTableWitnessGroupUpdate
|
824
|
+
attr_accessor create: Types::CreateGlobalTableWitnessGroupMemberAction
|
825
|
+
attr_accessor delete: Types::DeleteGlobalTableWitnessGroupMemberAction
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
807
829
|
class IdempotentParameterMismatchException
|
808
830
|
attr_accessor message: ::String
|
809
831
|
SENSITIVE: []
|
@@ -1244,7 +1266,7 @@ module Aws::DynamoDB
|
|
1244
1266
|
attr_accessor global_secondary_indexes: ::Array[Types::ReplicaGlobalSecondaryIndexAutoScalingDescription]
|
1245
1267
|
attr_accessor replica_provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1246
1268
|
attr_accessor replica_provisioned_write_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
1247
|
-
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1269
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED" | "REPLICATION_NOT_AUTHORIZED")
|
1248
1270
|
SENSITIVE: []
|
1249
1271
|
end
|
1250
1272
|
|
@@ -1257,7 +1279,7 @@ module Aws::DynamoDB
|
|
1257
1279
|
|
1258
1280
|
class ReplicaDescription
|
1259
1281
|
attr_accessor region_name: ::String
|
1260
|
-
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1282
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED" | "REPLICATION_NOT_AUTHORIZED")
|
1261
1283
|
attr_accessor replica_status_description: ::String
|
1262
1284
|
attr_accessor replica_status_percent_progress: ::String
|
1263
1285
|
attr_accessor kms_master_key_id: ::String
|
@@ -1323,7 +1345,7 @@ module Aws::DynamoDB
|
|
1323
1345
|
|
1324
1346
|
class ReplicaSettingsDescription
|
1325
1347
|
attr_accessor region_name: ::String
|
1326
|
-
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS")
|
1348
|
+
attr_accessor replica_status: ("CREATING" | "CREATION_FAILED" | "UPDATING" | "DELETING" | "ACTIVE" | "REGION_DISABLED" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED" | "REPLICATION_NOT_AUTHORIZED")
|
1327
1349
|
attr_accessor replica_billing_mode_summary: Types::BillingModeSummary
|
1328
1350
|
attr_accessor replica_provisioned_read_capacity_units: ::Integer
|
1329
1351
|
attr_accessor replica_provisioned_read_capacity_auto_scaling_settings: Types::AutoScalingSettingsDescription
|
@@ -1508,7 +1530,7 @@ module Aws::DynamoDB
|
|
1508
1530
|
|
1509
1531
|
class TableAutoScalingDescription
|
1510
1532
|
attr_accessor table_name: ::String
|
1511
|
-
attr_accessor table_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED")
|
1533
|
+
attr_accessor table_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED" | "REPLICATION_NOT_AUTHORIZED")
|
1512
1534
|
attr_accessor replicas: ::Array[Types::ReplicaAutoScalingDescription]
|
1513
1535
|
SENSITIVE: []
|
1514
1536
|
end
|
@@ -1535,7 +1557,7 @@ module Aws::DynamoDB
|
|
1535
1557
|
attr_accessor attribute_definitions: ::Array[Types::AttributeDefinition]
|
1536
1558
|
attr_accessor table_name: ::String
|
1537
1559
|
attr_accessor key_schema: ::Array[Types::KeySchemaElement]
|
1538
|
-
attr_accessor table_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED")
|
1560
|
+
attr_accessor table_status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED" | "REPLICATION_NOT_AUTHORIZED")
|
1539
1561
|
attr_accessor creation_date_time: ::Time
|
1540
1562
|
attr_accessor provisioned_throughput: Types::ProvisionedThroughputDescription
|
1541
1563
|
attr_accessor table_size_bytes: ::Integer
|
@@ -1550,6 +1572,7 @@ module Aws::DynamoDB
|
|
1550
1572
|
attr_accessor latest_stream_arn: ::String
|
1551
1573
|
attr_accessor global_table_version: ::String
|
1552
1574
|
attr_accessor replicas: ::Array[Types::ReplicaDescription]
|
1575
|
+
attr_accessor global_table_witnesses: ::Array[Types::GlobalTableWitnessDescription]
|
1553
1576
|
attr_accessor restore_summary: Types::RestoreSummary
|
1554
1577
|
attr_accessor sse_description: Types::SSEDescription
|
1555
1578
|
attr_accessor archival_summary: Types::ArchivalSummary
|
@@ -1574,7 +1597,7 @@ module Aws::DynamoDB
|
|
1574
1597
|
class TableWarmThroughputDescription
|
1575
1598
|
attr_accessor read_units_per_second: ::Integer
|
1576
1599
|
attr_accessor write_units_per_second: ::Integer
|
1577
|
-
attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED")
|
1600
|
+
attr_accessor status: ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "INACCESSIBLE_ENCRYPTION_CREDENTIALS" | "ARCHIVING" | "ARCHIVED" | "REPLICATION_NOT_AUTHORIZED")
|
1578
1601
|
SENSITIVE: []
|
1579
1602
|
end
|
1580
1603
|
|
@@ -1800,6 +1823,7 @@ module Aws::DynamoDB
|
|
1800
1823
|
attr_accessor table_class: ("STANDARD" | "STANDARD_INFREQUENT_ACCESS")
|
1801
1824
|
attr_accessor deletion_protection_enabled: bool
|
1802
1825
|
attr_accessor multi_region_consistency: ("EVENTUAL" | "STRONG")
|
1826
|
+
attr_accessor global_table_witness_updates: ::Array[Types::GlobalTableWitnessGroupUpdate]
|
1803
1827
|
attr_accessor on_demand_throughput: Types::OnDemandThroughput
|
1804
1828
|
attr_accessor warm_throughput: Types::WarmThroughput
|
1805
1829
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-dynamodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.146.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.225.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -91,7 +91,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
91
|
requirements:
|
92
92
|
- - ">="
|
93
93
|
- !ruby/object:Gem::Version
|
94
|
-
version: '2.
|
94
|
+
version: '2.7'
|
95
95
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
97
|
- - ">="
|