-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create pages proto for GetPage requests. Change-Id: I5a5ce95b1040dcf9eccd280936666b2d9ca4d5fc
- Loading branch information
1 parent
837ffd1
commit a91c4d7
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright (c) 2022 Arista Networks, Inc. All rights reserved. | ||
// Arista Networks, Inc. Confidential and Proprietary. | ||
// Subject to Arista Networks, Inc.'s EULA. | ||
// FOR INTERNAL USE ONLY. NOT FOR DISTRIBUTION. | ||
|
||
syntax = "proto3"; | ||
|
||
package fmp; | ||
|
||
option go_package = "github.com/aristanetworks/cloudvision-go/api/fmp"; | ||
|
||
// SortDirection is an enum of possible values for direction of sorting. | ||
enum SortDirection { | ||
// SORT_DIRECTION_UNSPECIFIED means that no sort direction specified. | ||
SORT_DIRECTION_UNSPECIFIED = 0; | ||
// SORT_DIRECTION_ASCENDING sorts in ascending order. | ||
SORT_DIRECTION_ASCENDING = 1; | ||
// SORT_DIRECTION_DESCENDING sorts in descending order. | ||
SORT_DIRECTION_DESCENDING = 2; | ||
} | ||
|