Skip to content

Conversation

@danielbotros
Copy link
Member

@danielbotros danielbotros commented Dec 16, 2025

Description

APP-14690 Add APIKey to CloudConfig in Provisioning API

  • We need to add an API key field to CloudConfig in the provisioning API because this is used to set the cloud credentials which the agent will use to write a viam.json or transmit over bluetooth.

@github-actions github-actions bot added the safe to test committer is a member of this org label Dec 16, 2025
@danielbotros danielbotros added the ready-for-protos add this when you want protos to compile on every commit label Dec 16, 2025
@danielbotros danielbotros changed the title Add APIKey [APP-14690] Add APIKey to CloudConfig in Provisioning API Dec 16, 2025
Comment on lines 86 to 89
message APIKey {
string id = 1;
string value = 2;
}
Copy link
Member

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?

Suggested change
message APIKey {
string id = 1;
string value = 2;
}
message APIKey {
string id = 1;
string key = 2;
}

here for example:

message APIKey {
string id = 1;
string key = 2;
string name = 3;
google.protobuf.Timestamp created_on = 4;

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure no problem!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

protos-compiled ready-for-protos add this when you want protos to compile on every commit safe to test committer is a member of this org

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants