-
Notifications
You must be signed in to change notification settings - Fork 100
Bump cloud protos #980
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
Merged
Merged
Bump cloud protos #980
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1 +1 @@ | ||
| v0.5.1 | ||
| v0.7.1 |
This file contains hidden or 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 hidden or 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 hidden or 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
64 changes: 64 additions & 0 deletions
64
...ore-protos/protos/api_cloud_upstream/temporal/api/cloud/connectivityrule/v1/message.proto
This file contains hidden or 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,64 @@ | ||
| syntax = "proto3"; | ||
|
|
||
| package temporal.api.cloud.connectivityrule.v1; | ||
|
|
||
| option go_package = "go.temporal.io/api/cloud/connectivityrule/v1;connectivityrule"; | ||
| option java_package = "io.temporal.api.cloud.connectivityrule.v1"; | ||
| option java_multiple_files = true; | ||
| option java_outer_classname = "MessageProto"; | ||
| option ruby_package = "Temporalio::Api::Cloud::ConnectivityRule::V1"; | ||
| option csharp_namespace = "Temporalio.Api.Cloud.ConnectivityRule.V1"; | ||
|
|
||
| import "temporal/api/cloud/resource/v1/message.proto"; | ||
| import "google/protobuf/timestamp.proto"; | ||
|
|
||
| message ConnectivityRule { | ||
| reserved 3; // Removed endpoint field | ||
|
|
||
| // The id of the private connectivity rule. | ||
| string id = 1; | ||
|
|
||
| // The connectivity rule specification. | ||
| ConnectivityRuleSpec spec = 2; | ||
|
|
||
| // The current version of the connectivity rule specification. | ||
| // The next update operation will have to include this version. | ||
| string resource_version = 4; | ||
|
|
||
| temporal.api.cloud.resource.v1.ResourceState state = 5; | ||
|
|
||
| // The id of the async operation that is creating/updating/deleting the connectivity rule, if any. | ||
| string async_operation_id = 6; | ||
|
|
||
| // The date and time when the connectivity rule was created. | ||
| google.protobuf.Timestamp created_time = 7; | ||
| } | ||
|
|
||
| // The connectivity rule specification passed in on create/update operations. | ||
| message ConnectivityRuleSpec { | ||
| oneof connection_type { | ||
| // This allows access via public internet. | ||
| PublicConnectivityRule public_rule = 1; | ||
| // This allows access via specific private vpc. | ||
| PrivateConnectivityRule private_rule = 2; | ||
| } | ||
| } | ||
|
|
||
| // A public connectivity rule allows access to the namespace via the public internet. | ||
| message PublicConnectivityRule {} | ||
|
|
||
| // A private connectivity rule allows connections from a specific private vpc only. | ||
| message PrivateConnectivityRule { | ||
| // Connection id provided to enforce the private connectivity. This is required both by AWS and GCP. | ||
| string connection_id = 1; | ||
|
|
||
| // For GCP private connectivity service, GCP needs both GCP project id and the Private Service Connect Connection IDs | ||
| // AWS only needs the connection_id | ||
| string gcp_project_id = 2; | ||
|
|
||
| // The region of the connectivity rule. This should align with the namespace. | ||
| // Example: "aws-us-west-2" | ||
| string region = 3; | ||
|
|
||
| reserved 4; | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.