-
Notifications
You must be signed in to change notification settings - Fork 85
[APP-14690] Add APIKey to CloudConfig in Provisioning API #792
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
[APP-14690] Add APIKey to CloudConfig in Provisioning API #792
Conversation
| message APIKey { | ||
| string id = 1; | ||
| string value = 2; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we make this key instead of value to match our other api key protos?
| message APIKey { | |
| string id = 1; | |
| string value = 2; | |
| } | |
| message APIKey { | |
| string id = 1; | |
| string key = 2; | |
| } |
here for example:
api/proto/viam/app/v1/app.proto
Lines 926 to 930 in 1119123
| message APIKey { | |
| string id = 1; | |
| string key = 2; | |
| string name = 3; | |
| google.protobuf.Timestamp created_on = 4; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure no problem!
Description
APP-14690 Add APIKey to CloudConfig in Provisioning API