Skip to content

Commit

Permalink
APIGOV-28984 proto updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Deepak Kasu committed Oct 28, 2024
1 parent 6345011 commit 79d77f9
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions proto/customunits/customunits.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ package amplify.agent.customunits;

option go_package = "pkg/amplify/agent/customunits";

message APIServiceLookups {
// add many lookups, the agent will have to match on all and find a single result to report properly
repeated APIServiceLookup lookups = 1;
}

enum APIServiceLookupType {
CustomAPIServiceLookup = 0;
ServiceName = 1;
Expand All @@ -27,12 +22,6 @@ message APIServiceLookup {
string value = 3;
}


message AppLookups {
// add many lookups, the agent will have to match on all and find a single result to report properly
repeated AppLookup lookups = 1;
}

enum AppLookupType {
CustomAppLookup = 0;
ManagedAppName = 1;
Expand All @@ -51,11 +40,6 @@ message AppLookup {
// the value of the attribute the agent will look for in the resource
string value = 3;
}

message UnitLookups {
// add many lookups, the agent will have to match on all and find a single result to report properly
repeated UnitLookup lookups = 1;
}

enum UnitLookupType {
CustomUnitLookup = 0;
Expand All @@ -65,7 +49,7 @@ enum UnitLookupType {

message UnitLookup {
// the type that the agent will look to match against in the resource
AppLookupType type = 1;
UnitLookupType type = 1;

// Only required when Custom is the type
string customAttribute = 2;
Expand Down

0 comments on commit 79d77f9

Please sign in to comment.