This repository has been archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): adopt latest proto pkg (#31)
Because - we've updated the proto pkg to remove connector-backend This commit - adopt latest proto pkg
- Loading branch information
Showing
49 changed files
with
2,031 additions
and
3,945 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
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
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
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
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
28 changes: 28 additions & 0 deletions
28
integration-test/proto/common/healthcheck/v1alpha/healthcheck.proto
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,28 @@ | ||
syntax = "proto3"; | ||
|
||
package common.healthcheck.v1alpha; | ||
|
||
// Google API | ||
import "google/api/field_behavior.proto"; | ||
|
||
// HealthCheckRequest represents a request to health check a service | ||
message HealthCheckRequest { | ||
// Service name to check for its readiness status | ||
optional string service = 1 [(google.api.field_behavior) = OPTIONAL]; | ||
} | ||
|
||
// HealthCheckResponse represents a response for a service heath status | ||
message HealthCheckResponse { | ||
// ServingStatus enumerates the status of a queried service | ||
enum ServingStatus { | ||
// Serving status: UNSPECIFIED | ||
SERVING_STATUS_UNSPECIFIED = 0; | ||
// Serving status: SERVING | ||
SERVING_STATUS_SERVING = 1; | ||
// Serving status: NOT SERVING | ||
SERVING_STATUS_NOT_SERVING = 2; | ||
} | ||
|
||
// Status is the instance of the enum type ServingStatus | ||
ServingStatus status = 1; | ||
} |
144 changes: 0 additions & 144 deletions
144
integration-test/proto/vdp/connector/v1alpha/auth.proto
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.