-
Notifications
You must be signed in to change notification settings - Fork 66
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
Add SDK-only workflow metadata #336
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/.gen | ||
/.vscode | ||
/.stamp | ||
*~ | ||
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,66 @@ | ||||||||
// The MIT License | ||||||||
// | ||||||||
// Copyright (c) 2020 Temporal Technologies Inc. All rights reserved. | ||||||||
// | ||||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||||||||
// of this software and associated documentation files (the "Software"), to deal | ||||||||
// in the Software without restriction, including without limitation the rights | ||||||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||||||||
// copies of the Software, and to permit persons to whom the Software is | ||||||||
// furnished to do so, subject to the following conditions: | ||||||||
// | ||||||||
// The above copyright notice and this permission notice shall be included in | ||||||||
// all copies or substantial portions of the Software. | ||||||||
// | ||||||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||||||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||||||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||||||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||||||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||||||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||||||||
// THE SOFTWARE. | ||||||||
|
||||||||
syntax = "proto3"; | ||||||||
|
||||||||
package temporal.api.sdk.v1; | ||||||||
|
||||||||
option go_package = "go.temporal.io/api/sdk/v1;sdk"; | ||||||||
option java_package = "io.temporal.api.sdk.v1"; | ||||||||
option java_multiple_files = true; | ||||||||
option java_outer_classname = "WorkflowMetadataProto"; | ||||||||
option ruby_package = "Temporalio::Api::Sdk::V1"; | ||||||||
option csharp_namespace = "Temporalio.Api.Sdk.V1"; | ||||||||
|
||||||||
// The name of the query to retrieve this information is `__temporal_getWorkflowMetadata`. | ||||||||
message WorkflowMetadata { | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a comment saying the name of the query that retrieves this information? We need that somewhere, we might as well put it here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes sense, using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 Added benefit of that query is that it will fail on older SDKs thereby returning the same thing as the UI's little intentional-failed-query-check would. We do need to discuss the cloud pricing that may be associated with this query however (previously the intentional-failed-query-check would not charge because the query did not succeed). |
||||||||
// Metadata provided at declaration or creation time. | ||||||||
WorkflowDefinition definition = 1; | ||||||||
} | ||||||||
|
||||||||
// (-- api-linter: core::0203::optional=disabled --) | ||||||||
message WorkflowDefinition { | ||||||||
// A name scoped by the task queue that maps to this workflow definition. | ||||||||
// If missing, this workflow is a dynamic workflow. | ||||||||
string type = 1; | ||||||||
// An optional workflow description provided by the application. | ||||||||
// By convention, external tools may interpret its first part, | ||||||||
// i.e., ending with a line break, as a summary of the description. | ||||||||
string description = 2; | ||||||||
repeated WorkflowInteractionDefinition query_definitions = 3; | ||||||||
repeated WorkflowInteractionDefinition signal_definitions = 4; | ||||||||
repeated WorkflowInteractionDefinition update_definitions = 5; | ||||||||
} | ||||||||
|
||||||||
// (-- api-linter: core::0123::resource-annotation=disabled | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thanks |
||||||||
// aip.dev/not-precedent: The `name` field is optional. --) | ||||||||
// (-- api-linter: core::0203::optional=disabled --) | ||||||||
message WorkflowInteractionDefinition { | ||||||||
// An optional name for the handler. If missing, it represents | ||||||||
// a dynamic handler that processes any interactions not handled by others. | ||||||||
// There is at most one dynamic handler per workflow and interaction kind. | ||||||||
string name = 1; | ||||||||
// An optional interaction description provided by the application. | ||||||||
// By convention, external tools may interpret its first part, | ||||||||
// i.e., ending with a line break, as a summary of the description. | ||||||||
string description = 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.
What commonly created files does this ignore?
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.
I'm using emacs, best editor in the world
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.
Is it the best editor in the world if you have to update your gitignore to avoid it's leftovers? 😁 Anyways, all good, just wanted to confirm our tooling wasn't leaving things around