Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Clutch
Commits
67451924
Commit
67451924
authored
3 years ago
by
Angela Nguyen
Browse files
Options
Download
Email Patches
Plain Diff
fix: enums and field names
parent
598ea1e8
ddb-refactor
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api/aws/dynamodb/v1/dynamodb.proto
+4
-4
api/aws/dynamodb/v1/dynamodb.proto
with
4 additions
and
4 deletions
+4
-4
api/aws/dynamodb/v1/dynamodb.proto
+
4
-
4
View file @
67451924
...
...
@@ -34,7 +34,7 @@ message Table {
};
// https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_TableDescription.html
enum
Table
Status
{
enum
Status
{
// Unspecified status indicates the table status could not be found.
UNSPECIFIED
=
0
;
UNKNOWN
=
1
;
...
...
@@ -51,12 +51,12 @@ message Table {
string
region
=
2
;
repeated
GlobalSecondaryIndex
global_secondary_indexes
=
3
;
Throughput
provisioned_throughput
=
4
;
Table
Status
status
=
5
;
Status
status
=
5
;
}
// Represents the current GSI state
message
GlobalSecondaryIndex
{
enum
Index
Status
{
enum
Status
{
// Unspecified indicates GSI status could not be found.
UNSPECIFIED
=
0
;
UNKNOWN
=
1
;
...
...
@@ -67,7 +67,7 @@ message GlobalSecondaryIndex {
}
string
name
=
1
;
Throughput
provisioned_throughput
=
2
;
Index
Status
status
=
3
;
Status
status
=
3
;
}
// Represents an Update action on a GSI, which changes the provisioned capacity.
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help