diff --git a/.changelog/4754.txt b/.changelog/4754.txt new file mode 100644 index 00000000000..a0aa32cd48b --- /dev/null +++ b/.changelog/4754.txt @@ -0,0 +1,4 @@ +```release-note:improvement +cli,server: Introduce explicit `delete` endpoint for CLI and Server for Config +and Config Sourcers. +``` diff --git a/internal/cli/config_delete.go b/internal/cli/config_delete.go new file mode 100644 index 00000000000..334d32064d6 --- /dev/null +++ b/internal/cli/config_delete.go @@ -0,0 +1,206 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package cli + +import ( + "bufio" + "fmt" + "os" + + "github.com/posener/complete" + + "github.com/hashicorp/waypoint-plugin-sdk/terminal" + "github.com/hashicorp/waypoint/internal/clierrors" + "github.com/hashicorp/waypoint/internal/pkg/flag" + pb "github.com/hashicorp/waypoint/pkg/server/gen" +) + +type ConfigDeleteCommand struct { + *baseCommand + + flagGlobal bool + flagScope string + flagWorkspaceScope string + flagLabelScope string +} + +func (c *ConfigDeleteCommand) Run(args []string) int { + initOpts := []Option{ + WithArgs(args), + WithFlags(c.Flags()), + + // Don't allow a local in-mem server because configuration + // makes no sense with the local server. + WithNoLocalServer(), + } + + // We parse our flags twice in this command because we need to + // determine if we're loading a config or not. + // + // NOTE we specifically ignore errors here because if we have errors + // they'll happen again on Init and Init will output to the CLI. + if err := c.Flags().Parse(args); err == nil { + // If we're global scoped OR we have a project explicitly set + // then we do not need a config. If we're not global scoped and + // we do not have a project explicitly set, we need a config because + // we need a way to load that project name. + if c.flagScope == "global" || c.flagProject != "" { + initOpts = append(initOpts, + WithNoConfig(), // no waypoint.hcl + ) + } + } + + // Initialize. If we fail, we just exit since Init handles the UI. + if err := c.Init(initOpts...); err != nil { + return 1 + } + + // If there are no command arguments, check if the command has + // been invoked with a pipe like `cat .env | waypoint config set`. + if len(c.args) == 0 { + info, err := os.Stdin.Stat() + if err != nil { + _, _ = fmt.Fprintf(os.Stderr, "failed to get console mode for stdin") + return 1 + } + + // If there's no pipe, there are no arguments. Fail. + if info.Mode()&os.ModeNamedPipe == 0 { + _, _ = fmt.Fprintf(os.Stderr, "config delete requires at least one key entry") + return 1 + } + + scanner := bufio.NewScanner(os.Stdin) + for scanner.Scan() { + c.args = append(c.args, scanner.Text()) + } + } + + // Pre-calculate our project ref since we reuse this. + projectRef := &pb.Ref_Project{Project: c.flagProject} + if c.flagProject == "" && c.project != nil { + projectRef = c.project.Ref() + } + + // Get our API client + client := c.project.Client() + + var req pb.ConfigDeleteRequest + + for _, arg := range c.args { + // Build our initial config var + configVar := &pb.ConfigVar{ + Target: &pb.ConfigVar_Target{}, + Name: arg, + Value: &pb.ConfigVar_Unset{}, + } + + // Depending on the scoping set our target + switch c.flagScope { + case "global": + configVar.Target.AppScope = &pb.ConfigVar_Target_Global{ + Global: &pb.Ref_Global{}, + } + + case "project": + configVar.Target.AppScope = &pb.ConfigVar_Target_Project{ + Project: projectRef, + } + + case "app": + if c.flagApp == "" { + fmt.Fprintf(os.Stderr, "-scope requires -app set if scope is 'app'") + return 1 + } + configVar.Target.AppScope = &pb.ConfigVar_Target_Application{ + Application: &pb.Ref_Application{ + Project: projectRef.Project, + Application: c.flagApp, + }, + } + + default: + err := fmt.Errorf("-scope needs to be one of 'global', 'project', or 'app'") + c.project.UI.Output(clierrors.Humanize(err), terminal.WithErrorStyle()) + return 1 + } + + // If we have a workspace flag set, set that. + if v := c.flagWorkspaceScope; v != "" { + configVar.Target.Workspace = &pb.Ref_Workspace{ + Workspace: v, + } + } + + // If we have a label flag set, set that. + if v := c.flagLabelScope; v != "" { + configVar.Target.LabelSelector = v + } + + req.Variables = append(req.Variables, configVar) + } + + _, err := client.DeleteConfig(c.Ctx, &req) + if err != nil { + c.project.UI.Output(clierrors.Humanize(err), terminal.WithErrorStyle()) + return 1 + } + + return 0 +} + +func (c *ConfigDeleteCommand) Flags() *flag.Sets { + return c.flagSet(0, func(set *flag.Sets) { + f := set.NewSet("Command Options") + + f.StringVar(&flag.StringVar{ + Name: "scope", + Target: &c.flagScope, + Usage: "The scope for this configuration to delete. The configuration will only " + + "delete within this scope. This can be one of 'global', 'project', or " + + "'app'.", + Default: "project", + }) + + f.StringVar(&flag.StringVar{ + Name: "workspace-scope", + Target: &c.flagWorkspaceScope, + Usage: "Specify that the configuration is only available within a " + + "specific workspace. This configuration will only be deleted for " + + "deployments or operations when the workspace " + + "matches this.", + Default: "", + }) + + f.StringVar(&flag.StringVar{ + Name: "label-scope", + Target: &c.flagLabelScope, + Usage: "If set, configuration will only be deleted if the deployment " + + "or operation has a matching label set.", + Default: "", + }) + }) +} + +func (c *ConfigDeleteCommand) AutocompleteArgs() complete.Predictor { + return complete.PredictNothing +} + +func (c *ConfigDeleteCommand) AutocompleteFlags() complete.Flags { + return c.Flags().Completions() +} + +func (c *ConfigDeleteCommand) Synopsis() string { + return "Delete a config variable." +} + +func (c *ConfigDeleteCommand) Help() string { + return formatHelp(` +Usage: waypoint config delete ... + + Delete a config variable from the system. This cannot be undone. + +` + c.Flags().Help()) +} diff --git a/internal/cli/config_source_delete.go b/internal/cli/config_source_delete.go new file mode 100644 index 00000000000..8aa3ae2cbac --- /dev/null +++ b/internal/cli/config_source_delete.go @@ -0,0 +1,144 @@ +// Copyright (c) HashiCorp, Inc. +// SPDX-License-Identifier: MPL-2.0 + +package cli + +import ( + "fmt" + "os" + + "github.com/posener/complete" + + "github.com/hashicorp/waypoint-plugin-sdk/terminal" + "github.com/hashicorp/waypoint/internal/clierrors" + "github.com/hashicorp/waypoint/internal/pkg/flag" + pb "github.com/hashicorp/waypoint/pkg/server/gen" +) + +type ConfigSourceDeleteCommand struct { + *baseCommand + + flagType string + flagScope string +} + +func (c *ConfigSourceDeleteCommand) Run(args []string) int { + // Initialize. If we fail, we just exit since Init handles the UI. + if err := c.Init( + WithArgs(args), + WithFlags(c.Flags()), + ); err != nil { + return 1 + } + + // type is required if deleting + if c.flagType == "" { + c.ui.Output(c.Flags().Help(), terminal.WithErrorStyle()) + return 1 + } + + configSource := &pb.ConfigSource{ + Delete: true, + Type: c.flagType, + } + + // If we have a workspace flag set, set that. + if v := c.flagWorkspace; v != "" { + configSource.Workspace = &pb.Ref_Workspace{ + Workspace: v, + } + } + + // Pre-calculate our project ref since we reuse this. + projectRef := &pb.Ref_Project{Project: c.flagProject} + + // Depending on the scoping set our target + switch c.flagScope { + case "global": + configSource.Scope = &pb.ConfigSource_Global{ + Global: &pb.Ref_Global{}, + } + + case "project": + configSource.Scope = &pb.ConfigSource_Project{ + Project: projectRef, + } + + case "app": + if c.flagApp == "" { + fmt.Fprintf(os.Stderr, "-scope requires -app set if scope is 'app'") + return 1 + } + configSource.Scope = &pb.ConfigSource_Application{ + Application: &pb.Ref_Application{ + Project: projectRef.Project, + Application: c.flagApp, + }, + } + + default: + err := fmt.Errorf("-scope needs to be one of 'global', 'project', or 'app'") + c.project.UI.Output(clierrors.Humanize(err), terminal.WithErrorStyle()) + return 1 + } + + // Set our config + client := c.project.Client() + _, err := client.DeleteConfigSource(c.Ctx, &pb.DeleteConfigSourceRequest{ + ConfigSource: configSource, + }) + if err != nil { + c.project.UI.Output(clierrors.Humanize(err), terminal.WithErrorStyle()) + return 1 + } + + c.ui.Output("Configuration deleted for dynamic source %q!", c.flagType, terminal.WithSuccessStyle()) + return 0 +} + +func (c *ConfigSourceDeleteCommand) Flags() *flag.Sets { + return c.flagSet(0, func(set *flag.Sets) { + f := set.NewSet("Command Options") + f.StringVar(&flag.StringVar{ + Name: "type", + Target: &c.flagType, + Usage: "Dynamic source type to delete, such as 'vault'.", + }) + f.StringVar(&flag.StringVar{ + Name: "scope", + Target: &c.flagScope, + Usage: "The scope for this configuration source. The configuration source will only " + + "delete within this scope. This can be one of 'global', 'project', or " + + "'app'.", + Default: "global", + }) + }) +} + +func (c *ConfigSourceDeleteCommand) AutocompleteArgs() complete.Predictor { + return complete.PredictNothing +} + +func (c *ConfigSourceDeleteCommand) AutocompleteFlags() complete.Flags { + return c.Flags().Completions() +} + +func (c *ConfigSourceDeleteCommand) Synopsis() string { + return "Delete the configuration for a dynamic source plugin" +} + +func (c *ConfigSourceDeleteCommand) Help() string { + return formatHelp(` +Usage: waypoint config source-delete [options] + + Delete the configuration for a dynamic configuration source plugin. + + To use this command, you should specify a "-type" flag. Please see the + documentation for the config source type you're configuring for details on + what configuration fields are available. + + Configuration for this command is global. The "-app", "-project", and + "-workspace" flags are ignored on this command. + +` + c.Flags().Help()) +} diff --git a/internal/cli/main.go b/internal/cli/main.go index 4af1c0b9c28..03a6a90e374 100644 --- a/internal/cli/main.go +++ b/internal/cli/main.go @@ -220,6 +220,11 @@ func Commands( baseCommand: baseCommand, }, nil }, + "config delete": func() (cli.Command, error) { + return &ConfigDeleteCommand{ + baseCommand: baseCommand, + }, nil + }, "config source-get": func() (cli.Command, error) { return &ConfigSourceGetCommand{ baseCommand: baseCommand, @@ -230,6 +235,11 @@ func Commands( baseCommand: baseCommand, }, nil }, + "config source-delete": func() (cli.Command, error) { + return &ConfigSourceDeleteCommand{ + baseCommand: baseCommand, + }, nil + }, "config sync": func() (cli.Command, error) { return &ConfigSyncCommand{ baseCommand: baseCommand, diff --git a/internal/server/boltdbstate/config.go b/internal/server/boltdbstate/config.go index 90ddca22b02..1649bf287b4 100644 --- a/internal/server/boltdbstate/config.go +++ b/internal/server/boltdbstate/config.go @@ -38,6 +38,36 @@ func init() { schemas = append(schemas, configIndexSchema) } +// ConfigDelete looks at each passed in ConfigVar and checks to see if it has +// been properly set for deletion either through ConfigVar_Unset or when its +// static value i.e. ConfigVar_Static is empty string. It then calls through +// to configSet to delete it. +func (s *State) ConfigDelete(ctx context.Context, vs ...*pb.ConfigVar) error { + // Automatically unset all requested config vars for deletion + for i, v := range vs { + v.Value = &pb.ConfigVar_Unset{} + vs[i] = v + } + + memTxn := s.inmem.Txn(true) + defer memTxn.Abort() + + err := s.db.Update(func(dbTxn *bolt.Tx) error { + for _, v := range vs { + if err := s.configSet(dbTxn, memTxn, v); err != nil { + return err + } + } + + return nil + }) + if err == nil { + memTxn.Commit() + } + + return err +} + // ConfigSet writes a configuration variable to the data store. Deletes // are always ordered before writes so that you can't delete a new value // in a single ConfigSet (you should never want to do this). diff --git a/internal/server/boltdbstate/config_source.go b/internal/server/boltdbstate/config_source.go index 059ffde962b..af6403ac41c 100644 --- a/internal/server/boltdbstate/config_source.go +++ b/internal/server/boltdbstate/config_source.go @@ -28,6 +28,28 @@ func init() { schemas = append(schemas, configSourceIndexSchema) } +// ConfigSourceDelete deletes the config sourcer value from the db +func (s *State) ConfigSourceDelete(ctx context.Context, vs ...*pb.ConfigSource) error { + memTxn := s.inmem.Txn(true) + defer memTxn.Abort() + + err := s.db.Update(func(dbTxn *bolt.Tx) error { + for _, v := range vs { + v.Delete = true + if err := s.configSourceSet(dbTxn, memTxn, v); err != nil { + return err + } + } + + return nil + }) + if err == nil { + memTxn.Commit() + } + + return err +} + // ConfigSourceSet writes a set of config source values to the database. func (s *State) ConfigSourceSet(ctx context.Context, vs ...*pb.ConfigSource) error { memTxn := s.inmem.Txn(true) diff --git a/internal/server/boltdbstate/config_source_test.go b/internal/server/boltdbstate/config_source_test.go index 012d47f9c57..ed26ecfe148 100644 --- a/internal/server/boltdbstate/config_source_test.go +++ b/internal/server/boltdbstate/config_source_test.go @@ -5,9 +5,10 @@ package boltdbstate import ( "context" - pb "github.com/hashicorp/waypoint/pkg/server/gen" "testing" + pb "github.com/hashicorp/waypoint/pkg/server/gen" + "github.com/stretchr/testify/require" ) @@ -39,6 +40,50 @@ func TestGlobalConfigSource(t *testing.T) { require.Equal(source[0].Scope, &pb.ConfigSource_Global{Global: &pb.Ref_Global{}}) } +func TestGlobalConfigSourceDelete(t *testing.T) { + ctx := context.Background() + require := require.New(t) + + s := TestState(t) + defer s.Close() + + err := s.ConfigSourceSet(ctx, &pb.ConfigSource{ + Delete: false, + Scope: &pb.ConfigSource_Global{Global: &pb.Ref_Global{}}, + Workspace: &pb.Ref_Workspace{Workspace: "default"}, + Type: "test", + }) + + require.NoError(err) + + source, err := s.ConfigSourceGet(ctx, &pb.GetConfigSourceRequest{ + Scope: &pb.GetConfigSourceRequest_Global{Global: &pb.Ref_Global{}}, + Workspace: &pb.Ref_Workspace{Workspace: "default"}, + Type: "test", + }) + + require.NoError(err) + require.True(len(source) > 0) + require.Equal(source[0].Type, "test") + require.Equal(source[0].Scope, &pb.ConfigSource_Global{Global: &pb.Ref_Global{}}) + + err = s.ConfigSourceDelete(ctx, &pb.ConfigSource{ + Scope: &pb.ConfigSource_Global{Global: &pb.Ref_Global{}}, + Workspace: &pb.Ref_Workspace{Workspace: "default"}, + Type: "test", + }) + require.NoError(err) + + source, err = s.ConfigSourceGet(ctx, &pb.GetConfigSourceRequest{ + Scope: &pb.GetConfigSourceRequest_Global{Global: &pb.Ref_Global{}}, + Workspace: &pb.Ref_Workspace{Workspace: "default"}, + Type: "test", + }) + + require.NoError(err) + require.True(len(source) == 0) +} + func TestProjectConfigSource(t *testing.T) { ctx := context.Background() require := require.New(t) diff --git a/internal/server/boltdbstate/project.go b/internal/server/boltdbstate/project.go index 5a5d0381249..4761d9d7ff3 100644 --- a/internal/server/boltdbstate/project.go +++ b/internal/server/boltdbstate/project.go @@ -212,6 +212,7 @@ func (s *State) ProjectDelete(ctx context.Context, ref *pb.Ref_Project) error { } // Unset all configs we retrieved + // TODO(briancain): Update this to s.configDelete(...) for _, config := range configVars { if err = s.configSet(dbTxn, memTxn, &pb.ConfigVar{ Target: config.Target, diff --git a/pkg/server/gen/mocks/waypoint_client.go b/pkg/server/gen/mocks/waypoint_client.go index 6a21cb7ae36..23e25ee6499 100644 --- a/pkg/server/gen/mocks/waypoint_client.go +++ b/pkg/server/gen/mocks/waypoint_client.go @@ -408,6 +408,66 @@ func (_m *WaypointClient) DeleteAuthMethod(ctx context.Context, in *gen.DeleteAu return r0, r1 } +// DeleteConfig provides a mock function with given fields: ctx, in, opts +func (_m *WaypointClient) DeleteConfig(ctx context.Context, in *gen.ConfigDeleteRequest, opts ...grpc.CallOption) (*gen.ConfigDeleteResponse, error) { + _va := make([]interface{}, len(opts)) + for _i := range opts { + _va[_i] = opts[_i] + } + var _ca []interface{} + _ca = append(_ca, ctx, in) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) + + var r0 *gen.ConfigDeleteResponse + if rf, ok := ret.Get(0).(func(context.Context, *gen.ConfigDeleteRequest, ...grpc.CallOption) *gen.ConfigDeleteResponse); ok { + r0 = rf(ctx, in, opts...) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*gen.ConfigDeleteResponse) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *gen.ConfigDeleteRequest, ...grpc.CallOption) error); ok { + r1 = rf(ctx, in, opts...) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + +// DeleteConfigSource provides a mock function with given fields: ctx, in, opts +func (_m *WaypointClient) DeleteConfigSource(ctx context.Context, in *gen.DeleteConfigSourceRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { + _va := make([]interface{}, len(opts)) + for _i := range opts { + _va[_i] = opts[_i] + } + var _ca []interface{} + _ca = append(_ca, ctx, in) + _ca = append(_ca, _va...) + ret := _m.Called(_ca...) + + var r0 *emptypb.Empty + if rf, ok := ret.Get(0).(func(context.Context, *gen.DeleteConfigSourceRequest, ...grpc.CallOption) *emptypb.Empty); ok { + r0 = rf(ctx, in, opts...) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*emptypb.Empty) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *gen.DeleteConfigSourceRequest, ...grpc.CallOption) error); ok { + r1 = rf(ctx, in, opts...) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + // DeleteHostname provides a mock function with given fields: ctx, in, opts func (_m *WaypointClient) DeleteHostname(ctx context.Context, in *gen.DeleteHostnameRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { _va := make([]interface{}, len(opts)) diff --git a/pkg/server/gen/mocks/waypoint_server.go b/pkg/server/gen/mocks/waypoint_server.go index 4e8a02c2f42..febda0aab85 100644 --- a/pkg/server/gen/mocks/waypoint_server.go +++ b/pkg/server/gen/mocks/waypoint_server.go @@ -306,6 +306,52 @@ func (_m *WaypointServer) DeleteAuthMethod(_a0 context.Context, _a1 *gen.DeleteA return r0, r1 } +// DeleteConfig provides a mock function with given fields: _a0, _a1 +func (_m *WaypointServer) DeleteConfig(_a0 context.Context, _a1 *gen.ConfigDeleteRequest) (*gen.ConfigDeleteResponse, error) { + ret := _m.Called(_a0, _a1) + + var r0 *gen.ConfigDeleteResponse + if rf, ok := ret.Get(0).(func(context.Context, *gen.ConfigDeleteRequest) *gen.ConfigDeleteResponse); ok { + r0 = rf(_a0, _a1) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*gen.ConfigDeleteResponse) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *gen.ConfigDeleteRequest) error); ok { + r1 = rf(_a0, _a1) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + +// DeleteConfigSource provides a mock function with given fields: _a0, _a1 +func (_m *WaypointServer) DeleteConfigSource(_a0 context.Context, _a1 *gen.DeleteConfigSourceRequest) (*emptypb.Empty, error) { + ret := _m.Called(_a0, _a1) + + var r0 *emptypb.Empty + if rf, ok := ret.Get(0).(func(context.Context, *gen.DeleteConfigSourceRequest) *emptypb.Empty); ok { + r0 = rf(_a0, _a1) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*emptypb.Empty) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(context.Context, *gen.DeleteConfigSourceRequest) error); ok { + r1 = rf(_a0, _a1) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + // DeleteHostname provides a mock function with given fields: _a0, _a1 func (_m *WaypointServer) DeleteHostname(_a0 context.Context, _a1 *gen.DeleteHostnameRequest) (*emptypb.Empty, error) { ret := _m.Called(_a0, _a1) diff --git a/pkg/server/gen/server.pb.go b/pkg/server/gen/server.pb.go index 4ffbbe0a4e4..12e6023e96a 100644 --- a/pkg/server/gen/server.pb.go +++ b/pkg/server/gen/server.pb.go @@ -1291,7 +1291,7 @@ func (x ExecStreamResponse_Output_Channel) Number() protoreflect.EnumNumber { // Deprecated: Use ExecStreamResponse_Output_Channel.Descriptor instead. func (ExecStreamResponse_Output_Channel) EnumDescriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{173, 2, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176, 2, 0} } type EntrypointExecRequest_Output_Channel int32 @@ -1340,7 +1340,7 @@ func (x EntrypointExecRequest_Output_Channel) Number() protoreflect.EnumNumber { // Deprecated: Use EntrypointExecRequest_Output_Channel.Descriptor instead. func (EntrypointExecRequest_Output_Channel) EnumDescriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{178, 2, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{181, 2, 0} } type PipelineRun_State int32 @@ -1401,7 +1401,7 @@ func (x PipelineRun_State) Number() protoreflect.EnumNumber { // Deprecated: Use PipelineRun_State.Descriptor instead. func (PipelineRun_State) EnumDescriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{181, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{184, 0} } type GetPipelineResponse_Graph_Format int32 @@ -1447,7 +1447,7 @@ func (x GetPipelineResponse_Graph_Format) Number() protoreflect.EnumNumber { // Deprecated: Use GetPipelineResponse_Graph_Format.Descriptor instead. func (GetPipelineResponse_Graph_Format) EnumDescriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{185, 0, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{188, 0, 0} } type GetTFCRunStatusResponse_State int32 @@ -1499,7 +1499,7 @@ func (x GetTFCRunStatusResponse_State) Number() protoreflect.EnumNumber { // Deprecated: Use GetTFCRunStatusResponse_State.Descriptor instead. func (GetTFCRunStatusResponse_State) EnumDescriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{208, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{211, 0} } type Snapshot_Header_Format int32 @@ -1545,7 +1545,7 @@ func (x Snapshot_Header_Format) Number() protoreflect.EnumNumber { // Deprecated: Use Snapshot_Header_Format.Descriptor instead. func (Snapshot_Header_Format) EnumDescriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{223, 0, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{226, 0, 0} } // HCL files can be in either HCL or JSON syntax. We need to know ahead of @@ -1594,7 +1594,7 @@ func (x Hcl_Format) Number() protoreflect.EnumNumber { // Deprecated: Use Hcl_Format.Descriptor instead. func (Hcl_Format) EnumDescriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{224, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{227, 0} } // ******************************************************************* @@ -13856,6 +13856,91 @@ func (*ConfigSetResponse) Descriptor() ([]byte, []int) { return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{165} } +type ConfigDeleteRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Variables []*ConfigVar `protobuf:"bytes,1,rep,name=variables,proto3" json:"variables,omitempty"` +} + +func (x *ConfigDeleteRequest) Reset() { + *x = ConfigDeleteRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_pkg_server_proto_server_proto_msgTypes[166] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ConfigDeleteRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ConfigDeleteRequest) ProtoMessage() {} + +func (x *ConfigDeleteRequest) ProtoReflect() protoreflect.Message { + mi := &file_pkg_server_proto_server_proto_msgTypes[166] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ConfigDeleteRequest.ProtoReflect.Descriptor instead. +func (*ConfigDeleteRequest) Descriptor() ([]byte, []int) { + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{166} +} + +func (x *ConfigDeleteRequest) GetVariables() []*ConfigVar { + if x != nil { + return x.Variables + } + return nil +} + +type ConfigDeleteResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields +} + +func (x *ConfigDeleteResponse) Reset() { + *x = ConfigDeleteResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_pkg_server_proto_server_proto_msgTypes[167] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *ConfigDeleteResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ConfigDeleteResponse) ProtoMessage() {} + +func (x *ConfigDeleteResponse) ProtoReflect() protoreflect.Message { + mi := &file_pkg_server_proto_server_proto_msgTypes[167] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ConfigDeleteResponse.ProtoReflect.Descriptor instead. +func (*ConfigDeleteResponse) Descriptor() ([]byte, []int) { + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{167} +} + type ConfigGetRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -13889,7 +13974,7 @@ type ConfigGetRequest struct { func (x *ConfigGetRequest) Reset() { *x = ConfigGetRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[166] + mi := &file_pkg_server_proto_server_proto_msgTypes[168] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13902,7 +13987,7 @@ func (x *ConfigGetRequest) String() string { func (*ConfigGetRequest) ProtoMessage() {} func (x *ConfigGetRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[166] + mi := &file_pkg_server_proto_server_proto_msgTypes[168] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13915,7 +14000,7 @@ func (x *ConfigGetRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfigGetRequest.ProtoReflect.Descriptor instead. func (*ConfigGetRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{166} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{168} } func (m *ConfigGetRequest) GetScope() isConfigGetRequest_Scope { @@ -13997,7 +14082,7 @@ type ConfigGetResponse struct { func (x *ConfigGetResponse) Reset() { *x = ConfigGetResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[167] + mi := &file_pkg_server_proto_server_proto_msgTypes[169] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14010,7 +14095,7 @@ func (x *ConfigGetResponse) String() string { func (*ConfigGetResponse) ProtoMessage() {} func (x *ConfigGetResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[167] + mi := &file_pkg_server_proto_server_proto_msgTypes[169] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14023,7 +14108,7 @@ func (x *ConfigGetResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfigGetResponse.ProtoReflect.Descriptor instead. func (*ConfigGetResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{167} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{169} } func (x *ConfigGetResponse) GetVariables() []*ConfigVar { @@ -14077,7 +14162,7 @@ type ConfigSource struct { func (x *ConfigSource) Reset() { *x = ConfigSource{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[168] + mi := &file_pkg_server_proto_server_proto_msgTypes[170] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14090,7 +14175,7 @@ func (x *ConfigSource) String() string { func (*ConfigSource) ProtoMessage() {} func (x *ConfigSource) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[168] + mi := &file_pkg_server_proto_server_proto_msgTypes[170] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14103,7 +14188,7 @@ func (x *ConfigSource) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfigSource.ProtoReflect.Descriptor instead. func (*ConfigSource) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{168} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{170} } func (x *ConfigSource) GetDelete() bool { @@ -14202,7 +14287,7 @@ type SetConfigSourceRequest struct { func (x *SetConfigSourceRequest) Reset() { *x = SetConfigSourceRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[169] + mi := &file_pkg_server_proto_server_proto_msgTypes[171] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14215,7 +14300,7 @@ func (x *SetConfigSourceRequest) String() string { func (*SetConfigSourceRequest) ProtoMessage() {} func (x *SetConfigSourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[169] + mi := &file_pkg_server_proto_server_proto_msgTypes[171] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14228,7 +14313,7 @@ func (x *SetConfigSourceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SetConfigSourceRequest.ProtoReflect.Descriptor instead. func (*SetConfigSourceRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{169} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{171} } func (x *SetConfigSourceRequest) GetConfigSource() *ConfigSource { @@ -14238,6 +14323,53 @@ func (x *SetConfigSourceRequest) GetConfigSource() *ConfigSource { return nil } +type DeleteConfigSourceRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + ConfigSource *ConfigSource `protobuf:"bytes,1,opt,name=config_source,json=configSource,proto3" json:"config_source,omitempty"` +} + +func (x *DeleteConfigSourceRequest) Reset() { + *x = DeleteConfigSourceRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_pkg_server_proto_server_proto_msgTypes[172] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *DeleteConfigSourceRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteConfigSourceRequest) ProtoMessage() {} + +func (x *DeleteConfigSourceRequest) ProtoReflect() protoreflect.Message { + mi := &file_pkg_server_proto_server_proto_msgTypes[172] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use DeleteConfigSourceRequest.ProtoReflect.Descriptor instead. +func (*DeleteConfigSourceRequest) Descriptor() ([]byte, []int) { + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{172} +} + +func (x *DeleteConfigSourceRequest) GetConfigSource() *ConfigSource { + if x != nil { + return x.ConfigSource + } + return nil +} + type GetConfigSourceRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -14265,7 +14397,7 @@ type GetConfigSourceRequest struct { func (x *GetConfigSourceRequest) Reset() { *x = GetConfigSourceRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[170] + mi := &file_pkg_server_proto_server_proto_msgTypes[173] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14278,7 +14410,7 @@ func (x *GetConfigSourceRequest) String() string { func (*GetConfigSourceRequest) ProtoMessage() {} func (x *GetConfigSourceRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[170] + mi := &file_pkg_server_proto_server_proto_msgTypes[173] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14291,7 +14423,7 @@ func (x *GetConfigSourceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetConfigSourceRequest.ProtoReflect.Descriptor instead. func (*GetConfigSourceRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{170} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{173} } func (m *GetConfigSourceRequest) GetScope() isGetConfigSourceRequest_Scope { @@ -14369,7 +14501,7 @@ type GetConfigSourceResponse struct { func (x *GetConfigSourceResponse) Reset() { *x = GetConfigSourceResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[171] + mi := &file_pkg_server_proto_server_proto_msgTypes[174] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14382,7 +14514,7 @@ func (x *GetConfigSourceResponse) String() string { func (*GetConfigSourceResponse) ProtoMessage() {} func (x *GetConfigSourceResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[171] + mi := &file_pkg_server_proto_server_proto_msgTypes[174] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14395,7 +14527,7 @@ func (x *GetConfigSourceResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetConfigSourceResponse.ProtoReflect.Descriptor instead. func (*GetConfigSourceResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{171} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{174} } func (x *GetConfigSourceResponse) GetConfigSources() []*ConfigSource { @@ -14422,7 +14554,7 @@ type ExecStreamRequest struct { func (x *ExecStreamRequest) Reset() { *x = ExecStreamRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[172] + mi := &file_pkg_server_proto_server_proto_msgTypes[175] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14435,7 +14567,7 @@ func (x *ExecStreamRequest) String() string { func (*ExecStreamRequest) ProtoMessage() {} func (x *ExecStreamRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[172] + mi := &file_pkg_server_proto_server_proto_msgTypes[175] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14448,7 +14580,7 @@ func (x *ExecStreamRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamRequest.ProtoReflect.Descriptor instead. func (*ExecStreamRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{172} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{175} } func (m *ExecStreamRequest) GetEvent() isExecStreamRequest_Event { @@ -14534,7 +14666,7 @@ type ExecStreamResponse struct { func (x *ExecStreamResponse) Reset() { *x = ExecStreamResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[173] + mi := &file_pkg_server_proto_server_proto_msgTypes[176] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14547,7 +14679,7 @@ func (x *ExecStreamResponse) String() string { func (*ExecStreamResponse) ProtoMessage() {} func (x *ExecStreamResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[173] + mi := &file_pkg_server_proto_server_proto_msgTypes[176] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14560,7 +14692,7 @@ func (x *ExecStreamResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamResponse.ProtoReflect.Descriptor instead. func (*ExecStreamResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{173} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176} } func (m *ExecStreamResponse) GetEvent() isExecStreamResponse_Event { @@ -14638,7 +14770,7 @@ type EntrypointConfigRequest struct { func (x *EntrypointConfigRequest) Reset() { *x = EntrypointConfigRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[174] + mi := &file_pkg_server_proto_server_proto_msgTypes[177] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14651,7 +14783,7 @@ func (x *EntrypointConfigRequest) String() string { func (*EntrypointConfigRequest) ProtoMessage() {} func (x *EntrypointConfigRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[174] + mi := &file_pkg_server_proto_server_proto_msgTypes[177] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14664,7 +14796,7 @@ func (x *EntrypointConfigRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointConfigRequest.ProtoReflect.Descriptor instead. func (*EntrypointConfigRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{174} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{177} } func (x *EntrypointConfigRequest) GetDeploymentId() string { @@ -14706,7 +14838,7 @@ type EntrypointConfigResponse struct { func (x *EntrypointConfigResponse) Reset() { *x = EntrypointConfigResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[175] + mi := &file_pkg_server_proto_server_proto_msgTypes[178] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14719,7 +14851,7 @@ func (x *EntrypointConfigResponse) String() string { func (*EntrypointConfigResponse) ProtoMessage() {} func (x *EntrypointConfigResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[175] + mi := &file_pkg_server_proto_server_proto_msgTypes[178] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14732,7 +14864,7 @@ func (x *EntrypointConfigResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointConfigResponse.ProtoReflect.Descriptor instead. func (*EntrypointConfigResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{175} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{178} } func (x *EntrypointConfigResponse) GetConfig() *EntrypointConfig { @@ -14769,7 +14901,7 @@ type EntrypointConfig struct { func (x *EntrypointConfig) Reset() { *x = EntrypointConfig{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[176] + mi := &file_pkg_server_proto_server_proto_msgTypes[179] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14782,7 +14914,7 @@ func (x *EntrypointConfig) String() string { func (*EntrypointConfig) ProtoMessage() {} func (x *EntrypointConfig) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[176] + mi := &file_pkg_server_proto_server_proto_msgTypes[179] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14795,7 +14927,7 @@ func (x *EntrypointConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointConfig.ProtoReflect.Descriptor instead. func (*EntrypointConfig) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{179} } func (x *EntrypointConfig) GetExec() []*EntrypointConfig_Exec { @@ -14856,7 +14988,7 @@ type EntrypointLogBatch struct { func (x *EntrypointLogBatch) Reset() { *x = EntrypointLogBatch{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[177] + mi := &file_pkg_server_proto_server_proto_msgTypes[180] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14869,7 +15001,7 @@ func (x *EntrypointLogBatch) String() string { func (*EntrypointLogBatch) ProtoMessage() {} func (x *EntrypointLogBatch) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[177] + mi := &file_pkg_server_proto_server_proto_msgTypes[180] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14882,7 +15014,7 @@ func (x *EntrypointLogBatch) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointLogBatch.ProtoReflect.Descriptor instead. func (*EntrypointLogBatch) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{177} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180} } func (x *EntrypointLogBatch) GetInstanceId() string { @@ -14916,7 +15048,7 @@ type EntrypointExecRequest struct { func (x *EntrypointExecRequest) Reset() { *x = EntrypointExecRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[178] + mi := &file_pkg_server_proto_server_proto_msgTypes[181] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14929,7 +15061,7 @@ func (x *EntrypointExecRequest) String() string { func (*EntrypointExecRequest) ProtoMessage() {} func (x *EntrypointExecRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[178] + mi := &file_pkg_server_proto_server_proto_msgTypes[181] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14942,7 +15074,7 @@ func (x *EntrypointExecRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointExecRequest.ProtoReflect.Descriptor instead. func (*EntrypointExecRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{178} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{181} } func (m *EntrypointExecRequest) GetEvent() isEntrypointExecRequest_Event { @@ -15031,7 +15163,7 @@ type EntrypointExecResponse struct { func (x *EntrypointExecResponse) Reset() { *x = EntrypointExecResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[179] + mi := &file_pkg_server_proto_server_proto_msgTypes[182] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15044,7 +15176,7 @@ func (x *EntrypointExecResponse) String() string { func (*EntrypointExecResponse) ProtoMessage() {} func (x *EntrypointExecResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[179] + mi := &file_pkg_server_proto_server_proto_msgTypes[182] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15057,7 +15189,7 @@ func (x *EntrypointExecResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointExecResponse.ProtoReflect.Descriptor instead. func (*EntrypointExecResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{179} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{182} } func (m *EntrypointExecResponse) GetEvent() isEntrypointExecResponse_Event { @@ -15175,7 +15307,7 @@ type Pipeline struct { func (x *Pipeline) Reset() { *x = Pipeline{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[180] + mi := &file_pkg_server_proto_server_proto_msgTypes[183] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15188,7 +15320,7 @@ func (x *Pipeline) String() string { func (*Pipeline) ProtoMessage() {} func (x *Pipeline) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[180] + mi := &file_pkg_server_proto_server_proto_msgTypes[183] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15201,7 +15333,7 @@ func (x *Pipeline) ProtoReflect() protoreflect.Message { // Deprecated: Use Pipeline.ProtoReflect.Descriptor instead. func (*Pipeline) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183} } func (x *Pipeline) GetId() string { @@ -15269,7 +15401,7 @@ type PipelineRun struct { func (x *PipelineRun) Reset() { *x = PipelineRun{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[181] + mi := &file_pkg_server_proto_server_proto_msgTypes[184] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15282,7 +15414,7 @@ func (x *PipelineRun) String() string { func (*PipelineRun) ProtoMessage() {} func (x *PipelineRun) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[181] + mi := &file_pkg_server_proto_server_proto_msgTypes[184] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15295,7 +15427,7 @@ func (x *PipelineRun) ProtoReflect() protoreflect.Message { // Deprecated: Use PipelineRun.ProtoReflect.Descriptor instead. func (*PipelineRun) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{181} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{184} } func (x *PipelineRun) GetId() string { @@ -15344,7 +15476,7 @@ type UpsertPipelineRequest struct { func (x *UpsertPipelineRequest) Reset() { *x = UpsertPipelineRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[182] + mi := &file_pkg_server_proto_server_proto_msgTypes[185] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15357,7 +15489,7 @@ func (x *UpsertPipelineRequest) String() string { func (*UpsertPipelineRequest) ProtoMessage() {} func (x *UpsertPipelineRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[182] + mi := &file_pkg_server_proto_server_proto_msgTypes[185] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15370,7 +15502,7 @@ func (x *UpsertPipelineRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpsertPipelineRequest.ProtoReflect.Descriptor instead. func (*UpsertPipelineRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{182} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{185} } func (x *UpsertPipelineRequest) GetPipeline() *Pipeline { @@ -15393,7 +15525,7 @@ type UpsertPipelineResponse struct { func (x *UpsertPipelineResponse) Reset() { *x = UpsertPipelineResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[183] + mi := &file_pkg_server_proto_server_proto_msgTypes[186] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15406,7 +15538,7 @@ func (x *UpsertPipelineResponse) String() string { func (*UpsertPipelineResponse) ProtoMessage() {} func (x *UpsertPipelineResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[183] + mi := &file_pkg_server_proto_server_proto_msgTypes[186] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15419,7 +15551,7 @@ func (x *UpsertPipelineResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpsertPipelineResponse.ProtoReflect.Descriptor instead. func (*UpsertPipelineResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{186} } func (x *UpsertPipelineResponse) GetPipeline() *Pipeline { @@ -15440,7 +15572,7 @@ type GetPipelineRequest struct { func (x *GetPipelineRequest) Reset() { *x = GetPipelineRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[184] + mi := &file_pkg_server_proto_server_proto_msgTypes[187] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15453,7 +15585,7 @@ func (x *GetPipelineRequest) String() string { func (*GetPipelineRequest) ProtoMessage() {} func (x *GetPipelineRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[184] + mi := &file_pkg_server_proto_server_proto_msgTypes[187] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15466,7 +15598,7 @@ func (x *GetPipelineRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPipelineRequest.ProtoReflect.Descriptor instead. func (*GetPipelineRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{184} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{187} } func (x *GetPipelineRequest) GetPipeline() *Ref_Pipeline { @@ -15495,7 +15627,7 @@ type GetPipelineResponse struct { func (x *GetPipelineResponse) Reset() { *x = GetPipelineResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[185] + mi := &file_pkg_server_proto_server_proto_msgTypes[188] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15508,7 +15640,7 @@ func (x *GetPipelineResponse) String() string { func (*GetPipelineResponse) ProtoMessage() {} func (x *GetPipelineResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[185] + mi := &file_pkg_server_proto_server_proto_msgTypes[188] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15521,7 +15653,7 @@ func (x *GetPipelineResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPipelineResponse.ProtoReflect.Descriptor instead. func (*GetPipelineResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{185} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{188} } func (x *GetPipelineResponse) GetPipeline() *Pipeline { @@ -15560,7 +15692,7 @@ type RunPipelineRequest struct { func (x *RunPipelineRequest) Reset() { *x = RunPipelineRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[186] + mi := &file_pkg_server_proto_server_proto_msgTypes[189] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15573,7 +15705,7 @@ func (x *RunPipelineRequest) String() string { func (*RunPipelineRequest) ProtoMessage() {} func (x *RunPipelineRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[186] + mi := &file_pkg_server_proto_server_proto_msgTypes[189] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15586,7 +15718,7 @@ func (x *RunPipelineRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RunPipelineRequest.ProtoReflect.Descriptor instead. func (*RunPipelineRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{186} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{189} } func (x *RunPipelineRequest) GetPipeline() *Ref_Pipeline { @@ -15628,7 +15760,7 @@ type RunPipelineResponse struct { func (x *RunPipelineResponse) Reset() { *x = RunPipelineResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[187] + mi := &file_pkg_server_proto_server_proto_msgTypes[190] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15641,7 +15773,7 @@ func (x *RunPipelineResponse) String() string { func (*RunPipelineResponse) ProtoMessage() {} func (x *RunPipelineResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[187] + mi := &file_pkg_server_proto_server_proto_msgTypes[190] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15654,7 +15786,7 @@ func (x *RunPipelineResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RunPipelineResponse.ProtoReflect.Descriptor instead. func (*RunPipelineResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{187} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{190} } func (x *RunPipelineResponse) GetJobId() string { @@ -15697,7 +15829,7 @@ type ListPipelinesRequest struct { func (x *ListPipelinesRequest) Reset() { *x = ListPipelinesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[188] + mi := &file_pkg_server_proto_server_proto_msgTypes[191] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15710,7 +15842,7 @@ func (x *ListPipelinesRequest) String() string { func (*ListPipelinesRequest) ProtoMessage() {} func (x *ListPipelinesRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[188] + mi := &file_pkg_server_proto_server_proto_msgTypes[191] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15723,7 +15855,7 @@ func (x *ListPipelinesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPipelinesRequest.ProtoReflect.Descriptor instead. func (*ListPipelinesRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{188} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{191} } func (x *ListPipelinesRequest) GetProject() *Ref_Project { @@ -15745,7 +15877,7 @@ type ListPipelinesResponse struct { func (x *ListPipelinesResponse) Reset() { *x = ListPipelinesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[189] + mi := &file_pkg_server_proto_server_proto_msgTypes[192] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15758,7 +15890,7 @@ func (x *ListPipelinesResponse) String() string { func (*ListPipelinesResponse) ProtoMessage() {} func (x *ListPipelinesResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[189] + mi := &file_pkg_server_proto_server_proto_msgTypes[192] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15771,7 +15903,7 @@ func (x *ListPipelinesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPipelinesResponse.ProtoReflect.Descriptor instead. func (*ListPipelinesResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{189} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{192} } func (x *ListPipelinesResponse) GetPipelines() []*Pipeline { @@ -15794,7 +15926,7 @@ type ListPipelineRunsRequest struct { func (x *ListPipelineRunsRequest) Reset() { *x = ListPipelineRunsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[190] + mi := &file_pkg_server_proto_server_proto_msgTypes[193] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15807,7 +15939,7 @@ func (x *ListPipelineRunsRequest) String() string { func (*ListPipelineRunsRequest) ProtoMessage() {} func (x *ListPipelineRunsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[190] + mi := &file_pkg_server_proto_server_proto_msgTypes[193] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15820,7 +15952,7 @@ func (x *ListPipelineRunsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPipelineRunsRequest.ProtoReflect.Descriptor instead. func (*ListPipelineRunsRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{190} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{193} } func (x *ListPipelineRunsRequest) GetPipeline() *Ref_Pipeline { @@ -15842,7 +15974,7 @@ type ListPipelineRunsResponse struct { func (x *ListPipelineRunsResponse) Reset() { *x = ListPipelineRunsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[191] + mi := &file_pkg_server_proto_server_proto_msgTypes[194] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15855,7 +15987,7 @@ func (x *ListPipelineRunsResponse) String() string { func (*ListPipelineRunsResponse) ProtoMessage() {} func (x *ListPipelineRunsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[191] + mi := &file_pkg_server_proto_server_proto_msgTypes[194] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15868,7 +16000,7 @@ func (x *ListPipelineRunsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPipelineRunsResponse.ProtoReflect.Descriptor instead. func (*ListPipelineRunsResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{191} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{194} } func (x *ListPipelineRunsResponse) GetPipelineRuns() []*PipelineRun { @@ -15890,7 +16022,7 @@ type GetPipelineRunRequest struct { func (x *GetPipelineRunRequest) Reset() { *x = GetPipelineRunRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[192] + mi := &file_pkg_server_proto_server_proto_msgTypes[195] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15903,7 +16035,7 @@ func (x *GetPipelineRunRequest) String() string { func (*GetPipelineRunRequest) ProtoMessage() {} func (x *GetPipelineRunRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[192] + mi := &file_pkg_server_proto_server_proto_msgTypes[195] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15916,7 +16048,7 @@ func (x *GetPipelineRunRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPipelineRunRequest.ProtoReflect.Descriptor instead. func (*GetPipelineRunRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{192} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{195} } func (x *GetPipelineRunRequest) GetPipeline() *Ref_Pipeline { @@ -15945,7 +16077,7 @@ type GetPipelineRunResponse struct { func (x *GetPipelineRunResponse) Reset() { *x = GetPipelineRunResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[193] + mi := &file_pkg_server_proto_server_proto_msgTypes[196] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15958,7 +16090,7 @@ func (x *GetPipelineRunResponse) String() string { func (*GetPipelineRunResponse) ProtoMessage() {} func (x *GetPipelineRunResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[193] + mi := &file_pkg_server_proto_server_proto_msgTypes[196] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15971,7 +16103,7 @@ func (x *GetPipelineRunResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPipelineRunResponse.ProtoReflect.Descriptor instead. func (*GetPipelineRunResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{193} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{196} } func (x *GetPipelineRunResponse) GetPipelineRun() *PipelineRun { @@ -15993,7 +16125,7 @@ type ConfigSyncPipelineRequest struct { func (x *ConfigSyncPipelineRequest) Reset() { *x = ConfigSyncPipelineRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[194] + mi := &file_pkg_server_proto_server_proto_msgTypes[197] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16006,7 +16138,7 @@ func (x *ConfigSyncPipelineRequest) String() string { func (*ConfigSyncPipelineRequest) ProtoMessage() {} func (x *ConfigSyncPipelineRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[194] + mi := &file_pkg_server_proto_server_proto_msgTypes[197] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16019,7 +16151,7 @@ func (x *ConfigSyncPipelineRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfigSyncPipelineRequest.ProtoReflect.Descriptor instead. func (*ConfigSyncPipelineRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{194} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{197} } func (x *ConfigSyncPipelineRequest) GetProject() *Ref_Project { @@ -16042,7 +16174,7 @@ type ConfigSyncPipelineResponse struct { func (x *ConfigSyncPipelineResponse) Reset() { *x = ConfigSyncPipelineResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[195] + mi := &file_pkg_server_proto_server_proto_msgTypes[198] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16055,7 +16187,7 @@ func (x *ConfigSyncPipelineResponse) String() string { func (*ConfigSyncPipelineResponse) ProtoMessage() {} func (x *ConfigSyncPipelineResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[195] + mi := &file_pkg_server_proto_server_proto_msgTypes[198] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16068,7 +16200,7 @@ func (x *ConfigSyncPipelineResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfigSyncPipelineResponse.ProtoReflect.Descriptor instead. func (*ConfigSyncPipelineResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{195} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{198} } func (x *ConfigSyncPipelineResponse) GetSyncedPipelines() map[string]*Ref_Pipeline { @@ -16089,7 +16221,7 @@ type GetProjectTemplateRequest struct { func (x *GetProjectTemplateRequest) Reset() { *x = GetProjectTemplateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[196] + mi := &file_pkg_server_proto_server_proto_msgTypes[199] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16102,7 +16234,7 @@ func (x *GetProjectTemplateRequest) String() string { func (*GetProjectTemplateRequest) ProtoMessage() {} func (x *GetProjectTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[196] + mi := &file_pkg_server_proto_server_proto_msgTypes[199] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16115,7 +16247,7 @@ func (x *GetProjectTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetProjectTemplateRequest.ProtoReflect.Descriptor instead. func (*GetProjectTemplateRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{196} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{199} } func (x *GetProjectTemplateRequest) GetProjectTemplate() *Ref_ProjectTemplate { @@ -16137,7 +16269,7 @@ type GetProjectTemplateResponse struct { func (x *GetProjectTemplateResponse) Reset() { *x = GetProjectTemplateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[197] + mi := &file_pkg_server_proto_server_proto_msgTypes[200] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16150,7 +16282,7 @@ func (x *GetProjectTemplateResponse) String() string { func (*GetProjectTemplateResponse) ProtoMessage() {} func (x *GetProjectTemplateResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[197] + mi := &file_pkg_server_proto_server_proto_msgTypes[200] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16163,7 +16295,7 @@ func (x *GetProjectTemplateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetProjectTemplateResponse.ProtoReflect.Descriptor instead. func (*GetProjectTemplateResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{197} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{200} } func (x *GetProjectTemplateResponse) GetProjectTemplate() *ProjectTemplate { @@ -16184,7 +16316,7 @@ type ListProjectTemplatesRequest struct { func (x *ListProjectTemplatesRequest) Reset() { *x = ListProjectTemplatesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[198] + mi := &file_pkg_server_proto_server_proto_msgTypes[201] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16197,7 +16329,7 @@ func (x *ListProjectTemplatesRequest) String() string { func (*ListProjectTemplatesRequest) ProtoMessage() {} func (x *ListProjectTemplatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[198] + mi := &file_pkg_server_proto_server_proto_msgTypes[201] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16210,7 +16342,7 @@ func (x *ListProjectTemplatesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListProjectTemplatesRequest.ProtoReflect.Descriptor instead. func (*ListProjectTemplatesRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{198} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{201} } func (x *ListProjectTemplatesRequest) GetPagination() *PaginationRequest { @@ -16234,7 +16366,7 @@ type ListProjectTemplatesResponse struct { func (x *ListProjectTemplatesResponse) Reset() { *x = ListProjectTemplatesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[199] + mi := &file_pkg_server_proto_server_proto_msgTypes[202] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16247,7 +16379,7 @@ func (x *ListProjectTemplatesResponse) String() string { func (*ListProjectTemplatesResponse) ProtoMessage() {} func (x *ListProjectTemplatesResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[199] + mi := &file_pkg_server_proto_server_proto_msgTypes[202] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16260,7 +16392,7 @@ func (x *ListProjectTemplatesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListProjectTemplatesResponse.ProtoReflect.Descriptor instead. func (*ListProjectTemplatesResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{199} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{202} } func (x *ListProjectTemplatesResponse) GetProjectTemplates() []*ProjectTemplate { @@ -16295,7 +16427,7 @@ type CreateProjectTemplateRequest struct { func (x *CreateProjectTemplateRequest) Reset() { *x = CreateProjectTemplateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[200] + mi := &file_pkg_server_proto_server_proto_msgTypes[203] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16308,7 +16440,7 @@ func (x *CreateProjectTemplateRequest) String() string { func (*CreateProjectTemplateRequest) ProtoMessage() {} func (x *CreateProjectTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[200] + mi := &file_pkg_server_proto_server_proto_msgTypes[203] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16321,7 +16453,7 @@ func (x *CreateProjectTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProjectTemplateRequest.ProtoReflect.Descriptor instead. func (*CreateProjectTemplateRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{200} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{203} } func (x *CreateProjectTemplateRequest) GetProjectTemplate() *ProjectTemplate { @@ -16342,7 +16474,7 @@ type CreateProjectTemplateResponse struct { func (x *CreateProjectTemplateResponse) Reset() { *x = CreateProjectTemplateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[201] + mi := &file_pkg_server_proto_server_proto_msgTypes[204] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16355,7 +16487,7 @@ func (x *CreateProjectTemplateResponse) String() string { func (*CreateProjectTemplateResponse) ProtoMessage() {} func (x *CreateProjectTemplateResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[201] + mi := &file_pkg_server_proto_server_proto_msgTypes[204] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16368,7 +16500,7 @@ func (x *CreateProjectTemplateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProjectTemplateResponse.ProtoReflect.Descriptor instead. func (*CreateProjectTemplateResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{201} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{204} } func (x *CreateProjectTemplateResponse) GetProjectTemplate() *ProjectTemplate { @@ -16389,7 +16521,7 @@ type UpdateProjectTemplateRequest struct { func (x *UpdateProjectTemplateRequest) Reset() { *x = UpdateProjectTemplateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[202] + mi := &file_pkg_server_proto_server_proto_msgTypes[205] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16402,7 +16534,7 @@ func (x *UpdateProjectTemplateRequest) String() string { func (*UpdateProjectTemplateRequest) ProtoMessage() {} func (x *UpdateProjectTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[202] + mi := &file_pkg_server_proto_server_proto_msgTypes[205] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16415,7 +16547,7 @@ func (x *UpdateProjectTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateProjectTemplateRequest.ProtoReflect.Descriptor instead. func (*UpdateProjectTemplateRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{202} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{205} } func (x *UpdateProjectTemplateRequest) GetProjectTemplate() *ProjectTemplate { @@ -16436,7 +16568,7 @@ type UpdateProjectTemplateResponse struct { func (x *UpdateProjectTemplateResponse) Reset() { *x = UpdateProjectTemplateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[203] + mi := &file_pkg_server_proto_server_proto_msgTypes[206] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16449,7 +16581,7 @@ func (x *UpdateProjectTemplateResponse) String() string { func (*UpdateProjectTemplateResponse) ProtoMessage() {} func (x *UpdateProjectTemplateResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[203] + mi := &file_pkg_server_proto_server_proto_msgTypes[206] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16462,7 +16594,7 @@ func (x *UpdateProjectTemplateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateProjectTemplateResponse.ProtoReflect.Descriptor instead. func (*UpdateProjectTemplateResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{203} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{206} } func (x *UpdateProjectTemplateResponse) GetProjectTemplate() *ProjectTemplate { @@ -16483,7 +16615,7 @@ type DeleteProjectTemplateRequest struct { func (x *DeleteProjectTemplateRequest) Reset() { *x = DeleteProjectTemplateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[204] + mi := &file_pkg_server_proto_server_proto_msgTypes[207] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16496,7 +16628,7 @@ func (x *DeleteProjectTemplateRequest) String() string { func (*DeleteProjectTemplateRequest) ProtoMessage() {} func (x *DeleteProjectTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[204] + mi := &file_pkg_server_proto_server_proto_msgTypes[207] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16509,7 +16641,7 @@ func (x *DeleteProjectTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteProjectTemplateRequest.ProtoReflect.Descriptor instead. func (*DeleteProjectTemplateRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{204} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{207} } func (x *DeleteProjectTemplateRequest) GetProjectTemplate() *Ref_ProjectTemplate { @@ -16528,7 +16660,7 @@ type DeleteProjectTemplateResponse struct { func (x *DeleteProjectTemplateResponse) Reset() { *x = DeleteProjectTemplateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[205] + mi := &file_pkg_server_proto_server_proto_msgTypes[208] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16541,7 +16673,7 @@ func (x *DeleteProjectTemplateResponse) String() string { func (*DeleteProjectTemplateResponse) ProtoMessage() {} func (x *DeleteProjectTemplateResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[205] + mi := &file_pkg_server_proto_server_proto_msgTypes[208] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16554,7 +16686,7 @@ func (x *DeleteProjectTemplateResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteProjectTemplateResponse.ProtoReflect.Descriptor instead. func (*DeleteProjectTemplateResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{205} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{208} } type ProjectTemplate struct { @@ -16593,7 +16725,7 @@ type ProjectTemplate struct { func (x *ProjectTemplate) Reset() { *x = ProjectTemplate{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[206] + mi := &file_pkg_server_proto_server_proto_msgTypes[209] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16606,7 +16738,7 @@ func (x *ProjectTemplate) String() string { func (*ProjectTemplate) ProtoMessage() {} func (x *ProjectTemplate) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[206] + mi := &file_pkg_server_proto_server_proto_msgTypes[209] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16619,7 +16751,7 @@ func (x *ProjectTemplate) ProtoReflect() protoreflect.Message { // Deprecated: Use ProjectTemplate.ProtoReflect.Descriptor instead. func (*ProjectTemplate) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{206} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{209} } func (x *ProjectTemplate) GetId() string { @@ -16693,7 +16825,7 @@ type GetTFCRunStatusRequest struct { func (x *GetTFCRunStatusRequest) Reset() { *x = GetTFCRunStatusRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[207] + mi := &file_pkg_server_proto_server_proto_msgTypes[210] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16706,7 +16838,7 @@ func (x *GetTFCRunStatusRequest) String() string { func (*GetTFCRunStatusRequest) ProtoMessage() {} func (x *GetTFCRunStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[207] + mi := &file_pkg_server_proto_server_proto_msgTypes[210] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16719,7 +16851,7 @@ func (x *GetTFCRunStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTFCRunStatusRequest.ProtoReflect.Descriptor instead. func (*GetTFCRunStatusRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{207} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{210} } func (x *GetTFCRunStatusRequest) GetProject() *Ref_Project { @@ -16745,7 +16877,7 @@ type GetTFCRunStatusResponse struct { func (x *GetTFCRunStatusResponse) Reset() { *x = GetTFCRunStatusResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[208] + mi := &file_pkg_server_proto_server_proto_msgTypes[211] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16758,7 +16890,7 @@ func (x *GetTFCRunStatusResponse) String() string { func (*GetTFCRunStatusResponse) ProtoMessage() {} func (x *GetTFCRunStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[208] + mi := &file_pkg_server_proto_server_proto_msgTypes[211] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16771,7 +16903,7 @@ func (x *GetTFCRunStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTFCRunStatusResponse.ProtoReflect.Descriptor instead. func (*GetTFCRunStatusResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{208} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{211} } func (x *GetTFCRunStatusResponse) GetUrl() string { @@ -16802,7 +16934,7 @@ type CreateProjectFromTemplateRequest struct { func (x *CreateProjectFromTemplateRequest) Reset() { *x = CreateProjectFromTemplateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[209] + mi := &file_pkg_server_proto_server_proto_msgTypes[212] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16815,7 +16947,7 @@ func (x *CreateProjectFromTemplateRequest) String() string { func (*CreateProjectFromTemplateRequest) ProtoMessage() {} func (x *CreateProjectFromTemplateRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[209] + mi := &file_pkg_server_proto_server_proto_msgTypes[212] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16828,7 +16960,7 @@ func (x *CreateProjectFromTemplateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProjectFromTemplateRequest.ProtoReflect.Descriptor instead. func (*CreateProjectFromTemplateRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{209} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{212} } func (x *CreateProjectFromTemplateRequest) GetProjectName() string { @@ -16858,7 +16990,7 @@ type CreateProjectFromTemplateResponse struct { func (x *CreateProjectFromTemplateResponse) Reset() { *x = CreateProjectFromTemplateResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[210] + mi := &file_pkg_server_proto_server_proto_msgTypes[213] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16871,7 +17003,7 @@ func (x *CreateProjectFromTemplateResponse) String() string { func (*CreateProjectFromTemplateResponse) ProtoMessage() {} func (x *CreateProjectFromTemplateResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[210] + mi := &file_pkg_server_proto_server_proto_msgTypes[213] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16884,7 +17016,7 @@ func (x *CreateProjectFromTemplateResponse) ProtoReflect() protoreflect.Message // Deprecated: Use CreateProjectFromTemplateResponse.ProtoReflect.Descriptor instead. func (*CreateProjectFromTemplateResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{210} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{213} } func (x *CreateProjectFromTemplateResponse) GetProject() *Project { @@ -16925,7 +17057,7 @@ type TokenTransport struct { func (x *TokenTransport) Reset() { *x = TokenTransport{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[211] + mi := &file_pkg_server_proto_server_proto_msgTypes[214] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16938,7 +17070,7 @@ func (x *TokenTransport) String() string { func (*TokenTransport) ProtoMessage() {} func (x *TokenTransport) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[211] + mi := &file_pkg_server_proto_server_proto_msgTypes[214] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16951,7 +17083,7 @@ func (x *TokenTransport) ProtoReflect() protoreflect.Message { // Deprecated: Use TokenTransport.ProtoReflect.Descriptor instead. func (*TokenTransport) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{211} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{214} } func (x *TokenTransport) GetBody() []byte { @@ -17046,7 +17178,7 @@ type Token struct { func (x *Token) Reset() { *x = Token{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[212] + mi := &file_pkg_server_proto_server_proto_msgTypes[215] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17059,7 +17191,7 @@ func (x *Token) String() string { func (*Token) ProtoMessage() {} func (x *Token) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[212] + mi := &file_pkg_server_proto_server_proto_msgTypes[215] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17072,7 +17204,7 @@ func (x *Token) ProtoReflect() protoreflect.Message { // Deprecated: Use Token.ProtoReflect.Descriptor instead. func (*Token) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{212} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{215} } func (x *Token) GetAccessorId() []byte { @@ -17209,7 +17341,7 @@ type HMACKey struct { func (x *HMACKey) Reset() { *x = HMACKey{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[213] + mi := &file_pkg_server_proto_server_proto_msgTypes[216] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17222,7 +17354,7 @@ func (x *HMACKey) String() string { func (*HMACKey) ProtoMessage() {} func (x *HMACKey) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[213] + mi := &file_pkg_server_proto_server_proto_msgTypes[216] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17235,7 +17367,7 @@ func (x *HMACKey) ProtoReflect() protoreflect.Message { // Deprecated: Use HMACKey.ProtoReflect.Descriptor instead. func (*HMACKey) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{213} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{216} } func (x *HMACKey) GetId() string { @@ -17264,7 +17396,7 @@ type DecodeTokenRequest struct { func (x *DecodeTokenRequest) Reset() { *x = DecodeTokenRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[214] + mi := &file_pkg_server_proto_server_proto_msgTypes[217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17277,7 +17409,7 @@ func (x *DecodeTokenRequest) String() string { func (*DecodeTokenRequest) ProtoMessage() {} func (x *DecodeTokenRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[214] + mi := &file_pkg_server_proto_server_proto_msgTypes[217] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17290,7 +17422,7 @@ func (x *DecodeTokenRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DecodeTokenRequest.ProtoReflect.Descriptor instead. func (*DecodeTokenRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{214} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{217} } func (x *DecodeTokenRequest) GetToken() string { @@ -17315,7 +17447,7 @@ type DecodeTokenResponse struct { func (x *DecodeTokenResponse) Reset() { *x = DecodeTokenResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[215] + mi := &file_pkg_server_proto_server_proto_msgTypes[218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17328,7 +17460,7 @@ func (x *DecodeTokenResponse) String() string { func (*DecodeTokenResponse) ProtoMessage() {} func (x *DecodeTokenResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[215] + mi := &file_pkg_server_proto_server_proto_msgTypes[218] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17341,7 +17473,7 @@ func (x *DecodeTokenResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DecodeTokenResponse.ProtoReflect.Descriptor instead. func (*DecodeTokenResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{215} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{218} } func (x *DecodeTokenResponse) GetToken() *Token { @@ -17378,7 +17510,7 @@ type LoginTokenRequest struct { func (x *LoginTokenRequest) Reset() { *x = LoginTokenRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[216] + mi := &file_pkg_server_proto_server_proto_msgTypes[219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17391,7 +17523,7 @@ func (x *LoginTokenRequest) String() string { func (*LoginTokenRequest) ProtoMessage() {} func (x *LoginTokenRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[216] + mi := &file_pkg_server_proto_server_proto_msgTypes[219] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17404,7 +17536,7 @@ func (x *LoginTokenRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use LoginTokenRequest.ProtoReflect.Descriptor instead. func (*LoginTokenRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{216} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{219} } func (x *LoginTokenRequest) GetDuration() string { @@ -17448,7 +17580,7 @@ type GenerateRunnerTokenRequest struct { func (x *GenerateRunnerTokenRequest) Reset() { *x = GenerateRunnerTokenRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[217] + mi := &file_pkg_server_proto_server_proto_msgTypes[220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17461,7 +17593,7 @@ func (x *GenerateRunnerTokenRequest) String() string { func (*GenerateRunnerTokenRequest) ProtoMessage() {} func (x *GenerateRunnerTokenRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[217] + mi := &file_pkg_server_proto_server_proto_msgTypes[220] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17474,7 +17606,7 @@ func (x *GenerateRunnerTokenRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateRunnerTokenRequest.ProtoReflect.Descriptor instead. func (*GenerateRunnerTokenRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{217} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{220} } func (x *GenerateRunnerTokenRequest) GetDuration() string { @@ -17526,7 +17658,7 @@ type InviteTokenRequest struct { func (x *InviteTokenRequest) Reset() { *x = InviteTokenRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[218] + mi := &file_pkg_server_proto_server_proto_msgTypes[221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17539,7 +17671,7 @@ func (x *InviteTokenRequest) String() string { func (*InviteTokenRequest) ProtoMessage() {} func (x *InviteTokenRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[218] + mi := &file_pkg_server_proto_server_proto_msgTypes[221] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17552,7 +17684,7 @@ func (x *InviteTokenRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use InviteTokenRequest.ProtoReflect.Descriptor instead. func (*InviteTokenRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{218} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{221} } func (x *InviteTokenRequest) GetDuration() string { @@ -17596,7 +17728,7 @@ type NewTokenResponse struct { func (x *NewTokenResponse) Reset() { *x = NewTokenResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[219] + mi := &file_pkg_server_proto_server_proto_msgTypes[222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17609,7 +17741,7 @@ func (x *NewTokenResponse) String() string { func (*NewTokenResponse) ProtoMessage() {} func (x *NewTokenResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[219] + mi := &file_pkg_server_proto_server_proto_msgTypes[222] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17622,7 +17754,7 @@ func (x *NewTokenResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use NewTokenResponse.ProtoReflect.Descriptor instead. func (*NewTokenResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{219} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{222} } func (x *NewTokenResponse) GetToken() string { @@ -17645,7 +17777,7 @@ type ConvertInviteTokenRequest struct { func (x *ConvertInviteTokenRequest) Reset() { *x = ConvertInviteTokenRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[220] + mi := &file_pkg_server_proto_server_proto_msgTypes[223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17658,7 +17790,7 @@ func (x *ConvertInviteTokenRequest) String() string { func (*ConvertInviteTokenRequest) ProtoMessage() {} func (x *ConvertInviteTokenRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[220] + mi := &file_pkg_server_proto_server_proto_msgTypes[223] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17671,7 +17803,7 @@ func (x *ConvertInviteTokenRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ConvertInviteTokenRequest.ProtoReflect.Descriptor instead. func (*ConvertInviteTokenRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{220} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{223} } func (x *ConvertInviteTokenRequest) GetToken() string { @@ -17696,7 +17828,7 @@ type CreateSnapshotResponse struct { func (x *CreateSnapshotResponse) Reset() { *x = CreateSnapshotResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[221] + mi := &file_pkg_server_proto_server_proto_msgTypes[224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17709,7 +17841,7 @@ func (x *CreateSnapshotResponse) String() string { func (*CreateSnapshotResponse) ProtoMessage() {} func (x *CreateSnapshotResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[221] + mi := &file_pkg_server_proto_server_proto_msgTypes[224] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17722,7 +17854,7 @@ func (x *CreateSnapshotResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSnapshotResponse.ProtoReflect.Descriptor instead. func (*CreateSnapshotResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{221} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{224} } func (m *CreateSnapshotResponse) GetEvent() isCreateSnapshotResponse_Event { @@ -17781,7 +17913,7 @@ type RestoreSnapshotRequest struct { func (x *RestoreSnapshotRequest) Reset() { *x = RestoreSnapshotRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[222] + mi := &file_pkg_server_proto_server_proto_msgTypes[225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17794,7 +17926,7 @@ func (x *RestoreSnapshotRequest) String() string { func (*RestoreSnapshotRequest) ProtoMessage() {} func (x *RestoreSnapshotRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[222] + mi := &file_pkg_server_proto_server_proto_msgTypes[225] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17807,7 +17939,7 @@ func (x *RestoreSnapshotRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RestoreSnapshotRequest.ProtoReflect.Descriptor instead. func (*RestoreSnapshotRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{222} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{225} } func (m *RestoreSnapshotRequest) GetEvent() isRestoreSnapshotRequest_Event { @@ -17873,7 +18005,7 @@ type Snapshot struct { func (x *Snapshot) Reset() { *x = Snapshot{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[223] + mi := &file_pkg_server_proto_server_proto_msgTypes[226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17886,7 +18018,7 @@ func (x *Snapshot) String() string { func (*Snapshot) ProtoMessage() {} func (x *Snapshot) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[223] + mi := &file_pkg_server_proto_server_proto_msgTypes[226] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17899,7 +18031,7 @@ func (x *Snapshot) ProtoReflect() protoreflect.Message { // Deprecated: Use Snapshot.ProtoReflect.Descriptor instead. func (*Snapshot) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{223} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{226} } // Hcl is a message used to encapsulate the contents of an HCL @@ -17920,7 +18052,7 @@ type Hcl struct { func (x *Hcl) Reset() { *x = Hcl{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[224] + mi := &file_pkg_server_proto_server_proto_msgTypes[227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17933,7 +18065,7 @@ func (x *Hcl) String() string { func (*Hcl) ProtoMessage() {} func (x *Hcl) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[224] + mi := &file_pkg_server_proto_server_proto_msgTypes[227] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17946,7 +18078,7 @@ func (x *Hcl) ProtoReflect() protoreflect.Message { // Deprecated: Use Hcl.ProtoReflect.Descriptor instead. func (*Hcl) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{224} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{227} } func (x *Hcl) GetContents() []byte { @@ -17974,7 +18106,7 @@ type WaypointHclFmtRequest struct { func (x *WaypointHclFmtRequest) Reset() { *x = WaypointHclFmtRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[225] + mi := &file_pkg_server_proto_server_proto_msgTypes[228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17987,7 +18119,7 @@ func (x *WaypointHclFmtRequest) String() string { func (*WaypointHclFmtRequest) ProtoMessage() {} func (x *WaypointHclFmtRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[225] + mi := &file_pkg_server_proto_server_proto_msgTypes[228] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18000,7 +18132,7 @@ func (x *WaypointHclFmtRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use WaypointHclFmtRequest.ProtoReflect.Descriptor instead. func (*WaypointHclFmtRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{225} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{228} } func (x *WaypointHclFmtRequest) GetWaypointHcl() []byte { @@ -18021,7 +18153,7 @@ type WaypointHclFmtResponse struct { func (x *WaypointHclFmtResponse) Reset() { *x = WaypointHclFmtResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[226] + mi := &file_pkg_server_proto_server_proto_msgTypes[229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18034,7 +18166,7 @@ func (x *WaypointHclFmtResponse) String() string { func (*WaypointHclFmtResponse) ProtoMessage() {} func (x *WaypointHclFmtResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[226] + mi := &file_pkg_server_proto_server_proto_msgTypes[229] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18047,7 +18179,7 @@ func (x *WaypointHclFmtResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use WaypointHclFmtResponse.ProtoReflect.Descriptor instead. func (*WaypointHclFmtResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{226} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{229} } func (x *WaypointHclFmtResponse) GetWaypointHcl() []byte { @@ -18076,7 +18208,7 @@ type InlineKeepalive struct { func (x *InlineKeepalive) Reset() { *x = InlineKeepalive{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[227] + mi := &file_pkg_server_proto_server_proto_msgTypes[230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18089,7 +18221,7 @@ func (x *InlineKeepalive) String() string { func (*InlineKeepalive) ProtoMessage() {} func (x *InlineKeepalive) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[227] + mi := &file_pkg_server_proto_server_proto_msgTypes[230] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18102,7 +18234,7 @@ func (x *InlineKeepalive) ProtoReflect() protoreflect.Message { // Deprecated: Use InlineKeepalive.ProtoReflect.Descriptor instead. func (*InlineKeepalive) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{227} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{230} } func (x *InlineKeepalive) GetSignature() string { @@ -18137,7 +18269,7 @@ type PaginationRequest struct { func (x *PaginationRequest) Reset() { *x = PaginationRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[228] + mi := &file_pkg_server_proto_server_proto_msgTypes[231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18150,7 +18282,7 @@ func (x *PaginationRequest) String() string { func (*PaginationRequest) ProtoMessage() {} func (x *PaginationRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[228] + mi := &file_pkg_server_proto_server_proto_msgTypes[231] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18163,7 +18295,7 @@ func (x *PaginationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PaginationRequest.ProtoReflect.Descriptor instead. func (*PaginationRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{228} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{231} } func (x *PaginationRequest) GetPageSize() uint32 { @@ -18210,7 +18342,7 @@ type PaginationResponse struct { func (x *PaginationResponse) Reset() { *x = PaginationResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[229] + mi := &file_pkg_server_proto_server_proto_msgTypes[232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18223,7 +18355,7 @@ func (x *PaginationResponse) String() string { func (*PaginationResponse) ProtoMessage() {} func (x *PaginationResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[229] + mi := &file_pkg_server_proto_server_proto_msgTypes[232] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18236,7 +18368,7 @@ func (x *PaginationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PaginationResponse.ProtoReflect.Descriptor instead. func (*PaginationResponse) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{229} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{232} } func (x *PaginationResponse) GetNextPageToken() string { @@ -18275,7 +18407,7 @@ type SortingRequest struct { func (x *SortingRequest) Reset() { *x = SortingRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[230] + mi := &file_pkg_server_proto_server_proto_msgTypes[233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18288,7 +18420,7 @@ func (x *SortingRequest) String() string { func (*SortingRequest) ProtoMessage() {} func (x *SortingRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[230] + mi := &file_pkg_server_proto_server_proto_msgTypes[233] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18301,7 +18433,7 @@ func (x *SortingRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SortingRequest.ProtoReflect.Descriptor instead. func (*SortingRequest) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{230} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{233} } func (x *SortingRequest) GetOrderBy() []string { @@ -18322,7 +18454,7 @@ type UI_ListProjectsRequest struct { func (x *UI_ListProjectsRequest) Reset() { *x = UI_ListProjectsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[231] + mi := &file_pkg_server_proto_server_proto_msgTypes[234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18335,7 +18467,7 @@ func (x *UI_ListProjectsRequest) String() string { func (*UI_ListProjectsRequest) ProtoMessage() {} func (x *UI_ListProjectsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[231] + mi := &file_pkg_server_proto_server_proto_msgTypes[234] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18371,7 +18503,7 @@ type UI_ListProjectsResponse struct { func (x *UI_ListProjectsResponse) Reset() { *x = UI_ListProjectsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[232] + mi := &file_pkg_server_proto_server_proto_msgTypes[235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18384,7 +18516,7 @@ func (x *UI_ListProjectsResponse) String() string { func (*UI_ListProjectsResponse) ProtoMessage() {} func (x *UI_ListProjectsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[232] + mi := &file_pkg_server_proto_server_proto_msgTypes[235] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18432,7 +18564,7 @@ type UI_ProjectBundle struct { func (x *UI_ProjectBundle) Reset() { *x = UI_ProjectBundle{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[233] + mi := &file_pkg_server_proto_server_proto_msgTypes[236] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18445,7 +18577,7 @@ func (x *UI_ProjectBundle) String() string { func (*UI_ProjectBundle) ProtoMessage() {} func (x *UI_ProjectBundle) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[233] + mi := &file_pkg_server_proto_server_proto_msgTypes[236] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18479,7 +18611,7 @@ type UI_GetProjectRequest struct { func (x *UI_GetProjectRequest) Reset() { *x = UI_GetProjectRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[234] + mi := &file_pkg_server_proto_server_proto_msgTypes[237] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18492,7 +18624,7 @@ func (x *UI_GetProjectRequest) String() string { func (*UI_GetProjectRequest) ProtoMessage() {} func (x *UI_GetProjectRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[234] + mi := &file_pkg_server_proto_server_proto_msgTypes[237] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18528,7 +18660,7 @@ type UI_GetProjectResponse struct { func (x *UI_GetProjectResponse) Reset() { *x = UI_GetProjectResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[235] + mi := &file_pkg_server_proto_server_proto_msgTypes[238] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18541,7 +18673,7 @@ func (x *UI_GetProjectResponse) String() string { func (*UI_GetProjectResponse) ProtoMessage() {} func (x *UI_GetProjectResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[235] + mi := &file_pkg_server_proto_server_proto_msgTypes[238] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18590,7 +18722,7 @@ type UI_ListPipelinesRequest struct { func (x *UI_ListPipelinesRequest) Reset() { *x = UI_ListPipelinesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[236] + mi := &file_pkg_server_proto_server_proto_msgTypes[239] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18603,7 +18735,7 @@ func (x *UI_ListPipelinesRequest) String() string { func (*UI_ListPipelinesRequest) ProtoMessage() {} func (x *UI_ListPipelinesRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[236] + mi := &file_pkg_server_proto_server_proto_msgTypes[239] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18645,7 +18777,7 @@ type UI_ListPipelinesResponse struct { func (x *UI_ListPipelinesResponse) Reset() { *x = UI_ListPipelinesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[237] + mi := &file_pkg_server_proto_server_proto_msgTypes[240] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18658,7 +18790,7 @@ func (x *UI_ListPipelinesResponse) String() string { func (*UI_ListPipelinesResponse) ProtoMessage() {} func (x *UI_ListPipelinesResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[237] + mi := &file_pkg_server_proto_server_proto_msgTypes[240] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18700,7 +18832,7 @@ type UI_ListPipelineRunsRequest struct { func (x *UI_ListPipelineRunsRequest) Reset() { *x = UI_ListPipelineRunsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[238] + mi := &file_pkg_server_proto_server_proto_msgTypes[241] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18713,7 +18845,7 @@ func (x *UI_ListPipelineRunsRequest) String() string { func (*UI_ListPipelineRunsRequest) ProtoMessage() {} func (x *UI_ListPipelineRunsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[238] + mi := &file_pkg_server_proto_server_proto_msgTypes[241] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18755,7 +18887,7 @@ type UI_ListPipelineRunsResponse struct { func (x *UI_ListPipelineRunsResponse) Reset() { *x = UI_ListPipelineRunsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[239] + mi := &file_pkg_server_proto_server_proto_msgTypes[242] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18768,7 +18900,7 @@ func (x *UI_ListPipelineRunsResponse) String() string { func (*UI_ListPipelineRunsResponse) ProtoMessage() {} func (x *UI_ListPipelineRunsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[239] + mi := &file_pkg_server_proto_server_proto_msgTypes[242] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18810,7 +18942,7 @@ type UI_GetPipelineRunRequest struct { func (x *UI_GetPipelineRunRequest) Reset() { *x = UI_GetPipelineRunRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[240] + mi := &file_pkg_server_proto_server_proto_msgTypes[243] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18823,7 +18955,7 @@ func (x *UI_GetPipelineRunRequest) String() string { func (*UI_GetPipelineRunRequest) ProtoMessage() {} func (x *UI_GetPipelineRunRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[240] + mi := &file_pkg_server_proto_server_proto_msgTypes[243] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18865,7 +18997,7 @@ type UI_GetPipelineRunResponse struct { func (x *UI_GetPipelineRunResponse) Reset() { *x = UI_GetPipelineRunResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[241] + mi := &file_pkg_server_proto_server_proto_msgTypes[244] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18878,7 +19010,7 @@ func (x *UI_GetPipelineRunResponse) String() string { func (*UI_GetPipelineRunResponse) ProtoMessage() {} func (x *UI_GetPipelineRunResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[241] + mi := &file_pkg_server_proto_server_proto_msgTypes[244] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18920,7 +19052,7 @@ type UI_PipelineBundle struct { func (x *UI_PipelineBundle) Reset() { *x = UI_PipelineBundle{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[242] + mi := &file_pkg_server_proto_server_proto_msgTypes[245] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18933,7 +19065,7 @@ func (x *UI_PipelineBundle) String() string { func (*UI_PipelineBundle) ProtoMessage() {} func (x *UI_PipelineBundle) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[242] + mi := &file_pkg_server_proto_server_proto_msgTypes[245] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18977,7 +19109,7 @@ type UI_PipelineRunBundle struct { func (x *UI_PipelineRunBundle) Reset() { *x = UI_PipelineRunBundle{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[243] + mi := &file_pkg_server_proto_server_proto_msgTypes[246] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18990,7 +19122,7 @@ func (x *UI_PipelineRunBundle) String() string { func (*UI_PipelineRunBundle) ProtoMessage() {} func (x *UI_PipelineRunBundle) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[243] + mi := &file_pkg_server_proto_server_proto_msgTypes[246] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19056,7 +19188,7 @@ type UI_PipelineRunTreeNode struct { func (x *UI_PipelineRunTreeNode) Reset() { *x = UI_PipelineRunTreeNode{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[244] + mi := &file_pkg_server_proto_server_proto_msgTypes[247] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19069,7 +19201,7 @@ func (x *UI_PipelineRunTreeNode) String() string { func (*UI_PipelineRunTreeNode) ProtoMessage() {} func (x *UI_PipelineRunTreeNode) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[244] + mi := &file_pkg_server_proto_server_proto_msgTypes[247] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19177,7 +19309,7 @@ type UI_ListDeploymentsRequest struct { func (x *UI_ListDeploymentsRequest) Reset() { *x = UI_ListDeploymentsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[245] + mi := &file_pkg_server_proto_server_proto_msgTypes[248] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19190,7 +19322,7 @@ func (x *UI_ListDeploymentsRequest) String() string { func (*UI_ListDeploymentsRequest) ProtoMessage() {} func (x *UI_ListDeploymentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[245] + mi := &file_pkg_server_proto_server_proto_msgTypes[248] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19253,7 +19385,7 @@ type UI_ListDeploymentsResponse struct { func (x *UI_ListDeploymentsResponse) Reset() { *x = UI_ListDeploymentsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[246] + mi := &file_pkg_server_proto_server_proto_msgTypes[249] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19266,7 +19398,7 @@ func (x *UI_ListDeploymentsResponse) String() string { func (*UI_ListDeploymentsResponse) ProtoMessage() {} func (x *UI_ListDeploymentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[246] + mi := &file_pkg_server_proto_server_proto_msgTypes[249] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19303,7 +19435,7 @@ type UI_GetDeploymentRequest struct { func (x *UI_GetDeploymentRequest) Reset() { *x = UI_GetDeploymentRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[247] + mi := &file_pkg_server_proto_server_proto_msgTypes[250] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19316,7 +19448,7 @@ func (x *UI_GetDeploymentRequest) String() string { func (*UI_GetDeploymentRequest) ProtoMessage() {} func (x *UI_GetDeploymentRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[247] + mi := &file_pkg_server_proto_server_proto_msgTypes[250] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19358,7 +19490,7 @@ type UI_GetDeploymentResponse struct { func (x *UI_GetDeploymentResponse) Reset() { *x = UI_GetDeploymentResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[248] + mi := &file_pkg_server_proto_server_proto_msgTypes[251] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19371,7 +19503,7 @@ func (x *UI_GetDeploymentResponse) String() string { func (*UI_GetDeploymentResponse) ProtoMessage() {} func (x *UI_GetDeploymentResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[248] + mi := &file_pkg_server_proto_server_proto_msgTypes[251] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19429,7 +19561,7 @@ type UI_DeploymentBundle struct { func (x *UI_DeploymentBundle) Reset() { *x = UI_DeploymentBundle{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[249] + mi := &file_pkg_server_proto_server_proto_msgTypes[252] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19442,7 +19574,7 @@ func (x *UI_DeploymentBundle) String() string { func (*UI_DeploymentBundle) ProtoMessage() {} func (x *UI_DeploymentBundle) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[249] + mi := &file_pkg_server_proto_server_proto_msgTypes[252] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19522,7 +19654,7 @@ type UI_ListReleasesRequest struct { func (x *UI_ListReleasesRequest) Reset() { *x = UI_ListReleasesRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[250] + mi := &file_pkg_server_proto_server_proto_msgTypes[253] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19535,7 +19667,7 @@ func (x *UI_ListReleasesRequest) String() string { func (*UI_ListReleasesRequest) ProtoMessage() {} func (x *UI_ListReleasesRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[250] + mi := &file_pkg_server_proto_server_proto_msgTypes[253] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19598,7 +19730,7 @@ type UI_ListReleasesResponse struct { func (x *UI_ListReleasesResponse) Reset() { *x = UI_ListReleasesResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[251] + mi := &file_pkg_server_proto_server_proto_msgTypes[254] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19611,7 +19743,7 @@ func (x *UI_ListReleasesResponse) String() string { func (*UI_ListReleasesResponse) ProtoMessage() {} func (x *UI_ListReleasesResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[251] + mi := &file_pkg_server_proto_server_proto_msgTypes[254] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19649,7 +19781,7 @@ type UI_ReleaseBundle struct { func (x *UI_ReleaseBundle) Reset() { *x = UI_ReleaseBundle{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[252] + mi := &file_pkg_server_proto_server_proto_msgTypes[255] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19662,7 +19794,7 @@ func (x *UI_ReleaseBundle) String() string { func (*UI_ReleaseBundle) ProtoMessage() {} func (x *UI_ReleaseBundle) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[252] + mi := &file_pkg_server_proto_server_proto_msgTypes[255] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19709,7 +19841,7 @@ type UI_ListEventsRequest struct { func (x *UI_ListEventsRequest) Reset() { *x = UI_ListEventsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[253] + mi := &file_pkg_server_proto_server_proto_msgTypes[256] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19722,7 +19854,7 @@ func (x *UI_ListEventsRequest) String() string { func (*UI_ListEventsRequest) ProtoMessage() {} func (x *UI_ListEventsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[253] + mi := &file_pkg_server_proto_server_proto_msgTypes[256] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19779,7 +19911,7 @@ type UI_ListEventsResponse struct { func (x *UI_ListEventsResponse) Reset() { *x = UI_ListEventsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[254] + mi := &file_pkg_server_proto_server_proto_msgTypes[257] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19792,7 +19924,7 @@ func (x *UI_ListEventsResponse) String() string { func (*UI_ListEventsResponse) ProtoMessage() {} func (x *UI_ListEventsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[254] + mi := &file_pkg_server_proto_server_proto_msgTypes[257] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19837,7 +19969,7 @@ type UI_EventBundle struct { func (x *UI_EventBundle) Reset() { *x = UI_EventBundle{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[255] + mi := &file_pkg_server_proto_server_proto_msgTypes[258] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19850,7 +19982,7 @@ func (x *UI_EventBundle) String() string { func (*UI_EventBundle) ProtoMessage() {} func (x *UI_EventBundle) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[255] + mi := &file_pkg_server_proto_server_proto_msgTypes[258] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19911,7 +20043,7 @@ type UI_EventBuild struct { func (x *UI_EventBuild) Reset() { *x = UI_EventBuild{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[256] + mi := &file_pkg_server_proto_server_proto_msgTypes[259] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19924,7 +20056,7 @@ func (x *UI_EventBuild) String() string { func (*UI_EventBuild) ProtoMessage() {} func (x *UI_EventBuild) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[256] + mi := &file_pkg_server_proto_server_proto_msgTypes[259] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19998,7 +20130,7 @@ type UI_EventDeployment struct { func (x *UI_EventDeployment) Reset() { *x = UI_EventDeployment{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[257] + mi := &file_pkg_server_proto_server_proto_msgTypes[260] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20011,7 +20143,7 @@ func (x *UI_EventDeployment) String() string { func (*UI_EventDeployment) ProtoMessage() {} func (x *UI_EventDeployment) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[257] + mi := &file_pkg_server_proto_server_proto_msgTypes[260] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20085,7 +20217,7 @@ type UI_EventRelease struct { func (x *UI_EventRelease) Reset() { *x = UI_EventRelease{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[258] + mi := &file_pkg_server_proto_server_proto_msgTypes[261] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20098,7 +20230,7 @@ func (x *UI_EventRelease) String() string { func (*UI_EventRelease) ProtoMessage() {} func (x *UI_EventRelease) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[258] + mi := &file_pkg_server_proto_server_proto_msgTypes[261] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20176,7 +20308,7 @@ type UI_ListEventSchemasResponse struct { func (x *UI_ListEventSchemasResponse) Reset() { *x = UI_ListEventSchemasResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[259] + mi := &file_pkg_server_proto_server_proto_msgTypes[262] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20189,7 +20321,7 @@ func (x *UI_ListEventSchemasResponse) String() string { func (*UI_ListEventSchemasResponse) ProtoMessage() {} func (x *UI_ListEventSchemasResponse) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[259] + mi := &file_pkg_server_proto_server_proto_msgTypes[262] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20238,7 +20370,7 @@ type UI_PipelineRunTreeNode_Children struct { func (x *UI_PipelineRunTreeNode_Children) Reset() { *x = UI_PipelineRunTreeNode_Children{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[260] + mi := &file_pkg_server_proto_server_proto_msgTypes[263] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20251,7 +20383,7 @@ func (x *UI_PipelineRunTreeNode_Children) String() string { func (*UI_PipelineRunTreeNode_Children) ProtoMessage() {} func (x *UI_PipelineRunTreeNode_Children) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[260] + mi := &file_pkg_server_proto_server_proto_msgTypes[263] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20293,7 +20425,7 @@ type VersionInfo_ProtocolVersion struct { func (x *VersionInfo_ProtocolVersion) Reset() { *x = VersionInfo_ProtocolVersion{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[261] + mi := &file_pkg_server_proto_server_proto_msgTypes[264] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20306,7 +20438,7 @@ func (x *VersionInfo_ProtocolVersion) String() string { func (*VersionInfo_ProtocolVersion) ProtoMessage() {} func (x *VersionInfo_ProtocolVersion) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[261] + mi := &file_pkg_server_proto_server_proto_msgTypes[264] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20348,7 +20480,7 @@ type Variable_File struct { func (x *Variable_File) Reset() { *x = Variable_File{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[262] + mi := &file_pkg_server_proto_server_proto_msgTypes[265] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20361,7 +20493,7 @@ func (x *Variable_File) String() string { func (*Variable_File) ProtoMessage() {} func (x *Variable_File) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[262] + mi := &file_pkg_server_proto_server_proto_msgTypes[265] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20403,7 +20535,7 @@ type Variable_VCS struct { func (x *Variable_VCS) Reset() { *x = Variable_VCS{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[263] + mi := &file_pkg_server_proto_server_proto_msgTypes[266] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20416,7 +20548,7 @@ func (x *Variable_VCS) String() string { func (*Variable_VCS) ProtoMessage() {} func (x *Variable_VCS) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[263] + mi := &file_pkg_server_proto_server_proto_msgTypes[266] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20460,7 +20592,7 @@ type Variable_HclPos struct { func (x *Variable_HclPos) Reset() { *x = Variable_HclPos{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[264] + mi := &file_pkg_server_proto_server_proto_msgTypes[267] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20473,7 +20605,7 @@ func (x *Variable_HclPos) String() string { func (*Variable_HclPos) ProtoMessage() {} func (x *Variable_HclPos) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[264] + mi := &file_pkg_server_proto_server_proto_msgTypes[267] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20523,7 +20655,7 @@ type Variable_HclRange struct { func (x *Variable_HclRange) Reset() { *x = Variable_HclRange{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[265] + mi := &file_pkg_server_proto_server_proto_msgTypes[268] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20536,7 +20668,7 @@ func (x *Variable_HclRange) String() string { func (*Variable_HclRange) ProtoMessage() {} func (x *Variable_HclRange) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[265] + mi := &file_pkg_server_proto_server_proto_msgTypes[268] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20595,7 +20727,7 @@ type Variable_FinalValue struct { func (x *Variable_FinalValue) Reset() { *x = Variable_FinalValue{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[266] + mi := &file_pkg_server_proto_server_proto_msgTypes[269] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20608,7 +20740,7 @@ func (x *Variable_FinalValue) String() string { func (*Variable_FinalValue) ProtoMessage() {} func (x *Variable_FinalValue) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[266] + mi := &file_pkg_server_proto_server_proto_msgTypes[269] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20726,7 +20858,7 @@ type Project_Poll struct { func (x *Project_Poll) Reset() { *x = Project_Poll{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[267] + mi := &file_pkg_server_proto_server_proto_msgTypes[270] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20739,7 +20871,7 @@ func (x *Project_Poll) String() string { func (*Project_Poll) ProtoMessage() {} func (x *Project_Poll) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[267] + mi := &file_pkg_server_proto_server_proto_msgTypes[270] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20785,7 +20917,7 @@ type Project_AppStatusPoll struct { func (x *Project_AppStatusPoll) Reset() { *x = Project_AppStatusPoll{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[268] + mi := &file_pkg_server_proto_server_proto_msgTypes[271] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20798,7 +20930,7 @@ func (x *Project_AppStatusPoll) String() string { func (*Project_AppStatusPoll) ProtoMessage() {} func (x *Project_AppStatusPoll) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[268] + mi := &file_pkg_server_proto_server_proto_msgTypes[271] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20854,7 +20986,7 @@ type Workspace_Project struct { func (x *Workspace_Project) Reset() { *x = Workspace_Project{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[269] + mi := &file_pkg_server_proto_server_proto_msgTypes[272] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20867,7 +20999,7 @@ func (x *Workspace_Project) String() string { func (*Workspace_Project) ProtoMessage() {} func (x *Workspace_Project) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[269] + mi := &file_pkg_server_proto_server_proto_msgTypes[272] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20932,7 +21064,7 @@ type Workspace_Application struct { func (x *Workspace_Application) Reset() { *x = Workspace_Application{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[270] + mi := &file_pkg_server_proto_server_proto_msgTypes[273] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20945,7 +21077,7 @@ func (x *Workspace_Application) String() string { func (*Workspace_Application) ProtoMessage() {} func (x *Workspace_Application) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[270] + mi := &file_pkg_server_proto_server_proto_msgTypes[273] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20993,7 +21125,7 @@ type User_Link struct { func (x *User_Link) Reset() { *x = User_Link{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[271] + mi := &file_pkg_server_proto_server_proto_msgTypes[274] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21006,7 +21138,7 @@ func (x *User_Link) String() string { func (*User_Link) ProtoMessage() {} func (x *User_Link) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[271] + mi := &file_pkg_server_proto_server_proto_msgTypes[274] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21059,7 +21191,7 @@ type User_Link_OIDC struct { func (x *User_Link_OIDC) Reset() { *x = User_Link_OIDC{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[272] + mi := &file_pkg_server_proto_server_proto_msgTypes[275] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21072,7 +21204,7 @@ func (x *User_Link_OIDC) String() string { func (*User_Link_OIDC) ProtoMessage() {} func (x *User_Link_OIDC) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[272] + mi := &file_pkg_server_proto_server_proto_msgTypes[275] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21113,7 +21245,7 @@ type Ref_Global struct { func (x *Ref_Global) Reset() { *x = Ref_Global{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[273] + mi := &file_pkg_server_proto_server_proto_msgTypes[276] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21126,7 +21258,7 @@ func (x *Ref_Global) String() string { func (*Ref_Global) ProtoMessage() {} func (x *Ref_Global) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[273] + mi := &file_pkg_server_proto_server_proto_msgTypes[276] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21156,7 +21288,7 @@ type Ref_Application struct { func (x *Ref_Application) Reset() { *x = Ref_Application{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[274] + mi := &file_pkg_server_proto_server_proto_msgTypes[277] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21169,7 +21301,7 @@ func (x *Ref_Application) String() string { func (*Ref_Application) ProtoMessage() {} func (x *Ref_Application) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[274] + mi := &file_pkg_server_proto_server_proto_msgTypes[277] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21211,7 +21343,7 @@ type Ref_Project struct { func (x *Ref_Project) Reset() { *x = Ref_Project{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[275] + mi := &file_pkg_server_proto_server_proto_msgTypes[278] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21224,7 +21356,7 @@ func (x *Ref_Project) String() string { func (*Ref_Project) ProtoMessage() {} func (x *Ref_Project) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[275] + mi := &file_pkg_server_proto_server_proto_msgTypes[278] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21259,7 +21391,7 @@ type Ref_Workspace struct { func (x *Ref_Workspace) Reset() { *x = Ref_Workspace{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[276] + mi := &file_pkg_server_proto_server_proto_msgTypes[279] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21272,7 +21404,7 @@ func (x *Ref_Workspace) String() string { func (*Ref_Workspace) ProtoMessage() {} func (x *Ref_Workspace) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[276] + mi := &file_pkg_server_proto_server_proto_msgTypes[279] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21312,7 +21444,7 @@ type Ref_Deployment struct { func (x *Ref_Deployment) Reset() { *x = Ref_Deployment{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[277] + mi := &file_pkg_server_proto_server_proto_msgTypes[280] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21325,7 +21457,7 @@ func (x *Ref_Deployment) String() string { func (*Ref_Deployment) ProtoMessage() {} func (x *Ref_Deployment) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[277] + mi := &file_pkg_server_proto_server_proto_msgTypes[280] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21395,7 +21527,7 @@ type Ref_Artifact struct { func (x *Ref_Artifact) Reset() { *x = Ref_Artifact{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[278] + mi := &file_pkg_server_proto_server_proto_msgTypes[281] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21408,7 +21540,7 @@ func (x *Ref_Artifact) String() string { func (*Ref_Artifact) ProtoMessage() {} func (x *Ref_Artifact) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[278] + mi := &file_pkg_server_proto_server_proto_msgTypes[281] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21474,7 +21606,7 @@ type Ref_Component struct { func (x *Ref_Component) Reset() { *x = Ref_Component{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[279] + mi := &file_pkg_server_proto_server_proto_msgTypes[282] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21487,7 +21619,7 @@ func (x *Ref_Component) String() string { func (*Ref_Component) ProtoMessage() {} func (x *Ref_Component) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[279] + mi := &file_pkg_server_proto_server_proto_msgTypes[282] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21534,7 +21666,7 @@ type Ref_Operation struct { func (x *Ref_Operation) Reset() { *x = Ref_Operation{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[280] + mi := &file_pkg_server_proto_server_proto_msgTypes[283] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21547,7 +21679,7 @@ func (x *Ref_Operation) String() string { func (*Ref_Operation) ProtoMessage() {} func (x *Ref_Operation) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[280] + mi := &file_pkg_server_proto_server_proto_msgTypes[283] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21613,7 +21745,7 @@ type Ref_OperationSeq struct { func (x *Ref_OperationSeq) Reset() { *x = Ref_OperationSeq{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[281] + mi := &file_pkg_server_proto_server_proto_msgTypes[284] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21626,7 +21758,7 @@ func (x *Ref_OperationSeq) String() string { func (*Ref_OperationSeq) ProtoMessage() {} func (x *Ref_OperationSeq) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[281] + mi := &file_pkg_server_proto_server_proto_msgTypes[284] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21676,7 +21808,7 @@ type Ref_Runner struct { func (x *Ref_Runner) Reset() { *x = Ref_Runner{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[282] + mi := &file_pkg_server_proto_server_proto_msgTypes[285] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21689,7 +21821,7 @@ func (x *Ref_Runner) String() string { func (*Ref_Runner) ProtoMessage() {} func (x *Ref_Runner) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[282] + mi := &file_pkg_server_proto_server_proto_msgTypes[285] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21765,7 +21897,7 @@ type Ref_RunnerAny struct { func (x *Ref_RunnerAny) Reset() { *x = Ref_RunnerAny{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[283] + mi := &file_pkg_server_proto_server_proto_msgTypes[286] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21778,7 +21910,7 @@ func (x *Ref_RunnerAny) String() string { func (*Ref_RunnerAny) ProtoMessage() {} func (x *Ref_RunnerAny) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[283] + mi := &file_pkg_server_proto_server_proto_msgTypes[286] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21806,7 +21938,7 @@ type Ref_RunnerId struct { func (x *Ref_RunnerId) Reset() { *x = Ref_RunnerId{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[284] + mi := &file_pkg_server_proto_server_proto_msgTypes[287] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21819,7 +21951,7 @@ func (x *Ref_RunnerId) String() string { func (*Ref_RunnerId) ProtoMessage() {} func (x *Ref_RunnerId) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[284] + mi := &file_pkg_server_proto_server_proto_msgTypes[287] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21855,7 +21987,7 @@ type Ref_RunnerLabels struct { func (x *Ref_RunnerLabels) Reset() { *x = Ref_RunnerLabels{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[285] + mi := &file_pkg_server_proto_server_proto_msgTypes[288] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21868,7 +22000,7 @@ func (x *Ref_RunnerLabels) String() string { func (*Ref_RunnerLabels) ProtoMessage() {} func (x *Ref_RunnerLabels) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[285] + mi := &file_pkg_server_proto_server_proto_msgTypes[288] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21909,7 +22041,7 @@ type Ref_User struct { func (x *Ref_User) Reset() { *x = Ref_User{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[286] + mi := &file_pkg_server_proto_server_proto_msgTypes[289] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21922,7 +22054,7 @@ func (x *Ref_User) String() string { func (*Ref_User) ProtoMessage() {} func (x *Ref_User) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[286] + mi := &file_pkg_server_proto_server_proto_msgTypes[289] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21987,7 +22119,7 @@ type Ref_UserId struct { func (x *Ref_UserId) Reset() { *x = Ref_UserId{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[287] + mi := &file_pkg_server_proto_server_proto_msgTypes[290] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22000,7 +22132,7 @@ func (x *Ref_UserId) String() string { func (*Ref_UserId) ProtoMessage() {} func (x *Ref_UserId) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[287] + mi := &file_pkg_server_proto_server_proto_msgTypes[290] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22037,7 +22169,7 @@ type Ref_UserUsername struct { func (x *Ref_UserUsername) Reset() { *x = Ref_UserUsername{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[288] + mi := &file_pkg_server_proto_server_proto_msgTypes[291] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22050,7 +22182,7 @@ func (x *Ref_UserUsername) String() string { func (*Ref_UserUsername) ProtoMessage() {} func (x *Ref_UserUsername) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[288] + mi := &file_pkg_server_proto_server_proto_msgTypes[291] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22085,7 +22217,7 @@ type Ref_AuthMethod struct { func (x *Ref_AuthMethod) Reset() { *x = Ref_AuthMethod{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[289] + mi := &file_pkg_server_proto_server_proto_msgTypes[292] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22098,7 +22230,7 @@ func (x *Ref_AuthMethod) String() string { func (*Ref_AuthMethod) ProtoMessage() {} func (x *Ref_AuthMethod) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[289] + mi := &file_pkg_server_proto_server_proto_msgTypes[292] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22133,7 +22265,7 @@ type Ref_DeclaredResource struct { func (x *Ref_DeclaredResource) Reset() { *x = Ref_DeclaredResource{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[290] + mi := &file_pkg_server_proto_server_proto_msgTypes[293] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22146,7 +22278,7 @@ func (x *Ref_DeclaredResource) String() string { func (*Ref_DeclaredResource) ProtoMessage() {} func (x *Ref_DeclaredResource) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[290] + mi := &file_pkg_server_proto_server_proto_msgTypes[293] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22183,7 +22315,7 @@ type Ref_OnDemandRunnerConfig struct { func (x *Ref_OnDemandRunnerConfig) Reset() { *x = Ref_OnDemandRunnerConfig{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[291] + mi := &file_pkg_server_proto_server_proto_msgTypes[294] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22196,7 +22328,7 @@ func (x *Ref_OnDemandRunnerConfig) String() string { func (*Ref_OnDemandRunnerConfig) ProtoMessage() {} func (x *Ref_OnDemandRunnerConfig) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[291] + mi := &file_pkg_server_proto_server_proto_msgTypes[294] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22239,7 +22371,7 @@ type Ref_Trigger struct { func (x *Ref_Trigger) Reset() { *x = Ref_Trigger{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[292] + mi := &file_pkg_server_proto_server_proto_msgTypes[295] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22252,7 +22384,7 @@ func (x *Ref_Trigger) String() string { func (*Ref_Trigger) ProtoMessage() {} func (x *Ref_Trigger) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[292] + mi := &file_pkg_server_proto_server_proto_msgTypes[295] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22287,7 +22419,7 @@ type Ref_Job struct { func (x *Ref_Job) Reset() { *x = Ref_Job{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[293] + mi := &file_pkg_server_proto_server_proto_msgTypes[296] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22300,7 +22432,7 @@ func (x *Ref_Job) String() string { func (*Ref_Job) ProtoMessage() {} func (x *Ref_Job) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[293] + mi := &file_pkg_server_proto_server_proto_msgTypes[296] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22339,7 +22471,7 @@ type Ref_Task struct { func (x *Ref_Task) Reset() { *x = Ref_Task{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[294] + mi := &file_pkg_server_proto_server_proto_msgTypes[297] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22352,7 +22484,7 @@ func (x *Ref_Task) String() string { func (*Ref_Task) ProtoMessage() {} func (x *Ref_Task) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[294] + mi := &file_pkg_server_proto_server_proto_msgTypes[297] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22423,7 +22555,7 @@ type Ref_Pipeline struct { func (x *Ref_Pipeline) Reset() { *x = Ref_Pipeline{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[295] + mi := &file_pkg_server_proto_server_proto_msgTypes[298] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22436,7 +22568,7 @@ func (x *Ref_Pipeline) String() string { func (*Ref_Pipeline) ProtoMessage() {} func (x *Ref_Pipeline) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[295] + mi := &file_pkg_server_proto_server_proto_msgTypes[298] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22507,7 +22639,7 @@ type Ref_PipelineOwner struct { func (x *Ref_PipelineOwner) Reset() { *x = Ref_PipelineOwner{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[296] + mi := &file_pkg_server_proto_server_proto_msgTypes[299] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22520,7 +22652,7 @@ func (x *Ref_PipelineOwner) String() string { func (*Ref_PipelineOwner) ProtoMessage() {} func (x *Ref_PipelineOwner) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[296] + mi := &file_pkg_server_proto_server_proto_msgTypes[299] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22572,7 +22704,7 @@ type Ref_PipelineStep struct { func (x *Ref_PipelineStep) Reset() { *x = Ref_PipelineStep{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[297] + mi := &file_pkg_server_proto_server_proto_msgTypes[300] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22585,7 +22717,7 @@ func (x *Ref_PipelineStep) String() string { func (*Ref_PipelineStep) ProtoMessage() {} func (x *Ref_PipelineStep) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[297] + mi := &file_pkg_server_proto_server_proto_msgTypes[300] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22658,7 +22790,7 @@ type Ref_ProjectTemplate struct { func (x *Ref_ProjectTemplate) Reset() { *x = Ref_ProjectTemplate{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[298] + mi := &file_pkg_server_proto_server_proto_msgTypes[301] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22671,7 +22803,7 @@ func (x *Ref_ProjectTemplate) String() string { func (*Ref_ProjectTemplate) ProtoMessage() {} func (x *Ref_ProjectTemplate) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[298] + mi := &file_pkg_server_proto_server_proto_msgTypes[301] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22740,7 +22872,7 @@ type StatusFilter_Filter struct { func (x *StatusFilter_Filter) Reset() { *x = StatusFilter_Filter{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[300] + mi := &file_pkg_server_proto_server_proto_msgTypes[303] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22753,7 +22885,7 @@ func (x *StatusFilter_Filter) String() string { func (*StatusFilter_Filter) ProtoMessage() {} func (x *StatusFilter_Filter) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[300] + mi := &file_pkg_server_proto_server_proto_msgTypes[303] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22836,7 +22968,7 @@ type AuthMethod_OIDC struct { func (x *AuthMethod_OIDC) Reset() { *x = AuthMethod_OIDC{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[302] + mi := &file_pkg_server_proto_server_proto_msgTypes[305] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22849,7 +22981,7 @@ func (x *AuthMethod_OIDC) String() string { func (*AuthMethod_OIDC) ProtoMessage() {} func (x *AuthMethod_OIDC) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[302] + mi := &file_pkg_server_proto_server_proto_msgTypes[305] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22953,7 +23085,7 @@ type Job_TaskOverride struct { func (x *Job_TaskOverride) Reset() { *x = Job_TaskOverride{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[305] + mi := &file_pkg_server_proto_server_proto_msgTypes[308] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22966,7 +23098,7 @@ func (x *Job_TaskOverride) String() string { func (*Job_TaskOverride) ProtoMessage() {} func (x *Job_TaskOverride) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[305] + mi := &file_pkg_server_proto_server_proto_msgTypes[308] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23024,7 +23156,7 @@ type Job_Result struct { func (x *Job_Result) Reset() { *x = Job_Result{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[309] + mi := &file_pkg_server_proto_server_proto_msgTypes[312] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23037,7 +23169,7 @@ func (x *Job_Result) String() string { func (*Job_Result) ProtoMessage() {} func (x *Job_Result) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[309] + mi := &file_pkg_server_proto_server_proto_msgTypes[312] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23191,7 +23323,7 @@ type Job_Config struct { func (x *Job_Config) Reset() { *x = Job_Config{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[310] + mi := &file_pkg_server_proto_server_proto_msgTypes[313] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23204,7 +23336,7 @@ func (x *Job_Config) String() string { func (*Job_Config) ProtoMessage() {} func (x *Job_Config) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[310] + mi := &file_pkg_server_proto_server_proto_msgTypes[313] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23243,7 +23375,7 @@ type Job_DataSource struct { func (x *Job_DataSource) Reset() { *x = Job_DataSource{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[311] + mi := &file_pkg_server_proto_server_proto_msgTypes[314] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23256,7 +23388,7 @@ func (x *Job_DataSource) String() string { func (*Job_DataSource) ProtoMessage() {} func (x *Job_DataSource) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[311] + mi := &file_pkg_server_proto_server_proto_msgTypes[314] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23338,7 +23470,7 @@ type Job_Local struct { func (x *Job_Local) Reset() { *x = Job_Local{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[312] + mi := &file_pkg_server_proto_server_proto_msgTypes[315] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23351,7 +23483,7 @@ func (x *Job_Local) String() string { func (*Job_Local) ProtoMessage() {} func (x *Job_Local) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[312] + mi := &file_pkg_server_proto_server_proto_msgTypes[315] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23386,7 +23518,7 @@ type Job_Remote struct { func (x *Job_Remote) Reset() { *x = Job_Remote{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[313] + mi := &file_pkg_server_proto_server_proto_msgTypes[316] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23399,7 +23531,7 @@ func (x *Job_Remote) String() string { func (*Job_Remote) ProtoMessage() {} func (x *Job_Remote) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[313] + mi := &file_pkg_server_proto_server_proto_msgTypes[316] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23477,7 +23609,7 @@ type Job_Git struct { func (x *Job_Git) Reset() { *x = Job_Git{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[314] + mi := &file_pkg_server_proto_server_proto_msgTypes[317] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23490,7 +23622,7 @@ func (x *Job_Git) String() string { func (*Job_Git) ProtoMessage() {} func (x *Job_Git) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[314] + mi := &file_pkg_server_proto_server_proto_msgTypes[317] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23591,7 +23723,7 @@ type Job_Noop struct { func (x *Job_Noop) Reset() { *x = Job_Noop{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[315] + mi := &file_pkg_server_proto_server_proto_msgTypes[318] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23604,7 +23736,7 @@ func (x *Job_Noop) String() string { func (*Job_Noop) ProtoMessage() {} func (x *Job_Noop) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[315] + mi := &file_pkg_server_proto_server_proto_msgTypes[318] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23638,7 +23770,7 @@ type Job_UpOp struct { func (x *Job_UpOp) Reset() { *x = Job_UpOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[316] + mi := &file_pkg_server_proto_server_proto_msgTypes[319] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23651,7 +23783,7 @@ func (x *Job_UpOp) String() string { func (*Job_UpOp) ProtoMessage() {} func (x *Job_UpOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[316] + mi := &file_pkg_server_proto_server_proto_msgTypes[319] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23706,7 +23838,7 @@ type Job_UpResult struct { func (x *Job_UpResult) Reset() { *x = Job_UpResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[317] + mi := &file_pkg_server_proto_server_proto_msgTypes[320] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23719,7 +23851,7 @@ func (x *Job_UpResult) String() string { func (*Job_UpResult) ProtoMessage() {} func (x *Job_UpResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[317] + mi := &file_pkg_server_proto_server_proto_msgTypes[320] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23766,7 +23898,7 @@ type Job_ValidateOp struct { func (x *Job_ValidateOp) Reset() { *x = Job_ValidateOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[318] + mi := &file_pkg_server_proto_server_proto_msgTypes[321] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23779,7 +23911,7 @@ func (x *Job_ValidateOp) String() string { func (*Job_ValidateOp) ProtoMessage() {} func (x *Job_ValidateOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[318] + mi := &file_pkg_server_proto_server_proto_msgTypes[321] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23804,7 +23936,7 @@ type Job_ValidateResult struct { func (x *Job_ValidateResult) Reset() { *x = Job_ValidateResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[319] + mi := &file_pkg_server_proto_server_proto_msgTypes[322] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23817,7 +23949,7 @@ func (x *Job_ValidateResult) String() string { func (*Job_ValidateResult) ProtoMessage() {} func (x *Job_ValidateResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[319] + mi := &file_pkg_server_proto_server_proto_msgTypes[322] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23851,7 +23983,7 @@ type Job_AuthOp struct { func (x *Job_AuthOp) Reset() { *x = Job_AuthOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[320] + mi := &file_pkg_server_proto_server_proto_msgTypes[323] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23864,7 +23996,7 @@ func (x *Job_AuthOp) String() string { func (*Job_AuthOp) ProtoMessage() {} func (x *Job_AuthOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[320] + mi := &file_pkg_server_proto_server_proto_msgTypes[323] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23906,7 +24038,7 @@ type Job_AuthResult struct { func (x *Job_AuthResult) Reset() { *x = Job_AuthResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[321] + mi := &file_pkg_server_proto_server_proto_msgTypes[324] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23919,7 +24051,7 @@ func (x *Job_AuthResult) String() string { func (*Job_AuthResult) ProtoMessage() {} func (x *Job_AuthResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[321] + mi := &file_pkg_server_proto_server_proto_msgTypes[324] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23954,7 +24086,7 @@ type Job_BuildOp struct { func (x *Job_BuildOp) Reset() { *x = Job_BuildOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[322] + mi := &file_pkg_server_proto_server_proto_msgTypes[325] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23967,7 +24099,7 @@ func (x *Job_BuildOp) String() string { func (*Job_BuildOp) ProtoMessage() {} func (x *Job_BuildOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[322] + mi := &file_pkg_server_proto_server_proto_msgTypes[325] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24004,7 +24136,7 @@ type Job_BuildResult struct { func (x *Job_BuildResult) Reset() { *x = Job_BuildResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[323] + mi := &file_pkg_server_proto_server_proto_msgTypes[326] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24017,7 +24149,7 @@ func (x *Job_BuildResult) String() string { func (*Job_BuildResult) ProtoMessage() {} func (x *Job_BuildResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[323] + mi := &file_pkg_server_proto_server_proto_msgTypes[326] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24059,7 +24191,7 @@ type Job_PushOp struct { func (x *Job_PushOp) Reset() { *x = Job_PushOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[324] + mi := &file_pkg_server_proto_server_proto_msgTypes[327] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24072,7 +24204,7 @@ func (x *Job_PushOp) String() string { func (*Job_PushOp) ProtoMessage() {} func (x *Job_PushOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[324] + mi := &file_pkg_server_proto_server_proto_msgTypes[327] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24106,7 +24238,7 @@ type Job_PushResult struct { func (x *Job_PushResult) Reset() { *x = Job_PushResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[325] + mi := &file_pkg_server_proto_server_proto_msgTypes[328] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24119,7 +24251,7 @@ func (x *Job_PushResult) String() string { func (*Job_PushResult) ProtoMessage() {} func (x *Job_PushResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[325] + mi := &file_pkg_server_proto_server_proto_msgTypes[328] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24154,7 +24286,7 @@ type Job_DeployOp struct { func (x *Job_DeployOp) Reset() { *x = Job_DeployOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[326] + mi := &file_pkg_server_proto_server_proto_msgTypes[329] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24167,7 +24299,7 @@ func (x *Job_DeployOp) String() string { func (*Job_DeployOp) ProtoMessage() {} func (x *Job_DeployOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[326] + mi := &file_pkg_server_proto_server_proto_msgTypes[329] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24201,7 +24333,7 @@ type Job_DeployResult struct { func (x *Job_DeployResult) Reset() { *x = Job_DeployResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[327] + mi := &file_pkg_server_proto_server_proto_msgTypes[330] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24214,7 +24346,7 @@ func (x *Job_DeployResult) String() string { func (*Job_DeployResult) ProtoMessage() {} func (x *Job_DeployResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[327] + mi := &file_pkg_server_proto_server_proto_msgTypes[330] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24255,7 +24387,7 @@ type Job_ExecOp struct { func (x *Job_ExecOp) Reset() { *x = Job_ExecOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[328] + mi := &file_pkg_server_proto_server_proto_msgTypes[331] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24268,7 +24400,7 @@ func (x *Job_ExecOp) String() string { func (*Job_ExecOp) ProtoMessage() {} func (x *Job_ExecOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[328] + mi := &file_pkg_server_proto_server_proto_msgTypes[331] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24307,7 +24439,7 @@ type Job_ExecResult struct { func (x *Job_ExecResult) Reset() { *x = Job_ExecResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[329] + mi := &file_pkg_server_proto_server_proto_msgTypes[332] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24320,7 +24452,7 @@ func (x *Job_ExecResult) String() string { func (*Job_ExecResult) ProtoMessage() {} func (x *Job_ExecResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[329] + mi := &file_pkg_server_proto_server_proto_msgTypes[332] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24359,7 +24491,7 @@ type Job_LogsOp struct { func (x *Job_LogsOp) Reset() { *x = Job_LogsOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[330] + mi := &file_pkg_server_proto_server_proto_msgTypes[333] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24372,7 +24504,7 @@ func (x *Job_LogsOp) String() string { func (*Job_LogsOp) ProtoMessage() {} func (x *Job_LogsOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[330] + mi := &file_pkg_server_proto_server_proto_msgTypes[333] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24433,7 +24565,7 @@ type Job_DestroyOp struct { func (x *Job_DestroyOp) Reset() { *x = Job_DestroyOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[331] + mi := &file_pkg_server_proto_server_proto_msgTypes[334] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24446,7 +24578,7 @@ func (x *Job_DestroyOp) String() string { func (*Job_DestroyOp) ProtoMessage() {} func (x *Job_DestroyOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[331] + mi := &file_pkg_server_proto_server_proto_msgTypes[334] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24519,7 +24651,7 @@ type Job_ReleaseOp struct { func (x *Job_ReleaseOp) Reset() { *x = Job_ReleaseOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[332] + mi := &file_pkg_server_proto_server_proto_msgTypes[335] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24532,7 +24664,7 @@ func (x *Job_ReleaseOp) String() string { func (*Job_ReleaseOp) ProtoMessage() {} func (x *Job_ReleaseOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[332] + mi := &file_pkg_server_proto_server_proto_msgTypes[335] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24592,7 +24724,7 @@ type Job_ReleaseResult struct { func (x *Job_ReleaseResult) Reset() { *x = Job_ReleaseResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[333] + mi := &file_pkg_server_proto_server_proto_msgTypes[336] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24605,7 +24737,7 @@ func (x *Job_ReleaseResult) String() string { func (*Job_ReleaseResult) ProtoMessage() {} func (x *Job_ReleaseResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[333] + mi := &file_pkg_server_proto_server_proto_msgTypes[336] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24647,7 +24779,7 @@ type Job_TaskPluginParams struct { func (x *Job_TaskPluginParams) Reset() { *x = Job_TaskPluginParams{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[334] + mi := &file_pkg_server_proto_server_proto_msgTypes[337] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24660,7 +24792,7 @@ func (x *Job_TaskPluginParams) String() string { func (*Job_TaskPluginParams) ProtoMessage() {} func (x *Job_TaskPluginParams) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[334] + mi := &file_pkg_server_proto_server_proto_msgTypes[337] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24711,7 +24843,7 @@ type Job_StartTaskLaunchOp struct { func (x *Job_StartTaskLaunchOp) Reset() { *x = Job_StartTaskLaunchOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[335] + mi := &file_pkg_server_proto_server_proto_msgTypes[338] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24724,7 +24856,7 @@ func (x *Job_StartTaskLaunchOp) String() string { func (*Job_StartTaskLaunchOp) ProtoMessage() {} func (x *Job_StartTaskLaunchOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[335] + mi := &file_pkg_server_proto_server_proto_msgTypes[338] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24766,7 +24898,7 @@ type Job_StartTaskResult struct { func (x *Job_StartTaskResult) Reset() { *x = Job_StartTaskResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[336] + mi := &file_pkg_server_proto_server_proto_msgTypes[339] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24779,7 +24911,7 @@ func (x *Job_StartTaskResult) String() string { func (*Job_StartTaskResult) ProtoMessage() {} func (x *Job_StartTaskResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[336] + mi := &file_pkg_server_proto_server_proto_msgTypes[339] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24821,7 +24953,7 @@ type Job_StopTaskLaunchOp struct { func (x *Job_StopTaskLaunchOp) Reset() { *x = Job_StopTaskLaunchOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[337] + mi := &file_pkg_server_proto_server_proto_msgTypes[340] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24834,7 +24966,7 @@ func (x *Job_StopTaskLaunchOp) String() string { func (*Job_StopTaskLaunchOp) ProtoMessage() {} func (x *Job_StopTaskLaunchOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[337] + mi := &file_pkg_server_proto_server_proto_msgTypes[340] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24909,7 +25041,7 @@ type Job_WatchTaskOp struct { func (x *Job_WatchTaskOp) Reset() { *x = Job_WatchTaskOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[338] + mi := &file_pkg_server_proto_server_proto_msgTypes[341] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24922,7 +25054,7 @@ func (x *Job_WatchTaskOp) String() string { func (*Job_WatchTaskOp) ProtoMessage() {} func (x *Job_WatchTaskOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[338] + mi := &file_pkg_server_proto_server_proto_msgTypes[341] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -24956,7 +25088,7 @@ type Job_WatchTaskResult struct { func (x *Job_WatchTaskResult) Reset() { *x = Job_WatchTaskResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[339] + mi := &file_pkg_server_proto_server_proto_msgTypes[342] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -24969,7 +25101,7 @@ func (x *Job_WatchTaskResult) String() string { func (*Job_WatchTaskResult) ProtoMessage() {} func (x *Job_WatchTaskResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[339] + mi := &file_pkg_server_proto_server_proto_msgTypes[342] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25007,7 +25139,7 @@ type Job_StatusReportOp struct { func (x *Job_StatusReportOp) Reset() { *x = Job_StatusReportOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[340] + mi := &file_pkg_server_proto_server_proto_msgTypes[343] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25020,7 +25152,7 @@ func (x *Job_StatusReportOp) String() string { func (*Job_StatusReportOp) ProtoMessage() {} func (x *Job_StatusReportOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[340] + mi := &file_pkg_server_proto_server_proto_msgTypes[343] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25089,7 +25221,7 @@ type Job_StatusReportResult struct { func (x *Job_StatusReportResult) Reset() { *x = Job_StatusReportResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[341] + mi := &file_pkg_server_proto_server_proto_msgTypes[344] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25102,7 +25234,7 @@ func (x *Job_StatusReportResult) String() string { func (*Job_StatusReportResult) ProtoMessage() {} func (x *Job_StatusReportResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[341] + mi := &file_pkg_server_proto_server_proto_msgTypes[344] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25134,7 +25266,7 @@ type Job_DocsOp struct { func (x *Job_DocsOp) Reset() { *x = Job_DocsOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[342] + mi := &file_pkg_server_proto_server_proto_msgTypes[345] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25147,7 +25279,7 @@ func (x *Job_DocsOp) String() string { func (*Job_DocsOp) ProtoMessage() {} func (x *Job_DocsOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[342] + mi := &file_pkg_server_proto_server_proto_msgTypes[345] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25175,7 +25307,7 @@ type Job_DocsResult struct { func (x *Job_DocsResult) Reset() { *x = Job_DocsResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[343] + mi := &file_pkg_server_proto_server_proto_msgTypes[346] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25188,7 +25320,7 @@ func (x *Job_DocsResult) String() string { func (*Job_DocsResult) ProtoMessage() {} func (x *Job_DocsResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[343] + mi := &file_pkg_server_proto_server_proto_msgTypes[346] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25220,7 +25352,7 @@ type Job_ConfigSyncOp struct { func (x *Job_ConfigSyncOp) Reset() { *x = Job_ConfigSyncOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[344] + mi := &file_pkg_server_proto_server_proto_msgTypes[347] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25233,7 +25365,7 @@ func (x *Job_ConfigSyncOp) String() string { func (*Job_ConfigSyncOp) ProtoMessage() {} func (x *Job_ConfigSyncOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[344] + mi := &file_pkg_server_proto_server_proto_msgTypes[347] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25258,7 +25390,7 @@ type Job_ConfigSyncResult struct { func (x *Job_ConfigSyncResult) Reset() { *x = Job_ConfigSyncResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[345] + mi := &file_pkg_server_proto_server_proto_msgTypes[348] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25271,7 +25403,7 @@ func (x *Job_ConfigSyncResult) String() string { func (*Job_ConfigSyncResult) ProtoMessage() {} func (x *Job_ConfigSyncResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[345] + mi := &file_pkg_server_proto_server_proto_msgTypes[348] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25300,7 +25432,7 @@ type Job_PipelineConfigSyncResult struct { func (x *Job_PipelineConfigSyncResult) Reset() { *x = Job_PipelineConfigSyncResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[346] + mi := &file_pkg_server_proto_server_proto_msgTypes[349] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25313,7 +25445,7 @@ func (x *Job_PipelineConfigSyncResult) String() string { func (*Job_PipelineConfigSyncResult) ProtoMessage() {} func (x *Job_PipelineConfigSyncResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[346] + mi := &file_pkg_server_proto_server_proto_msgTypes[349] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25347,7 +25479,7 @@ type Job_ProjectDestroyResult struct { func (x *Job_ProjectDestroyResult) Reset() { *x = Job_ProjectDestroyResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[347] + mi := &file_pkg_server_proto_server_proto_msgTypes[350] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25360,7 +25492,7 @@ func (x *Job_ProjectDestroyResult) String() string { func (*Job_ProjectDestroyResult) ProtoMessage() {} func (x *Job_ProjectDestroyResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[347] + mi := &file_pkg_server_proto_server_proto_msgTypes[350] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25398,7 +25530,7 @@ type Job_PollOp struct { func (x *Job_PollOp) Reset() { *x = Job_PollOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[348] + mi := &file_pkg_server_proto_server_proto_msgTypes[351] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25411,7 +25543,7 @@ func (x *Job_PollOp) String() string { func (*Job_PollOp) ProtoMessage() {} func (x *Job_PollOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[348] + mi := &file_pkg_server_proto_server_proto_msgTypes[351] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25446,7 +25578,7 @@ type Job_PollResult struct { func (x *Job_PollResult) Reset() { *x = Job_PollResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[349] + mi := &file_pkg_server_proto_server_proto_msgTypes[352] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25459,7 +25591,7 @@ func (x *Job_PollResult) String() string { func (*Job_PollResult) ProtoMessage() {} func (x *Job_PollResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[349] + mi := &file_pkg_server_proto_server_proto_msgTypes[352] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25508,7 +25640,7 @@ type Job_InitOp struct { func (x *Job_InitOp) Reset() { *x = Job_InitOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[350] + mi := &file_pkg_server_proto_server_proto_msgTypes[353] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25521,7 +25653,7 @@ func (x *Job_InitOp) String() string { func (*Job_InitOp) ProtoMessage() {} func (x *Job_InitOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[350] + mi := &file_pkg_server_proto_server_proto_msgTypes[353] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25546,7 +25678,7 @@ type Job_InitResult struct { func (x *Job_InitResult) Reset() { *x = Job_InitResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[351] + mi := &file_pkg_server_proto_server_proto_msgTypes[354] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25559,7 +25691,7 @@ func (x *Job_InitResult) String() string { func (*Job_InitResult) ProtoMessage() {} func (x *Job_InitResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[351] + mi := &file_pkg_server_proto_server_proto_msgTypes[354] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25588,7 +25720,7 @@ type Job_PipelineStepOp struct { func (x *Job_PipelineStepOp) Reset() { *x = Job_PipelineStepOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[352] + mi := &file_pkg_server_proto_server_proto_msgTypes[355] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25601,7 +25733,7 @@ func (x *Job_PipelineStepOp) String() string { func (*Job_PipelineStepOp) ProtoMessage() {} func (x *Job_PipelineStepOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[352] + mi := &file_pkg_server_proto_server_proto_msgTypes[355] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25639,7 +25771,7 @@ type Job_DestroyProjectOp struct { func (x *Job_DestroyProjectOp) Reset() { *x = Job_DestroyProjectOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[353] + mi := &file_pkg_server_proto_server_proto_msgTypes[356] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25652,7 +25784,7 @@ func (x *Job_DestroyProjectOp) String() string { func (*Job_DestroyProjectOp) ProtoMessage() {} func (x *Job_DestroyProjectOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[353] + mi := &file_pkg_server_proto_server_proto_msgTypes[356] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25697,7 +25829,7 @@ type Job_PipelineStepResult struct { func (x *Job_PipelineStepResult) Reset() { *x = Job_PipelineStepResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[354] + mi := &file_pkg_server_proto_server_proto_msgTypes[357] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25710,7 +25842,7 @@ func (x *Job_PipelineStepResult) String() string { func (*Job_PipelineStepResult) ProtoMessage() {} func (x *Job_PipelineStepResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[354] + mi := &file_pkg_server_proto_server_proto_msgTypes[357] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25751,7 +25883,7 @@ type Job_QueueProjectOp struct { func (x *Job_QueueProjectOp) Reset() { *x = Job_QueueProjectOp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[355] + mi := &file_pkg_server_proto_server_proto_msgTypes[358] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25764,7 +25896,7 @@ func (x *Job_QueueProjectOp) String() string { func (*Job_QueueProjectOp) ProtoMessage() {} func (x *Job_QueueProjectOp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[355] + mi := &file_pkg_server_proto_server_proto_msgTypes[358] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25801,7 +25933,7 @@ type Job_QueueProjectResult struct { func (x *Job_QueueProjectResult) Reset() { *x = Job_QueueProjectResult{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[356] + mi := &file_pkg_server_proto_server_proto_msgTypes[359] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25814,7 +25946,7 @@ func (x *Job_QueueProjectResult) String() string { func (*Job_QueueProjectResult) ProtoMessage() {} func (x *Job_QueueProjectResult) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[356] + mi := &file_pkg_server_proto_server_proto_msgTypes[359] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25853,7 +25985,7 @@ type Job_DataSource_Ref struct { func (x *Job_DataSource_Ref) Reset() { *x = Job_DataSource_Ref{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[357] + mi := &file_pkg_server_proto_server_proto_msgTypes[360] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25866,7 +25998,7 @@ func (x *Job_DataSource_Ref) String() string { func (*Job_DataSource_Ref) ProtoMessage() {} func (x *Job_DataSource_Ref) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[357] + mi := &file_pkg_server_proto_server_proto_msgTypes[360] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -25939,7 +26071,7 @@ type Job_Git_Basic struct { func (x *Job_Git_Basic) Reset() { *x = Job_Git_Basic{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[358] + mi := &file_pkg_server_proto_server_proto_msgTypes[361] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -25952,7 +26084,7 @@ func (x *Job_Git_Basic) String() string { func (*Job_Git_Basic) ProtoMessage() {} func (x *Job_Git_Basic) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[358] + mi := &file_pkg_server_proto_server_proto_msgTypes[361] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26000,7 +26132,7 @@ type Job_Git_SSH struct { func (x *Job_Git_SSH) Reset() { *x = Job_Git_SSH{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[359] + mi := &file_pkg_server_proto_server_proto_msgTypes[362] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26013,7 +26145,7 @@ func (x *Job_Git_SSH) String() string { func (*Job_Git_SSH) ProtoMessage() {} func (x *Job_Git_SSH) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[359] + mi := &file_pkg_server_proto_server_proto_msgTypes[362] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26067,7 +26199,7 @@ type Job_Git_Ref struct { func (x *Job_Git_Ref) Reset() { *x = Job_Git_Ref{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[360] + mi := &file_pkg_server_proto_server_proto_msgTypes[363] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26080,7 +26212,7 @@ func (x *Job_Git_Ref) String() string { func (*Job_Git_Ref) ProtoMessage() {} func (x *Job_Git_Ref) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[360] + mi := &file_pkg_server_proto_server_proto_msgTypes[363] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26146,7 +26278,7 @@ type Job_AuthResult_Result struct { func (x *Job_AuthResult_Result) Reset() { *x = Job_AuthResult_Result{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[361] + mi := &file_pkg_server_proto_server_proto_msgTypes[364] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26159,7 +26291,7 @@ func (x *Job_AuthResult_Result) String() string { func (*Job_AuthResult_Result) ProtoMessage() {} func (x *Job_AuthResult_Result) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[361] + mi := &file_pkg_server_proto_server_proto_msgTypes[364] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26230,7 +26362,7 @@ type Job_DocsResult_Result struct { func (x *Job_DocsResult_Result) Reset() { *x = Job_DocsResult_Result{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[362] + mi := &file_pkg_server_proto_server_proto_msgTypes[365] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26243,7 +26375,7 @@ func (x *Job_DocsResult_Result) String() string { func (*Job_DocsResult_Result) ProtoMessage() {} func (x *Job_DocsResult_Result) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[362] + mi := &file_pkg_server_proto_server_proto_msgTypes[365] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26287,7 +26419,7 @@ type Job_QueueProjectResult_Application struct { func (x *Job_QueueProjectResult_Application) Reset() { *x = Job_QueueProjectResult_Application{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[364] + mi := &file_pkg_server_proto_server_proto_msgTypes[367] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26300,7 +26432,7 @@ func (x *Job_QueueProjectResult_Application) String() string { func (*Job_QueueProjectResult_Application) ProtoMessage() {} func (x *Job_QueueProjectResult_Application) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[364] + mi := &file_pkg_server_proto_server_proto_msgTypes[367] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26347,7 +26479,7 @@ type Documentation_Field struct { func (x *Documentation_Field) Reset() { *x = Documentation_Field{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[366] + mi := &file_pkg_server_proto_server_proto_msgTypes[369] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26360,7 +26492,7 @@ func (x *Documentation_Field) String() string { func (*Documentation_Field) ProtoMessage() {} func (x *Documentation_Field) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[366] + mi := &file_pkg_server_proto_server_proto_msgTypes[369] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26438,7 +26570,7 @@ type Documentation_Mapper struct { func (x *Documentation_Mapper) Reset() { *x = Documentation_Mapper{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[367] + mi := &file_pkg_server_proto_server_proto_msgTypes[370] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26451,7 +26583,7 @@ func (x *Documentation_Mapper) String() string { func (*Documentation_Mapper) ProtoMessage() {} func (x *Documentation_Mapper) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[367] + mi := &file_pkg_server_proto_server_proto_msgTypes[370] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26497,7 +26629,7 @@ type GetJobStreamResponse_Open struct { func (x *GetJobStreamResponse_Open) Reset() { *x = GetJobStreamResponse_Open{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[368] + mi := &file_pkg_server_proto_server_proto_msgTypes[371] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26510,7 +26642,7 @@ func (x *GetJobStreamResponse_Open) String() string { func (*GetJobStreamResponse_Open) ProtoMessage() {} func (x *GetJobStreamResponse_Open) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[368] + mi := &file_pkg_server_proto_server_proto_msgTypes[371] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26545,7 +26677,7 @@ type GetJobStreamResponse_State struct { func (x *GetJobStreamResponse_State) Reset() { *x = GetJobStreamResponse_State{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[369] + mi := &file_pkg_server_proto_server_proto_msgTypes[372] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26558,7 +26690,7 @@ func (x *GetJobStreamResponse_State) String() string { func (*GetJobStreamResponse_State) ProtoMessage() {} func (x *GetJobStreamResponse_State) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[369] + mi := &file_pkg_server_proto_server_proto_msgTypes[372] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26614,7 +26746,7 @@ type GetJobStreamResponse_JobChange struct { func (x *GetJobStreamResponse_JobChange) Reset() { *x = GetJobStreamResponse_JobChange{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[370] + mi := &file_pkg_server_proto_server_proto_msgTypes[373] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26627,7 +26759,7 @@ func (x *GetJobStreamResponse_JobChange) String() string { func (*GetJobStreamResponse_JobChange) ProtoMessage() {} func (x *GetJobStreamResponse_JobChange) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[370] + mi := &file_pkg_server_proto_server_proto_msgTypes[373] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26664,7 +26796,7 @@ type GetJobStreamResponse_Download struct { func (x *GetJobStreamResponse_Download) Reset() { *x = GetJobStreamResponse_Download{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[371] + mi := &file_pkg_server_proto_server_proto_msgTypes[374] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26677,7 +26809,7 @@ func (x *GetJobStreamResponse_Download) String() string { func (*GetJobStreamResponse_Download) ProtoMessage() {} func (x *GetJobStreamResponse_Download) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[371] + mi := &file_pkg_server_proto_server_proto_msgTypes[374] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26716,7 +26848,7 @@ type GetJobStreamResponse_Terminal struct { func (x *GetJobStreamResponse_Terminal) Reset() { *x = GetJobStreamResponse_Terminal{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[372] + mi := &file_pkg_server_proto_server_proto_msgTypes[375] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26729,7 +26861,7 @@ func (x *GetJobStreamResponse_Terminal) String() string { func (*GetJobStreamResponse_Terminal) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[372] + mi := &file_pkg_server_proto_server_proto_msgTypes[375] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26770,7 +26902,7 @@ type GetJobStreamResponse_Error struct { func (x *GetJobStreamResponse_Error) Reset() { *x = GetJobStreamResponse_Error{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[373] + mi := &file_pkg_server_proto_server_proto_msgTypes[376] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26783,7 +26915,7 @@ func (x *GetJobStreamResponse_Error) String() string { func (*GetJobStreamResponse_Error) ProtoMessage() {} func (x *GetJobStreamResponse_Error) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[373] + mi := &file_pkg_server_proto_server_proto_msgTypes[376] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26822,7 +26954,7 @@ type GetJobStreamResponse_Complete struct { func (x *GetJobStreamResponse_Complete) Reset() { *x = GetJobStreamResponse_Complete{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[374] + mi := &file_pkg_server_proto_server_proto_msgTypes[377] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26835,7 +26967,7 @@ func (x *GetJobStreamResponse_Complete) String() string { func (*GetJobStreamResponse_Complete) ProtoMessage() {} func (x *GetJobStreamResponse_Complete) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[374] + mi := &file_pkg_server_proto_server_proto_msgTypes[377] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -26889,7 +27021,7 @@ type GetJobStreamResponse_Terminal_Event struct { func (x *GetJobStreamResponse_Terminal_Event) Reset() { *x = GetJobStreamResponse_Terminal_Event{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[375] + mi := &file_pkg_server_proto_server_proto_msgTypes[378] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -26902,7 +27034,7 @@ func (x *GetJobStreamResponse_Terminal_Event) String() string { func (*GetJobStreamResponse_Terminal_Event) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[375] + mi := &file_pkg_server_proto_server_proto_msgTypes[378] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27042,7 +27174,7 @@ type GetJobStreamResponse_Terminal_Event_Status struct { func (x *GetJobStreamResponse_Terminal_Event_Status) Reset() { *x = GetJobStreamResponse_Terminal_Event_Status{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[376] + mi := &file_pkg_server_proto_server_proto_msgTypes[379] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27055,7 +27187,7 @@ func (x *GetJobStreamResponse_Terminal_Event_Status) String() string { func (*GetJobStreamResponse_Terminal_Event_Status) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_Status) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[376] + mi := &file_pkg_server_proto_server_proto_msgTypes[379] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27104,7 +27236,7 @@ type GetJobStreamResponse_Terminal_Event_Line struct { func (x *GetJobStreamResponse_Terminal_Event_Line) Reset() { *x = GetJobStreamResponse_Terminal_Event_Line{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[377] + mi := &file_pkg_server_proto_server_proto_msgTypes[380] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27117,7 +27249,7 @@ func (x *GetJobStreamResponse_Terminal_Event_Line) String() string { func (*GetJobStreamResponse_Terminal_Event_Line) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_Line) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[377] + mi := &file_pkg_server_proto_server_proto_msgTypes[380] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27159,7 +27291,7 @@ type GetJobStreamResponse_Terminal_Event_Raw struct { func (x *GetJobStreamResponse_Terminal_Event_Raw) Reset() { *x = GetJobStreamResponse_Terminal_Event_Raw{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[378] + mi := &file_pkg_server_proto_server_proto_msgTypes[381] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27172,7 +27304,7 @@ func (x *GetJobStreamResponse_Terminal_Event_Raw) String() string { func (*GetJobStreamResponse_Terminal_Event_Raw) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_Raw) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[378] + mi := &file_pkg_server_proto_server_proto_msgTypes[381] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27214,7 +27346,7 @@ type GetJobStreamResponse_Terminal_Event_NamedValue struct { func (x *GetJobStreamResponse_Terminal_Event_NamedValue) Reset() { *x = GetJobStreamResponse_Terminal_Event_NamedValue{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[379] + mi := &file_pkg_server_proto_server_proto_msgTypes[382] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27227,7 +27359,7 @@ func (x *GetJobStreamResponse_Terminal_Event_NamedValue) String() string { func (*GetJobStreamResponse_Terminal_Event_NamedValue) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_NamedValue) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[379] + mi := &file_pkg_server_proto_server_proto_msgTypes[382] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27268,7 +27400,7 @@ type GetJobStreamResponse_Terminal_Event_NamedValues struct { func (x *GetJobStreamResponse_Terminal_Event_NamedValues) Reset() { *x = GetJobStreamResponse_Terminal_Event_NamedValues{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[380] + mi := &file_pkg_server_proto_server_proto_msgTypes[383] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27281,7 +27413,7 @@ func (x *GetJobStreamResponse_Terminal_Event_NamedValues) String() string { func (*GetJobStreamResponse_Terminal_Event_NamedValues) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_NamedValues) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[380] + mi := &file_pkg_server_proto_server_proto_msgTypes[383] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27316,7 +27448,7 @@ type GetJobStreamResponse_Terminal_Event_TableEntry struct { func (x *GetJobStreamResponse_Terminal_Event_TableEntry) Reset() { *x = GetJobStreamResponse_Terminal_Event_TableEntry{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[381] + mi := &file_pkg_server_proto_server_proto_msgTypes[384] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27329,7 +27461,7 @@ func (x *GetJobStreamResponse_Terminal_Event_TableEntry) String() string { func (*GetJobStreamResponse_Terminal_Event_TableEntry) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_TableEntry) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[381] + mi := &file_pkg_server_proto_server_proto_msgTypes[384] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27370,7 +27502,7 @@ type GetJobStreamResponse_Terminal_Event_TableRow struct { func (x *GetJobStreamResponse_Terminal_Event_TableRow) Reset() { *x = GetJobStreamResponse_Terminal_Event_TableRow{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[382] + mi := &file_pkg_server_proto_server_proto_msgTypes[385] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27383,7 +27515,7 @@ func (x *GetJobStreamResponse_Terminal_Event_TableRow) String() string { func (*GetJobStreamResponse_Terminal_Event_TableRow) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_TableRow) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[382] + mi := &file_pkg_server_proto_server_proto_msgTypes[385] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27418,7 +27550,7 @@ type GetJobStreamResponse_Terminal_Event_Table struct { func (x *GetJobStreamResponse_Terminal_Event_Table) Reset() { *x = GetJobStreamResponse_Terminal_Event_Table{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[383] + mi := &file_pkg_server_proto_server_proto_msgTypes[386] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27431,7 +27563,7 @@ func (x *GetJobStreamResponse_Terminal_Event_Table) String() string { func (*GetJobStreamResponse_Terminal_Event_Table) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_Table) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[383] + mi := &file_pkg_server_proto_server_proto_msgTypes[386] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27472,7 +27604,7 @@ type GetJobStreamResponse_Terminal_Event_StepGroup struct { func (x *GetJobStreamResponse_Terminal_Event_StepGroup) Reset() { *x = GetJobStreamResponse_Terminal_Event_StepGroup{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[384] + mi := &file_pkg_server_proto_server_proto_msgTypes[387] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27485,7 +27617,7 @@ func (x *GetJobStreamResponse_Terminal_Event_StepGroup) String() string { func (*GetJobStreamResponse_Terminal_Event_StepGroup) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_StepGroup) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[384] + mi := &file_pkg_server_proto_server_proto_msgTypes[387] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27523,7 +27655,7 @@ type GetJobStreamResponse_Terminal_Event_Step struct { func (x *GetJobStreamResponse_Terminal_Event_Step) Reset() { *x = GetJobStreamResponse_Terminal_Event_Step{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[385] + mi := &file_pkg_server_proto_server_proto_msgTypes[388] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27536,7 +27668,7 @@ func (x *GetJobStreamResponse_Terminal_Event_Step) String() string { func (*GetJobStreamResponse_Terminal_Event_Step) ProtoMessage() {} func (x *GetJobStreamResponse_Terminal_Event_Step) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[385] + mi := &file_pkg_server_proto_server_proto_msgTypes[388] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27598,7 +27730,7 @@ type Runner_ODR struct { func (x *Runner_ODR) Reset() { *x = Runner_ODR{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[387] + mi := &file_pkg_server_proto_server_proto_msgTypes[390] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27611,7 +27743,7 @@ func (x *Runner_ODR) String() string { func (*Runner_ODR) ProtoMessage() {} func (x *Runner_ODR) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[387] + mi := &file_pkg_server_proto_server_proto_msgTypes[390] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27643,7 +27775,7 @@ type Runner_Local struct { func (x *Runner_Local) Reset() { *x = Runner_Local{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[388] + mi := &file_pkg_server_proto_server_proto_msgTypes[391] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27656,7 +27788,7 @@ func (x *Runner_Local) String() string { func (*Runner_Local) ProtoMessage() {} func (x *Runner_Local) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[388] + mi := &file_pkg_server_proto_server_proto_msgTypes[391] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27681,7 +27813,7 @@ type Runner_Remote struct { func (x *Runner_Remote) Reset() { *x = Runner_Remote{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[389] + mi := &file_pkg_server_proto_server_proto_msgTypes[392] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27694,7 +27826,7 @@ func (x *Runner_Remote) String() string { func (*Runner_Remote) ProtoMessage() {} func (x *Runner_Remote) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[389] + mi := &file_pkg_server_proto_server_proto_msgTypes[392] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27724,7 +27856,7 @@ type RunnerConfigRequest_Open struct { func (x *RunnerConfigRequest_Open) Reset() { *x = RunnerConfigRequest_Open{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[390] + mi := &file_pkg_server_proto_server_proto_msgTypes[393] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27737,7 +27869,7 @@ func (x *RunnerConfigRequest_Open) String() string { func (*RunnerConfigRequest_Open) ProtoMessage() {} func (x *RunnerConfigRequest_Open) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[390] + mi := &file_pkg_server_proto_server_proto_msgTypes[393] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27780,7 +27912,7 @@ type RunnerJobStreamRequest_Request struct { func (x *RunnerJobStreamRequest_Request) Reset() { *x = RunnerJobStreamRequest_Request{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[391] + mi := &file_pkg_server_proto_server_proto_msgTypes[394] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27793,7 +27925,7 @@ func (x *RunnerJobStreamRequest_Request) String() string { func (*RunnerJobStreamRequest_Request) ProtoMessage() {} func (x *RunnerJobStreamRequest_Request) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[391] + mi := &file_pkg_server_proto_server_proto_msgTypes[394] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27832,7 +27964,7 @@ type RunnerJobStreamRequest_Ack struct { func (x *RunnerJobStreamRequest_Ack) Reset() { *x = RunnerJobStreamRequest_Ack{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[392] + mi := &file_pkg_server_proto_server_proto_msgTypes[395] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27845,7 +27977,7 @@ func (x *RunnerJobStreamRequest_Ack) String() string { func (*RunnerJobStreamRequest_Ack) ProtoMessage() {} func (x *RunnerJobStreamRequest_Ack) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[392] + mi := &file_pkg_server_proto_server_proto_msgTypes[395] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27872,7 +28004,7 @@ type RunnerJobStreamRequest_Complete struct { func (x *RunnerJobStreamRequest_Complete) Reset() { *x = RunnerJobStreamRequest_Complete{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[393] + mi := &file_pkg_server_proto_server_proto_msgTypes[396] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27885,7 +28017,7 @@ func (x *RunnerJobStreamRequest_Complete) String() string { func (*RunnerJobStreamRequest_Complete) ProtoMessage() {} func (x *RunnerJobStreamRequest_Complete) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[393] + mi := &file_pkg_server_proto_server_proto_msgTypes[396] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27919,7 +28051,7 @@ type RunnerJobStreamRequest_Error struct { func (x *RunnerJobStreamRequest_Error) Reset() { *x = RunnerJobStreamRequest_Error{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[394] + mi := &file_pkg_server_proto_server_proto_msgTypes[397] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27932,7 +28064,7 @@ func (x *RunnerJobStreamRequest_Error) String() string { func (*RunnerJobStreamRequest_Error) ProtoMessage() {} func (x *RunnerJobStreamRequest_Error) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[394] + mi := &file_pkg_server_proto_server_proto_msgTypes[397] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -27964,7 +28096,7 @@ type RunnerJobStreamRequest_Heartbeat struct { func (x *RunnerJobStreamRequest_Heartbeat) Reset() { *x = RunnerJobStreamRequest_Heartbeat{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[395] + mi := &file_pkg_server_proto_server_proto_msgTypes[398] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -27977,7 +28109,7 @@ func (x *RunnerJobStreamRequest_Heartbeat) String() string { func (*RunnerJobStreamRequest_Heartbeat) ProtoMessage() {} func (x *RunnerJobStreamRequest_Heartbeat) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[395] + mi := &file_pkg_server_proto_server_proto_msgTypes[398] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28005,7 +28137,7 @@ type RunnerJobStreamRequest_ConfigLoad struct { func (x *RunnerJobStreamRequest_ConfigLoad) Reset() { *x = RunnerJobStreamRequest_ConfigLoad{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[396] + mi := &file_pkg_server_proto_server_proto_msgTypes[399] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28018,7 +28150,7 @@ func (x *RunnerJobStreamRequest_ConfigLoad) String() string { func (*RunnerJobStreamRequest_ConfigLoad) ProtoMessage() {} func (x *RunnerJobStreamRequest_ConfigLoad) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[396] + mi := &file_pkg_server_proto_server_proto_msgTypes[399] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28052,7 +28184,7 @@ type RunnerJobStreamRequest_VariableValuesSet struct { func (x *RunnerJobStreamRequest_VariableValuesSet) Reset() { *x = RunnerJobStreamRequest_VariableValuesSet{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[397] + mi := &file_pkg_server_proto_server_proto_msgTypes[400] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28065,7 +28197,7 @@ func (x *RunnerJobStreamRequest_VariableValuesSet) String() string { func (*RunnerJobStreamRequest_VariableValuesSet) ProtoMessage() {} func (x *RunnerJobStreamRequest_VariableValuesSet) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[397] + mi := &file_pkg_server_proto_server_proto_msgTypes[400] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28102,7 +28234,7 @@ type RunnerJobStreamResponse_JobAssignment struct { func (x *RunnerJobStreamResponse_JobAssignment) Reset() { *x = RunnerJobStreamResponse_JobAssignment{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[399] + mi := &file_pkg_server_proto_server_proto_msgTypes[402] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28115,7 +28247,7 @@ func (x *RunnerJobStreamResponse_JobAssignment) String() string { func (*RunnerJobStreamResponse_JobAssignment) ProtoMessage() {} func (x *RunnerJobStreamResponse_JobAssignment) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[399] + mi := &file_pkg_server_proto_server_proto_msgTypes[402] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28156,7 +28288,7 @@ type RunnerJobStreamResponse_JobCancel struct { func (x *RunnerJobStreamResponse_JobCancel) Reset() { *x = RunnerJobStreamResponse_JobCancel{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[400] + mi := &file_pkg_server_proto_server_proto_msgTypes[403] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28169,7 +28301,7 @@ func (x *RunnerJobStreamResponse_JobCancel) String() string { func (*RunnerJobStreamResponse_JobCancel) ProtoMessage() {} func (x *RunnerJobStreamResponse_JobCancel) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[400] + mi := &file_pkg_server_proto_server_proto_msgTypes[403] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28205,7 +28337,7 @@ type ServerConfig_AdvertiseAddr struct { func (x *ServerConfig_AdvertiseAddr) Reset() { *x = ServerConfig_AdvertiseAddr{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[401] + mi := &file_pkg_server_proto_server_proto_msgTypes[404] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28218,7 +28350,7 @@ func (x *ServerConfig_AdvertiseAddr) String() string { func (*ServerConfig_AdvertiseAddr) ProtoMessage() {} func (x *ServerConfig_AdvertiseAddr) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[401] + mi := &file_pkg_server_proto_server_proto_msgTypes[404] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28269,7 +28401,7 @@ type Hostname_Target struct { func (x *Hostname_Target) Reset() { *x = Hostname_Target{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[403] + mi := &file_pkg_server_proto_server_proto_msgTypes[406] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28282,7 +28414,7 @@ func (x *Hostname_Target) String() string { func (*Hostname_Target) ProtoMessage() {} func (x *Hostname_Target) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[403] + mi := &file_pkg_server_proto_server_proto_msgTypes[406] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28337,7 +28469,7 @@ type Hostname_TargetApp struct { func (x *Hostname_TargetApp) Reset() { *x = Hostname_TargetApp{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[404] + mi := &file_pkg_server_proto_server_proto_msgTypes[407] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28350,7 +28482,7 @@ func (x *Hostname_TargetApp) String() string { func (*Hostname_TargetApp) ProtoMessage() {} func (x *Hostname_TargetApp) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[404] + mi := &file_pkg_server_proto_server_proto_msgTypes[407] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28401,7 +28533,7 @@ type Build_Preload struct { func (x *Build_Preload) Reset() { *x = Build_Preload{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[406] + mi := &file_pkg_server_proto_server_proto_msgTypes[409] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28414,7 +28546,7 @@ func (x *Build_Preload) String() string { func (*Build_Preload) ProtoMessage() {} func (x *Build_Preload) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[406] + mi := &file_pkg_server_proto_server_proto_msgTypes[409] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28458,7 +28590,7 @@ type PushedArtifact_Preload struct { func (x *PushedArtifact_Preload) Reset() { *x = PushedArtifact_Preload{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[409] + mi := &file_pkg_server_proto_server_proto_msgTypes[412] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28471,7 +28603,7 @@ func (x *PushedArtifact_Preload) String() string { func (*PushedArtifact_Preload) ProtoMessage() {} func (x *PushedArtifact_Preload) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[409] + mi := &file_pkg_server_proto_server_proto_msgTypes[412] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28524,7 +28656,7 @@ type Deployment_Preload struct { func (x *Deployment_Preload) Reset() { *x = Deployment_Preload{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[411] + mi := &file_pkg_server_proto_server_proto_msgTypes[414] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28537,7 +28669,7 @@ func (x *Deployment_Preload) String() string { func (*Deployment_Preload) ProtoMessage() {} func (x *Deployment_Preload) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[411] + mi := &file_pkg_server_proto_server_proto_msgTypes[414] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28596,7 +28728,7 @@ type ListInstancesRequest_Application struct { func (x *ListInstancesRequest_Application) Reset() { *x = ListInstancesRequest_Application{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[412] + mi := &file_pkg_server_proto_server_proto_msgTypes[415] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28609,7 +28741,7 @@ func (x *ListInstancesRequest_Application) String() string { func (*ListInstancesRequest_Application) ProtoMessage() {} func (x *ListInstancesRequest_Application) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[412] + mi := &file_pkg_server_proto_server_proto_msgTypes[415] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28666,7 +28798,7 @@ type Release_Preload struct { func (x *Release_Preload) Reset() { *x = Release_Preload{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[414] + mi := &file_pkg_server_proto_server_proto_msgTypes[417] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28679,7 +28811,7 @@ func (x *Release_Preload) String() string { func (*Release_Preload) ProtoMessage() {} func (x *Release_Preload) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[414] + mi := &file_pkg_server_proto_server_proto_msgTypes[417] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28760,7 +28892,7 @@ type StatusReport_Resource struct { func (x *StatusReport_Resource) Reset() { *x = StatusReport_Resource{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[415] + mi := &file_pkg_server_proto_server_proto_msgTypes[418] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28773,7 +28905,7 @@ func (x *StatusReport_Resource) String() string { func (*StatusReport_Resource) ProtoMessage() {} func (x *StatusReport_Resource) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[415] + mi := &file_pkg_server_proto_server_proto_msgTypes[418] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28896,7 +29028,7 @@ type StatusReport_Health struct { func (x *StatusReport_Health) Reset() { *x = StatusReport_Health{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[416] + mi := &file_pkg_server_proto_server_proto_msgTypes[419] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28909,7 +29041,7 @@ func (x *StatusReport_Health) String() string { func (*StatusReport_Health) ProtoMessage() {} func (x *StatusReport_Health) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[416] + mi := &file_pkg_server_proto_server_proto_msgTypes[419] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -28965,7 +29097,7 @@ type GetLogStreamRequest_Application struct { func (x *GetLogStreamRequest_Application) Reset() { *x = GetLogStreamRequest_Application{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[417] + mi := &file_pkg_server_proto_server_proto_msgTypes[420] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -28978,7 +29110,7 @@ func (x *GetLogStreamRequest_Application) String() string { func (*GetLogStreamRequest_Application) ProtoMessage() {} func (x *GetLogStreamRequest_Application) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[417] + mi := &file_pkg_server_proto_server_proto_msgTypes[420] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29021,7 +29153,7 @@ type LogBatch_Entry struct { func (x *LogBatch_Entry) Reset() { *x = LogBatch_Entry{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[418] + mi := &file_pkg_server_proto_server_proto_msgTypes[421] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29034,7 +29166,7 @@ func (x *LogBatch_Entry) String() string { func (*LogBatch_Entry) ProtoMessage() {} func (x *LogBatch_Entry) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[418] + mi := &file_pkg_server_proto_server_proto_msgTypes[421] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29088,7 +29220,7 @@ type ConfigVar_DynamicVal struct { func (x *ConfigVar_DynamicVal) Reset() { *x = ConfigVar_DynamicVal{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[419] + mi := &file_pkg_server_proto_server_proto_msgTypes[422] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29101,7 +29233,7 @@ func (x *ConfigVar_DynamicVal) String() string { func (*ConfigVar_DynamicVal) ProtoMessage() {} func (x *ConfigVar_DynamicVal) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[419] + mi := &file_pkg_server_proto_server_proto_msgTypes[422] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29176,7 +29308,7 @@ type ConfigVar_Target struct { func (x *ConfigVar_Target) Reset() { *x = ConfigVar_Target{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[420] + mi := &file_pkg_server_proto_server_proto_msgTypes[423] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29189,7 +29321,7 @@ func (x *ConfigVar_Target) String() string { func (*ConfigVar_Target) ProtoMessage() {} func (x *ConfigVar_Target) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[420] + mi := &file_pkg_server_proto_server_proto_msgTypes[423] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29295,7 +29427,7 @@ type ExecStreamRequest_Start struct { func (x *ExecStreamRequest_Start) Reset() { *x = ExecStreamRequest_Start{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[424] + mi := &file_pkg_server_proto_server_proto_msgTypes[427] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29308,7 +29440,7 @@ func (x *ExecStreamRequest_Start) String() string { func (*ExecStreamRequest_Start) ProtoMessage() {} func (x *ExecStreamRequest_Start) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[424] + mi := &file_pkg_server_proto_server_proto_msgTypes[427] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29321,7 +29453,7 @@ func (x *ExecStreamRequest_Start) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamRequest_Start.ProtoReflect.Descriptor instead. func (*ExecStreamRequest_Start) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{172, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{175, 0} } func (m *ExecStreamRequest_Start) GetTarget() isExecStreamRequest_Start_Target { @@ -29391,7 +29523,7 @@ type ExecStreamRequest_Input struct { func (x *ExecStreamRequest_Input) Reset() { *x = ExecStreamRequest_Input{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[425] + mi := &file_pkg_server_proto_server_proto_msgTypes[428] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29404,7 +29536,7 @@ func (x *ExecStreamRequest_Input) String() string { func (*ExecStreamRequest_Input) ProtoMessage() {} func (x *ExecStreamRequest_Input) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[425] + mi := &file_pkg_server_proto_server_proto_msgTypes[428] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29417,7 +29549,7 @@ func (x *ExecStreamRequest_Input) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamRequest_Input.ProtoReflect.Descriptor instead. func (*ExecStreamRequest_Input) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{172, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{175, 1} } func (x *ExecStreamRequest_Input) GetData() []byte { @@ -29442,7 +29574,7 @@ type ExecStreamRequest_PTY struct { func (x *ExecStreamRequest_PTY) Reset() { *x = ExecStreamRequest_PTY{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[426] + mi := &file_pkg_server_proto_server_proto_msgTypes[429] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29455,7 +29587,7 @@ func (x *ExecStreamRequest_PTY) String() string { func (*ExecStreamRequest_PTY) ProtoMessage() {} func (x *ExecStreamRequest_PTY) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[426] + mi := &file_pkg_server_proto_server_proto_msgTypes[429] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29468,7 +29600,7 @@ func (x *ExecStreamRequest_PTY) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamRequest_PTY.ProtoReflect.Descriptor instead. func (*ExecStreamRequest_PTY) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{172, 2} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{175, 2} } func (x *ExecStreamRequest_PTY) GetEnable() bool { @@ -29506,7 +29638,7 @@ type ExecStreamRequest_WindowSize struct { func (x *ExecStreamRequest_WindowSize) Reset() { *x = ExecStreamRequest_WindowSize{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[427] + mi := &file_pkg_server_proto_server_proto_msgTypes[430] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29519,7 +29651,7 @@ func (x *ExecStreamRequest_WindowSize) String() string { func (*ExecStreamRequest_WindowSize) ProtoMessage() {} func (x *ExecStreamRequest_WindowSize) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[427] + mi := &file_pkg_server_proto_server_proto_msgTypes[430] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29532,7 +29664,7 @@ func (x *ExecStreamRequest_WindowSize) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamRequest_WindowSize.ProtoReflect.Descriptor instead. func (*ExecStreamRequest_WindowSize) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{172, 3} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{175, 3} } func (x *ExecStreamRequest_WindowSize) GetRows() int32 { @@ -29572,7 +29704,7 @@ type ExecStreamResponse_Open struct { func (x *ExecStreamResponse_Open) Reset() { *x = ExecStreamResponse_Open{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[428] + mi := &file_pkg_server_proto_server_proto_msgTypes[431] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29585,7 +29717,7 @@ func (x *ExecStreamResponse_Open) String() string { func (*ExecStreamResponse_Open) ProtoMessage() {} func (x *ExecStreamResponse_Open) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[428] + mi := &file_pkg_server_proto_server_proto_msgTypes[431] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29598,7 +29730,7 @@ func (x *ExecStreamResponse_Open) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamResponse_Open.ProtoReflect.Descriptor instead. func (*ExecStreamResponse_Open) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{173, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176, 0} } type ExecStreamResponse_Exit struct { @@ -29612,7 +29744,7 @@ type ExecStreamResponse_Exit struct { func (x *ExecStreamResponse_Exit) Reset() { *x = ExecStreamResponse_Exit{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[429] + mi := &file_pkg_server_proto_server_proto_msgTypes[432] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29625,7 +29757,7 @@ func (x *ExecStreamResponse_Exit) String() string { func (*ExecStreamResponse_Exit) ProtoMessage() {} func (x *ExecStreamResponse_Exit) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[429] + mi := &file_pkg_server_proto_server_proto_msgTypes[432] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29638,7 +29770,7 @@ func (x *ExecStreamResponse_Exit) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamResponse_Exit.ProtoReflect.Descriptor instead. func (*ExecStreamResponse_Exit) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{173, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176, 1} } func (x *ExecStreamResponse_Exit) GetCode() int32 { @@ -29660,7 +29792,7 @@ type ExecStreamResponse_Output struct { func (x *ExecStreamResponse_Output) Reset() { *x = ExecStreamResponse_Output{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[430] + mi := &file_pkg_server_proto_server_proto_msgTypes[433] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29673,7 +29805,7 @@ func (x *ExecStreamResponse_Output) String() string { func (*ExecStreamResponse_Output) ProtoMessage() {} func (x *ExecStreamResponse_Output) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[430] + mi := &file_pkg_server_proto_server_proto_msgTypes[433] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29686,7 +29818,7 @@ func (x *ExecStreamResponse_Output) ProtoReflect() protoreflect.Message { // Deprecated: Use ExecStreamResponse_Output.ProtoReflect.Descriptor instead. func (*ExecStreamResponse_Output) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{173, 2} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176, 2} } func (x *ExecStreamResponse_Output) GetChannel() ExecStreamResponse_Output_Channel { @@ -29716,7 +29848,7 @@ type EntrypointConfig_Exec struct { func (x *EntrypointConfig_Exec) Reset() { *x = EntrypointConfig_Exec{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[431] + mi := &file_pkg_server_proto_server_proto_msgTypes[434] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29729,7 +29861,7 @@ func (x *EntrypointConfig_Exec) String() string { func (*EntrypointConfig_Exec) ProtoMessage() {} func (x *EntrypointConfig_Exec) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[431] + mi := &file_pkg_server_proto_server_proto_msgTypes[434] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29742,7 +29874,7 @@ func (x *EntrypointConfig_Exec) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointConfig_Exec.ProtoReflect.Descriptor instead. func (*EntrypointConfig_Exec) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{179, 0} } func (x *EntrypointConfig_Exec) GetIndex() int64 { @@ -29781,7 +29913,7 @@ type EntrypointConfig_URLService struct { func (x *EntrypointConfig_URLService) Reset() { *x = EntrypointConfig_URLService{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[432] + mi := &file_pkg_server_proto_server_proto_msgTypes[435] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29794,7 +29926,7 @@ func (x *EntrypointConfig_URLService) String() string { func (*EntrypointConfig_URLService) ProtoMessage() {} func (x *EntrypointConfig_URLService) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[432] + mi := &file_pkg_server_proto_server_proto_msgTypes[435] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29807,7 +29939,7 @@ func (x *EntrypointConfig_URLService) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointConfig_URLService.ProtoReflect.Descriptor instead. func (*EntrypointConfig_URLService) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{179, 1} } func (x *EntrypointConfig_URLService) GetControlAddr() string { @@ -29845,7 +29977,7 @@ type EntrypointConfig_DeploymentInfo struct { func (x *EntrypointConfig_DeploymentInfo) Reset() { *x = EntrypointConfig_DeploymentInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[433] + mi := &file_pkg_server_proto_server_proto_msgTypes[436] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29858,7 +29990,7 @@ func (x *EntrypointConfig_DeploymentInfo) String() string { func (*EntrypointConfig_DeploymentInfo) ProtoMessage() {} func (x *EntrypointConfig_DeploymentInfo) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[433] + mi := &file_pkg_server_proto_server_proto_msgTypes[436] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29871,7 +30003,7 @@ func (x *EntrypointConfig_DeploymentInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointConfig_DeploymentInfo.ProtoReflect.Descriptor instead. func (*EntrypointConfig_DeploymentInfo) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{176, 2} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{179, 2} } func (x *EntrypointConfig_DeploymentInfo) GetComponent() *Component { @@ -29900,7 +30032,7 @@ type EntrypointExecRequest_Open struct { func (x *EntrypointExecRequest_Open) Reset() { *x = EntrypointExecRequest_Open{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[435] + mi := &file_pkg_server_proto_server_proto_msgTypes[438] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29913,7 +30045,7 @@ func (x *EntrypointExecRequest_Open) String() string { func (*EntrypointExecRequest_Open) ProtoMessage() {} func (x *EntrypointExecRequest_Open) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[435] + mi := &file_pkg_server_proto_server_proto_msgTypes[438] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29926,7 +30058,7 @@ func (x *EntrypointExecRequest_Open) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointExecRequest_Open.ProtoReflect.Descriptor instead. func (*EntrypointExecRequest_Open) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{178, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{181, 0} } func (x *EntrypointExecRequest_Open) GetInstanceId() string { @@ -29954,7 +30086,7 @@ type EntrypointExecRequest_Exit struct { func (x *EntrypointExecRequest_Exit) Reset() { *x = EntrypointExecRequest_Exit{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[436] + mi := &file_pkg_server_proto_server_proto_msgTypes[439] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -29967,7 +30099,7 @@ func (x *EntrypointExecRequest_Exit) String() string { func (*EntrypointExecRequest_Exit) ProtoMessage() {} func (x *EntrypointExecRequest_Exit) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[436] + mi := &file_pkg_server_proto_server_proto_msgTypes[439] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -29980,7 +30112,7 @@ func (x *EntrypointExecRequest_Exit) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointExecRequest_Exit.ProtoReflect.Descriptor instead. func (*EntrypointExecRequest_Exit) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{178, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{181, 1} } func (x *EntrypointExecRequest_Exit) GetCode() int32 { @@ -30002,7 +30134,7 @@ type EntrypointExecRequest_Output struct { func (x *EntrypointExecRequest_Output) Reset() { *x = EntrypointExecRequest_Output{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[437] + mi := &file_pkg_server_proto_server_proto_msgTypes[440] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30015,7 +30147,7 @@ func (x *EntrypointExecRequest_Output) String() string { func (*EntrypointExecRequest_Output) ProtoMessage() {} func (x *EntrypointExecRequest_Output) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[437] + mi := &file_pkg_server_proto_server_proto_msgTypes[440] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30028,7 +30160,7 @@ func (x *EntrypointExecRequest_Output) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointExecRequest_Output.ProtoReflect.Descriptor instead. func (*EntrypointExecRequest_Output) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{178, 2} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{181, 2} } func (x *EntrypointExecRequest_Output) GetChannel() EntrypointExecRequest_Output_Channel { @@ -30056,7 +30188,7 @@ type EntrypointExecRequest_Error struct { func (x *EntrypointExecRequest_Error) Reset() { *x = EntrypointExecRequest_Error{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[438] + mi := &file_pkg_server_proto_server_proto_msgTypes[441] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30069,7 +30201,7 @@ func (x *EntrypointExecRequest_Error) String() string { func (*EntrypointExecRequest_Error) ProtoMessage() {} func (x *EntrypointExecRequest_Error) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[438] + mi := &file_pkg_server_proto_server_proto_msgTypes[441] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30082,7 +30214,7 @@ func (x *EntrypointExecRequest_Error) ProtoReflect() protoreflect.Message { // Deprecated: Use EntrypointExecRequest_Error.ProtoReflect.Descriptor instead. func (*EntrypointExecRequest_Error) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{178, 3} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{181, 3} } func (x *EntrypointExecRequest_Error) GetError() *status.Status { @@ -30129,7 +30261,7 @@ type Pipeline_Step struct { func (x *Pipeline_Step) Reset() { *x = Pipeline_Step{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[440] + mi := &file_pkg_server_proto_server_proto_msgTypes[443] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30142,7 +30274,7 @@ func (x *Pipeline_Step) String() string { func (*Pipeline_Step) ProtoMessage() {} func (x *Pipeline_Step) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[440] + mi := &file_pkg_server_proto_server_proto_msgTypes[443] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30155,7 +30287,7 @@ func (x *Pipeline_Step) ProtoReflect() protoreflect.Message { // Deprecated: Use Pipeline_Step.ProtoReflect.Descriptor instead. func (*Pipeline_Step) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183, 1} } func (x *Pipeline_Step) GetName() string { @@ -30298,7 +30430,7 @@ type Pipeline_Step_Exec struct { func (x *Pipeline_Step_Exec) Reset() { *x = Pipeline_Step_Exec{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[441] + mi := &file_pkg_server_proto_server_proto_msgTypes[444] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30311,7 +30443,7 @@ func (x *Pipeline_Step_Exec) String() string { func (*Pipeline_Step_Exec) ProtoMessage() {} func (x *Pipeline_Step_Exec) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[441] + mi := &file_pkg_server_proto_server_proto_msgTypes[444] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30324,7 +30456,7 @@ func (x *Pipeline_Step_Exec) ProtoReflect() protoreflect.Message { // Deprecated: Use Pipeline_Step_Exec.ProtoReflect.Descriptor instead. func (*Pipeline_Step_Exec) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180, 1, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183, 1, 0} } func (x *Pipeline_Step_Exec) GetImage() string { @@ -30362,7 +30494,7 @@ type Pipeline_Step_Build struct { func (x *Pipeline_Step_Build) Reset() { *x = Pipeline_Step_Build{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[442] + mi := &file_pkg_server_proto_server_proto_msgTypes[445] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30375,7 +30507,7 @@ func (x *Pipeline_Step_Build) String() string { func (*Pipeline_Step_Build) ProtoMessage() {} func (x *Pipeline_Step_Build) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[442] + mi := &file_pkg_server_proto_server_proto_msgTypes[445] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30388,7 +30520,7 @@ func (x *Pipeline_Step_Build) ProtoReflect() protoreflect.Message { // Deprecated: Use Pipeline_Step_Build.ProtoReflect.Descriptor instead. func (*Pipeline_Step_Build) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180, 1, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183, 1, 1} } func (x *Pipeline_Step_Build) GetDisablePush() bool { @@ -30412,7 +30544,7 @@ type Pipeline_Step_Deploy struct { func (x *Pipeline_Step_Deploy) Reset() { *x = Pipeline_Step_Deploy{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[443] + mi := &file_pkg_server_proto_server_proto_msgTypes[446] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30425,7 +30557,7 @@ func (x *Pipeline_Step_Deploy) String() string { func (*Pipeline_Step_Deploy) ProtoMessage() {} func (x *Pipeline_Step_Deploy) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[443] + mi := &file_pkg_server_proto_server_proto_msgTypes[446] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30438,7 +30570,7 @@ func (x *Pipeline_Step_Deploy) ProtoReflect() protoreflect.Message { // Deprecated: Use Pipeline_Step_Deploy.ProtoReflect.Descriptor instead. func (*Pipeline_Step_Deploy) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180, 1, 2} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183, 1, 2} } func (x *Pipeline_Step_Deploy) GetRelease() bool { @@ -30465,7 +30597,7 @@ type Pipeline_Step_Release struct { func (x *Pipeline_Step_Release) Reset() { *x = Pipeline_Step_Release{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[444] + mi := &file_pkg_server_proto_server_proto_msgTypes[447] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30478,7 +30610,7 @@ func (x *Pipeline_Step_Release) String() string { func (*Pipeline_Step_Release) ProtoMessage() {} func (x *Pipeline_Step_Release) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[444] + mi := &file_pkg_server_proto_server_proto_msgTypes[447] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30491,7 +30623,7 @@ func (x *Pipeline_Step_Release) ProtoReflect() protoreflect.Message { // Deprecated: Use Pipeline_Step_Release.ProtoReflect.Descriptor instead. func (*Pipeline_Step_Release) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180, 1, 3} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183, 1, 3} } func (x *Pipeline_Step_Release) GetDeployment() *Ref_Deployment { @@ -30538,7 +30670,7 @@ type Pipeline_Step_Up struct { func (x *Pipeline_Step_Up) Reset() { *x = Pipeline_Step_Up{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[445] + mi := &file_pkg_server_proto_server_proto_msgTypes[448] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30551,7 +30683,7 @@ func (x *Pipeline_Step_Up) String() string { func (*Pipeline_Step_Up) ProtoMessage() {} func (x *Pipeline_Step_Up) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[445] + mi := &file_pkg_server_proto_server_proto_msgTypes[448] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30564,7 +30696,7 @@ func (x *Pipeline_Step_Up) ProtoReflect() protoreflect.Message { // Deprecated: Use Pipeline_Step_Up.ProtoReflect.Descriptor instead. func (*Pipeline_Step_Up) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180, 1, 4} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183, 1, 4} } func (x *Pipeline_Step_Up) GetPrune() bool { @@ -30599,7 +30731,7 @@ type Pipeline_Step_Pipeline struct { func (x *Pipeline_Step_Pipeline) Reset() { *x = Pipeline_Step_Pipeline{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[446] + mi := &file_pkg_server_proto_server_proto_msgTypes[449] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30612,7 +30744,7 @@ func (x *Pipeline_Step_Pipeline) String() string { func (*Pipeline_Step_Pipeline) ProtoMessage() {} func (x *Pipeline_Step_Pipeline) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[446] + mi := &file_pkg_server_proto_server_proto_msgTypes[449] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30625,7 +30757,7 @@ func (x *Pipeline_Step_Pipeline) ProtoReflect() protoreflect.Message { // Deprecated: Use Pipeline_Step_Pipeline.ProtoReflect.Descriptor instead. func (*Pipeline_Step_Pipeline) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{180, 1, 5} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{183, 1, 5} } func (x *Pipeline_Step_Pipeline) GetRef() *Ref_Pipeline { @@ -30649,7 +30781,7 @@ type GetPipelineResponse_Graph struct { func (x *GetPipelineResponse_Graph) Reset() { *x = GetPipelineResponse_Graph{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[447] + mi := &file_pkg_server_proto_server_proto_msgTypes[450] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30662,7 +30794,7 @@ func (x *GetPipelineResponse_Graph) String() string { func (*GetPipelineResponse_Graph) ProtoMessage() {} func (x *GetPipelineResponse_Graph) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[447] + mi := &file_pkg_server_proto_server_proto_msgTypes[450] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30675,7 +30807,7 @@ func (x *GetPipelineResponse_Graph) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPipelineResponse_Graph.ProtoReflect.Descriptor instead. func (*GetPipelineResponse_Graph) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{185, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{188, 0} } func (x *GetPipelineResponse_Graph) GetContent() []byte { @@ -30712,7 +30844,7 @@ type ProjectTemplate_WaypointProject struct { func (x *ProjectTemplate_WaypointProject) Reset() { *x = ProjectTemplate_WaypointProject{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[450] + mi := &file_pkg_server_proto_server_proto_msgTypes[453] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30725,7 +30857,7 @@ func (x *ProjectTemplate_WaypointProject) String() string { func (*ProjectTemplate_WaypointProject) ProtoMessage() {} func (x *ProjectTemplate_WaypointProject) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[450] + mi := &file_pkg_server_proto_server_proto_msgTypes[453] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30738,7 +30870,7 @@ func (x *ProjectTemplate_WaypointProject) ProtoReflect() protoreflect.Message { // Deprecated: Use ProjectTemplate_WaypointProject.ProtoReflect.Descriptor instead. func (*ProjectTemplate_WaypointProject) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{206, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{209, 0} } func (x *ProjectTemplate_WaypointProject) GetWaypointHclTemplate() []byte { @@ -30762,7 +30894,7 @@ type ProjectTemplate_TerraformNocodeModule struct { func (x *ProjectTemplate_TerraformNocodeModule) Reset() { *x = ProjectTemplate_TerraformNocodeModule{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[451] + mi := &file_pkg_server_proto_server_proto_msgTypes[454] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30775,7 +30907,7 @@ func (x *ProjectTemplate_TerraformNocodeModule) String() string { func (*ProjectTemplate_TerraformNocodeModule) ProtoMessage() {} func (x *ProjectTemplate_TerraformNocodeModule) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[451] + mi := &file_pkg_server_proto_server_proto_msgTypes[454] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30788,7 +30920,7 @@ func (x *ProjectTemplate_TerraformNocodeModule) ProtoReflect() protoreflect.Mess // Deprecated: Use ProjectTemplate_TerraformNocodeModule.ProtoReflect.Descriptor instead. func (*ProjectTemplate_TerraformNocodeModule) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{206, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{209, 1} } func (x *ProjectTemplate_TerraformNocodeModule) GetSource() string { @@ -30824,7 +30956,7 @@ type TokenTransport_OAuthCredentials struct { func (x *TokenTransport_OAuthCredentials) Reset() { *x = TokenTransport_OAuthCredentials{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[453] + mi := &file_pkg_server_proto_server_proto_msgTypes[456] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30837,7 +30969,7 @@ func (x *TokenTransport_OAuthCredentials) String() string { func (*TokenTransport_OAuthCredentials) ProtoMessage() {} func (x *TokenTransport_OAuthCredentials) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[453] + mi := &file_pkg_server_proto_server_proto_msgTypes[456] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30850,7 +30982,7 @@ func (x *TokenTransport_OAuthCredentials) ProtoReflect() protoreflect.Message { // Deprecated: Use TokenTransport_OAuthCredentials.ProtoReflect.Descriptor instead. func (*TokenTransport_OAuthCredentials) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{211, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{214, 1} } func (x *TokenTransport_OAuthCredentials) GetUrl() string { @@ -30892,7 +31024,7 @@ type Token_Login struct { func (x *Token_Login) Reset() { *x = Token_Login{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[454] + mi := &file_pkg_server_proto_server_proto_msgTypes[457] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30905,7 +31037,7 @@ func (x *Token_Login) String() string { func (*Token_Login) ProtoMessage() {} func (x *Token_Login) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[454] + mi := &file_pkg_server_proto_server_proto_msgTypes[457] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30918,7 +31050,7 @@ func (x *Token_Login) ProtoReflect() protoreflect.Message { // Deprecated: Use Token_Login.ProtoReflect.Descriptor instead. func (*Token_Login) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{212, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{215, 0} } func (x *Token_Login) GetUserId() string { @@ -30953,7 +31085,7 @@ type Token_Runner struct { func (x *Token_Runner) Reset() { *x = Token_Runner{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[455] + mi := &file_pkg_server_proto_server_proto_msgTypes[458] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -30966,7 +31098,7 @@ func (x *Token_Runner) String() string { func (*Token_Runner) ProtoMessage() {} func (x *Token_Runner) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[455] + mi := &file_pkg_server_proto_server_proto_msgTypes[458] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -30979,7 +31111,7 @@ func (x *Token_Runner) ProtoReflect() protoreflect.Message { // Deprecated: Use Token_Runner.ProtoReflect.Descriptor instead. func (*Token_Runner) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{212, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{215, 1} } func (x *Token_Runner) GetId() string { @@ -31017,7 +31149,7 @@ type Token_Invite struct { func (x *Token_Invite) Reset() { *x = Token_Invite{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[456] + mi := &file_pkg_server_proto_server_proto_msgTypes[459] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31030,7 +31162,7 @@ func (x *Token_Invite) String() string { func (*Token_Invite) ProtoMessage() {} func (x *Token_Invite) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[456] + mi := &file_pkg_server_proto_server_proto_msgTypes[459] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31043,7 +31175,7 @@ func (x *Token_Invite) ProtoReflect() protoreflect.Message { // Deprecated: Use Token_Invite.ProtoReflect.Descriptor instead. func (*Token_Invite) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{212, 2} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{215, 2} } func (x *Token_Invite) GetFromUserId() string { @@ -31079,7 +31211,7 @@ type Token_Entrypoint struct { func (x *Token_Entrypoint) Reset() { *x = Token_Entrypoint{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[457] + mi := &file_pkg_server_proto_server_proto_msgTypes[460] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31092,7 +31224,7 @@ func (x *Token_Entrypoint) String() string { func (*Token_Entrypoint) ProtoMessage() {} func (x *Token_Entrypoint) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[457] + mi := &file_pkg_server_proto_server_proto_msgTypes[460] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31105,7 +31237,7 @@ func (x *Token_Entrypoint) ProtoReflect() protoreflect.Message { // Deprecated: Use Token_Entrypoint.ProtoReflect.Descriptor instead. func (*Token_Entrypoint) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{212, 3} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{215, 3} } func (x *Token_Entrypoint) GetDeploymentId() string { @@ -31130,7 +31262,7 @@ type Token_Trigger struct { func (x *Token_Trigger) Reset() { *x = Token_Trigger{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[458] + mi := &file_pkg_server_proto_server_proto_msgTypes[461] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31143,7 +31275,7 @@ func (x *Token_Trigger) String() string { func (*Token_Trigger) ProtoMessage() {} func (x *Token_Trigger) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[458] + mi := &file_pkg_server_proto_server_proto_msgTypes[461] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31156,7 +31288,7 @@ func (x *Token_Trigger) ProtoReflect() protoreflect.Message { // Deprecated: Use Token_Trigger.ProtoReflect.Descriptor instead. func (*Token_Trigger) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{212, 4} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{215, 4} } func (x *Token_Trigger) GetFromUserId() string { @@ -31180,7 +31312,7 @@ type Token_Invite_Signup struct { func (x *Token_Invite_Signup) Reset() { *x = Token_Invite_Signup{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[459] + mi := &file_pkg_server_proto_server_proto_msgTypes[462] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31193,7 +31325,7 @@ func (x *Token_Invite_Signup) String() string { func (*Token_Invite_Signup) ProtoMessage() {} func (x *Token_Invite_Signup) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[459] + mi := &file_pkg_server_proto_server_proto_msgTypes[462] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31206,7 +31338,7 @@ func (x *Token_Invite_Signup) ProtoReflect() protoreflect.Message { // Deprecated: Use Token_Invite_Signup.ProtoReflect.Descriptor instead. func (*Token_Invite_Signup) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{212, 2, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{215, 2, 0} } func (x *Token_Invite_Signup) GetInitialUsername() string { @@ -31226,7 +31358,7 @@ type CreateSnapshotResponse_Open struct { func (x *CreateSnapshotResponse_Open) Reset() { *x = CreateSnapshotResponse_Open{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[461] + mi := &file_pkg_server_proto_server_proto_msgTypes[464] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31239,7 +31371,7 @@ func (x *CreateSnapshotResponse_Open) String() string { func (*CreateSnapshotResponse_Open) ProtoMessage() {} func (x *CreateSnapshotResponse_Open) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[461] + mi := &file_pkg_server_proto_server_proto_msgTypes[464] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31252,7 +31384,7 @@ func (x *CreateSnapshotResponse_Open) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateSnapshotResponse_Open.ProtoReflect.Descriptor instead. func (*CreateSnapshotResponse_Open) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{221, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{224, 0} } type RestoreSnapshotRequest_Open struct { @@ -31271,7 +31403,7 @@ type RestoreSnapshotRequest_Open struct { func (x *RestoreSnapshotRequest_Open) Reset() { *x = RestoreSnapshotRequest_Open{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[462] + mi := &file_pkg_server_proto_server_proto_msgTypes[465] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31284,7 +31416,7 @@ func (x *RestoreSnapshotRequest_Open) String() string { func (*RestoreSnapshotRequest_Open) ProtoMessage() {} func (x *RestoreSnapshotRequest_Open) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[462] + mi := &file_pkg_server_proto_server_proto_msgTypes[465] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31297,7 +31429,7 @@ func (x *RestoreSnapshotRequest_Open) ProtoReflect() protoreflect.Message { // Deprecated: Use RestoreSnapshotRequest_Open.ProtoReflect.Descriptor instead. func (*RestoreSnapshotRequest_Open) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{222, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{225, 0} } func (x *RestoreSnapshotRequest_Open) GetExit() bool { @@ -31324,7 +31456,7 @@ type Snapshot_Header struct { func (x *Snapshot_Header) Reset() { *x = Snapshot_Header{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[463] + mi := &file_pkg_server_proto_server_proto_msgTypes[466] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31337,7 +31469,7 @@ func (x *Snapshot_Header) String() string { func (*Snapshot_Header) ProtoMessage() {} func (x *Snapshot_Header) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[463] + mi := &file_pkg_server_proto_server_proto_msgTypes[466] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31350,7 +31482,7 @@ func (x *Snapshot_Header) ProtoReflect() protoreflect.Message { // Deprecated: Use Snapshot_Header.ProtoReflect.Descriptor instead. func (*Snapshot_Header) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{223, 0} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{226, 0} } func (x *Snapshot_Header) GetVersion() *VersionInfo { @@ -31386,7 +31518,7 @@ type Snapshot_Trailer struct { func (x *Snapshot_Trailer) Reset() { *x = Snapshot_Trailer{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[464] + mi := &file_pkg_server_proto_server_proto_msgTypes[467] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31399,7 +31531,7 @@ func (x *Snapshot_Trailer) String() string { func (*Snapshot_Trailer) ProtoMessage() {} func (x *Snapshot_Trailer) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[464] + mi := &file_pkg_server_proto_server_proto_msgTypes[467] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31412,7 +31544,7 @@ func (x *Snapshot_Trailer) ProtoReflect() protoreflect.Message { // Deprecated: Use Snapshot_Trailer.ProtoReflect.Descriptor instead. func (*Snapshot_Trailer) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{223, 1} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{226, 1} } func (m *Snapshot_Trailer) GetChecksum() isSnapshot_Trailer_Checksum { @@ -31463,7 +31595,7 @@ type Snapshot_BoltChunk struct { func (x *Snapshot_BoltChunk) Reset() { *x = Snapshot_BoltChunk{} if protoimpl.UnsafeEnabled { - mi := &file_pkg_server_proto_server_proto_msgTypes[465] + mi := &file_pkg_server_proto_server_proto_msgTypes[468] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -31476,7 +31608,7 @@ func (x *Snapshot_BoltChunk) String() string { func (*Snapshot_BoltChunk) ProtoMessage() {} func (x *Snapshot_BoltChunk) ProtoReflect() protoreflect.Message { - mi := &file_pkg_server_proto_server_proto_msgTypes[465] + mi := &file_pkg_server_proto_server_proto_msgTypes[468] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -31489,7 +31621,7 @@ func (x *Snapshot_BoltChunk) ProtoReflect() protoreflect.Message { // Deprecated: Use Snapshot_BoltChunk.ProtoReflect.Descriptor instead. func (*Snapshot_BoltChunk) Descriptor() ([]byte, []int) { - return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{223, 2} + return file_pkg_server_proto_server_proto_rawDescGZIP(), []int{226, 2} } func (x *Snapshot_BoltChunk) GetBucket() string { @@ -35067,70 +35199,83 @@ var file_pkg_server_proto_server_proto_rawDesc = []byte{ 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x56, 0x61, 0x72, 0x52, 0x09, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0x13, 0x0a, 0x11, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xb9, 0x03, 0x0a, - 0x10, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x47, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x12, 0x47, 0x0a, 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, - 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, - 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0b, 0x61, - 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x07, 0x70, 0x72, - 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x68, 0x61, - 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, - 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x48, 0x00, 0x52, 0x07, - 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x38, 0x0a, 0x06, 0x72, 0x75, 0x6e, 0x6e, 0x65, - 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, + 0x67, 0x53, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x52, 0x0a, 0x13, + 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x12, 0x3b, 0x0a, 0x09, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, + 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, + 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x56, 0x61, 0x72, 0x52, 0x09, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, + 0x22, 0x16, 0x0a, 0x14, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xb9, 0x03, 0x0a, 0x10, 0x43, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 0x47, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x47, 0x0a, + 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, + 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x41, 0x70, 0x70, 0x6c, + 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x69, + 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, + 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, - 0x2e, 0x52, 0x75, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x52, 0x06, 0x72, 0x75, 0x6e, 0x6e, 0x65, - 0x72, 0x12, 0x3f, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, - 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x57, 0x6f, - 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, - 0x63, 0x65, 0x12, 0x48, 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x06, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, - 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x47, 0x65, - 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, - 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x16, 0x0a, 0x06, - 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x72, - 0x65, 0x66, 0x69, 0x78, 0x1a, 0x39, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, - 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, - 0x07, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x22, 0x50, 0x0a, 0x11, 0x43, 0x6f, 0x6e, 0x66, - 0x69, 0x67, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3b, 0x0a, - 0x09, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x1d, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, - 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x56, 0x61, 0x72, 0x52, - 0x09, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0xd9, 0x03, 0x0a, 0x0c, 0x43, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, - 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x65, 0x6c, - 0x65, 0x74, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x18, 0x32, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, - 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x47, 0x6c, 0x6f, - 0x62, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x06, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x12, 0x3b, 0x0a, - 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, + 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x48, 0x00, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, + 0x65, 0x63, 0x74, 0x12, 0x38, 0x0a, 0x06, 0x72, 0x75, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x04, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, + 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x52, 0x75, 0x6e, + 0x6e, 0x65, 0x72, 0x49, 0x64, 0x52, 0x06, 0x72, 0x75, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x3f, 0x0a, + 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x21, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, + 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, + 0x61, 0x63, 0x65, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x48, + 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, - 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x48, - 0x00, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x47, 0x0a, 0x0b, 0x61, 0x70, - 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x34, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x23, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, - 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x3f, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, - 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, - 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, - 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x73, - 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x44, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, - 0x69, 0x67, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, - 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, - 0x0a, 0x04, 0x68, 0x61, 0x73, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x61, - 0x73, 0x68, 0x1a, 0x39, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x6e, 0x74, 0x72, - 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, - 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x07, 0x0a, - 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x22, 0x5f, 0x0a, 0x16, 0x53, 0x65, 0x74, 0x43, 0x6f, 0x6e, + 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x47, 0x65, 0x74, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, + 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x72, 0x65, 0x66, + 0x69, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78, + 0x1a, 0x39, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, + 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, + 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x73, + 0x63, 0x6f, 0x70, 0x65, 0x22, 0x50, 0x0a, 0x11, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x47, 0x65, + 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3b, 0x0a, 0x09, 0x76, 0x61, 0x72, + 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x68, + 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, + 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x56, 0x61, 0x72, 0x52, 0x09, 0x76, 0x61, 0x72, + 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0xd9, 0x03, 0x0a, 0x0c, 0x43, 0x6f, 0x6e, 0x66, 0x69, + 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x6c, 0x65, 0x74, + 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, + 0x38, 0x0a, 0x06, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x18, 0x32, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x1e, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, + 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x48, + 0x00, 0x52, 0x06, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x12, 0x3b, 0x0a, 0x07, 0x70, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x68, 0x61, 0x73, + 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, + 0x52, 0x65, 0x66, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x48, 0x00, 0x52, 0x07, 0x70, + 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x47, 0x0a, 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x34, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x68, 0x61, + 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, + 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x48, 0x00, 0x52, 0x0b, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x3f, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, + 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65, 0x66, 0x2e, 0x57, 0x6f, 0x72, 0x6b, + 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, + 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, + 0x74, 0x79, 0x70, 0x65, 0x12, 0x44, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, + 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x6e, 0x74, + 0x72, 0x79, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x61, + 0x73, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x68, 0x61, 0x73, 0x68, 0x1a, 0x39, + 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, + 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, + 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, + 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x73, 0x63, 0x6f, + 0x70, 0x65, 0x22, 0x5f, 0x0a, 0x16, 0x53, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x45, 0x0a, 0x0d, + 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, + 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x22, 0x62, 0x0a, 0x19, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x45, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, @@ -35973,7 +36118,7 @@ var file_pkg_server_proto_server_proto_rawDesc = []byte{ 0x55, 0x54, 0x45, 0x52, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x10, 0x05, 0x12, 0x0a, 0x0a, 0x06, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x10, 0x06, 0x12, 0x0c, 0x0a, 0x08, 0x46, 0x55, 0x4e, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x07, 0x12, 0x0b, 0x0a, 0x07, - 0x53, 0x54, 0x4f, 0x52, 0x41, 0x47, 0x45, 0x10, 0x08, 0x32, 0xbe, 0x5d, 0x0a, 0x08, 0x57, 0x61, + 0x53, 0x54, 0x4f, 0x52, 0x41, 0x47, 0x45, 0x10, 0x08, 0x32, 0xfe, 0x5e, 0x0a, 0x08, 0x57, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x54, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, @@ -36226,15 +36371,27 @@ var file_pkg_server_proto_server_proto_rawDesc = []byte{ 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x65, 0x74, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x43, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x24, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, - 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x47, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x68, 0x61, - 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, - 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x55, 0x0a, 0x0f, 0x53, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x2a, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, - 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x53, 0x65, 0x74, 0x43, 0x6f, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x61, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x65, + 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x27, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, + 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x28, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, + 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x44, 0x65, 0x6c, + 0x65, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, 0x09, 0x47, + 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x24, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, + 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x47, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, + 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, + 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x0f, 0x53, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x2a, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, + 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x53, 0x65, + 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x5b, 0x0a, 0x12, + 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x12, 0x2d, 0x2e, 0x68, 0x61, 0x73, 0x68, 0x69, 0x63, 0x6f, 0x72, 0x70, 0x2e, 0x77, + 0x61, 0x79, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x6a, 0x0a, 0x0f, 0x47, 0x65, 0x74, @@ -36739,7 +36896,7 @@ func file_pkg_server_proto_server_proto_rawDescGZIP() []byte { } var file_pkg_server_proto_server_proto_enumTypes = make([]protoimpl.EnumInfo, 29) -var file_pkg_server_proto_server_proto_msgTypes = make([]protoimpl.MessageInfo, 467) +var file_pkg_server_proto_server_proto_msgTypes = make([]protoimpl.MessageInfo, 470) var file_pkg_server_proto_server_proto_goTypes = []interface{}{ (ResourceCategoryDisplayHint)(0), // 0: hashicorp.waypoint.ResourceCategoryDisplayHint (UI_PipelineRunTreeNode_State)(0), // 1: hashicorp.waypoint.UI.PipelineRunTreeNode.State @@ -36936,1263 +37093,1272 @@ var file_pkg_server_proto_server_proto_goTypes = []interface{}{ (*ConfigVar)(nil), // 192: hashicorp.waypoint.ConfigVar (*ConfigSetRequest)(nil), // 193: hashicorp.waypoint.ConfigSetRequest (*ConfigSetResponse)(nil), // 194: hashicorp.waypoint.ConfigSetResponse - (*ConfigGetRequest)(nil), // 195: hashicorp.waypoint.ConfigGetRequest - (*ConfigGetResponse)(nil), // 196: hashicorp.waypoint.ConfigGetResponse - (*ConfigSource)(nil), // 197: hashicorp.waypoint.ConfigSource - (*SetConfigSourceRequest)(nil), // 198: hashicorp.waypoint.SetConfigSourceRequest - (*GetConfigSourceRequest)(nil), // 199: hashicorp.waypoint.GetConfigSourceRequest - (*GetConfigSourceResponse)(nil), // 200: hashicorp.waypoint.GetConfigSourceResponse - (*ExecStreamRequest)(nil), // 201: hashicorp.waypoint.ExecStreamRequest - (*ExecStreamResponse)(nil), // 202: hashicorp.waypoint.ExecStreamResponse - (*EntrypointConfigRequest)(nil), // 203: hashicorp.waypoint.EntrypointConfigRequest - (*EntrypointConfigResponse)(nil), // 204: hashicorp.waypoint.EntrypointConfigResponse - (*EntrypointConfig)(nil), // 205: hashicorp.waypoint.EntrypointConfig - (*EntrypointLogBatch)(nil), // 206: hashicorp.waypoint.EntrypointLogBatch - (*EntrypointExecRequest)(nil), // 207: hashicorp.waypoint.EntrypointExecRequest - (*EntrypointExecResponse)(nil), // 208: hashicorp.waypoint.EntrypointExecResponse - (*Pipeline)(nil), // 209: hashicorp.waypoint.Pipeline - (*PipelineRun)(nil), // 210: hashicorp.waypoint.PipelineRun - (*UpsertPipelineRequest)(nil), // 211: hashicorp.waypoint.UpsertPipelineRequest - (*UpsertPipelineResponse)(nil), // 212: hashicorp.waypoint.UpsertPipelineResponse - (*GetPipelineRequest)(nil), // 213: hashicorp.waypoint.GetPipelineRequest - (*GetPipelineResponse)(nil), // 214: hashicorp.waypoint.GetPipelineResponse - (*RunPipelineRequest)(nil), // 215: hashicorp.waypoint.RunPipelineRequest - (*RunPipelineResponse)(nil), // 216: hashicorp.waypoint.RunPipelineResponse - (*ListPipelinesRequest)(nil), // 217: hashicorp.waypoint.ListPipelinesRequest - (*ListPipelinesResponse)(nil), // 218: hashicorp.waypoint.ListPipelinesResponse - (*ListPipelineRunsRequest)(nil), // 219: hashicorp.waypoint.ListPipelineRunsRequest - (*ListPipelineRunsResponse)(nil), // 220: hashicorp.waypoint.ListPipelineRunsResponse - (*GetPipelineRunRequest)(nil), // 221: hashicorp.waypoint.GetPipelineRunRequest - (*GetPipelineRunResponse)(nil), // 222: hashicorp.waypoint.GetPipelineRunResponse - (*ConfigSyncPipelineRequest)(nil), // 223: hashicorp.waypoint.ConfigSyncPipelineRequest - (*ConfigSyncPipelineResponse)(nil), // 224: hashicorp.waypoint.ConfigSyncPipelineResponse - (*GetProjectTemplateRequest)(nil), // 225: hashicorp.waypoint.GetProjectTemplateRequest - (*GetProjectTemplateResponse)(nil), // 226: hashicorp.waypoint.GetProjectTemplateResponse - (*ListProjectTemplatesRequest)(nil), // 227: hashicorp.waypoint.ListProjectTemplatesRequest - (*ListProjectTemplatesResponse)(nil), // 228: hashicorp.waypoint.ListProjectTemplatesResponse - (*CreateProjectTemplateRequest)(nil), // 229: hashicorp.waypoint.CreateProjectTemplateRequest - (*CreateProjectTemplateResponse)(nil), // 230: hashicorp.waypoint.CreateProjectTemplateResponse - (*UpdateProjectTemplateRequest)(nil), // 231: hashicorp.waypoint.UpdateProjectTemplateRequest - (*UpdateProjectTemplateResponse)(nil), // 232: hashicorp.waypoint.UpdateProjectTemplateResponse - (*DeleteProjectTemplateRequest)(nil), // 233: hashicorp.waypoint.DeleteProjectTemplateRequest - (*DeleteProjectTemplateResponse)(nil), // 234: hashicorp.waypoint.DeleteProjectTemplateResponse - (*ProjectTemplate)(nil), // 235: hashicorp.waypoint.ProjectTemplate - (*GetTFCRunStatusRequest)(nil), // 236: hashicorp.waypoint.GetTFCRunStatusRequest - (*GetTFCRunStatusResponse)(nil), // 237: hashicorp.waypoint.GetTFCRunStatusResponse - (*CreateProjectFromTemplateRequest)(nil), // 238: hashicorp.waypoint.CreateProjectFromTemplateRequest - (*CreateProjectFromTemplateResponse)(nil), // 239: hashicorp.waypoint.CreateProjectFromTemplateResponse - (*TokenTransport)(nil), // 240: hashicorp.waypoint.TokenTransport - (*Token)(nil), // 241: hashicorp.waypoint.Token - (*HMACKey)(nil), // 242: hashicorp.waypoint.HMACKey - (*DecodeTokenRequest)(nil), // 243: hashicorp.waypoint.DecodeTokenRequest - (*DecodeTokenResponse)(nil), // 244: hashicorp.waypoint.DecodeTokenResponse - (*LoginTokenRequest)(nil), // 245: hashicorp.waypoint.LoginTokenRequest - (*GenerateRunnerTokenRequest)(nil), // 246: hashicorp.waypoint.GenerateRunnerTokenRequest - (*InviteTokenRequest)(nil), // 247: hashicorp.waypoint.InviteTokenRequest - (*NewTokenResponse)(nil), // 248: hashicorp.waypoint.NewTokenResponse - (*ConvertInviteTokenRequest)(nil), // 249: hashicorp.waypoint.ConvertInviteTokenRequest - (*CreateSnapshotResponse)(nil), // 250: hashicorp.waypoint.CreateSnapshotResponse - (*RestoreSnapshotRequest)(nil), // 251: hashicorp.waypoint.RestoreSnapshotRequest - (*Snapshot)(nil), // 252: hashicorp.waypoint.Snapshot - (*Hcl)(nil), // 253: hashicorp.waypoint.Hcl - (*WaypointHclFmtRequest)(nil), // 254: hashicorp.waypoint.WaypointHclFmtRequest - (*WaypointHclFmtResponse)(nil), // 255: hashicorp.waypoint.WaypointHclFmtResponse - (*InlineKeepalive)(nil), // 256: hashicorp.waypoint.InlineKeepalive - (*PaginationRequest)(nil), // 257: hashicorp.waypoint.PaginationRequest - (*PaginationResponse)(nil), // 258: hashicorp.waypoint.PaginationResponse - (*SortingRequest)(nil), // 259: hashicorp.waypoint.SortingRequest - (*UI_ListProjectsRequest)(nil), // 260: hashicorp.waypoint.UI.ListProjectsRequest - (*UI_ListProjectsResponse)(nil), // 261: hashicorp.waypoint.UI.ListProjectsResponse - (*UI_ProjectBundle)(nil), // 262: hashicorp.waypoint.UI.ProjectBundle - (*UI_GetProjectRequest)(nil), // 263: hashicorp.waypoint.UI.GetProjectRequest - (*UI_GetProjectResponse)(nil), // 264: hashicorp.waypoint.UI.GetProjectResponse - (*UI_ListPipelinesRequest)(nil), // 265: hashicorp.waypoint.UI.ListPipelinesRequest - (*UI_ListPipelinesResponse)(nil), // 266: hashicorp.waypoint.UI.ListPipelinesResponse - (*UI_ListPipelineRunsRequest)(nil), // 267: hashicorp.waypoint.UI.ListPipelineRunsRequest - (*UI_ListPipelineRunsResponse)(nil), // 268: hashicorp.waypoint.UI.ListPipelineRunsResponse - (*UI_GetPipelineRunRequest)(nil), // 269: hashicorp.waypoint.UI.GetPipelineRunRequest - (*UI_GetPipelineRunResponse)(nil), // 270: hashicorp.waypoint.UI.GetPipelineRunResponse - (*UI_PipelineBundle)(nil), // 271: hashicorp.waypoint.UI.PipelineBundle - (*UI_PipelineRunBundle)(nil), // 272: hashicorp.waypoint.UI.PipelineRunBundle - (*UI_PipelineRunTreeNode)(nil), // 273: hashicorp.waypoint.UI.PipelineRunTreeNode - (*UI_ListDeploymentsRequest)(nil), // 274: hashicorp.waypoint.UI.ListDeploymentsRequest - (*UI_ListDeploymentsResponse)(nil), // 275: hashicorp.waypoint.UI.ListDeploymentsResponse - (*UI_GetDeploymentRequest)(nil), // 276: hashicorp.waypoint.UI.GetDeploymentRequest - (*UI_GetDeploymentResponse)(nil), // 277: hashicorp.waypoint.UI.GetDeploymentResponse - (*UI_DeploymentBundle)(nil), // 278: hashicorp.waypoint.UI.DeploymentBundle - (*UI_ListReleasesRequest)(nil), // 279: hashicorp.waypoint.UI.ListReleasesRequest - (*UI_ListReleasesResponse)(nil), // 280: hashicorp.waypoint.UI.ListReleasesResponse - (*UI_ReleaseBundle)(nil), // 281: hashicorp.waypoint.UI.ReleaseBundle - (*UI_ListEventsRequest)(nil), // 282: hashicorp.waypoint.UI.ListEventsRequest - (*UI_ListEventsResponse)(nil), // 283: hashicorp.waypoint.UI.ListEventsResponse - (*UI_EventBundle)(nil), // 284: hashicorp.waypoint.UI.EventBundle - (*UI_EventBuild)(nil), // 285: hashicorp.waypoint.UI.EventBuild - (*UI_EventDeployment)(nil), // 286: hashicorp.waypoint.UI.EventDeployment - (*UI_EventRelease)(nil), // 287: hashicorp.waypoint.UI.EventRelease - (*UI_ListEventSchemasResponse)(nil), // 288: hashicorp.waypoint.UI.ListEventSchemasResponse - (*UI_PipelineRunTreeNode_Children)(nil), // 289: hashicorp.waypoint.UI.PipelineRunTreeNode.Children - (*VersionInfo_ProtocolVersion)(nil), // 290: hashicorp.waypoint.VersionInfo.ProtocolVersion - (*Variable_File)(nil), // 291: hashicorp.waypoint.Variable.File - (*Variable_VCS)(nil), // 292: hashicorp.waypoint.Variable.VCS - (*Variable_HclPos)(nil), // 293: hashicorp.waypoint.Variable.HclPos - (*Variable_HclRange)(nil), // 294: hashicorp.waypoint.Variable.HclRange - (*Variable_FinalValue)(nil), // 295: hashicorp.waypoint.Variable.FinalValue - (*Project_Poll)(nil), // 296: hashicorp.waypoint.Project.Poll - (*Project_AppStatusPoll)(nil), // 297: hashicorp.waypoint.Project.AppStatusPoll - (*Workspace_Project)(nil), // 298: hashicorp.waypoint.Workspace.Project - (*Workspace_Application)(nil), // 299: hashicorp.waypoint.Workspace.Application - (*User_Link)(nil), // 300: hashicorp.waypoint.User.Link - (*User_Link_OIDC)(nil), // 301: hashicorp.waypoint.User.Link.OIDC - (*Ref_Global)(nil), // 302: hashicorp.waypoint.Ref.Global - (*Ref_Application)(nil), // 303: hashicorp.waypoint.Ref.Application - (*Ref_Project)(nil), // 304: hashicorp.waypoint.Ref.Project - (*Ref_Workspace)(nil), // 305: hashicorp.waypoint.Ref.Workspace - (*Ref_Deployment)(nil), // 306: hashicorp.waypoint.Ref.Deployment - (*Ref_Artifact)(nil), // 307: hashicorp.waypoint.Ref.Artifact - (*Ref_Component)(nil), // 308: hashicorp.waypoint.Ref.Component - (*Ref_Operation)(nil), // 309: hashicorp.waypoint.Ref.Operation - (*Ref_OperationSeq)(nil), // 310: hashicorp.waypoint.Ref.OperationSeq - (*Ref_Runner)(nil), // 311: hashicorp.waypoint.Ref.Runner - (*Ref_RunnerAny)(nil), // 312: hashicorp.waypoint.Ref.RunnerAny - (*Ref_RunnerId)(nil), // 313: hashicorp.waypoint.Ref.RunnerId - (*Ref_RunnerLabels)(nil), // 314: hashicorp.waypoint.Ref.RunnerLabels - (*Ref_User)(nil), // 315: hashicorp.waypoint.Ref.User - (*Ref_UserId)(nil), // 316: hashicorp.waypoint.Ref.UserId - (*Ref_UserUsername)(nil), // 317: hashicorp.waypoint.Ref.UserUsername - (*Ref_AuthMethod)(nil), // 318: hashicorp.waypoint.Ref.AuthMethod - (*Ref_DeclaredResource)(nil), // 319: hashicorp.waypoint.Ref.DeclaredResource - (*Ref_OnDemandRunnerConfig)(nil), // 320: hashicorp.waypoint.Ref.OnDemandRunnerConfig - (*Ref_Trigger)(nil), // 321: hashicorp.waypoint.Ref.Trigger - (*Ref_Job)(nil), // 322: hashicorp.waypoint.Ref.Job - (*Ref_Task)(nil), // 323: hashicorp.waypoint.Ref.Task - (*Ref_Pipeline)(nil), // 324: hashicorp.waypoint.Ref.Pipeline - (*Ref_PipelineOwner)(nil), // 325: hashicorp.waypoint.Ref.PipelineOwner - (*Ref_PipelineStep)(nil), // 326: hashicorp.waypoint.Ref.PipelineStep - (*Ref_ProjectTemplate)(nil), // 327: hashicorp.waypoint.Ref.ProjectTemplate - nil, // 328: hashicorp.waypoint.Ref.RunnerLabels.LabelsEntry - (*StatusFilter_Filter)(nil), // 329: hashicorp.waypoint.StatusFilter.Filter - nil, // 330: hashicorp.waypoint.TaskLaunchInfo.EnvironmentVariablesEntry - (*AuthMethod_OIDC)(nil), // 331: hashicorp.waypoint.AuthMethod.OIDC - nil, // 332: hashicorp.waypoint.AuthMethod.OIDC.ClaimMappingsEntry - nil, // 333: hashicorp.waypoint.AuthMethod.OIDC.ListClaimMappingsEntry - (*Job_TaskOverride)(nil), // 334: hashicorp.waypoint.Job.TaskOverride - nil, // 335: hashicorp.waypoint.Job.LabelsEntry - nil, // 336: hashicorp.waypoint.Job.DataSourceOverridesEntry - nil, // 337: hashicorp.waypoint.Job.VariableFinalValuesEntry - (*Job_Result)(nil), // 338: hashicorp.waypoint.Job.Result - (*Job_Config)(nil), // 339: hashicorp.waypoint.Job.Config - (*Job_DataSource)(nil), // 340: hashicorp.waypoint.Job.DataSource - (*Job_Local)(nil), // 341: hashicorp.waypoint.Job.Local - (*Job_Remote)(nil), // 342: hashicorp.waypoint.Job.Remote - (*Job_Git)(nil), // 343: hashicorp.waypoint.Job.Git - (*Job_Noop)(nil), // 344: hashicorp.waypoint.Job.Noop - (*Job_UpOp)(nil), // 345: hashicorp.waypoint.Job.UpOp - (*Job_UpResult)(nil), // 346: hashicorp.waypoint.Job.UpResult - (*Job_ValidateOp)(nil), // 347: hashicorp.waypoint.Job.ValidateOp - (*Job_ValidateResult)(nil), // 348: hashicorp.waypoint.Job.ValidateResult - (*Job_AuthOp)(nil), // 349: hashicorp.waypoint.Job.AuthOp - (*Job_AuthResult)(nil), // 350: hashicorp.waypoint.Job.AuthResult - (*Job_BuildOp)(nil), // 351: hashicorp.waypoint.Job.BuildOp - (*Job_BuildResult)(nil), // 352: hashicorp.waypoint.Job.BuildResult - (*Job_PushOp)(nil), // 353: hashicorp.waypoint.Job.PushOp - (*Job_PushResult)(nil), // 354: hashicorp.waypoint.Job.PushResult - (*Job_DeployOp)(nil), // 355: hashicorp.waypoint.Job.DeployOp - (*Job_DeployResult)(nil), // 356: hashicorp.waypoint.Job.DeployResult - (*Job_ExecOp)(nil), // 357: hashicorp.waypoint.Job.ExecOp - (*Job_ExecResult)(nil), // 358: hashicorp.waypoint.Job.ExecResult - (*Job_LogsOp)(nil), // 359: hashicorp.waypoint.Job.LogsOp - (*Job_DestroyOp)(nil), // 360: hashicorp.waypoint.Job.DestroyOp - (*Job_ReleaseOp)(nil), // 361: hashicorp.waypoint.Job.ReleaseOp - (*Job_ReleaseResult)(nil), // 362: hashicorp.waypoint.Job.ReleaseResult - (*Job_TaskPluginParams)(nil), // 363: hashicorp.waypoint.Job.TaskPluginParams - (*Job_StartTaskLaunchOp)(nil), // 364: hashicorp.waypoint.Job.StartTaskLaunchOp - (*Job_StartTaskResult)(nil), // 365: hashicorp.waypoint.Job.StartTaskResult - (*Job_StopTaskLaunchOp)(nil), // 366: hashicorp.waypoint.Job.StopTaskLaunchOp - (*Job_WatchTaskOp)(nil), // 367: hashicorp.waypoint.Job.WatchTaskOp - (*Job_WatchTaskResult)(nil), // 368: hashicorp.waypoint.Job.WatchTaskResult - (*Job_StatusReportOp)(nil), // 369: hashicorp.waypoint.Job.StatusReportOp - (*Job_StatusReportResult)(nil), // 370: hashicorp.waypoint.Job.StatusReportResult - (*Job_DocsOp)(nil), // 371: hashicorp.waypoint.Job.DocsOp - (*Job_DocsResult)(nil), // 372: hashicorp.waypoint.Job.DocsResult - (*Job_ConfigSyncOp)(nil), // 373: hashicorp.waypoint.Job.ConfigSyncOp - (*Job_ConfigSyncResult)(nil), // 374: hashicorp.waypoint.Job.ConfigSyncResult - (*Job_PipelineConfigSyncResult)(nil), // 375: hashicorp.waypoint.Job.PipelineConfigSyncResult - (*Job_ProjectDestroyResult)(nil), // 376: hashicorp.waypoint.Job.ProjectDestroyResult - (*Job_PollOp)(nil), // 377: hashicorp.waypoint.Job.PollOp - (*Job_PollResult)(nil), // 378: hashicorp.waypoint.Job.PollResult - (*Job_InitOp)(nil), // 379: hashicorp.waypoint.Job.InitOp - (*Job_InitResult)(nil), // 380: hashicorp.waypoint.Job.InitResult - (*Job_PipelineStepOp)(nil), // 381: hashicorp.waypoint.Job.PipelineStepOp - (*Job_DestroyProjectOp)(nil), // 382: hashicorp.waypoint.Job.DestroyProjectOp - (*Job_PipelineStepResult)(nil), // 383: hashicorp.waypoint.Job.PipelineStepResult - (*Job_QueueProjectOp)(nil), // 384: hashicorp.waypoint.Job.QueueProjectOp - (*Job_QueueProjectResult)(nil), // 385: hashicorp.waypoint.Job.QueueProjectResult - (*Job_DataSource_Ref)(nil), // 386: hashicorp.waypoint.Job.DataSource.Ref - (*Job_Git_Basic)(nil), // 387: hashicorp.waypoint.Job.Git.Basic - (*Job_Git_SSH)(nil), // 388: hashicorp.waypoint.Job.Git.SSH - (*Job_Git_Ref)(nil), // 389: hashicorp.waypoint.Job.Git.Ref - (*Job_AuthResult_Result)(nil), // 390: hashicorp.waypoint.Job.AuthResult.Result - (*Job_DocsResult_Result)(nil), // 391: hashicorp.waypoint.Job.DocsResult.Result - nil, // 392: hashicorp.waypoint.Job.PipelineConfigSyncResult.SyncedPipelinesEntry - (*Job_QueueProjectResult_Application)(nil), // 393: hashicorp.waypoint.Job.QueueProjectResult.Application - nil, // 394: hashicorp.waypoint.Documentation.FieldsEntry - (*Documentation_Field)(nil), // 395: hashicorp.waypoint.Documentation.Field - (*Documentation_Mapper)(nil), // 396: hashicorp.waypoint.Documentation.Mapper - (*GetJobStreamResponse_Open)(nil), // 397: hashicorp.waypoint.GetJobStreamResponse.Open - (*GetJobStreamResponse_State)(nil), // 398: hashicorp.waypoint.GetJobStreamResponse.State - (*GetJobStreamResponse_JobChange)(nil), // 399: hashicorp.waypoint.GetJobStreamResponse.JobChange - (*GetJobStreamResponse_Download)(nil), // 400: hashicorp.waypoint.GetJobStreamResponse.Download - (*GetJobStreamResponse_Terminal)(nil), // 401: hashicorp.waypoint.GetJobStreamResponse.Terminal - (*GetJobStreamResponse_Error)(nil), // 402: hashicorp.waypoint.GetJobStreamResponse.Error - (*GetJobStreamResponse_Complete)(nil), // 403: hashicorp.waypoint.GetJobStreamResponse.Complete - (*GetJobStreamResponse_Terminal_Event)(nil), // 404: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event - (*GetJobStreamResponse_Terminal_Event_Status)(nil), // 405: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Status - (*GetJobStreamResponse_Terminal_Event_Line)(nil), // 406: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Line - (*GetJobStreamResponse_Terminal_Event_Raw)(nil), // 407: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Raw - (*GetJobStreamResponse_Terminal_Event_NamedValue)(nil), // 408: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValue - (*GetJobStreamResponse_Terminal_Event_NamedValues)(nil), // 409: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValues - (*GetJobStreamResponse_Terminal_Event_TableEntry)(nil), // 410: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableEntry - (*GetJobStreamResponse_Terminal_Event_TableRow)(nil), // 411: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableRow - (*GetJobStreamResponse_Terminal_Event_Table)(nil), // 412: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Table - (*GetJobStreamResponse_Terminal_Event_StepGroup)(nil), // 413: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.StepGroup - (*GetJobStreamResponse_Terminal_Event_Step)(nil), // 414: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Step - nil, // 415: hashicorp.waypoint.Runner.LabelsEntry - (*Runner_ODR)(nil), // 416: hashicorp.waypoint.Runner.ODR - (*Runner_Local)(nil), // 417: hashicorp.waypoint.Runner.Local - (*Runner_Remote)(nil), // 418: hashicorp.waypoint.Runner.Remote - (*RunnerConfigRequest_Open)(nil), // 419: hashicorp.waypoint.RunnerConfigRequest.Open - (*RunnerJobStreamRequest_Request)(nil), // 420: hashicorp.waypoint.RunnerJobStreamRequest.Request - (*RunnerJobStreamRequest_Ack)(nil), // 421: hashicorp.waypoint.RunnerJobStreamRequest.Ack - (*RunnerJobStreamRequest_Complete)(nil), // 422: hashicorp.waypoint.RunnerJobStreamRequest.Complete - (*RunnerJobStreamRequest_Error)(nil), // 423: hashicorp.waypoint.RunnerJobStreamRequest.Error - (*RunnerJobStreamRequest_Heartbeat)(nil), // 424: hashicorp.waypoint.RunnerJobStreamRequest.Heartbeat - (*RunnerJobStreamRequest_ConfigLoad)(nil), // 425: hashicorp.waypoint.RunnerJobStreamRequest.ConfigLoad - (*RunnerJobStreamRequest_VariableValuesSet)(nil), // 426: hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet - nil, // 427: hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet.FinalValuesEntry - (*RunnerJobStreamResponse_JobAssignment)(nil), // 428: hashicorp.waypoint.RunnerJobStreamResponse.JobAssignment - (*RunnerJobStreamResponse_JobCancel)(nil), // 429: hashicorp.waypoint.RunnerJobStreamResponse.JobCancel - (*ServerConfig_AdvertiseAddr)(nil), // 430: hashicorp.waypoint.ServerConfig.AdvertiseAddr - nil, // 431: hashicorp.waypoint.Hostname.TargetLabelsEntry - (*Hostname_Target)(nil), // 432: hashicorp.waypoint.Hostname.Target - (*Hostname_TargetApp)(nil), // 433: hashicorp.waypoint.Hostname.TargetApp - nil, // 434: hashicorp.waypoint.Build.LabelsEntry - (*Build_Preload)(nil), // 435: hashicorp.waypoint.Build.Preload - nil, // 436: hashicorp.waypoint.OnDemandRunnerConfig.EnvironmentVariablesEntry - nil, // 437: hashicorp.waypoint.PushedArtifact.LabelsEntry - (*PushedArtifact_Preload)(nil), // 438: hashicorp.waypoint.PushedArtifact.Preload - nil, // 439: hashicorp.waypoint.Deployment.LabelsEntry - (*Deployment_Preload)(nil), // 440: hashicorp.waypoint.Deployment.Preload - (*ListInstancesRequest_Application)(nil), // 441: hashicorp.waypoint.ListInstancesRequest.Application - nil, // 442: hashicorp.waypoint.Release.LabelsEntry - (*Release_Preload)(nil), // 443: hashicorp.waypoint.Release.Preload - (*StatusReport_Resource)(nil), // 444: hashicorp.waypoint.StatusReport.Resource - (*StatusReport_Health)(nil), // 445: hashicorp.waypoint.StatusReport.Health - (*GetLogStreamRequest_Application)(nil), // 446: hashicorp.waypoint.GetLogStreamRequest.Application - (*LogBatch_Entry)(nil), // 447: hashicorp.waypoint.LogBatch.Entry - (*ConfigVar_DynamicVal)(nil), // 448: hashicorp.waypoint.ConfigVar.DynamicVal - (*ConfigVar_Target)(nil), // 449: hashicorp.waypoint.ConfigVar.Target - nil, // 450: hashicorp.waypoint.ConfigVar.DynamicVal.ConfigEntry - nil, // 451: hashicorp.waypoint.ConfigGetRequest.LabelsEntry - nil, // 452: hashicorp.waypoint.ConfigSource.ConfigEntry - (*ExecStreamRequest_Start)(nil), // 453: hashicorp.waypoint.ExecStreamRequest.Start - (*ExecStreamRequest_Input)(nil), // 454: hashicorp.waypoint.ExecStreamRequest.Input - (*ExecStreamRequest_PTY)(nil), // 455: hashicorp.waypoint.ExecStreamRequest.PTY - (*ExecStreamRequest_WindowSize)(nil), // 456: hashicorp.waypoint.ExecStreamRequest.WindowSize - (*ExecStreamResponse_Open)(nil), // 457: hashicorp.waypoint.ExecStreamResponse.Open - (*ExecStreamResponse_Exit)(nil), // 458: hashicorp.waypoint.ExecStreamResponse.Exit - (*ExecStreamResponse_Output)(nil), // 459: hashicorp.waypoint.ExecStreamResponse.Output - (*EntrypointConfig_Exec)(nil), // 460: hashicorp.waypoint.EntrypointConfig.Exec - (*EntrypointConfig_URLService)(nil), // 461: hashicorp.waypoint.EntrypointConfig.URLService - (*EntrypointConfig_DeploymentInfo)(nil), // 462: hashicorp.waypoint.EntrypointConfig.DeploymentInfo - nil, // 463: hashicorp.waypoint.EntrypointConfig.DeploymentInfo.LabelsEntry - (*EntrypointExecRequest_Open)(nil), // 464: hashicorp.waypoint.EntrypointExecRequest.Open - (*EntrypointExecRequest_Exit)(nil), // 465: hashicorp.waypoint.EntrypointExecRequest.Exit - (*EntrypointExecRequest_Output)(nil), // 466: hashicorp.waypoint.EntrypointExecRequest.Output - (*EntrypointExecRequest_Error)(nil), // 467: hashicorp.waypoint.EntrypointExecRequest.Error - nil, // 468: hashicorp.waypoint.Pipeline.StepsEntry - (*Pipeline_Step)(nil), // 469: hashicorp.waypoint.Pipeline.Step - (*Pipeline_Step_Exec)(nil), // 470: hashicorp.waypoint.Pipeline.Step.Exec - (*Pipeline_Step_Build)(nil), // 471: hashicorp.waypoint.Pipeline.Step.Build - (*Pipeline_Step_Deploy)(nil), // 472: hashicorp.waypoint.Pipeline.Step.Deploy - (*Pipeline_Step_Release)(nil), // 473: hashicorp.waypoint.Pipeline.Step.Release - (*Pipeline_Step_Up)(nil), // 474: hashicorp.waypoint.Pipeline.Step.Up - (*Pipeline_Step_Pipeline)(nil), // 475: hashicorp.waypoint.Pipeline.Step.Pipeline - (*GetPipelineResponse_Graph)(nil), // 476: hashicorp.waypoint.GetPipelineResponse.Graph - nil, // 477: hashicorp.waypoint.RunPipelineResponse.JobMapEntry - nil, // 478: hashicorp.waypoint.ConfigSyncPipelineResponse.SyncedPipelinesEntry - (*ProjectTemplate_WaypointProject)(nil), // 479: hashicorp.waypoint.ProjectTemplate.WaypointProject - (*ProjectTemplate_TerraformNocodeModule)(nil), // 480: hashicorp.waypoint.ProjectTemplate.TerraformNocodeModule - nil, // 481: hashicorp.waypoint.TokenTransport.MetadataEntry - (*TokenTransport_OAuthCredentials)(nil), // 482: hashicorp.waypoint.TokenTransport.OAuthCredentials - (*Token_Login)(nil), // 483: hashicorp.waypoint.Token.Login - (*Token_Runner)(nil), // 484: hashicorp.waypoint.Token.Runner - (*Token_Invite)(nil), // 485: hashicorp.waypoint.Token.Invite - (*Token_Entrypoint)(nil), // 486: hashicorp.waypoint.Token.Entrypoint - (*Token_Trigger)(nil), // 487: hashicorp.waypoint.Token.Trigger - (*Token_Invite_Signup)(nil), // 488: hashicorp.waypoint.Token.Invite.Signup - nil, // 489: hashicorp.waypoint.GenerateRunnerTokenRequest.LabelsEntry - (*CreateSnapshotResponse_Open)(nil), // 490: hashicorp.waypoint.CreateSnapshotResponse.Open - (*RestoreSnapshotRequest_Open)(nil), // 491: hashicorp.waypoint.RestoreSnapshotRequest.Open - (*Snapshot_Header)(nil), // 492: hashicorp.waypoint.Snapshot.Header - (*Snapshot_Trailer)(nil), // 493: hashicorp.waypoint.Snapshot.Trailer - (*Snapshot_BoltChunk)(nil), // 494: hashicorp.waypoint.Snapshot.BoltChunk - nil, // 495: hashicorp.waypoint.Snapshot.BoltChunk.ItemsEntry - (*emptypb.Empty)(nil), // 496: google.protobuf.Empty - (*timestamppb.Timestamp)(nil), // 497: google.protobuf.Timestamp - (*status.Status)(nil), // 498: google.rpc.Status - (*opaqueany.Any)(nil), // 499: opaqueany.Any + (*ConfigDeleteRequest)(nil), // 195: hashicorp.waypoint.ConfigDeleteRequest + (*ConfigDeleteResponse)(nil), // 196: hashicorp.waypoint.ConfigDeleteResponse + (*ConfigGetRequest)(nil), // 197: hashicorp.waypoint.ConfigGetRequest + (*ConfigGetResponse)(nil), // 198: hashicorp.waypoint.ConfigGetResponse + (*ConfigSource)(nil), // 199: hashicorp.waypoint.ConfigSource + (*SetConfigSourceRequest)(nil), // 200: hashicorp.waypoint.SetConfigSourceRequest + (*DeleteConfigSourceRequest)(nil), // 201: hashicorp.waypoint.DeleteConfigSourceRequest + (*GetConfigSourceRequest)(nil), // 202: hashicorp.waypoint.GetConfigSourceRequest + (*GetConfigSourceResponse)(nil), // 203: hashicorp.waypoint.GetConfigSourceResponse + (*ExecStreamRequest)(nil), // 204: hashicorp.waypoint.ExecStreamRequest + (*ExecStreamResponse)(nil), // 205: hashicorp.waypoint.ExecStreamResponse + (*EntrypointConfigRequest)(nil), // 206: hashicorp.waypoint.EntrypointConfigRequest + (*EntrypointConfigResponse)(nil), // 207: hashicorp.waypoint.EntrypointConfigResponse + (*EntrypointConfig)(nil), // 208: hashicorp.waypoint.EntrypointConfig + (*EntrypointLogBatch)(nil), // 209: hashicorp.waypoint.EntrypointLogBatch + (*EntrypointExecRequest)(nil), // 210: hashicorp.waypoint.EntrypointExecRequest + (*EntrypointExecResponse)(nil), // 211: hashicorp.waypoint.EntrypointExecResponse + (*Pipeline)(nil), // 212: hashicorp.waypoint.Pipeline + (*PipelineRun)(nil), // 213: hashicorp.waypoint.PipelineRun + (*UpsertPipelineRequest)(nil), // 214: hashicorp.waypoint.UpsertPipelineRequest + (*UpsertPipelineResponse)(nil), // 215: hashicorp.waypoint.UpsertPipelineResponse + (*GetPipelineRequest)(nil), // 216: hashicorp.waypoint.GetPipelineRequest + (*GetPipelineResponse)(nil), // 217: hashicorp.waypoint.GetPipelineResponse + (*RunPipelineRequest)(nil), // 218: hashicorp.waypoint.RunPipelineRequest + (*RunPipelineResponse)(nil), // 219: hashicorp.waypoint.RunPipelineResponse + (*ListPipelinesRequest)(nil), // 220: hashicorp.waypoint.ListPipelinesRequest + (*ListPipelinesResponse)(nil), // 221: hashicorp.waypoint.ListPipelinesResponse + (*ListPipelineRunsRequest)(nil), // 222: hashicorp.waypoint.ListPipelineRunsRequest + (*ListPipelineRunsResponse)(nil), // 223: hashicorp.waypoint.ListPipelineRunsResponse + (*GetPipelineRunRequest)(nil), // 224: hashicorp.waypoint.GetPipelineRunRequest + (*GetPipelineRunResponse)(nil), // 225: hashicorp.waypoint.GetPipelineRunResponse + (*ConfigSyncPipelineRequest)(nil), // 226: hashicorp.waypoint.ConfigSyncPipelineRequest + (*ConfigSyncPipelineResponse)(nil), // 227: hashicorp.waypoint.ConfigSyncPipelineResponse + (*GetProjectTemplateRequest)(nil), // 228: hashicorp.waypoint.GetProjectTemplateRequest + (*GetProjectTemplateResponse)(nil), // 229: hashicorp.waypoint.GetProjectTemplateResponse + (*ListProjectTemplatesRequest)(nil), // 230: hashicorp.waypoint.ListProjectTemplatesRequest + (*ListProjectTemplatesResponse)(nil), // 231: hashicorp.waypoint.ListProjectTemplatesResponse + (*CreateProjectTemplateRequest)(nil), // 232: hashicorp.waypoint.CreateProjectTemplateRequest + (*CreateProjectTemplateResponse)(nil), // 233: hashicorp.waypoint.CreateProjectTemplateResponse + (*UpdateProjectTemplateRequest)(nil), // 234: hashicorp.waypoint.UpdateProjectTemplateRequest + (*UpdateProjectTemplateResponse)(nil), // 235: hashicorp.waypoint.UpdateProjectTemplateResponse + (*DeleteProjectTemplateRequest)(nil), // 236: hashicorp.waypoint.DeleteProjectTemplateRequest + (*DeleteProjectTemplateResponse)(nil), // 237: hashicorp.waypoint.DeleteProjectTemplateResponse + (*ProjectTemplate)(nil), // 238: hashicorp.waypoint.ProjectTemplate + (*GetTFCRunStatusRequest)(nil), // 239: hashicorp.waypoint.GetTFCRunStatusRequest + (*GetTFCRunStatusResponse)(nil), // 240: hashicorp.waypoint.GetTFCRunStatusResponse + (*CreateProjectFromTemplateRequest)(nil), // 241: hashicorp.waypoint.CreateProjectFromTemplateRequest + (*CreateProjectFromTemplateResponse)(nil), // 242: hashicorp.waypoint.CreateProjectFromTemplateResponse + (*TokenTransport)(nil), // 243: hashicorp.waypoint.TokenTransport + (*Token)(nil), // 244: hashicorp.waypoint.Token + (*HMACKey)(nil), // 245: hashicorp.waypoint.HMACKey + (*DecodeTokenRequest)(nil), // 246: hashicorp.waypoint.DecodeTokenRequest + (*DecodeTokenResponse)(nil), // 247: hashicorp.waypoint.DecodeTokenResponse + (*LoginTokenRequest)(nil), // 248: hashicorp.waypoint.LoginTokenRequest + (*GenerateRunnerTokenRequest)(nil), // 249: hashicorp.waypoint.GenerateRunnerTokenRequest + (*InviteTokenRequest)(nil), // 250: hashicorp.waypoint.InviteTokenRequest + (*NewTokenResponse)(nil), // 251: hashicorp.waypoint.NewTokenResponse + (*ConvertInviteTokenRequest)(nil), // 252: hashicorp.waypoint.ConvertInviteTokenRequest + (*CreateSnapshotResponse)(nil), // 253: hashicorp.waypoint.CreateSnapshotResponse + (*RestoreSnapshotRequest)(nil), // 254: hashicorp.waypoint.RestoreSnapshotRequest + (*Snapshot)(nil), // 255: hashicorp.waypoint.Snapshot + (*Hcl)(nil), // 256: hashicorp.waypoint.Hcl + (*WaypointHclFmtRequest)(nil), // 257: hashicorp.waypoint.WaypointHclFmtRequest + (*WaypointHclFmtResponse)(nil), // 258: hashicorp.waypoint.WaypointHclFmtResponse + (*InlineKeepalive)(nil), // 259: hashicorp.waypoint.InlineKeepalive + (*PaginationRequest)(nil), // 260: hashicorp.waypoint.PaginationRequest + (*PaginationResponse)(nil), // 261: hashicorp.waypoint.PaginationResponse + (*SortingRequest)(nil), // 262: hashicorp.waypoint.SortingRequest + (*UI_ListProjectsRequest)(nil), // 263: hashicorp.waypoint.UI.ListProjectsRequest + (*UI_ListProjectsResponse)(nil), // 264: hashicorp.waypoint.UI.ListProjectsResponse + (*UI_ProjectBundle)(nil), // 265: hashicorp.waypoint.UI.ProjectBundle + (*UI_GetProjectRequest)(nil), // 266: hashicorp.waypoint.UI.GetProjectRequest + (*UI_GetProjectResponse)(nil), // 267: hashicorp.waypoint.UI.GetProjectResponse + (*UI_ListPipelinesRequest)(nil), // 268: hashicorp.waypoint.UI.ListPipelinesRequest + (*UI_ListPipelinesResponse)(nil), // 269: hashicorp.waypoint.UI.ListPipelinesResponse + (*UI_ListPipelineRunsRequest)(nil), // 270: hashicorp.waypoint.UI.ListPipelineRunsRequest + (*UI_ListPipelineRunsResponse)(nil), // 271: hashicorp.waypoint.UI.ListPipelineRunsResponse + (*UI_GetPipelineRunRequest)(nil), // 272: hashicorp.waypoint.UI.GetPipelineRunRequest + (*UI_GetPipelineRunResponse)(nil), // 273: hashicorp.waypoint.UI.GetPipelineRunResponse + (*UI_PipelineBundle)(nil), // 274: hashicorp.waypoint.UI.PipelineBundle + (*UI_PipelineRunBundle)(nil), // 275: hashicorp.waypoint.UI.PipelineRunBundle + (*UI_PipelineRunTreeNode)(nil), // 276: hashicorp.waypoint.UI.PipelineRunTreeNode + (*UI_ListDeploymentsRequest)(nil), // 277: hashicorp.waypoint.UI.ListDeploymentsRequest + (*UI_ListDeploymentsResponse)(nil), // 278: hashicorp.waypoint.UI.ListDeploymentsResponse + (*UI_GetDeploymentRequest)(nil), // 279: hashicorp.waypoint.UI.GetDeploymentRequest + (*UI_GetDeploymentResponse)(nil), // 280: hashicorp.waypoint.UI.GetDeploymentResponse + (*UI_DeploymentBundle)(nil), // 281: hashicorp.waypoint.UI.DeploymentBundle + (*UI_ListReleasesRequest)(nil), // 282: hashicorp.waypoint.UI.ListReleasesRequest + (*UI_ListReleasesResponse)(nil), // 283: hashicorp.waypoint.UI.ListReleasesResponse + (*UI_ReleaseBundle)(nil), // 284: hashicorp.waypoint.UI.ReleaseBundle + (*UI_ListEventsRequest)(nil), // 285: hashicorp.waypoint.UI.ListEventsRequest + (*UI_ListEventsResponse)(nil), // 286: hashicorp.waypoint.UI.ListEventsResponse + (*UI_EventBundle)(nil), // 287: hashicorp.waypoint.UI.EventBundle + (*UI_EventBuild)(nil), // 288: hashicorp.waypoint.UI.EventBuild + (*UI_EventDeployment)(nil), // 289: hashicorp.waypoint.UI.EventDeployment + (*UI_EventRelease)(nil), // 290: hashicorp.waypoint.UI.EventRelease + (*UI_ListEventSchemasResponse)(nil), // 291: hashicorp.waypoint.UI.ListEventSchemasResponse + (*UI_PipelineRunTreeNode_Children)(nil), // 292: hashicorp.waypoint.UI.PipelineRunTreeNode.Children + (*VersionInfo_ProtocolVersion)(nil), // 293: hashicorp.waypoint.VersionInfo.ProtocolVersion + (*Variable_File)(nil), // 294: hashicorp.waypoint.Variable.File + (*Variable_VCS)(nil), // 295: hashicorp.waypoint.Variable.VCS + (*Variable_HclPos)(nil), // 296: hashicorp.waypoint.Variable.HclPos + (*Variable_HclRange)(nil), // 297: hashicorp.waypoint.Variable.HclRange + (*Variable_FinalValue)(nil), // 298: hashicorp.waypoint.Variable.FinalValue + (*Project_Poll)(nil), // 299: hashicorp.waypoint.Project.Poll + (*Project_AppStatusPoll)(nil), // 300: hashicorp.waypoint.Project.AppStatusPoll + (*Workspace_Project)(nil), // 301: hashicorp.waypoint.Workspace.Project + (*Workspace_Application)(nil), // 302: hashicorp.waypoint.Workspace.Application + (*User_Link)(nil), // 303: hashicorp.waypoint.User.Link + (*User_Link_OIDC)(nil), // 304: hashicorp.waypoint.User.Link.OIDC + (*Ref_Global)(nil), // 305: hashicorp.waypoint.Ref.Global + (*Ref_Application)(nil), // 306: hashicorp.waypoint.Ref.Application + (*Ref_Project)(nil), // 307: hashicorp.waypoint.Ref.Project + (*Ref_Workspace)(nil), // 308: hashicorp.waypoint.Ref.Workspace + (*Ref_Deployment)(nil), // 309: hashicorp.waypoint.Ref.Deployment + (*Ref_Artifact)(nil), // 310: hashicorp.waypoint.Ref.Artifact + (*Ref_Component)(nil), // 311: hashicorp.waypoint.Ref.Component + (*Ref_Operation)(nil), // 312: hashicorp.waypoint.Ref.Operation + (*Ref_OperationSeq)(nil), // 313: hashicorp.waypoint.Ref.OperationSeq + (*Ref_Runner)(nil), // 314: hashicorp.waypoint.Ref.Runner + (*Ref_RunnerAny)(nil), // 315: hashicorp.waypoint.Ref.RunnerAny + (*Ref_RunnerId)(nil), // 316: hashicorp.waypoint.Ref.RunnerId + (*Ref_RunnerLabels)(nil), // 317: hashicorp.waypoint.Ref.RunnerLabels + (*Ref_User)(nil), // 318: hashicorp.waypoint.Ref.User + (*Ref_UserId)(nil), // 319: hashicorp.waypoint.Ref.UserId + (*Ref_UserUsername)(nil), // 320: hashicorp.waypoint.Ref.UserUsername + (*Ref_AuthMethod)(nil), // 321: hashicorp.waypoint.Ref.AuthMethod + (*Ref_DeclaredResource)(nil), // 322: hashicorp.waypoint.Ref.DeclaredResource + (*Ref_OnDemandRunnerConfig)(nil), // 323: hashicorp.waypoint.Ref.OnDemandRunnerConfig + (*Ref_Trigger)(nil), // 324: hashicorp.waypoint.Ref.Trigger + (*Ref_Job)(nil), // 325: hashicorp.waypoint.Ref.Job + (*Ref_Task)(nil), // 326: hashicorp.waypoint.Ref.Task + (*Ref_Pipeline)(nil), // 327: hashicorp.waypoint.Ref.Pipeline + (*Ref_PipelineOwner)(nil), // 328: hashicorp.waypoint.Ref.PipelineOwner + (*Ref_PipelineStep)(nil), // 329: hashicorp.waypoint.Ref.PipelineStep + (*Ref_ProjectTemplate)(nil), // 330: hashicorp.waypoint.Ref.ProjectTemplate + nil, // 331: hashicorp.waypoint.Ref.RunnerLabels.LabelsEntry + (*StatusFilter_Filter)(nil), // 332: hashicorp.waypoint.StatusFilter.Filter + nil, // 333: hashicorp.waypoint.TaskLaunchInfo.EnvironmentVariablesEntry + (*AuthMethod_OIDC)(nil), // 334: hashicorp.waypoint.AuthMethod.OIDC + nil, // 335: hashicorp.waypoint.AuthMethod.OIDC.ClaimMappingsEntry + nil, // 336: hashicorp.waypoint.AuthMethod.OIDC.ListClaimMappingsEntry + (*Job_TaskOverride)(nil), // 337: hashicorp.waypoint.Job.TaskOverride + nil, // 338: hashicorp.waypoint.Job.LabelsEntry + nil, // 339: hashicorp.waypoint.Job.DataSourceOverridesEntry + nil, // 340: hashicorp.waypoint.Job.VariableFinalValuesEntry + (*Job_Result)(nil), // 341: hashicorp.waypoint.Job.Result + (*Job_Config)(nil), // 342: hashicorp.waypoint.Job.Config + (*Job_DataSource)(nil), // 343: hashicorp.waypoint.Job.DataSource + (*Job_Local)(nil), // 344: hashicorp.waypoint.Job.Local + (*Job_Remote)(nil), // 345: hashicorp.waypoint.Job.Remote + (*Job_Git)(nil), // 346: hashicorp.waypoint.Job.Git + (*Job_Noop)(nil), // 347: hashicorp.waypoint.Job.Noop + (*Job_UpOp)(nil), // 348: hashicorp.waypoint.Job.UpOp + (*Job_UpResult)(nil), // 349: hashicorp.waypoint.Job.UpResult + (*Job_ValidateOp)(nil), // 350: hashicorp.waypoint.Job.ValidateOp + (*Job_ValidateResult)(nil), // 351: hashicorp.waypoint.Job.ValidateResult + (*Job_AuthOp)(nil), // 352: hashicorp.waypoint.Job.AuthOp + (*Job_AuthResult)(nil), // 353: hashicorp.waypoint.Job.AuthResult + (*Job_BuildOp)(nil), // 354: hashicorp.waypoint.Job.BuildOp + (*Job_BuildResult)(nil), // 355: hashicorp.waypoint.Job.BuildResult + (*Job_PushOp)(nil), // 356: hashicorp.waypoint.Job.PushOp + (*Job_PushResult)(nil), // 357: hashicorp.waypoint.Job.PushResult + (*Job_DeployOp)(nil), // 358: hashicorp.waypoint.Job.DeployOp + (*Job_DeployResult)(nil), // 359: hashicorp.waypoint.Job.DeployResult + (*Job_ExecOp)(nil), // 360: hashicorp.waypoint.Job.ExecOp + (*Job_ExecResult)(nil), // 361: hashicorp.waypoint.Job.ExecResult + (*Job_LogsOp)(nil), // 362: hashicorp.waypoint.Job.LogsOp + (*Job_DestroyOp)(nil), // 363: hashicorp.waypoint.Job.DestroyOp + (*Job_ReleaseOp)(nil), // 364: hashicorp.waypoint.Job.ReleaseOp + (*Job_ReleaseResult)(nil), // 365: hashicorp.waypoint.Job.ReleaseResult + (*Job_TaskPluginParams)(nil), // 366: hashicorp.waypoint.Job.TaskPluginParams + (*Job_StartTaskLaunchOp)(nil), // 367: hashicorp.waypoint.Job.StartTaskLaunchOp + (*Job_StartTaskResult)(nil), // 368: hashicorp.waypoint.Job.StartTaskResult + (*Job_StopTaskLaunchOp)(nil), // 369: hashicorp.waypoint.Job.StopTaskLaunchOp + (*Job_WatchTaskOp)(nil), // 370: hashicorp.waypoint.Job.WatchTaskOp + (*Job_WatchTaskResult)(nil), // 371: hashicorp.waypoint.Job.WatchTaskResult + (*Job_StatusReportOp)(nil), // 372: hashicorp.waypoint.Job.StatusReportOp + (*Job_StatusReportResult)(nil), // 373: hashicorp.waypoint.Job.StatusReportResult + (*Job_DocsOp)(nil), // 374: hashicorp.waypoint.Job.DocsOp + (*Job_DocsResult)(nil), // 375: hashicorp.waypoint.Job.DocsResult + (*Job_ConfigSyncOp)(nil), // 376: hashicorp.waypoint.Job.ConfigSyncOp + (*Job_ConfigSyncResult)(nil), // 377: hashicorp.waypoint.Job.ConfigSyncResult + (*Job_PipelineConfigSyncResult)(nil), // 378: hashicorp.waypoint.Job.PipelineConfigSyncResult + (*Job_ProjectDestroyResult)(nil), // 379: hashicorp.waypoint.Job.ProjectDestroyResult + (*Job_PollOp)(nil), // 380: hashicorp.waypoint.Job.PollOp + (*Job_PollResult)(nil), // 381: hashicorp.waypoint.Job.PollResult + (*Job_InitOp)(nil), // 382: hashicorp.waypoint.Job.InitOp + (*Job_InitResult)(nil), // 383: hashicorp.waypoint.Job.InitResult + (*Job_PipelineStepOp)(nil), // 384: hashicorp.waypoint.Job.PipelineStepOp + (*Job_DestroyProjectOp)(nil), // 385: hashicorp.waypoint.Job.DestroyProjectOp + (*Job_PipelineStepResult)(nil), // 386: hashicorp.waypoint.Job.PipelineStepResult + (*Job_QueueProjectOp)(nil), // 387: hashicorp.waypoint.Job.QueueProjectOp + (*Job_QueueProjectResult)(nil), // 388: hashicorp.waypoint.Job.QueueProjectResult + (*Job_DataSource_Ref)(nil), // 389: hashicorp.waypoint.Job.DataSource.Ref + (*Job_Git_Basic)(nil), // 390: hashicorp.waypoint.Job.Git.Basic + (*Job_Git_SSH)(nil), // 391: hashicorp.waypoint.Job.Git.SSH + (*Job_Git_Ref)(nil), // 392: hashicorp.waypoint.Job.Git.Ref + (*Job_AuthResult_Result)(nil), // 393: hashicorp.waypoint.Job.AuthResult.Result + (*Job_DocsResult_Result)(nil), // 394: hashicorp.waypoint.Job.DocsResult.Result + nil, // 395: hashicorp.waypoint.Job.PipelineConfigSyncResult.SyncedPipelinesEntry + (*Job_QueueProjectResult_Application)(nil), // 396: hashicorp.waypoint.Job.QueueProjectResult.Application + nil, // 397: hashicorp.waypoint.Documentation.FieldsEntry + (*Documentation_Field)(nil), // 398: hashicorp.waypoint.Documentation.Field + (*Documentation_Mapper)(nil), // 399: hashicorp.waypoint.Documentation.Mapper + (*GetJobStreamResponse_Open)(nil), // 400: hashicorp.waypoint.GetJobStreamResponse.Open + (*GetJobStreamResponse_State)(nil), // 401: hashicorp.waypoint.GetJobStreamResponse.State + (*GetJobStreamResponse_JobChange)(nil), // 402: hashicorp.waypoint.GetJobStreamResponse.JobChange + (*GetJobStreamResponse_Download)(nil), // 403: hashicorp.waypoint.GetJobStreamResponse.Download + (*GetJobStreamResponse_Terminal)(nil), // 404: hashicorp.waypoint.GetJobStreamResponse.Terminal + (*GetJobStreamResponse_Error)(nil), // 405: hashicorp.waypoint.GetJobStreamResponse.Error + (*GetJobStreamResponse_Complete)(nil), // 406: hashicorp.waypoint.GetJobStreamResponse.Complete + (*GetJobStreamResponse_Terminal_Event)(nil), // 407: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event + (*GetJobStreamResponse_Terminal_Event_Status)(nil), // 408: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Status + (*GetJobStreamResponse_Terminal_Event_Line)(nil), // 409: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Line + (*GetJobStreamResponse_Terminal_Event_Raw)(nil), // 410: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Raw + (*GetJobStreamResponse_Terminal_Event_NamedValue)(nil), // 411: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValue + (*GetJobStreamResponse_Terminal_Event_NamedValues)(nil), // 412: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValues + (*GetJobStreamResponse_Terminal_Event_TableEntry)(nil), // 413: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableEntry + (*GetJobStreamResponse_Terminal_Event_TableRow)(nil), // 414: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableRow + (*GetJobStreamResponse_Terminal_Event_Table)(nil), // 415: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Table + (*GetJobStreamResponse_Terminal_Event_StepGroup)(nil), // 416: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.StepGroup + (*GetJobStreamResponse_Terminal_Event_Step)(nil), // 417: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Step + nil, // 418: hashicorp.waypoint.Runner.LabelsEntry + (*Runner_ODR)(nil), // 419: hashicorp.waypoint.Runner.ODR + (*Runner_Local)(nil), // 420: hashicorp.waypoint.Runner.Local + (*Runner_Remote)(nil), // 421: hashicorp.waypoint.Runner.Remote + (*RunnerConfigRequest_Open)(nil), // 422: hashicorp.waypoint.RunnerConfigRequest.Open + (*RunnerJobStreamRequest_Request)(nil), // 423: hashicorp.waypoint.RunnerJobStreamRequest.Request + (*RunnerJobStreamRequest_Ack)(nil), // 424: hashicorp.waypoint.RunnerJobStreamRequest.Ack + (*RunnerJobStreamRequest_Complete)(nil), // 425: hashicorp.waypoint.RunnerJobStreamRequest.Complete + (*RunnerJobStreamRequest_Error)(nil), // 426: hashicorp.waypoint.RunnerJobStreamRequest.Error + (*RunnerJobStreamRequest_Heartbeat)(nil), // 427: hashicorp.waypoint.RunnerJobStreamRequest.Heartbeat + (*RunnerJobStreamRequest_ConfigLoad)(nil), // 428: hashicorp.waypoint.RunnerJobStreamRequest.ConfigLoad + (*RunnerJobStreamRequest_VariableValuesSet)(nil), // 429: hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet + nil, // 430: hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet.FinalValuesEntry + (*RunnerJobStreamResponse_JobAssignment)(nil), // 431: hashicorp.waypoint.RunnerJobStreamResponse.JobAssignment + (*RunnerJobStreamResponse_JobCancel)(nil), // 432: hashicorp.waypoint.RunnerJobStreamResponse.JobCancel + (*ServerConfig_AdvertiseAddr)(nil), // 433: hashicorp.waypoint.ServerConfig.AdvertiseAddr + nil, // 434: hashicorp.waypoint.Hostname.TargetLabelsEntry + (*Hostname_Target)(nil), // 435: hashicorp.waypoint.Hostname.Target + (*Hostname_TargetApp)(nil), // 436: hashicorp.waypoint.Hostname.TargetApp + nil, // 437: hashicorp.waypoint.Build.LabelsEntry + (*Build_Preload)(nil), // 438: hashicorp.waypoint.Build.Preload + nil, // 439: hashicorp.waypoint.OnDemandRunnerConfig.EnvironmentVariablesEntry + nil, // 440: hashicorp.waypoint.PushedArtifact.LabelsEntry + (*PushedArtifact_Preload)(nil), // 441: hashicorp.waypoint.PushedArtifact.Preload + nil, // 442: hashicorp.waypoint.Deployment.LabelsEntry + (*Deployment_Preload)(nil), // 443: hashicorp.waypoint.Deployment.Preload + (*ListInstancesRequest_Application)(nil), // 444: hashicorp.waypoint.ListInstancesRequest.Application + nil, // 445: hashicorp.waypoint.Release.LabelsEntry + (*Release_Preload)(nil), // 446: hashicorp.waypoint.Release.Preload + (*StatusReport_Resource)(nil), // 447: hashicorp.waypoint.StatusReport.Resource + (*StatusReport_Health)(nil), // 448: hashicorp.waypoint.StatusReport.Health + (*GetLogStreamRequest_Application)(nil), // 449: hashicorp.waypoint.GetLogStreamRequest.Application + (*LogBatch_Entry)(nil), // 450: hashicorp.waypoint.LogBatch.Entry + (*ConfigVar_DynamicVal)(nil), // 451: hashicorp.waypoint.ConfigVar.DynamicVal + (*ConfigVar_Target)(nil), // 452: hashicorp.waypoint.ConfigVar.Target + nil, // 453: hashicorp.waypoint.ConfigVar.DynamicVal.ConfigEntry + nil, // 454: hashicorp.waypoint.ConfigGetRequest.LabelsEntry + nil, // 455: hashicorp.waypoint.ConfigSource.ConfigEntry + (*ExecStreamRequest_Start)(nil), // 456: hashicorp.waypoint.ExecStreamRequest.Start + (*ExecStreamRequest_Input)(nil), // 457: hashicorp.waypoint.ExecStreamRequest.Input + (*ExecStreamRequest_PTY)(nil), // 458: hashicorp.waypoint.ExecStreamRequest.PTY + (*ExecStreamRequest_WindowSize)(nil), // 459: hashicorp.waypoint.ExecStreamRequest.WindowSize + (*ExecStreamResponse_Open)(nil), // 460: hashicorp.waypoint.ExecStreamResponse.Open + (*ExecStreamResponse_Exit)(nil), // 461: hashicorp.waypoint.ExecStreamResponse.Exit + (*ExecStreamResponse_Output)(nil), // 462: hashicorp.waypoint.ExecStreamResponse.Output + (*EntrypointConfig_Exec)(nil), // 463: hashicorp.waypoint.EntrypointConfig.Exec + (*EntrypointConfig_URLService)(nil), // 464: hashicorp.waypoint.EntrypointConfig.URLService + (*EntrypointConfig_DeploymentInfo)(nil), // 465: hashicorp.waypoint.EntrypointConfig.DeploymentInfo + nil, // 466: hashicorp.waypoint.EntrypointConfig.DeploymentInfo.LabelsEntry + (*EntrypointExecRequest_Open)(nil), // 467: hashicorp.waypoint.EntrypointExecRequest.Open + (*EntrypointExecRequest_Exit)(nil), // 468: hashicorp.waypoint.EntrypointExecRequest.Exit + (*EntrypointExecRequest_Output)(nil), // 469: hashicorp.waypoint.EntrypointExecRequest.Output + (*EntrypointExecRequest_Error)(nil), // 470: hashicorp.waypoint.EntrypointExecRequest.Error + nil, // 471: hashicorp.waypoint.Pipeline.StepsEntry + (*Pipeline_Step)(nil), // 472: hashicorp.waypoint.Pipeline.Step + (*Pipeline_Step_Exec)(nil), // 473: hashicorp.waypoint.Pipeline.Step.Exec + (*Pipeline_Step_Build)(nil), // 474: hashicorp.waypoint.Pipeline.Step.Build + (*Pipeline_Step_Deploy)(nil), // 475: hashicorp.waypoint.Pipeline.Step.Deploy + (*Pipeline_Step_Release)(nil), // 476: hashicorp.waypoint.Pipeline.Step.Release + (*Pipeline_Step_Up)(nil), // 477: hashicorp.waypoint.Pipeline.Step.Up + (*Pipeline_Step_Pipeline)(nil), // 478: hashicorp.waypoint.Pipeline.Step.Pipeline + (*GetPipelineResponse_Graph)(nil), // 479: hashicorp.waypoint.GetPipelineResponse.Graph + nil, // 480: hashicorp.waypoint.RunPipelineResponse.JobMapEntry + nil, // 481: hashicorp.waypoint.ConfigSyncPipelineResponse.SyncedPipelinesEntry + (*ProjectTemplate_WaypointProject)(nil), // 482: hashicorp.waypoint.ProjectTemplate.WaypointProject + (*ProjectTemplate_TerraformNocodeModule)(nil), // 483: hashicorp.waypoint.ProjectTemplate.TerraformNocodeModule + nil, // 484: hashicorp.waypoint.TokenTransport.MetadataEntry + (*TokenTransport_OAuthCredentials)(nil), // 485: hashicorp.waypoint.TokenTransport.OAuthCredentials + (*Token_Login)(nil), // 486: hashicorp.waypoint.Token.Login + (*Token_Runner)(nil), // 487: hashicorp.waypoint.Token.Runner + (*Token_Invite)(nil), // 488: hashicorp.waypoint.Token.Invite + (*Token_Entrypoint)(nil), // 489: hashicorp.waypoint.Token.Entrypoint + (*Token_Trigger)(nil), // 490: hashicorp.waypoint.Token.Trigger + (*Token_Invite_Signup)(nil), // 491: hashicorp.waypoint.Token.Invite.Signup + nil, // 492: hashicorp.waypoint.GenerateRunnerTokenRequest.LabelsEntry + (*CreateSnapshotResponse_Open)(nil), // 493: hashicorp.waypoint.CreateSnapshotResponse.Open + (*RestoreSnapshotRequest_Open)(nil), // 494: hashicorp.waypoint.RestoreSnapshotRequest.Open + (*Snapshot_Header)(nil), // 495: hashicorp.waypoint.Snapshot.Header + (*Snapshot_Trailer)(nil), // 496: hashicorp.waypoint.Snapshot.Trailer + (*Snapshot_BoltChunk)(nil), // 497: hashicorp.waypoint.Snapshot.BoltChunk + nil, // 498: hashicorp.waypoint.Snapshot.BoltChunk.ItemsEntry + (*emptypb.Empty)(nil), // 499: google.protobuf.Empty + (*timestamppb.Timestamp)(nil), // 500: google.protobuf.Timestamp + (*status.Status)(nil), // 501: google.rpc.Status + (*opaqueany.Any)(nil), // 502: opaqueany.Any } var file_pkg_server_proto_server_proto_depIdxs = []int32{ 32, // 0: hashicorp.waypoint.GetVersionInfoResponse.info:type_name -> hashicorp.waypoint.VersionInfo 31, // 1: hashicorp.waypoint.GetVersionInfoResponse.server_features:type_name -> hashicorp.waypoint.ServerFeatures 4, // 2: hashicorp.waypoint.ServerFeatures.features:type_name -> hashicorp.waypoint.ServerFeatures.feature - 290, // 3: hashicorp.waypoint.VersionInfo.api:type_name -> hashicorp.waypoint.VersionInfo.ProtocolVersion - 290, // 4: hashicorp.waypoint.VersionInfo.entrypoint:type_name -> hashicorp.waypoint.VersionInfo.ProtocolVersion - 304, // 5: hashicorp.waypoint.Application.project:type_name -> hashicorp.waypoint.Ref.Project - 496, // 6: hashicorp.waypoint.Variable.cli:type_name -> google.protobuf.Empty - 291, // 7: hashicorp.waypoint.Variable.file:type_name -> hashicorp.waypoint.Variable.File - 496, // 8: hashicorp.waypoint.Variable.env:type_name -> google.protobuf.Empty - 292, // 9: hashicorp.waypoint.Variable.vcs:type_name -> hashicorp.waypoint.Variable.VCS - 496, // 10: hashicorp.waypoint.Variable.server:type_name -> google.protobuf.Empty - 496, // 11: hashicorp.waypoint.Variable.dynamic:type_name -> google.protobuf.Empty - 295, // 12: hashicorp.waypoint.Variable.final_value:type_name -> hashicorp.waypoint.Variable.FinalValue + 293, // 3: hashicorp.waypoint.VersionInfo.api:type_name -> hashicorp.waypoint.VersionInfo.ProtocolVersion + 293, // 4: hashicorp.waypoint.VersionInfo.entrypoint:type_name -> hashicorp.waypoint.VersionInfo.ProtocolVersion + 307, // 5: hashicorp.waypoint.Application.project:type_name -> hashicorp.waypoint.Ref.Project + 499, // 6: hashicorp.waypoint.Variable.cli:type_name -> google.protobuf.Empty + 294, // 7: hashicorp.waypoint.Variable.file:type_name -> hashicorp.waypoint.Variable.File + 499, // 8: hashicorp.waypoint.Variable.env:type_name -> google.protobuf.Empty + 295, // 9: hashicorp.waypoint.Variable.vcs:type_name -> hashicorp.waypoint.Variable.VCS + 499, // 10: hashicorp.waypoint.Variable.server:type_name -> google.protobuf.Empty + 499, // 11: hashicorp.waypoint.Variable.dynamic:type_name -> google.protobuf.Empty + 298, // 12: hashicorp.waypoint.Variable.final_value:type_name -> hashicorp.waypoint.Variable.FinalValue 33, // 13: hashicorp.waypoint.Project.applications:type_name -> hashicorp.waypoint.Application - 340, // 14: hashicorp.waypoint.Project.data_source:type_name -> hashicorp.waypoint.Job.DataSource - 296, // 15: hashicorp.waypoint.Project.data_source_poll:type_name -> hashicorp.waypoint.Project.Poll + 343, // 14: hashicorp.waypoint.Project.data_source:type_name -> hashicorp.waypoint.Job.DataSource + 299, // 15: hashicorp.waypoint.Project.data_source_poll:type_name -> hashicorp.waypoint.Project.Poll 28, // 16: hashicorp.waypoint.Project.waypoint_hcl_format:type_name -> hashicorp.waypoint.Hcl.Format 34, // 17: hashicorp.waypoint.Project.variables:type_name -> hashicorp.waypoint.Variable - 297, // 18: hashicorp.waypoint.Project.status_report_poll:type_name -> hashicorp.waypoint.Project.AppStatusPoll + 300, // 18: hashicorp.waypoint.Project.status_report_poll:type_name -> hashicorp.waypoint.Project.AppStatusPoll 6, // 19: hashicorp.waypoint.Project.state:type_name -> hashicorp.waypoint.Project.ProjectState - 327, // 20: hashicorp.waypoint.Project.project_template:type_name -> hashicorp.waypoint.Ref.ProjectTemplate - 298, // 21: hashicorp.waypoint.Workspace.projects:type_name -> hashicorp.waypoint.Workspace.Project - 497, // 22: hashicorp.waypoint.Workspace.active_time:type_name -> google.protobuf.Timestamp - 300, // 23: hashicorp.waypoint.User.links:type_name -> hashicorp.waypoint.User.Link + 330, // 20: hashicorp.waypoint.Project.project_template:type_name -> hashicorp.waypoint.Ref.ProjectTemplate + 301, // 21: hashicorp.waypoint.Workspace.projects:type_name -> hashicorp.waypoint.Workspace.Project + 500, // 22: hashicorp.waypoint.Workspace.active_time:type_name -> google.protobuf.Timestamp + 303, // 23: hashicorp.waypoint.User.links:type_name -> hashicorp.waypoint.User.Link 7, // 24: hashicorp.waypoint.Component.type:type_name -> hashicorp.waypoint.Component.Type 8, // 25: hashicorp.waypoint.Status.state:type_name -> hashicorp.waypoint.Status.State - 498, // 26: hashicorp.waypoint.Status.error:type_name -> google.rpc.Status - 497, // 27: hashicorp.waypoint.Status.start_time:type_name -> google.protobuf.Timestamp - 497, // 28: hashicorp.waypoint.Status.complete_time:type_name -> google.protobuf.Timestamp - 329, // 29: hashicorp.waypoint.StatusFilter.filters:type_name -> hashicorp.waypoint.StatusFilter.Filter + 501, // 26: hashicorp.waypoint.Status.error:type_name -> google.rpc.Status + 500, // 27: hashicorp.waypoint.Status.start_time:type_name -> google.protobuf.Timestamp + 500, // 28: hashicorp.waypoint.Status.complete_time:type_name -> google.protobuf.Timestamp + 332, // 29: hashicorp.waypoint.StatusFilter.filters:type_name -> hashicorp.waypoint.StatusFilter.Filter 10, // 30: hashicorp.waypoint.OperationOrder.order:type_name -> hashicorp.waypoint.OperationOrder.Order - 499, // 31: hashicorp.waypoint.DeclaredResource.state:type_name -> opaqueany.Any + 502, // 31: hashicorp.waypoint.DeclaredResource.state:type_name -> opaqueany.Any 0, // 32: hashicorp.waypoint.DeclaredResource.category_display_hint:type_name -> hashicorp.waypoint.ResourceCategoryDisplayHint - 499, // 33: hashicorp.waypoint.DestroyedResource.state:type_name -> opaqueany.Any - 330, // 34: hashicorp.waypoint.TaskLaunchInfo.environment_variables:type_name -> hashicorp.waypoint.TaskLaunchInfo.EnvironmentVariablesEntry - 322, // 35: hashicorp.waypoint.Task.task_job:type_name -> hashicorp.waypoint.Ref.Job - 322, // 36: hashicorp.waypoint.Task.watch_job:type_name -> hashicorp.waypoint.Ref.Job - 322, // 37: hashicorp.waypoint.Task.start_job:type_name -> hashicorp.waypoint.Ref.Job - 322, // 38: hashicorp.waypoint.Task.stop_job:type_name -> hashicorp.waypoint.Ref.Job - 499, // 39: hashicorp.waypoint.Task.state:type_name -> opaqueany.Any + 502, // 33: hashicorp.waypoint.DestroyedResource.state:type_name -> opaqueany.Any + 333, // 34: hashicorp.waypoint.TaskLaunchInfo.environment_variables:type_name -> hashicorp.waypoint.TaskLaunchInfo.EnvironmentVariablesEntry + 325, // 35: hashicorp.waypoint.Task.task_job:type_name -> hashicorp.waypoint.Ref.Job + 325, // 36: hashicorp.waypoint.Task.watch_job:type_name -> hashicorp.waypoint.Ref.Job + 325, // 37: hashicorp.waypoint.Task.start_job:type_name -> hashicorp.waypoint.Ref.Job + 325, // 38: hashicorp.waypoint.Task.stop_job:type_name -> hashicorp.waypoint.Ref.Job + 502, // 39: hashicorp.waypoint.Task.state:type_name -> opaqueany.Any 11, // 40: hashicorp.waypoint.Task.job_state:type_name -> hashicorp.waypoint.Task.State 48, // 41: hashicorp.waypoint.UpsertTaskRequest.task:type_name -> hashicorp.waypoint.Task 48, // 42: hashicorp.waypoint.UpsertTaskResponse.task:type_name -> hashicorp.waypoint.Task - 323, // 43: hashicorp.waypoint.GetTaskRequest.ref:type_name -> hashicorp.waypoint.Ref.Task + 326, // 43: hashicorp.waypoint.GetTaskRequest.ref:type_name -> hashicorp.waypoint.Ref.Task 48, // 44: hashicorp.waypoint.GetTaskResponse.task:type_name -> hashicorp.waypoint.Task 82, // 45: hashicorp.waypoint.GetTaskResponse.task_job:type_name -> hashicorp.waypoint.Job 82, // 46: hashicorp.waypoint.GetTaskResponse.start_job:type_name -> hashicorp.waypoint.Job 82, // 47: hashicorp.waypoint.GetTaskResponse.stop_job:type_name -> hashicorp.waypoint.Job 82, // 48: hashicorp.waypoint.GetTaskResponse.watch_job:type_name -> hashicorp.waypoint.Job - 323, // 49: hashicorp.waypoint.DeleteTaskRequest.ref:type_name -> hashicorp.waypoint.Ref.Task + 326, // 49: hashicorp.waypoint.DeleteTaskRequest.ref:type_name -> hashicorp.waypoint.Ref.Task 11, // 50: hashicorp.waypoint.ListTaskRequest.taskState:type_name -> hashicorp.waypoint.Task.State 52, // 51: hashicorp.waypoint.ListTaskResponse.tasks:type_name -> hashicorp.waypoint.GetTaskResponse - 323, // 52: hashicorp.waypoint.CancelTaskRequest.ref:type_name -> hashicorp.waypoint.Ref.Task - 315, // 53: hashicorp.waypoint.GetUserRequest.user:type_name -> hashicorp.waypoint.Ref.User + 326, // 52: hashicorp.waypoint.CancelTaskRequest.ref:type_name -> hashicorp.waypoint.Ref.Task + 318, // 53: hashicorp.waypoint.GetUserRequest.user:type_name -> hashicorp.waypoint.Ref.User 37, // 54: hashicorp.waypoint.GetUserResponse.user:type_name -> hashicorp.waypoint.User 37, // 55: hashicorp.waypoint.ListUsersResponse.users:type_name -> hashicorp.waypoint.User 37, // 56: hashicorp.waypoint.UpdateUserRequest.user:type_name -> hashicorp.waypoint.User 37, // 57: hashicorp.waypoint.UpdateUserResponse.user:type_name -> hashicorp.waypoint.User - 315, // 58: hashicorp.waypoint.DeleteUserRequest.user:type_name -> hashicorp.waypoint.Ref.User - 331, // 59: hashicorp.waypoint.AuthMethod.oidc:type_name -> hashicorp.waypoint.AuthMethod.OIDC + 318, // 58: hashicorp.waypoint.DeleteUserRequest.user:type_name -> hashicorp.waypoint.Ref.User + 334, // 59: hashicorp.waypoint.AuthMethod.oidc:type_name -> hashicorp.waypoint.AuthMethod.OIDC 12, // 60: hashicorp.waypoint.OIDCAuthMethod.kind:type_name -> hashicorp.waypoint.OIDCAuthMethod.Kind 64, // 61: hashicorp.waypoint.UpsertAuthMethodRequest.auth_method:type_name -> hashicorp.waypoint.AuthMethod 64, // 62: hashicorp.waypoint.UpsertAuthMethodResponse.auth_method:type_name -> hashicorp.waypoint.AuthMethod - 318, // 63: hashicorp.waypoint.GetAuthMethodRequest.auth_method:type_name -> hashicorp.waypoint.Ref.AuthMethod + 321, // 63: hashicorp.waypoint.GetAuthMethodRequest.auth_method:type_name -> hashicorp.waypoint.Ref.AuthMethod 64, // 64: hashicorp.waypoint.GetAuthMethodResponse.auth_method:type_name -> hashicorp.waypoint.AuthMethod - 318, // 65: hashicorp.waypoint.DeleteAuthMethodRequest.auth_method:type_name -> hashicorp.waypoint.Ref.AuthMethod + 321, // 65: hashicorp.waypoint.DeleteAuthMethodRequest.auth_method:type_name -> hashicorp.waypoint.Ref.AuthMethod 64, // 66: hashicorp.waypoint.ListAuthMethodsResponse.auth_methods:type_name -> hashicorp.waypoint.AuthMethod 65, // 67: hashicorp.waypoint.ListOIDCAuthMethodsResponse.auth_methods:type_name -> hashicorp.waypoint.OIDCAuthMethod - 318, // 68: hashicorp.waypoint.GetOIDCAuthURLRequest.auth_method:type_name -> hashicorp.waypoint.Ref.AuthMethod - 318, // 69: hashicorp.waypoint.CompleteOIDCAuthRequest.auth_method:type_name -> hashicorp.waypoint.Ref.AuthMethod + 321, // 68: hashicorp.waypoint.GetOIDCAuthURLRequest.auth_method:type_name -> hashicorp.waypoint.Ref.AuthMethod + 321, // 69: hashicorp.waypoint.CompleteOIDCAuthRequest.auth_method:type_name -> hashicorp.waypoint.Ref.AuthMethod 37, // 70: hashicorp.waypoint.CompleteOIDCAuthResponse.user:type_name -> hashicorp.waypoint.User 82, // 71: hashicorp.waypoint.QueueJobRequest.job:type_name -> hashicorp.waypoint.Job 82, // 72: hashicorp.waypoint.ValidateJobRequest.job:type_name -> hashicorp.waypoint.Job - 498, // 73: hashicorp.waypoint.ValidateJobResponse.validation_error:type_name -> google.rpc.Status - 303, // 74: hashicorp.waypoint.Job.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 75: hashicorp.waypoint.Job.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 311, // 76: hashicorp.waypoint.Job.target_runner:type_name -> hashicorp.waypoint.Ref.Runner - 320, // 77: hashicorp.waypoint.Job.ondemand_runner:type_name -> hashicorp.waypoint.Ref.OnDemandRunnerConfig - 334, // 78: hashicorp.waypoint.Job.ondemand_runner_task:type_name -> hashicorp.waypoint.Job.TaskOverride - 335, // 79: hashicorp.waypoint.Job.labels:type_name -> hashicorp.waypoint.Job.LabelsEntry - 340, // 80: hashicorp.waypoint.Job.data_source:type_name -> hashicorp.waypoint.Job.DataSource - 336, // 81: hashicorp.waypoint.Job.data_source_overrides:type_name -> hashicorp.waypoint.Job.DataSourceOverridesEntry - 253, // 82: hashicorp.waypoint.Job.waypoint_hcl:type_name -> hashicorp.waypoint.Hcl + 501, // 73: hashicorp.waypoint.ValidateJobResponse.validation_error:type_name -> google.rpc.Status + 306, // 74: hashicorp.waypoint.Job.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 75: hashicorp.waypoint.Job.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 314, // 76: hashicorp.waypoint.Job.target_runner:type_name -> hashicorp.waypoint.Ref.Runner + 323, // 77: hashicorp.waypoint.Job.ondemand_runner:type_name -> hashicorp.waypoint.Ref.OnDemandRunnerConfig + 337, // 78: hashicorp.waypoint.Job.ondemand_runner_task:type_name -> hashicorp.waypoint.Job.TaskOverride + 338, // 79: hashicorp.waypoint.Job.labels:type_name -> hashicorp.waypoint.Job.LabelsEntry + 343, // 80: hashicorp.waypoint.Job.data_source:type_name -> hashicorp.waypoint.Job.DataSource + 339, // 81: hashicorp.waypoint.Job.data_source_overrides:type_name -> hashicorp.waypoint.Job.DataSourceOverridesEntry + 256, // 82: hashicorp.waypoint.Job.waypoint_hcl:type_name -> hashicorp.waypoint.Hcl 34, // 83: hashicorp.waypoint.Job.variables:type_name -> hashicorp.waypoint.Variable - 344, // 84: hashicorp.waypoint.Job.noop:type_name -> hashicorp.waypoint.Job.Noop - 351, // 85: hashicorp.waypoint.Job.build:type_name -> hashicorp.waypoint.Job.BuildOp - 353, // 86: hashicorp.waypoint.Job.push:type_name -> hashicorp.waypoint.Job.PushOp - 355, // 87: hashicorp.waypoint.Job.deploy:type_name -> hashicorp.waypoint.Job.DeployOp - 360, // 88: hashicorp.waypoint.Job.destroy:type_name -> hashicorp.waypoint.Job.DestroyOp - 361, // 89: hashicorp.waypoint.Job.release:type_name -> hashicorp.waypoint.Job.ReleaseOp - 347, // 90: hashicorp.waypoint.Job.validate:type_name -> hashicorp.waypoint.Job.ValidateOp - 349, // 91: hashicorp.waypoint.Job.auth:type_name -> hashicorp.waypoint.Job.AuthOp - 371, // 92: hashicorp.waypoint.Job.docs:type_name -> hashicorp.waypoint.Job.DocsOp - 373, // 93: hashicorp.waypoint.Job.config_sync:type_name -> hashicorp.waypoint.Job.ConfigSyncOp - 357, // 94: hashicorp.waypoint.Job.exec:type_name -> hashicorp.waypoint.Job.ExecOp - 345, // 95: hashicorp.waypoint.Job.up:type_name -> hashicorp.waypoint.Job.UpOp - 359, // 96: hashicorp.waypoint.Job.logs:type_name -> hashicorp.waypoint.Job.LogsOp - 384, // 97: hashicorp.waypoint.Job.queue_project:type_name -> hashicorp.waypoint.Job.QueueProjectOp - 377, // 98: hashicorp.waypoint.Job.poll:type_name -> hashicorp.waypoint.Job.PollOp - 369, // 99: hashicorp.waypoint.Job.status_report:type_name -> hashicorp.waypoint.Job.StatusReportOp - 364, // 100: hashicorp.waypoint.Job.start_task:type_name -> hashicorp.waypoint.Job.StartTaskLaunchOp - 366, // 101: hashicorp.waypoint.Job.stop_task:type_name -> hashicorp.waypoint.Job.StopTaskLaunchOp - 379, // 102: hashicorp.waypoint.Job.init:type_name -> hashicorp.waypoint.Job.InitOp - 367, // 103: hashicorp.waypoint.Job.watch_task:type_name -> hashicorp.waypoint.Job.WatchTaskOp - 381, // 104: hashicorp.waypoint.Job.pipeline_step:type_name -> hashicorp.waypoint.Job.PipelineStepOp - 382, // 105: hashicorp.waypoint.Job.destroy_project:type_name -> hashicorp.waypoint.Job.DestroyProjectOp + 347, // 84: hashicorp.waypoint.Job.noop:type_name -> hashicorp.waypoint.Job.Noop + 354, // 85: hashicorp.waypoint.Job.build:type_name -> hashicorp.waypoint.Job.BuildOp + 356, // 86: hashicorp.waypoint.Job.push:type_name -> hashicorp.waypoint.Job.PushOp + 358, // 87: hashicorp.waypoint.Job.deploy:type_name -> hashicorp.waypoint.Job.DeployOp + 363, // 88: hashicorp.waypoint.Job.destroy:type_name -> hashicorp.waypoint.Job.DestroyOp + 364, // 89: hashicorp.waypoint.Job.release:type_name -> hashicorp.waypoint.Job.ReleaseOp + 350, // 90: hashicorp.waypoint.Job.validate:type_name -> hashicorp.waypoint.Job.ValidateOp + 352, // 91: hashicorp.waypoint.Job.auth:type_name -> hashicorp.waypoint.Job.AuthOp + 374, // 92: hashicorp.waypoint.Job.docs:type_name -> hashicorp.waypoint.Job.DocsOp + 376, // 93: hashicorp.waypoint.Job.config_sync:type_name -> hashicorp.waypoint.Job.ConfigSyncOp + 360, // 94: hashicorp.waypoint.Job.exec:type_name -> hashicorp.waypoint.Job.ExecOp + 348, // 95: hashicorp.waypoint.Job.up:type_name -> hashicorp.waypoint.Job.UpOp + 362, // 96: hashicorp.waypoint.Job.logs:type_name -> hashicorp.waypoint.Job.LogsOp + 387, // 97: hashicorp.waypoint.Job.queue_project:type_name -> hashicorp.waypoint.Job.QueueProjectOp + 380, // 98: hashicorp.waypoint.Job.poll:type_name -> hashicorp.waypoint.Job.PollOp + 372, // 99: hashicorp.waypoint.Job.status_report:type_name -> hashicorp.waypoint.Job.StatusReportOp + 367, // 100: hashicorp.waypoint.Job.start_task:type_name -> hashicorp.waypoint.Job.StartTaskLaunchOp + 369, // 101: hashicorp.waypoint.Job.stop_task:type_name -> hashicorp.waypoint.Job.StopTaskLaunchOp + 382, // 102: hashicorp.waypoint.Job.init:type_name -> hashicorp.waypoint.Job.InitOp + 370, // 103: hashicorp.waypoint.Job.watch_task:type_name -> hashicorp.waypoint.Job.WatchTaskOp + 384, // 104: hashicorp.waypoint.Job.pipeline_step:type_name -> hashicorp.waypoint.Job.PipelineStepOp + 385, // 105: hashicorp.waypoint.Job.destroy_project:type_name -> hashicorp.waypoint.Job.DestroyProjectOp 13, // 106: hashicorp.waypoint.Job.state:type_name -> hashicorp.waypoint.Job.State - 313, // 107: hashicorp.waypoint.Job.assigned_runner:type_name -> hashicorp.waypoint.Ref.RunnerId - 497, // 108: hashicorp.waypoint.Job.queue_time:type_name -> google.protobuf.Timestamp - 497, // 109: hashicorp.waypoint.Job.assign_time:type_name -> google.protobuf.Timestamp - 497, // 110: hashicorp.waypoint.Job.ack_time:type_name -> google.protobuf.Timestamp - 497, // 111: hashicorp.waypoint.Job.complete_time:type_name -> google.protobuf.Timestamp - 386, // 112: hashicorp.waypoint.Job.data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 337, // 113: hashicorp.waypoint.Job.variable_final_values:type_name -> hashicorp.waypoint.Job.VariableFinalValuesEntry - 339, // 114: hashicorp.waypoint.Job.config:type_name -> hashicorp.waypoint.Job.Config - 498, // 115: hashicorp.waypoint.Job.error:type_name -> google.rpc.Status - 338, // 116: hashicorp.waypoint.Job.result:type_name -> hashicorp.waypoint.Job.Result - 497, // 117: hashicorp.waypoint.Job.cancel_time:type_name -> google.protobuf.Timestamp - 497, // 118: hashicorp.waypoint.Job.expire_time:type_name -> google.protobuf.Timestamp - 323, // 119: hashicorp.waypoint.Job.task:type_name -> hashicorp.waypoint.Ref.Task - 326, // 120: hashicorp.waypoint.Job.pipeline:type_name -> hashicorp.waypoint.Ref.PipelineStep - 394, // 121: hashicorp.waypoint.Documentation.fields:type_name -> hashicorp.waypoint.Documentation.FieldsEntry - 396, // 122: hashicorp.waypoint.Documentation.mappers:type_name -> hashicorp.waypoint.Documentation.Mapper - 305, // 123: hashicorp.waypoint.ListJobsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 304, // 124: hashicorp.waypoint.ListJobsRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 303, // 125: hashicorp.waypoint.ListJobsRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 311, // 126: hashicorp.waypoint.ListJobsRequest.targetRunner:type_name -> hashicorp.waypoint.Ref.Runner - 326, // 127: hashicorp.waypoint.ListJobsRequest.pipeline:type_name -> hashicorp.waypoint.Ref.PipelineStep + 316, // 107: hashicorp.waypoint.Job.assigned_runner:type_name -> hashicorp.waypoint.Ref.RunnerId + 500, // 108: hashicorp.waypoint.Job.queue_time:type_name -> google.protobuf.Timestamp + 500, // 109: hashicorp.waypoint.Job.assign_time:type_name -> google.protobuf.Timestamp + 500, // 110: hashicorp.waypoint.Job.ack_time:type_name -> google.protobuf.Timestamp + 500, // 111: hashicorp.waypoint.Job.complete_time:type_name -> google.protobuf.Timestamp + 389, // 112: hashicorp.waypoint.Job.data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 340, // 113: hashicorp.waypoint.Job.variable_final_values:type_name -> hashicorp.waypoint.Job.VariableFinalValuesEntry + 342, // 114: hashicorp.waypoint.Job.config:type_name -> hashicorp.waypoint.Job.Config + 501, // 115: hashicorp.waypoint.Job.error:type_name -> google.rpc.Status + 341, // 116: hashicorp.waypoint.Job.result:type_name -> hashicorp.waypoint.Job.Result + 500, // 117: hashicorp.waypoint.Job.cancel_time:type_name -> google.protobuf.Timestamp + 500, // 118: hashicorp.waypoint.Job.expire_time:type_name -> google.protobuf.Timestamp + 326, // 119: hashicorp.waypoint.Job.task:type_name -> hashicorp.waypoint.Ref.Task + 329, // 120: hashicorp.waypoint.Job.pipeline:type_name -> hashicorp.waypoint.Ref.PipelineStep + 397, // 121: hashicorp.waypoint.Documentation.fields:type_name -> hashicorp.waypoint.Documentation.FieldsEntry + 399, // 122: hashicorp.waypoint.Documentation.mappers:type_name -> hashicorp.waypoint.Documentation.Mapper + 308, // 123: hashicorp.waypoint.ListJobsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 307, // 124: hashicorp.waypoint.ListJobsRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 306, // 125: hashicorp.waypoint.ListJobsRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 314, // 126: hashicorp.waypoint.ListJobsRequest.targetRunner:type_name -> hashicorp.waypoint.Ref.Runner + 329, // 127: hashicorp.waypoint.ListJobsRequest.pipeline:type_name -> hashicorp.waypoint.Ref.PipelineStep 13, // 128: hashicorp.waypoint.ListJobsRequest.jobState:type_name -> hashicorp.waypoint.Job.State - 257, // 129: hashicorp.waypoint.ListJobsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest + 260, // 129: hashicorp.waypoint.ListJobsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest 82, // 130: hashicorp.waypoint.ListJobsResponse.jobs:type_name -> hashicorp.waypoint.Job - 258, // 131: hashicorp.waypoint.ListJobsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse - 397, // 132: hashicorp.waypoint.GetJobStreamResponse.open:type_name -> hashicorp.waypoint.GetJobStreamResponse.Open - 398, // 133: hashicorp.waypoint.GetJobStreamResponse.state:type_name -> hashicorp.waypoint.GetJobStreamResponse.State - 399, // 134: hashicorp.waypoint.GetJobStreamResponse.job:type_name -> hashicorp.waypoint.GetJobStreamResponse.JobChange - 401, // 135: hashicorp.waypoint.GetJobStreamResponse.terminal:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal - 400, // 136: hashicorp.waypoint.GetJobStreamResponse.download:type_name -> hashicorp.waypoint.GetJobStreamResponse.Download - 402, // 137: hashicorp.waypoint.GetJobStreamResponse.error:type_name -> hashicorp.waypoint.GetJobStreamResponse.Error - 403, // 138: hashicorp.waypoint.GetJobStreamResponse.complete:type_name -> hashicorp.waypoint.GetJobStreamResponse.Complete - 416, // 139: hashicorp.waypoint.Runner.odr:type_name -> hashicorp.waypoint.Runner.ODR - 417, // 140: hashicorp.waypoint.Runner.local:type_name -> hashicorp.waypoint.Runner.Local - 418, // 141: hashicorp.waypoint.Runner.remote:type_name -> hashicorp.waypoint.Runner.Remote + 261, // 131: hashicorp.waypoint.ListJobsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse + 400, // 132: hashicorp.waypoint.GetJobStreamResponse.open:type_name -> hashicorp.waypoint.GetJobStreamResponse.Open + 401, // 133: hashicorp.waypoint.GetJobStreamResponse.state:type_name -> hashicorp.waypoint.GetJobStreamResponse.State + 402, // 134: hashicorp.waypoint.GetJobStreamResponse.job:type_name -> hashicorp.waypoint.GetJobStreamResponse.JobChange + 404, // 135: hashicorp.waypoint.GetJobStreamResponse.terminal:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal + 403, // 136: hashicorp.waypoint.GetJobStreamResponse.download:type_name -> hashicorp.waypoint.GetJobStreamResponse.Download + 405, // 137: hashicorp.waypoint.GetJobStreamResponse.error:type_name -> hashicorp.waypoint.GetJobStreamResponse.Error + 406, // 138: hashicorp.waypoint.GetJobStreamResponse.complete:type_name -> hashicorp.waypoint.GetJobStreamResponse.Complete + 419, // 139: hashicorp.waypoint.Runner.odr:type_name -> hashicorp.waypoint.Runner.ODR + 420, // 140: hashicorp.waypoint.Runner.local:type_name -> hashicorp.waypoint.Runner.Local + 421, // 141: hashicorp.waypoint.Runner.remote:type_name -> hashicorp.waypoint.Runner.Remote 39, // 142: hashicorp.waypoint.Runner.components:type_name -> hashicorp.waypoint.Component - 415, // 143: hashicorp.waypoint.Runner.labels:type_name -> hashicorp.waypoint.Runner.LabelsEntry - 497, // 144: hashicorp.waypoint.Runner.first_seen:type_name -> google.protobuf.Timestamp - 497, // 145: hashicorp.waypoint.Runner.last_seen:type_name -> google.protobuf.Timestamp + 418, // 143: hashicorp.waypoint.Runner.labels:type_name -> hashicorp.waypoint.Runner.LabelsEntry + 500, // 144: hashicorp.waypoint.Runner.first_seen:type_name -> google.protobuf.Timestamp + 500, // 145: hashicorp.waypoint.Runner.last_seen:type_name -> google.protobuf.Timestamp 15, // 146: hashicorp.waypoint.Runner.adoption_state:type_name -> hashicorp.waypoint.Runner.AdoptionState 89, // 147: hashicorp.waypoint.RunnerTokenRequest.runner:type_name -> hashicorp.waypoint.Runner - 419, // 148: hashicorp.waypoint.RunnerConfigRequest.open:type_name -> hashicorp.waypoint.RunnerConfigRequest.Open + 422, // 148: hashicorp.waypoint.RunnerConfigRequest.open:type_name -> hashicorp.waypoint.RunnerConfigRequest.Open 94, // 149: hashicorp.waypoint.RunnerConfigResponse.config:type_name -> hashicorp.waypoint.RunnerConfig 192, // 150: hashicorp.waypoint.RunnerConfig.config_vars:type_name -> hashicorp.waypoint.ConfigVar - 197, // 151: hashicorp.waypoint.RunnerConfig.config_sources:type_name -> hashicorp.waypoint.ConfigSource - 420, // 152: hashicorp.waypoint.RunnerJobStreamRequest.request:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Request - 421, // 153: hashicorp.waypoint.RunnerJobStreamRequest.ack:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Ack - 422, // 154: hashicorp.waypoint.RunnerJobStreamRequest.complete:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Complete - 423, // 155: hashicorp.waypoint.RunnerJobStreamRequest.error:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Error - 401, // 156: hashicorp.waypoint.RunnerJobStreamRequest.terminal:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal - 400, // 157: hashicorp.waypoint.RunnerJobStreamRequest.download:type_name -> hashicorp.waypoint.GetJobStreamResponse.Download - 425, // 158: hashicorp.waypoint.RunnerJobStreamRequest.config_load:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.ConfigLoad - 426, // 159: hashicorp.waypoint.RunnerJobStreamRequest.variable_values_set:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet - 424, // 160: hashicorp.waypoint.RunnerJobStreamRequest.heartbeat:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Heartbeat - 428, // 161: hashicorp.waypoint.RunnerJobStreamResponse.assignment:type_name -> hashicorp.waypoint.RunnerJobStreamResponse.JobAssignment - 429, // 162: hashicorp.waypoint.RunnerJobStreamResponse.cancel:type_name -> hashicorp.waypoint.RunnerJobStreamResponse.JobCancel + 199, // 151: hashicorp.waypoint.RunnerConfig.config_sources:type_name -> hashicorp.waypoint.ConfigSource + 423, // 152: hashicorp.waypoint.RunnerJobStreamRequest.request:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Request + 424, // 153: hashicorp.waypoint.RunnerJobStreamRequest.ack:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Ack + 425, // 154: hashicorp.waypoint.RunnerJobStreamRequest.complete:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Complete + 426, // 155: hashicorp.waypoint.RunnerJobStreamRequest.error:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Error + 404, // 156: hashicorp.waypoint.RunnerJobStreamRequest.terminal:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal + 403, // 157: hashicorp.waypoint.RunnerJobStreamRequest.download:type_name -> hashicorp.waypoint.GetJobStreamResponse.Download + 428, // 158: hashicorp.waypoint.RunnerJobStreamRequest.config_load:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.ConfigLoad + 429, // 159: hashicorp.waypoint.RunnerJobStreamRequest.variable_values_set:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet + 427, // 160: hashicorp.waypoint.RunnerJobStreamRequest.heartbeat:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.Heartbeat + 431, // 161: hashicorp.waypoint.RunnerJobStreamResponse.assignment:type_name -> hashicorp.waypoint.RunnerJobStreamResponse.JobAssignment + 432, // 162: hashicorp.waypoint.RunnerJobStreamResponse.cancel:type_name -> hashicorp.waypoint.RunnerJobStreamResponse.JobCancel 89, // 163: hashicorp.waypoint.ListRunnersResponse.runners:type_name -> hashicorp.waypoint.Runner 106, // 164: hashicorp.waypoint.SetServerConfigRequest.config:type_name -> hashicorp.waypoint.ServerConfig 106, // 165: hashicorp.waypoint.GetServerConfigResponse.config:type_name -> hashicorp.waypoint.ServerConfig - 430, // 166: hashicorp.waypoint.ServerConfig.advertise_addrs:type_name -> hashicorp.waypoint.ServerConfig.AdvertiseAddr - 432, // 167: hashicorp.waypoint.CreateHostnameRequest.target:type_name -> hashicorp.waypoint.Hostname.Target + 433, // 166: hashicorp.waypoint.ServerConfig.advertise_addrs:type_name -> hashicorp.waypoint.ServerConfig.AdvertiseAddr + 435, // 167: hashicorp.waypoint.CreateHostnameRequest.target:type_name -> hashicorp.waypoint.Hostname.Target 112, // 168: hashicorp.waypoint.CreateHostnameResponse.hostname:type_name -> hashicorp.waypoint.Hostname - 432, // 169: hashicorp.waypoint.ListHostnamesRequest.target:type_name -> hashicorp.waypoint.Hostname.Target + 435, // 169: hashicorp.waypoint.ListHostnamesRequest.target:type_name -> hashicorp.waypoint.Hostname.Target 112, // 170: hashicorp.waypoint.ListHostnamesResponse.hostnames:type_name -> hashicorp.waypoint.Hostname - 431, // 171: hashicorp.waypoint.Hostname.target_labels:type_name -> hashicorp.waypoint.Hostname.TargetLabelsEntry - 496, // 172: hashicorp.waypoint.ListWorkspacesRequest.global:type_name -> google.protobuf.Empty - 304, // 173: hashicorp.waypoint.ListWorkspacesRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 303, // 174: hashicorp.waypoint.ListWorkspacesRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 434, // 171: hashicorp.waypoint.Hostname.target_labels:type_name -> hashicorp.waypoint.Hostname.TargetLabelsEntry + 499, // 172: hashicorp.waypoint.ListWorkspacesRequest.global:type_name -> google.protobuf.Empty + 307, // 173: hashicorp.waypoint.ListWorkspacesRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 306, // 174: hashicorp.waypoint.ListWorkspacesRequest.application:type_name -> hashicorp.waypoint.Ref.Application 36, // 175: hashicorp.waypoint.ListWorkspacesResponse.workspaces:type_name -> hashicorp.waypoint.Workspace - 305, // 176: hashicorp.waypoint.GetWorkspaceRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 308, // 176: hashicorp.waypoint.GetWorkspaceRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 36, // 177: hashicorp.waypoint.GetWorkspaceResponse.workspace:type_name -> hashicorp.waypoint.Workspace 36, // 178: hashicorp.waypoint.UpsertWorkspaceRequest.workspace:type_name -> hashicorp.waypoint.Workspace 36, // 179: hashicorp.waypoint.UpsertWorkspaceResponse.workspace:type_name -> hashicorp.waypoint.Workspace 35, // 180: hashicorp.waypoint.UpsertProjectRequest.project:type_name -> hashicorp.waypoint.Project 35, // 181: hashicorp.waypoint.UpsertProjectResponse.project:type_name -> hashicorp.waypoint.Project - 304, // 182: hashicorp.waypoint.GetProjectRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 307, // 182: hashicorp.waypoint.GetProjectRequest.project:type_name -> hashicorp.waypoint.Ref.Project 35, // 183: hashicorp.waypoint.GetProjectResponse.project:type_name -> hashicorp.waypoint.Project - 298, // 184: hashicorp.waypoint.GetProjectResponse.workspaces:type_name -> hashicorp.waypoint.Workspace.Project - 257, // 185: hashicorp.waypoint.ListProjectsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest - 304, // 186: hashicorp.waypoint.ListProjectsResponse.projects:type_name -> hashicorp.waypoint.Ref.Project - 258, // 187: hashicorp.waypoint.ListProjectsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse - 304, // 188: hashicorp.waypoint.DestroyProjectRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 303, // 189: hashicorp.waypoint.GetApplicationRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 301, // 184: hashicorp.waypoint.GetProjectResponse.workspaces:type_name -> hashicorp.waypoint.Workspace.Project + 260, // 185: hashicorp.waypoint.ListProjectsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest + 307, // 186: hashicorp.waypoint.ListProjectsResponse.projects:type_name -> hashicorp.waypoint.Ref.Project + 261, // 187: hashicorp.waypoint.ListProjectsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse + 307, // 188: hashicorp.waypoint.DestroyProjectRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 306, // 189: hashicorp.waypoint.GetApplicationRequest.application:type_name -> hashicorp.waypoint.Ref.Application 33, // 190: hashicorp.waypoint.GetApplicationResponse.application:type_name -> hashicorp.waypoint.Application - 304, // 191: hashicorp.waypoint.UpsertApplicationRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 307, // 191: hashicorp.waypoint.UpsertApplicationRequest.project:type_name -> hashicorp.waypoint.Ref.Project 33, // 192: hashicorp.waypoint.UpsertApplicationResponse.application:type_name -> hashicorp.waypoint.Application 136, // 193: hashicorp.waypoint.UpsertBuildRequest.build:type_name -> hashicorp.waypoint.Build 136, // 194: hashicorp.waypoint.UpsertBuildResponse.build:type_name -> hashicorp.waypoint.Build - 303, // 195: hashicorp.waypoint.ListBuildsRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 196: hashicorp.waypoint.ListBuildsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 195: hashicorp.waypoint.ListBuildsRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 196: hashicorp.waypoint.ListBuildsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 43, // 197: hashicorp.waypoint.ListBuildsRequest.order:type_name -> hashicorp.waypoint.OperationOrder 136, // 198: hashicorp.waypoint.ListBuildsResponse.builds:type_name -> hashicorp.waypoint.Build - 303, // 199: hashicorp.waypoint.GetLatestBuildRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 200: hashicorp.waypoint.GetLatestBuildRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 309, // 201: hashicorp.waypoint.GetBuildRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation - 303, // 202: hashicorp.waypoint.Build.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 203: hashicorp.waypoint.Build.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 199: hashicorp.waypoint.GetLatestBuildRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 200: hashicorp.waypoint.GetLatestBuildRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 312, // 201: hashicorp.waypoint.GetBuildRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation + 306, // 202: hashicorp.waypoint.Build.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 203: hashicorp.waypoint.Build.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 40, // 204: hashicorp.waypoint.Build.status:type_name -> hashicorp.waypoint.Status 39, // 205: hashicorp.waypoint.Build.component:type_name -> hashicorp.waypoint.Component 137, // 206: hashicorp.waypoint.Build.artifact:type_name -> hashicorp.waypoint.Artifact - 434, // 207: hashicorp.waypoint.Build.labels:type_name -> hashicorp.waypoint.Build.LabelsEntry - 435, // 208: hashicorp.waypoint.Build.preload:type_name -> hashicorp.waypoint.Build.Preload - 499, // 209: hashicorp.waypoint.Artifact.artifact:type_name -> opaqueany.Any - 311, // 210: hashicorp.waypoint.OnDemandRunnerConfig.target_runner:type_name -> hashicorp.waypoint.Ref.Runner - 436, // 211: hashicorp.waypoint.OnDemandRunnerConfig.environment_variables:type_name -> hashicorp.waypoint.OnDemandRunnerConfig.EnvironmentVariablesEntry + 437, // 207: hashicorp.waypoint.Build.labels:type_name -> hashicorp.waypoint.Build.LabelsEntry + 438, // 208: hashicorp.waypoint.Build.preload:type_name -> hashicorp.waypoint.Build.Preload + 502, // 209: hashicorp.waypoint.Artifact.artifact:type_name -> opaqueany.Any + 314, // 210: hashicorp.waypoint.OnDemandRunnerConfig.target_runner:type_name -> hashicorp.waypoint.Ref.Runner + 439, // 211: hashicorp.waypoint.OnDemandRunnerConfig.environment_variables:type_name -> hashicorp.waypoint.OnDemandRunnerConfig.EnvironmentVariablesEntry 28, // 212: hashicorp.waypoint.OnDemandRunnerConfig.config_format:type_name -> hashicorp.waypoint.Hcl.Format 138, // 213: hashicorp.waypoint.UpsertOnDemandRunnerConfigRequest.config:type_name -> hashicorp.waypoint.OnDemandRunnerConfig 138, // 214: hashicorp.waypoint.UpsertOnDemandRunnerConfigResponse.config:type_name -> hashicorp.waypoint.OnDemandRunnerConfig - 320, // 215: hashicorp.waypoint.GetOnDemandRunnerConfigRequest.config:type_name -> hashicorp.waypoint.Ref.OnDemandRunnerConfig + 323, // 215: hashicorp.waypoint.GetOnDemandRunnerConfigRequest.config:type_name -> hashicorp.waypoint.Ref.OnDemandRunnerConfig 138, // 216: hashicorp.waypoint.GetOnDemandRunnerConfigResponse.config:type_name -> hashicorp.waypoint.OnDemandRunnerConfig - 320, // 217: hashicorp.waypoint.DeleteOnDemandRunnerConfigRequest.config:type_name -> hashicorp.waypoint.Ref.OnDemandRunnerConfig + 323, // 217: hashicorp.waypoint.DeleteOnDemandRunnerConfigRequest.config:type_name -> hashicorp.waypoint.Ref.OnDemandRunnerConfig 138, // 218: hashicorp.waypoint.DeleteOnDemandRunnerConfigResponse.config:type_name -> hashicorp.waypoint.OnDemandRunnerConfig 138, // 219: hashicorp.waypoint.ListOnDemandRunnerConfigsResponse.configs:type_name -> hashicorp.waypoint.OnDemandRunnerConfig 152, // 220: hashicorp.waypoint.UpsertPushedArtifactRequest.artifact:type_name -> hashicorp.waypoint.PushedArtifact 152, // 221: hashicorp.waypoint.UpsertPushedArtifactResponse.artifact:type_name -> hashicorp.waypoint.PushedArtifact - 303, // 222: hashicorp.waypoint.GetLatestPushedArtifactRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 223: hashicorp.waypoint.GetLatestPushedArtifactRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 309, // 224: hashicorp.waypoint.GetPushedArtifactRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation - 303, // 225: hashicorp.waypoint.ListPushedArtifactsRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 226: hashicorp.waypoint.ListPushedArtifactsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 222: hashicorp.waypoint.GetLatestPushedArtifactRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 223: hashicorp.waypoint.GetLatestPushedArtifactRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 312, // 224: hashicorp.waypoint.GetPushedArtifactRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation + 306, // 225: hashicorp.waypoint.ListPushedArtifactsRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 226: hashicorp.waypoint.ListPushedArtifactsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 41, // 227: hashicorp.waypoint.ListPushedArtifactsRequest.status:type_name -> hashicorp.waypoint.StatusFilter 43, // 228: hashicorp.waypoint.ListPushedArtifactsRequest.order:type_name -> hashicorp.waypoint.OperationOrder 152, // 229: hashicorp.waypoint.ListPushedArtifactsResponse.artifacts:type_name -> hashicorp.waypoint.PushedArtifact - 303, // 230: hashicorp.waypoint.PushedArtifact.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 231: hashicorp.waypoint.PushedArtifact.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 230: hashicorp.waypoint.PushedArtifact.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 231: hashicorp.waypoint.PushedArtifact.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 40, // 232: hashicorp.waypoint.PushedArtifact.status:type_name -> hashicorp.waypoint.Status 39, // 233: hashicorp.waypoint.PushedArtifact.component:type_name -> hashicorp.waypoint.Component 137, // 234: hashicorp.waypoint.PushedArtifact.artifact:type_name -> hashicorp.waypoint.Artifact - 437, // 235: hashicorp.waypoint.PushedArtifact.labels:type_name -> hashicorp.waypoint.PushedArtifact.LabelsEntry + 440, // 235: hashicorp.waypoint.PushedArtifact.labels:type_name -> hashicorp.waypoint.PushedArtifact.LabelsEntry 136, // 236: hashicorp.waypoint.PushedArtifact.build:type_name -> hashicorp.waypoint.Build - 438, // 237: hashicorp.waypoint.PushedArtifact.preload:type_name -> hashicorp.waypoint.PushedArtifact.Preload - 309, // 238: hashicorp.waypoint.GetDeploymentRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation + 441, // 237: hashicorp.waypoint.PushedArtifact.preload:type_name -> hashicorp.waypoint.PushedArtifact.Preload + 312, // 238: hashicorp.waypoint.GetDeploymentRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation 17, // 239: hashicorp.waypoint.GetDeploymentRequest.load_details:type_name -> hashicorp.waypoint.Deployment.LoadDetails 158, // 240: hashicorp.waypoint.UpsertDeploymentRequest.deployment:type_name -> hashicorp.waypoint.Deployment 16, // 241: hashicorp.waypoint.UpsertDeploymentRequest.auto_hostname:type_name -> hashicorp.waypoint.UpsertDeploymentRequest.Tristate 158, // 242: hashicorp.waypoint.UpsertDeploymentResponse.deployment:type_name -> hashicorp.waypoint.Deployment - 303, // 243: hashicorp.waypoint.ListDeploymentsRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 244: hashicorp.waypoint.ListDeploymentsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 243: hashicorp.waypoint.ListDeploymentsRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 244: hashicorp.waypoint.ListDeploymentsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 41, // 245: hashicorp.waypoint.ListDeploymentsRequest.status:type_name -> hashicorp.waypoint.StatusFilter 9, // 246: hashicorp.waypoint.ListDeploymentsRequest.physical_state:type_name -> hashicorp.waypoint.Operation.PhysicalState 43, // 247: hashicorp.waypoint.ListDeploymentsRequest.order:type_name -> hashicorp.waypoint.OperationOrder 17, // 248: hashicorp.waypoint.ListDeploymentsRequest.load_details:type_name -> hashicorp.waypoint.Deployment.LoadDetails 158, // 249: hashicorp.waypoint.ListDeploymentsResponse.deployments:type_name -> hashicorp.waypoint.Deployment - 303, // 250: hashicorp.waypoint.Deployment.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 251: hashicorp.waypoint.Deployment.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 250: hashicorp.waypoint.Deployment.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 251: hashicorp.waypoint.Deployment.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 44, // 252: hashicorp.waypoint.Deployment.generation:type_name -> hashicorp.waypoint.Generation 9, // 253: hashicorp.waypoint.Deployment.state:type_name -> hashicorp.waypoint.Operation.PhysicalState 40, // 254: hashicorp.waypoint.Deployment.status:type_name -> hashicorp.waypoint.Status 39, // 255: hashicorp.waypoint.Deployment.component:type_name -> hashicorp.waypoint.Component - 499, // 256: hashicorp.waypoint.Deployment.deployment:type_name -> opaqueany.Any - 439, // 257: hashicorp.waypoint.Deployment.labels:type_name -> hashicorp.waypoint.Deployment.LabelsEntry + 502, // 256: hashicorp.waypoint.Deployment.deployment:type_name -> opaqueany.Any + 442, // 257: hashicorp.waypoint.Deployment.labels:type_name -> hashicorp.waypoint.Deployment.LabelsEntry 45, // 258: hashicorp.waypoint.Deployment.declared_resources:type_name -> hashicorp.waypoint.DeclaredResource 46, // 259: hashicorp.waypoint.Deployment.destroyed_resources:type_name -> hashicorp.waypoint.DestroyedResource - 440, // 260: hashicorp.waypoint.Deployment.preload:type_name -> hashicorp.waypoint.Deployment.Preload + 443, // 260: hashicorp.waypoint.Deployment.preload:type_name -> hashicorp.waypoint.Deployment.Preload 158, // 261: hashicorp.waypoint.DeploymentExpanded.deployment:type_name -> hashicorp.waypoint.Deployment 189, // 262: hashicorp.waypoint.DeploymentExpanded.latest_status_report:type_name -> hashicorp.waypoint.StatusReport - 441, // 263: hashicorp.waypoint.ListInstancesRequest.application:type_name -> hashicorp.waypoint.ListInstancesRequest.Application + 444, // 263: hashicorp.waypoint.ListInstancesRequest.application:type_name -> hashicorp.waypoint.ListInstancesRequest.Application 162, // 264: hashicorp.waypoint.ListInstancesResponse.instances:type_name -> hashicorp.waypoint.Instance - 303, // 265: hashicorp.waypoint.Instance.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 266: hashicorp.waypoint.Instance.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 265: hashicorp.waypoint.Instance.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 266: hashicorp.waypoint.Instance.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 18, // 267: hashicorp.waypoint.Instance.type:type_name -> hashicorp.waypoint.Instance.Type 169, // 268: hashicorp.waypoint.UpsertReleaseRequest.release:type_name -> hashicorp.waypoint.Release 169, // 269: hashicorp.waypoint.UpsertReleaseResponse.release:type_name -> hashicorp.waypoint.Release - 303, // 270: hashicorp.waypoint.GetLatestReleaseRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 271: hashicorp.waypoint.GetLatestReleaseRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 270: hashicorp.waypoint.GetLatestReleaseRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 271: hashicorp.waypoint.GetLatestReleaseRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 19, // 272: hashicorp.waypoint.GetLatestReleaseRequest.load_details:type_name -> hashicorp.waypoint.Release.LoadDetails - 303, // 273: hashicorp.waypoint.ListReleasesRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 274: hashicorp.waypoint.ListReleasesRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 273: hashicorp.waypoint.ListReleasesRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 274: hashicorp.waypoint.ListReleasesRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 41, // 275: hashicorp.waypoint.ListReleasesRequest.status:type_name -> hashicorp.waypoint.StatusFilter 9, // 276: hashicorp.waypoint.ListReleasesRequest.physical_state:type_name -> hashicorp.waypoint.Operation.PhysicalState 43, // 277: hashicorp.waypoint.ListReleasesRequest.order:type_name -> hashicorp.waypoint.OperationOrder 19, // 278: hashicorp.waypoint.ListReleasesRequest.load_details:type_name -> hashicorp.waypoint.Release.LoadDetails 169, // 279: hashicorp.waypoint.ListReleasesResponse.releases:type_name -> hashicorp.waypoint.Release - 309, // 280: hashicorp.waypoint.GetReleaseRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation + 312, // 280: hashicorp.waypoint.GetReleaseRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation 19, // 281: hashicorp.waypoint.GetReleaseRequest.load_details:type_name -> hashicorp.waypoint.Release.LoadDetails - 303, // 282: hashicorp.waypoint.Release.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 283: hashicorp.waypoint.Release.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 306, // 282: hashicorp.waypoint.Release.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 283: hashicorp.waypoint.Release.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 40, // 284: hashicorp.waypoint.Release.status:type_name -> hashicorp.waypoint.Status 9, // 285: hashicorp.waypoint.Release.state:type_name -> hashicorp.waypoint.Operation.PhysicalState 39, // 286: hashicorp.waypoint.Release.component:type_name -> hashicorp.waypoint.Component - 499, // 287: hashicorp.waypoint.Release.release:type_name -> opaqueany.Any - 442, // 288: hashicorp.waypoint.Release.labels:type_name -> hashicorp.waypoint.Release.LabelsEntry + 502, // 287: hashicorp.waypoint.Release.release:type_name -> opaqueany.Any + 445, // 288: hashicorp.waypoint.Release.labels:type_name -> hashicorp.waypoint.Release.LabelsEntry 45, // 289: hashicorp.waypoint.Release.declared_resources:type_name -> hashicorp.waypoint.DeclaredResource 46, // 290: hashicorp.waypoint.Release.destroyed_resources:type_name -> hashicorp.waypoint.DestroyedResource - 443, // 291: hashicorp.waypoint.Release.preload:type_name -> hashicorp.waypoint.Release.Preload + 446, // 291: hashicorp.waypoint.Release.preload:type_name -> hashicorp.waypoint.Release.Preload 169, // 292: hashicorp.waypoint.ReleaseExpanded.release:type_name -> hashicorp.waypoint.Release 189, // 293: hashicorp.waypoint.ReleaseExpanded.latest_status_report:type_name -> hashicorp.waypoint.StatusReport - 497, // 294: hashicorp.waypoint.Trigger.active_time:type_name -> google.protobuf.Timestamp - 351, // 295: hashicorp.waypoint.Trigger.build:type_name -> hashicorp.waypoint.Job.BuildOp - 353, // 296: hashicorp.waypoint.Trigger.push:type_name -> hashicorp.waypoint.Job.PushOp - 355, // 297: hashicorp.waypoint.Trigger.deploy:type_name -> hashicorp.waypoint.Job.DeployOp - 360, // 298: hashicorp.waypoint.Trigger.destroy:type_name -> hashicorp.waypoint.Job.DestroyOp - 361, // 299: hashicorp.waypoint.Trigger.release:type_name -> hashicorp.waypoint.Job.ReleaseOp - 345, // 300: hashicorp.waypoint.Trigger.up:type_name -> hashicorp.waypoint.Job.UpOp - 379, // 301: hashicorp.waypoint.Trigger.init:type_name -> hashicorp.waypoint.Job.InitOp - 369, // 302: hashicorp.waypoint.Trigger.status_report:type_name -> hashicorp.waypoint.Job.StatusReportOp - 305, // 303: hashicorp.waypoint.Trigger.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 304, // 304: hashicorp.waypoint.Trigger.project:type_name -> hashicorp.waypoint.Ref.Project - 303, // 305: hashicorp.waypoint.Trigger.application:type_name -> hashicorp.waypoint.Ref.Application + 500, // 294: hashicorp.waypoint.Trigger.active_time:type_name -> google.protobuf.Timestamp + 354, // 295: hashicorp.waypoint.Trigger.build:type_name -> hashicorp.waypoint.Job.BuildOp + 356, // 296: hashicorp.waypoint.Trigger.push:type_name -> hashicorp.waypoint.Job.PushOp + 358, // 297: hashicorp.waypoint.Trigger.deploy:type_name -> hashicorp.waypoint.Job.DeployOp + 363, // 298: hashicorp.waypoint.Trigger.destroy:type_name -> hashicorp.waypoint.Job.DestroyOp + 364, // 299: hashicorp.waypoint.Trigger.release:type_name -> hashicorp.waypoint.Job.ReleaseOp + 348, // 300: hashicorp.waypoint.Trigger.up:type_name -> hashicorp.waypoint.Job.UpOp + 382, // 301: hashicorp.waypoint.Trigger.init:type_name -> hashicorp.waypoint.Job.InitOp + 372, // 302: hashicorp.waypoint.Trigger.status_report:type_name -> hashicorp.waypoint.Job.StatusReportOp + 308, // 303: hashicorp.waypoint.Trigger.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 307, // 304: hashicorp.waypoint.Trigger.project:type_name -> hashicorp.waypoint.Ref.Project + 306, // 305: hashicorp.waypoint.Trigger.application:type_name -> hashicorp.waypoint.Ref.Application 171, // 306: hashicorp.waypoint.UpsertTriggerRequest.trigger:type_name -> hashicorp.waypoint.Trigger 171, // 307: hashicorp.waypoint.UpsertTriggerResponse.trigger:type_name -> hashicorp.waypoint.Trigger - 321, // 308: hashicorp.waypoint.GetTriggerRequest.ref:type_name -> hashicorp.waypoint.Ref.Trigger + 324, // 308: hashicorp.waypoint.GetTriggerRequest.ref:type_name -> hashicorp.waypoint.Ref.Trigger 171, // 309: hashicorp.waypoint.GetTriggerResponse.trigger:type_name -> hashicorp.waypoint.Trigger - 321, // 310: hashicorp.waypoint.DeleteTriggerRequest.ref:type_name -> hashicorp.waypoint.Ref.Trigger - 321, // 311: hashicorp.waypoint.RunTriggerRequest.ref:type_name -> hashicorp.waypoint.Ref.Trigger + 324, // 310: hashicorp.waypoint.DeleteTriggerRequest.ref:type_name -> hashicorp.waypoint.Ref.Trigger + 324, // 311: hashicorp.waypoint.RunTriggerRequest.ref:type_name -> hashicorp.waypoint.Ref.Trigger 34, // 312: hashicorp.waypoint.RunTriggerRequest.variable_overrides:type_name -> hashicorp.waypoint.Variable - 305, // 313: hashicorp.waypoint.ListTriggerRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 304, // 314: hashicorp.waypoint.ListTriggerRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 303, // 315: hashicorp.waypoint.ListTriggerRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 313: hashicorp.waypoint.ListTriggerRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 307, // 314: hashicorp.waypoint.ListTriggerRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 306, // 315: hashicorp.waypoint.ListTriggerRequest.application:type_name -> hashicorp.waypoint.Ref.Application 171, // 316: hashicorp.waypoint.ListTriggerResponse.triggers:type_name -> hashicorp.waypoint.Trigger 189, // 317: hashicorp.waypoint.UpsertStatusReportRequest.status_report:type_name -> hashicorp.waypoint.StatusReport 189, // 318: hashicorp.waypoint.UpsertStatusReportResponse.status_report:type_name -> hashicorp.waypoint.StatusReport - 303, // 319: hashicorp.waypoint.GetLatestStatusReportRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 320: hashicorp.waypoint.GetLatestStatusReportRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 496, // 321: hashicorp.waypoint.GetLatestStatusReportRequest.any:type_name -> google.protobuf.Empty - 496, // 322: hashicorp.waypoint.GetLatestStatusReportRequest.deployment_any:type_name -> google.protobuf.Empty - 496, // 323: hashicorp.waypoint.GetLatestStatusReportRequest.release_any:type_name -> google.protobuf.Empty + 306, // 319: hashicorp.waypoint.GetLatestStatusReportRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 320: hashicorp.waypoint.GetLatestStatusReportRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 499, // 321: hashicorp.waypoint.GetLatestStatusReportRequest.any:type_name -> google.protobuf.Empty + 499, // 322: hashicorp.waypoint.GetLatestStatusReportRequest.deployment_any:type_name -> google.protobuf.Empty + 499, // 323: hashicorp.waypoint.GetLatestStatusReportRequest.release_any:type_name -> google.protobuf.Empty 41, // 324: hashicorp.waypoint.ListStatusReportsRequest.status:type_name -> hashicorp.waypoint.StatusFilter 43, // 325: hashicorp.waypoint.ListStatusReportsRequest.order:type_name -> hashicorp.waypoint.OperationOrder - 303, // 326: hashicorp.waypoint.ListStatusReportsRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 327: hashicorp.waypoint.ListStatusReportsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 309, // 328: hashicorp.waypoint.ListStatusReportsRequest.deployment:type_name -> hashicorp.waypoint.Ref.Operation - 309, // 329: hashicorp.waypoint.ListStatusReportsRequest.release:type_name -> hashicorp.waypoint.Ref.Operation + 306, // 326: hashicorp.waypoint.ListStatusReportsRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 327: hashicorp.waypoint.ListStatusReportsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 312, // 328: hashicorp.waypoint.ListStatusReportsRequest.deployment:type_name -> hashicorp.waypoint.Ref.Operation + 312, // 329: hashicorp.waypoint.ListStatusReportsRequest.release:type_name -> hashicorp.waypoint.Ref.Operation 189, // 330: hashicorp.waypoint.ListStatusReportsResponse.status_reports:type_name -> hashicorp.waypoint.StatusReport - 309, // 331: hashicorp.waypoint.GetStatusReportRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation - 305, // 332: hashicorp.waypoint.ExpediteStatusReportRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 309, // 333: hashicorp.waypoint.ExpediteStatusReportRequest.deployment:type_name -> hashicorp.waypoint.Ref.Operation - 309, // 334: hashicorp.waypoint.ExpediteStatusReportRequest.release:type_name -> hashicorp.waypoint.Ref.Operation - 303, // 335: hashicorp.waypoint.StatusReport.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 336: hashicorp.waypoint.StatusReport.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 312, // 331: hashicorp.waypoint.GetStatusReportRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation + 308, // 332: hashicorp.waypoint.ExpediteStatusReportRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 312, // 333: hashicorp.waypoint.ExpediteStatusReportRequest.deployment:type_name -> hashicorp.waypoint.Ref.Operation + 312, // 334: hashicorp.waypoint.ExpediteStatusReportRequest.release:type_name -> hashicorp.waypoint.Ref.Operation + 306, // 335: hashicorp.waypoint.StatusReport.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 336: hashicorp.waypoint.StatusReport.workspace:type_name -> hashicorp.waypoint.Ref.Workspace 40, // 337: hashicorp.waypoint.StatusReport.status:type_name -> hashicorp.waypoint.Status - 499, // 338: hashicorp.waypoint.StatusReport.status_report:type_name -> opaqueany.Any - 445, // 339: hashicorp.waypoint.StatusReport.health:type_name -> hashicorp.waypoint.StatusReport.Health - 497, // 340: hashicorp.waypoint.StatusReport.generated_time:type_name -> google.protobuf.Timestamp - 444, // 341: hashicorp.waypoint.StatusReport.resources:type_name -> hashicorp.waypoint.StatusReport.Resource - 445, // 342: hashicorp.waypoint.StatusReport.deprecated_resources_health:type_name -> hashicorp.waypoint.StatusReport.Health - 446, // 343: hashicorp.waypoint.GetLogStreamRequest.application:type_name -> hashicorp.waypoint.GetLogStreamRequest.Application - 447, // 344: hashicorp.waypoint.LogBatch.lines:type_name -> hashicorp.waypoint.LogBatch.Entry - 449, // 345: hashicorp.waypoint.ConfigVar.target:type_name -> hashicorp.waypoint.ConfigVar.Target - 496, // 346: hashicorp.waypoint.ConfigVar.unset:type_name -> google.protobuf.Empty - 448, // 347: hashicorp.waypoint.ConfigVar.dynamic:type_name -> hashicorp.waypoint.ConfigVar.DynamicVal - 303, // 348: hashicorp.waypoint.ConfigVar.application:type_name -> hashicorp.waypoint.Ref.Application - 304, // 349: hashicorp.waypoint.ConfigVar.project:type_name -> hashicorp.waypoint.Ref.Project - 311, // 350: hashicorp.waypoint.ConfigVar.runner:type_name -> hashicorp.waypoint.Ref.Runner + 502, // 338: hashicorp.waypoint.StatusReport.status_report:type_name -> opaqueany.Any + 448, // 339: hashicorp.waypoint.StatusReport.health:type_name -> hashicorp.waypoint.StatusReport.Health + 500, // 340: hashicorp.waypoint.StatusReport.generated_time:type_name -> google.protobuf.Timestamp + 447, // 341: hashicorp.waypoint.StatusReport.resources:type_name -> hashicorp.waypoint.StatusReport.Resource + 448, // 342: hashicorp.waypoint.StatusReport.deprecated_resources_health:type_name -> hashicorp.waypoint.StatusReport.Health + 449, // 343: hashicorp.waypoint.GetLogStreamRequest.application:type_name -> hashicorp.waypoint.GetLogStreamRequest.Application + 450, // 344: hashicorp.waypoint.LogBatch.lines:type_name -> hashicorp.waypoint.LogBatch.Entry + 452, // 345: hashicorp.waypoint.ConfigVar.target:type_name -> hashicorp.waypoint.ConfigVar.Target + 499, // 346: hashicorp.waypoint.ConfigVar.unset:type_name -> google.protobuf.Empty + 451, // 347: hashicorp.waypoint.ConfigVar.dynamic:type_name -> hashicorp.waypoint.ConfigVar.DynamicVal + 306, // 348: hashicorp.waypoint.ConfigVar.application:type_name -> hashicorp.waypoint.Ref.Application + 307, // 349: hashicorp.waypoint.ConfigVar.project:type_name -> hashicorp.waypoint.Ref.Project + 314, // 350: hashicorp.waypoint.ConfigVar.runner:type_name -> hashicorp.waypoint.Ref.Runner 192, // 351: hashicorp.waypoint.ConfigSetRequest.variables:type_name -> hashicorp.waypoint.ConfigVar - 303, // 352: hashicorp.waypoint.ConfigGetRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 304, // 353: hashicorp.waypoint.ConfigGetRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 313, // 354: hashicorp.waypoint.ConfigGetRequest.runner:type_name -> hashicorp.waypoint.Ref.RunnerId - 305, // 355: hashicorp.waypoint.ConfigGetRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 451, // 356: hashicorp.waypoint.ConfigGetRequest.labels:type_name -> hashicorp.waypoint.ConfigGetRequest.LabelsEntry - 192, // 357: hashicorp.waypoint.ConfigGetResponse.variables:type_name -> hashicorp.waypoint.ConfigVar - 302, // 358: hashicorp.waypoint.ConfigSource.global:type_name -> hashicorp.waypoint.Ref.Global - 304, // 359: hashicorp.waypoint.ConfigSource.project:type_name -> hashicorp.waypoint.Ref.Project - 303, // 360: hashicorp.waypoint.ConfigSource.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 361: hashicorp.waypoint.ConfigSource.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 452, // 362: hashicorp.waypoint.ConfigSource.config:type_name -> hashicorp.waypoint.ConfigSource.ConfigEntry - 197, // 363: hashicorp.waypoint.SetConfigSourceRequest.config_source:type_name -> hashicorp.waypoint.ConfigSource - 302, // 364: hashicorp.waypoint.GetConfigSourceRequest.global:type_name -> hashicorp.waypoint.Ref.Global - 304, // 365: hashicorp.waypoint.GetConfigSourceRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 303, // 366: hashicorp.waypoint.GetConfigSourceRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 367: hashicorp.waypoint.GetConfigSourceRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 197, // 368: hashicorp.waypoint.GetConfigSourceResponse.config_sources:type_name -> hashicorp.waypoint.ConfigSource - 453, // 369: hashicorp.waypoint.ExecStreamRequest.start:type_name -> hashicorp.waypoint.ExecStreamRequest.Start - 454, // 370: hashicorp.waypoint.ExecStreamRequest.input:type_name -> hashicorp.waypoint.ExecStreamRequest.Input - 456, // 371: hashicorp.waypoint.ExecStreamRequest.winch:type_name -> hashicorp.waypoint.ExecStreamRequest.WindowSize - 496, // 372: hashicorp.waypoint.ExecStreamRequest.input_eof:type_name -> google.protobuf.Empty - 457, // 373: hashicorp.waypoint.ExecStreamResponse.open:type_name -> hashicorp.waypoint.ExecStreamResponse.Open - 459, // 374: hashicorp.waypoint.ExecStreamResponse.output:type_name -> hashicorp.waypoint.ExecStreamResponse.Output - 458, // 375: hashicorp.waypoint.ExecStreamResponse.exit:type_name -> hashicorp.waypoint.ExecStreamResponse.Exit - 18, // 376: hashicorp.waypoint.EntrypointConfigRequest.type:type_name -> hashicorp.waypoint.Instance.Type - 205, // 377: hashicorp.waypoint.EntrypointConfigResponse.config:type_name -> hashicorp.waypoint.EntrypointConfig - 460, // 378: hashicorp.waypoint.EntrypointConfig.exec:type_name -> hashicorp.waypoint.EntrypointConfig.Exec - 192, // 379: hashicorp.waypoint.EntrypointConfig.env_vars:type_name -> hashicorp.waypoint.ConfigVar - 197, // 380: hashicorp.waypoint.EntrypointConfig.config_sources:type_name -> hashicorp.waypoint.ConfigSource - 461, // 381: hashicorp.waypoint.EntrypointConfig.url_service:type_name -> hashicorp.waypoint.EntrypointConfig.URLService - 462, // 382: hashicorp.waypoint.EntrypointConfig.deployment:type_name -> hashicorp.waypoint.EntrypointConfig.DeploymentInfo - 447, // 383: hashicorp.waypoint.EntrypointLogBatch.lines:type_name -> hashicorp.waypoint.LogBatch.Entry - 464, // 384: hashicorp.waypoint.EntrypointExecRequest.open:type_name -> hashicorp.waypoint.EntrypointExecRequest.Open - 465, // 385: hashicorp.waypoint.EntrypointExecRequest.exit:type_name -> hashicorp.waypoint.EntrypointExecRequest.Exit - 466, // 386: hashicorp.waypoint.EntrypointExecRequest.output:type_name -> hashicorp.waypoint.EntrypointExecRequest.Output - 467, // 387: hashicorp.waypoint.EntrypointExecRequest.error:type_name -> hashicorp.waypoint.EntrypointExecRequest.Error - 496, // 388: hashicorp.waypoint.EntrypointExecResponse.input_eof:type_name -> google.protobuf.Empty - 456, // 389: hashicorp.waypoint.EntrypointExecResponse.winch:type_name -> hashicorp.waypoint.ExecStreamRequest.WindowSize - 304, // 390: hashicorp.waypoint.Pipeline.project:type_name -> hashicorp.waypoint.Ref.Project - 468, // 391: hashicorp.waypoint.Pipeline.steps:type_name -> hashicorp.waypoint.Pipeline.StepsEntry - 324, // 392: hashicorp.waypoint.PipelineRun.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline - 322, // 393: hashicorp.waypoint.PipelineRun.jobs:type_name -> hashicorp.waypoint.Ref.Job - 24, // 394: hashicorp.waypoint.PipelineRun.state:type_name -> hashicorp.waypoint.PipelineRun.State - 209, // 395: hashicorp.waypoint.UpsertPipelineRequest.pipeline:type_name -> hashicorp.waypoint.Pipeline - 209, // 396: hashicorp.waypoint.UpsertPipelineResponse.pipeline:type_name -> hashicorp.waypoint.Pipeline - 324, // 397: hashicorp.waypoint.GetPipelineRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline - 209, // 398: hashicorp.waypoint.GetPipelineResponse.pipeline:type_name -> hashicorp.waypoint.Pipeline - 476, // 399: hashicorp.waypoint.GetPipelineResponse.graph:type_name -> hashicorp.waypoint.GetPipelineResponse.Graph - 324, // 400: hashicorp.waypoint.RunPipelineRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline - 82, // 401: hashicorp.waypoint.RunPipelineRequest.job_template:type_name -> hashicorp.waypoint.Job - 477, // 402: hashicorp.waypoint.RunPipelineResponse.job_map:type_name -> hashicorp.waypoint.RunPipelineResponse.JobMapEntry - 304, // 403: hashicorp.waypoint.ListPipelinesRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 209, // 404: hashicorp.waypoint.ListPipelinesResponse.pipelines:type_name -> hashicorp.waypoint.Pipeline - 324, // 405: hashicorp.waypoint.ListPipelineRunsRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline - 210, // 406: hashicorp.waypoint.ListPipelineRunsResponse.pipeline_runs:type_name -> hashicorp.waypoint.PipelineRun - 324, // 407: hashicorp.waypoint.GetPipelineRunRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline - 210, // 408: hashicorp.waypoint.GetPipelineRunResponse.pipeline_run:type_name -> hashicorp.waypoint.PipelineRun - 304, // 409: hashicorp.waypoint.ConfigSyncPipelineRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 478, // 410: hashicorp.waypoint.ConfigSyncPipelineResponse.synced_pipelines:type_name -> hashicorp.waypoint.ConfigSyncPipelineResponse.SyncedPipelinesEntry - 327, // 411: hashicorp.waypoint.GetProjectTemplateRequest.project_template:type_name -> hashicorp.waypoint.Ref.ProjectTemplate - 235, // 412: hashicorp.waypoint.GetProjectTemplateResponse.project_template:type_name -> hashicorp.waypoint.ProjectTemplate - 257, // 413: hashicorp.waypoint.ListProjectTemplatesRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest - 235, // 414: hashicorp.waypoint.ListProjectTemplatesResponse.project_templates:type_name -> hashicorp.waypoint.ProjectTemplate - 258, // 415: hashicorp.waypoint.ListProjectTemplatesResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse - 235, // 416: hashicorp.waypoint.CreateProjectTemplateRequest.project_template:type_name -> hashicorp.waypoint.ProjectTemplate - 235, // 417: hashicorp.waypoint.CreateProjectTemplateResponse.project_template:type_name -> hashicorp.waypoint.ProjectTemplate - 235, // 418: hashicorp.waypoint.UpdateProjectTemplateRequest.project_template:type_name -> hashicorp.waypoint.ProjectTemplate - 235, // 419: hashicorp.waypoint.UpdateProjectTemplateResponse.project_template:type_name -> hashicorp.waypoint.ProjectTemplate - 327, // 420: hashicorp.waypoint.DeleteProjectTemplateRequest.project_template:type_name -> hashicorp.waypoint.Ref.ProjectTemplate - 479, // 421: hashicorp.waypoint.ProjectTemplate.waypoint_project:type_name -> hashicorp.waypoint.ProjectTemplate.WaypointProject - 480, // 422: hashicorp.waypoint.ProjectTemplate.terraform_nocode_module:type_name -> hashicorp.waypoint.ProjectTemplate.TerraformNocodeModule - 304, // 423: hashicorp.waypoint.GetTFCRunStatusRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 26, // 424: hashicorp.waypoint.GetTFCRunStatusResponse.state:type_name -> hashicorp.waypoint.GetTFCRunStatusResponse.State - 327, // 425: hashicorp.waypoint.CreateProjectFromTemplateRequest.project_template:type_name -> hashicorp.waypoint.Ref.ProjectTemplate - 35, // 426: hashicorp.waypoint.CreateProjectFromTemplateResponse.project:type_name -> hashicorp.waypoint.Project - 481, // 427: hashicorp.waypoint.TokenTransport.metadata:type_name -> hashicorp.waypoint.TokenTransport.MetadataEntry - 482, // 428: hashicorp.waypoint.TokenTransport.oauth_creds:type_name -> hashicorp.waypoint.TokenTransport.OAuthCredentials - 497, // 429: hashicorp.waypoint.Token.valid_until:type_name -> google.protobuf.Timestamp - 497, // 430: hashicorp.waypoint.Token.issued_time:type_name -> google.protobuf.Timestamp - 483, // 431: hashicorp.waypoint.Token.login:type_name -> hashicorp.waypoint.Token.Login - 484, // 432: hashicorp.waypoint.Token.runner:type_name -> hashicorp.waypoint.Token.Runner - 485, // 433: hashicorp.waypoint.Token.invite:type_name -> hashicorp.waypoint.Token.Invite - 487, // 434: hashicorp.waypoint.Token.trigger:type_name -> hashicorp.waypoint.Token.Trigger - 486, // 435: hashicorp.waypoint.Token.unused_entrypoint:type_name -> hashicorp.waypoint.Token.Entrypoint - 241, // 436: hashicorp.waypoint.DecodeTokenResponse.token:type_name -> hashicorp.waypoint.Token - 240, // 437: hashicorp.waypoint.DecodeTokenResponse.transport:type_name -> hashicorp.waypoint.TokenTransport - 315, // 438: hashicorp.waypoint.LoginTokenRequest.user:type_name -> hashicorp.waypoint.Ref.User - 489, // 439: hashicorp.waypoint.GenerateRunnerTokenRequest.labels:type_name -> hashicorp.waypoint.GenerateRunnerTokenRequest.LabelsEntry - 483, // 440: hashicorp.waypoint.InviteTokenRequest.login:type_name -> hashicorp.waypoint.Token.Login - 488, // 441: hashicorp.waypoint.InviteTokenRequest.signup:type_name -> hashicorp.waypoint.Token.Invite.Signup - 486, // 442: hashicorp.waypoint.InviteTokenRequest.unused_entrypoint:type_name -> hashicorp.waypoint.Token.Entrypoint - 490, // 443: hashicorp.waypoint.CreateSnapshotResponse.open:type_name -> hashicorp.waypoint.CreateSnapshotResponse.Open - 491, // 444: hashicorp.waypoint.RestoreSnapshotRequest.open:type_name -> hashicorp.waypoint.RestoreSnapshotRequest.Open - 28, // 445: hashicorp.waypoint.Hcl.format:type_name -> hashicorp.waypoint.Hcl.Format - 257, // 446: hashicorp.waypoint.UI.ListProjectsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest - 262, // 447: hashicorp.waypoint.UI.ListProjectsResponse.project_bundles:type_name -> hashicorp.waypoint.UI.ProjectBundle - 258, // 448: hashicorp.waypoint.UI.ListProjectsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse - 35, // 449: hashicorp.waypoint.UI.ProjectBundle.project:type_name -> hashicorp.waypoint.Project - 304, // 450: hashicorp.waypoint.UI.GetProjectRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 35, // 451: hashicorp.waypoint.UI.GetProjectResponse.project:type_name -> hashicorp.waypoint.Project - 82, // 452: hashicorp.waypoint.UI.GetProjectResponse.latest_init_job:type_name -> hashicorp.waypoint.Job - 235, // 453: hashicorp.waypoint.UI.GetProjectResponse.project_template:type_name -> hashicorp.waypoint.ProjectTemplate - 304, // 454: hashicorp.waypoint.UI.ListPipelinesRequest.project:type_name -> hashicorp.waypoint.Ref.Project - 257, // 455: hashicorp.waypoint.UI.ListPipelinesRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest - 271, // 456: hashicorp.waypoint.UI.ListPipelinesResponse.pipelines:type_name -> hashicorp.waypoint.UI.PipelineBundle - 258, // 457: hashicorp.waypoint.UI.ListPipelinesResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse - 324, // 458: hashicorp.waypoint.UI.ListPipelineRunsRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline - 257, // 459: hashicorp.waypoint.UI.ListPipelineRunsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest - 272, // 460: hashicorp.waypoint.UI.ListPipelineRunsResponse.pipeline_run_bundles:type_name -> hashicorp.waypoint.UI.PipelineRunBundle - 258, // 461: hashicorp.waypoint.UI.ListPipelineRunsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse - 324, // 462: hashicorp.waypoint.UI.GetPipelineRunRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline - 210, // 463: hashicorp.waypoint.UI.GetPipelineRunResponse.pipeline_run:type_name -> hashicorp.waypoint.PipelineRun - 273, // 464: hashicorp.waypoint.UI.GetPipelineRunResponse.root_tree_node:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode - 209, // 465: hashicorp.waypoint.UI.PipelineBundle.pipeline:type_name -> hashicorp.waypoint.Pipeline - 272, // 466: hashicorp.waypoint.UI.PipelineBundle.last_run:type_name -> hashicorp.waypoint.UI.PipelineRunBundle - 210, // 467: hashicorp.waypoint.UI.PipelineRunBundle.pipeline_run:type_name -> hashicorp.waypoint.PipelineRun - 497, // 468: hashicorp.waypoint.UI.PipelineRunBundle.queue_time:type_name -> google.protobuf.Timestamp - 303, // 469: hashicorp.waypoint.UI.PipelineRunBundle.application:type_name -> hashicorp.waypoint.Ref.Application - 386, // 470: hashicorp.waypoint.UI.PipelineRunBundle.data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 469, // 471: hashicorp.waypoint.UI.PipelineRunTreeNode.step:type_name -> hashicorp.waypoint.Pipeline.Step - 1, // 472: hashicorp.waypoint.UI.PipelineRunTreeNode.state:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode.State - 497, // 473: hashicorp.waypoint.UI.PipelineRunTreeNode.start_time:type_name -> google.protobuf.Timestamp - 497, // 474: hashicorp.waypoint.UI.PipelineRunTreeNode.complete_time:type_name -> google.protobuf.Timestamp - 303, // 475: hashicorp.waypoint.UI.PipelineRunTreeNode.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 476: hashicorp.waypoint.UI.PipelineRunTreeNode.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 322, // 477: hashicorp.waypoint.UI.PipelineRunTreeNode.job:type_name -> hashicorp.waypoint.Ref.Job - 338, // 478: hashicorp.waypoint.UI.PipelineRunTreeNode.result:type_name -> hashicorp.waypoint.Job.Result - 189, // 479: hashicorp.waypoint.UI.PipelineRunTreeNode.latest_status_report:type_name -> hashicorp.waypoint.StatusReport - 289, // 480: hashicorp.waypoint.UI.PipelineRunTreeNode.children:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode.Children - 303, // 481: hashicorp.waypoint.UI.ListDeploymentsRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 482: hashicorp.waypoint.UI.ListDeploymentsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 43, // 483: hashicorp.waypoint.UI.ListDeploymentsRequest.order:type_name -> hashicorp.waypoint.OperationOrder - 41, // 484: hashicorp.waypoint.UI.ListDeploymentsRequest.status:type_name -> hashicorp.waypoint.StatusFilter - 9, // 485: hashicorp.waypoint.UI.ListDeploymentsRequest.physical_state:type_name -> hashicorp.waypoint.Operation.PhysicalState - 278, // 486: hashicorp.waypoint.UI.ListDeploymentsResponse.deployments:type_name -> hashicorp.waypoint.UI.DeploymentBundle - 309, // 487: hashicorp.waypoint.UI.GetDeploymentRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation - 17, // 488: hashicorp.waypoint.UI.GetDeploymentRequest.load_details:type_name -> hashicorp.waypoint.Deployment.LoadDetails - 278, // 489: hashicorp.waypoint.UI.GetDeploymentResponse.deployment:type_name -> hashicorp.waypoint.UI.DeploymentBundle - 158, // 490: hashicorp.waypoint.UI.DeploymentBundle.deployment:type_name -> hashicorp.waypoint.Deployment - 152, // 491: hashicorp.waypoint.UI.DeploymentBundle.artifact:type_name -> hashicorp.waypoint.PushedArtifact - 136, // 492: hashicorp.waypoint.UI.DeploymentBundle.build:type_name -> hashicorp.waypoint.Build - 386, // 493: hashicorp.waypoint.UI.DeploymentBundle.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 189, // 494: hashicorp.waypoint.UI.DeploymentBundle.latest_status_report:type_name -> hashicorp.waypoint.StatusReport - 303, // 495: hashicorp.waypoint.UI.ListReleasesRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 496: hashicorp.waypoint.UI.ListReleasesRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 43, // 497: hashicorp.waypoint.UI.ListReleasesRequest.order:type_name -> hashicorp.waypoint.OperationOrder - 41, // 498: hashicorp.waypoint.UI.ListReleasesRequest.status:type_name -> hashicorp.waypoint.StatusFilter - 9, // 499: hashicorp.waypoint.UI.ListReleasesRequest.physical_state:type_name -> hashicorp.waypoint.Operation.PhysicalState - 281, // 500: hashicorp.waypoint.UI.ListReleasesResponse.releases:type_name -> hashicorp.waypoint.UI.ReleaseBundle - 169, // 501: hashicorp.waypoint.UI.ReleaseBundle.release:type_name -> hashicorp.waypoint.Release - 189, // 502: hashicorp.waypoint.UI.ReleaseBundle.latest_status_report:type_name -> hashicorp.waypoint.StatusReport - 303, // 503: hashicorp.waypoint.UI.ListEventsRequest.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 504: hashicorp.waypoint.UI.ListEventsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 257, // 505: hashicorp.waypoint.UI.ListEventsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest - 259, // 506: hashicorp.waypoint.UI.ListEventsRequest.sorting:type_name -> hashicorp.waypoint.SortingRequest - 284, // 507: hashicorp.waypoint.UI.ListEventsResponse.events:type_name -> hashicorp.waypoint.UI.EventBundle - 258, // 508: hashicorp.waypoint.UI.ListEventsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse - 497, // 509: hashicorp.waypoint.UI.EventBundle.timestamp:type_name -> google.protobuf.Timestamp - 3, // 510: hashicorp.waypoint.UI.EventBundle.event_type:type_name -> hashicorp.waypoint.UI.EventBundle.EventType - 39, // 511: hashicorp.waypoint.UI.EventBuild.component:type_name -> hashicorp.waypoint.Component - 305, // 512: hashicorp.waypoint.UI.EventBuild.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 40, // 513: hashicorp.waypoint.UI.EventBuild.status:type_name -> hashicorp.waypoint.Status - 39, // 514: hashicorp.waypoint.UI.EventDeployment.component:type_name -> hashicorp.waypoint.Component - 305, // 515: hashicorp.waypoint.UI.EventDeployment.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 40, // 516: hashicorp.waypoint.UI.EventDeployment.status:type_name -> hashicorp.waypoint.Status - 39, // 517: hashicorp.waypoint.UI.EventRelease.component:type_name -> hashicorp.waypoint.Component - 305, // 518: hashicorp.waypoint.UI.EventRelease.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 40, // 519: hashicorp.waypoint.UI.EventRelease.status:type_name -> hashicorp.waypoint.Status - 285, // 520: hashicorp.waypoint.UI.ListEventSchemasResponse.event_build_schema:type_name -> hashicorp.waypoint.UI.EventBuild - 286, // 521: hashicorp.waypoint.UI.ListEventSchemasResponse.event_deployment_schema:type_name -> hashicorp.waypoint.UI.EventDeployment - 287, // 522: hashicorp.waypoint.UI.ListEventSchemasResponse.event_release_schema:type_name -> hashicorp.waypoint.UI.EventRelease - 2, // 523: hashicorp.waypoint.UI.PipelineRunTreeNode.Children.mode:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode.Children.Mode - 273, // 524: hashicorp.waypoint.UI.PipelineRunTreeNode.Children.nodes:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode - 294, // 525: hashicorp.waypoint.Variable.File.hcl_range:type_name -> hashicorp.waypoint.Variable.HclRange - 294, // 526: hashicorp.waypoint.Variable.VCS.hcl_range:type_name -> hashicorp.waypoint.Variable.HclRange - 293, // 527: hashicorp.waypoint.Variable.HclRange.start:type_name -> hashicorp.waypoint.Variable.HclPos - 293, // 528: hashicorp.waypoint.Variable.HclRange.end:type_name -> hashicorp.waypoint.Variable.HclPos - 5, // 529: hashicorp.waypoint.Variable.FinalValue.source:type_name -> hashicorp.waypoint.Variable.FinalValue.Source - 304, // 530: hashicorp.waypoint.Workspace.Project.project:type_name -> hashicorp.waypoint.Ref.Project - 305, // 531: hashicorp.waypoint.Workspace.Project.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 386, // 532: hashicorp.waypoint.Workspace.Project.data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 497, // 533: hashicorp.waypoint.Workspace.Project.active_time:type_name -> google.protobuf.Timestamp - 299, // 534: hashicorp.waypoint.Workspace.Project.applications:type_name -> hashicorp.waypoint.Workspace.Application - 303, // 535: hashicorp.waypoint.Workspace.Application.application:type_name -> hashicorp.waypoint.Ref.Application - 497, // 536: hashicorp.waypoint.Workspace.Application.active_time:type_name -> google.protobuf.Timestamp - 301, // 537: hashicorp.waypoint.User.Link.oidc:type_name -> hashicorp.waypoint.User.Link.OIDC - 7, // 538: hashicorp.waypoint.Ref.Component.type:type_name -> hashicorp.waypoint.Component.Type - 310, // 539: hashicorp.waypoint.Ref.Operation.sequence:type_name -> hashicorp.waypoint.Ref.OperationSeq - 303, // 540: hashicorp.waypoint.Ref.OperationSeq.application:type_name -> hashicorp.waypoint.Ref.Application - 312, // 541: hashicorp.waypoint.Ref.Runner.any:type_name -> hashicorp.waypoint.Ref.RunnerAny - 313, // 542: hashicorp.waypoint.Ref.Runner.id:type_name -> hashicorp.waypoint.Ref.RunnerId - 314, // 543: hashicorp.waypoint.Ref.Runner.labels:type_name -> hashicorp.waypoint.Ref.RunnerLabels - 328, // 544: hashicorp.waypoint.Ref.RunnerLabels.labels:type_name -> hashicorp.waypoint.Ref.RunnerLabels.LabelsEntry - 316, // 545: hashicorp.waypoint.Ref.User.id:type_name -> hashicorp.waypoint.Ref.UserId - 317, // 546: hashicorp.waypoint.Ref.User.username:type_name -> hashicorp.waypoint.Ref.UserUsername - 325, // 547: hashicorp.waypoint.Ref.Pipeline.owner:type_name -> hashicorp.waypoint.Ref.PipelineOwner - 304, // 548: hashicorp.waypoint.Ref.PipelineOwner.project:type_name -> hashicorp.waypoint.Ref.Project - 8, // 549: hashicorp.waypoint.StatusFilter.Filter.state:type_name -> hashicorp.waypoint.Status.State - 332, // 550: hashicorp.waypoint.AuthMethod.OIDC.claim_mappings:type_name -> hashicorp.waypoint.AuthMethod.OIDC.ClaimMappingsEntry - 333, // 551: hashicorp.waypoint.AuthMethod.OIDC.list_claim_mappings:type_name -> hashicorp.waypoint.AuthMethod.OIDC.ListClaimMappingsEntry - 47, // 552: hashicorp.waypoint.Job.TaskOverride.launch_info:type_name -> hashicorp.waypoint.TaskLaunchInfo - 295, // 553: hashicorp.waypoint.Job.VariableFinalValuesEntry.value:type_name -> hashicorp.waypoint.Variable.FinalValue - 352, // 554: hashicorp.waypoint.Job.Result.build:type_name -> hashicorp.waypoint.Job.BuildResult - 354, // 555: hashicorp.waypoint.Job.Result.push:type_name -> hashicorp.waypoint.Job.PushResult - 356, // 556: hashicorp.waypoint.Job.Result.deploy:type_name -> hashicorp.waypoint.Job.DeployResult - 362, // 557: hashicorp.waypoint.Job.Result.release:type_name -> hashicorp.waypoint.Job.ReleaseResult - 348, // 558: hashicorp.waypoint.Job.Result.validate:type_name -> hashicorp.waypoint.Job.ValidateResult - 350, // 559: hashicorp.waypoint.Job.Result.auth:type_name -> hashicorp.waypoint.Job.AuthResult - 372, // 560: hashicorp.waypoint.Job.Result.docs:type_name -> hashicorp.waypoint.Job.DocsResult - 374, // 561: hashicorp.waypoint.Job.Result.config_sync:type_name -> hashicorp.waypoint.Job.ConfigSyncResult - 346, // 562: hashicorp.waypoint.Job.Result.up:type_name -> hashicorp.waypoint.Job.UpResult - 385, // 563: hashicorp.waypoint.Job.Result.queue_project:type_name -> hashicorp.waypoint.Job.QueueProjectResult - 378, // 564: hashicorp.waypoint.Job.Result.poll:type_name -> hashicorp.waypoint.Job.PollResult - 370, // 565: hashicorp.waypoint.Job.Result.status_report:type_name -> hashicorp.waypoint.Job.StatusReportResult - 365, // 566: hashicorp.waypoint.Job.Result.start_task:type_name -> hashicorp.waypoint.Job.StartTaskResult - 380, // 567: hashicorp.waypoint.Job.Result.init:type_name -> hashicorp.waypoint.Job.InitResult - 368, // 568: hashicorp.waypoint.Job.Result.watch_task:type_name -> hashicorp.waypoint.Job.WatchTaskResult - 383, // 569: hashicorp.waypoint.Job.Result.pipeline_step:type_name -> hashicorp.waypoint.Job.PipelineStepResult - 375, // 570: hashicorp.waypoint.Job.Result.pipeline_config_sync:type_name -> hashicorp.waypoint.Job.PipelineConfigSyncResult - 376, // 571: hashicorp.waypoint.Job.Result.project_destroy:type_name -> hashicorp.waypoint.Job.ProjectDestroyResult - 14, // 572: hashicorp.waypoint.Job.Config.source:type_name -> hashicorp.waypoint.Job.Config.Source - 341, // 573: hashicorp.waypoint.Job.DataSource.local:type_name -> hashicorp.waypoint.Job.Local - 343, // 574: hashicorp.waypoint.Job.DataSource.git:type_name -> hashicorp.waypoint.Job.Git - 342, // 575: hashicorp.waypoint.Job.DataSource.remote:type_name -> hashicorp.waypoint.Job.Remote - 343, // 576: hashicorp.waypoint.Job.Remote.git_remote:type_name -> hashicorp.waypoint.Job.Git - 387, // 577: hashicorp.waypoint.Job.Git.basic:type_name -> hashicorp.waypoint.Job.Git.Basic - 388, // 578: hashicorp.waypoint.Job.Git.ssh:type_name -> hashicorp.waypoint.Job.Git.SSH - 361, // 579: hashicorp.waypoint.Job.UpOp.release:type_name -> hashicorp.waypoint.Job.ReleaseOp - 308, // 580: hashicorp.waypoint.Job.AuthOp.component:type_name -> hashicorp.waypoint.Ref.Component - 390, // 581: hashicorp.waypoint.Job.AuthResult.results:type_name -> hashicorp.waypoint.Job.AuthResult.Result - 136, // 582: hashicorp.waypoint.Job.BuildResult.build:type_name -> hashicorp.waypoint.Build - 152, // 583: hashicorp.waypoint.Job.BuildResult.push:type_name -> hashicorp.waypoint.PushedArtifact - 136, // 584: hashicorp.waypoint.Job.PushOp.build:type_name -> hashicorp.waypoint.Build - 152, // 585: hashicorp.waypoint.Job.PushResult.artifact:type_name -> hashicorp.waypoint.PushedArtifact - 152, // 586: hashicorp.waypoint.Job.DeployOp.artifact:type_name -> hashicorp.waypoint.PushedArtifact - 158, // 587: hashicorp.waypoint.Job.DeployResult.deployment:type_name -> hashicorp.waypoint.Deployment - 158, // 588: hashicorp.waypoint.Job.ExecOp.deployment:type_name -> hashicorp.waypoint.Deployment - 158, // 589: hashicorp.waypoint.Job.LogsOp.deployment:type_name -> hashicorp.waypoint.Deployment - 497, // 590: hashicorp.waypoint.Job.LogsOp.start_time:type_name -> google.protobuf.Timestamp - 496, // 591: hashicorp.waypoint.Job.DestroyOp.workspace:type_name -> google.protobuf.Empty - 158, // 592: hashicorp.waypoint.Job.DestroyOp.deployment:type_name -> hashicorp.waypoint.Deployment - 158, // 593: hashicorp.waypoint.Job.ReleaseOp.deployment:type_name -> hashicorp.waypoint.Deployment - 169, // 594: hashicorp.waypoint.Job.ReleaseResult.release:type_name -> hashicorp.waypoint.Release - 28, // 595: hashicorp.waypoint.Job.TaskPluginParams.hcl_format:type_name -> hashicorp.waypoint.Hcl.Format - 47, // 596: hashicorp.waypoint.Job.StartTaskLaunchOp.info:type_name -> hashicorp.waypoint.TaskLaunchInfo - 363, // 597: hashicorp.waypoint.Job.StartTaskLaunchOp.params:type_name -> hashicorp.waypoint.Job.TaskPluginParams - 499, // 598: hashicorp.waypoint.Job.StartTaskResult.state:type_name -> opaqueany.Any - 363, // 599: hashicorp.waypoint.Job.StopTaskLaunchOp.params:type_name -> hashicorp.waypoint.Job.TaskPluginParams - 499, // 600: hashicorp.waypoint.Job.StopTaskLaunchOp.direct:type_name -> opaqueany.Any - 322, // 601: hashicorp.waypoint.Job.WatchTaskOp.start_job:type_name -> hashicorp.waypoint.Ref.Job - 158, // 602: hashicorp.waypoint.Job.StatusReportOp.deployment:type_name -> hashicorp.waypoint.Deployment - 169, // 603: hashicorp.waypoint.Job.StatusReportOp.release:type_name -> hashicorp.waypoint.Release - 189, // 604: hashicorp.waypoint.Job.StatusReportResult.status_report:type_name -> hashicorp.waypoint.StatusReport - 391, // 605: hashicorp.waypoint.Job.DocsResult.results:type_name -> hashicorp.waypoint.Job.DocsResult.Result - 392, // 606: hashicorp.waypoint.Job.PipelineConfigSyncResult.synced_pipelines:type_name -> hashicorp.waypoint.Job.PipelineConfigSyncResult.SyncedPipelinesEntry - 386, // 607: hashicorp.waypoint.Job.PollResult.old_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 386, // 608: hashicorp.waypoint.Job.PollResult.new_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 469, // 609: hashicorp.waypoint.Job.PipelineStepOp.step:type_name -> hashicorp.waypoint.Pipeline.Step - 304, // 610: hashicorp.waypoint.Job.DestroyProjectOp.project:type_name -> hashicorp.waypoint.Ref.Project - 498, // 611: hashicorp.waypoint.Job.PipelineStepResult.result:type_name -> google.rpc.Status - 82, // 612: hashicorp.waypoint.Job.QueueProjectOp.job_template:type_name -> hashicorp.waypoint.Job - 393, // 613: hashicorp.waypoint.Job.QueueProjectResult.applications:type_name -> hashicorp.waypoint.Job.QueueProjectResult.Application - 496, // 614: hashicorp.waypoint.Job.DataSource.Ref.unknown:type_name -> google.protobuf.Empty - 389, // 615: hashicorp.waypoint.Job.DataSource.Ref.git:type_name -> hashicorp.waypoint.Job.Git.Ref - 497, // 616: hashicorp.waypoint.Job.Git.Ref.timestamp:type_name -> google.protobuf.Timestamp - 39, // 617: hashicorp.waypoint.Job.AuthResult.Result.component:type_name -> hashicorp.waypoint.Component - 498, // 618: hashicorp.waypoint.Job.AuthResult.Result.check_error:type_name -> google.rpc.Status - 498, // 619: hashicorp.waypoint.Job.AuthResult.Result.auth_error:type_name -> google.rpc.Status - 39, // 620: hashicorp.waypoint.Job.DocsResult.Result.component:type_name -> hashicorp.waypoint.Component - 83, // 621: hashicorp.waypoint.Job.DocsResult.Result.docs:type_name -> hashicorp.waypoint.Documentation - 324, // 622: hashicorp.waypoint.Job.PipelineConfigSyncResult.SyncedPipelinesEntry.value:type_name -> hashicorp.waypoint.Ref.Pipeline - 303, // 623: hashicorp.waypoint.Job.QueueProjectResult.Application.application:type_name -> hashicorp.waypoint.Ref.Application - 395, // 624: hashicorp.waypoint.Documentation.FieldsEntry.value:type_name -> hashicorp.waypoint.Documentation.Field - 13, // 625: hashicorp.waypoint.GetJobStreamResponse.State.previous:type_name -> hashicorp.waypoint.Job.State - 13, // 626: hashicorp.waypoint.GetJobStreamResponse.State.current:type_name -> hashicorp.waypoint.Job.State - 82, // 627: hashicorp.waypoint.GetJobStreamResponse.State.job:type_name -> hashicorp.waypoint.Job - 82, // 628: hashicorp.waypoint.GetJobStreamResponse.JobChange.job:type_name -> hashicorp.waypoint.Job - 386, // 629: hashicorp.waypoint.GetJobStreamResponse.Download.data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 404, // 630: hashicorp.waypoint.GetJobStreamResponse.Terminal.events:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event - 498, // 631: hashicorp.waypoint.GetJobStreamResponse.Error.error:type_name -> google.rpc.Status - 498, // 632: hashicorp.waypoint.GetJobStreamResponse.Complete.error:type_name -> google.rpc.Status - 338, // 633: hashicorp.waypoint.GetJobStreamResponse.Complete.result:type_name -> hashicorp.waypoint.Job.Result - 497, // 634: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.timestamp:type_name -> google.protobuf.Timestamp - 406, // 635: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.line:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Line - 405, // 636: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.status:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Status - 409, // 637: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.named_values:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValues - 407, // 638: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.raw:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Raw - 412, // 639: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.table:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Table - 413, // 640: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.step_group:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.StepGroup - 414, // 641: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.step:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Step - 408, // 642: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValues.values:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValue - 410, // 643: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableRow.entries:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableEntry - 411, // 644: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Table.rows:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableRow - 89, // 645: hashicorp.waypoint.RunnerConfigRequest.Open.runner:type_name -> hashicorp.waypoint.Runner - 338, // 646: hashicorp.waypoint.RunnerJobStreamRequest.Complete.result:type_name -> hashicorp.waypoint.Job.Result - 498, // 647: hashicorp.waypoint.RunnerJobStreamRequest.Error.error:type_name -> google.rpc.Status - 339, // 648: hashicorp.waypoint.RunnerJobStreamRequest.ConfigLoad.config:type_name -> hashicorp.waypoint.Job.Config - 427, // 649: hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet.final_values:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet.FinalValuesEntry - 295, // 650: hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet.FinalValuesEntry.value:type_name -> hashicorp.waypoint.Variable.FinalValue - 82, // 651: hashicorp.waypoint.RunnerJobStreamResponse.JobAssignment.job:type_name -> hashicorp.waypoint.Job - 197, // 652: hashicorp.waypoint.RunnerJobStreamResponse.JobAssignment.config_sources:type_name -> hashicorp.waypoint.ConfigSource - 433, // 653: hashicorp.waypoint.Hostname.Target.application:type_name -> hashicorp.waypoint.Hostname.TargetApp - 303, // 654: hashicorp.waypoint.Hostname.TargetApp.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 655: hashicorp.waypoint.Hostname.TargetApp.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 386, // 656: hashicorp.waypoint.Build.Preload.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 386, // 657: hashicorp.waypoint.PushedArtifact.Preload.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 152, // 658: hashicorp.waypoint.Deployment.Preload.artifact:type_name -> hashicorp.waypoint.PushedArtifact - 136, // 659: hashicorp.waypoint.Deployment.Preload.build:type_name -> hashicorp.waypoint.Build - 386, // 660: hashicorp.waypoint.Deployment.Preload.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 303, // 661: hashicorp.waypoint.ListInstancesRequest.Application.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 662: hashicorp.waypoint.ListInstancesRequest.Application.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 158, // 663: hashicorp.waypoint.Release.Preload.deployment:type_name -> hashicorp.waypoint.Deployment - 152, // 664: hashicorp.waypoint.Release.Preload.artifact:type_name -> hashicorp.waypoint.PushedArtifact - 136, // 665: hashicorp.waypoint.Release.Preload.build:type_name -> hashicorp.waypoint.Build - 386, // 666: hashicorp.waypoint.Release.Preload.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref - 319, // 667: hashicorp.waypoint.StatusReport.Resource.declared_resource:type_name -> hashicorp.waypoint.Ref.DeclaredResource - 0, // 668: hashicorp.waypoint.StatusReport.Resource.category_display_hint:type_name -> hashicorp.waypoint.ResourceCategoryDisplayHint - 497, // 669: hashicorp.waypoint.StatusReport.Resource.created_time:type_name -> google.protobuf.Timestamp - 20, // 670: hashicorp.waypoint.StatusReport.Resource.health:type_name -> hashicorp.waypoint.StatusReport.Resource.Health - 445, // 671: hashicorp.waypoint.StatusReport.Resource.deprecated_health:type_name -> hashicorp.waypoint.StatusReport.Health - 303, // 672: hashicorp.waypoint.GetLogStreamRequest.Application.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 673: hashicorp.waypoint.GetLogStreamRequest.Application.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 21, // 674: hashicorp.waypoint.LogBatch.Entry.source:type_name -> hashicorp.waypoint.LogBatch.Entry.Source - 497, // 675: hashicorp.waypoint.LogBatch.Entry.timestamp:type_name -> google.protobuf.Timestamp - 450, // 676: hashicorp.waypoint.ConfigVar.DynamicVal.config:type_name -> hashicorp.waypoint.ConfigVar.DynamicVal.ConfigEntry - 302, // 677: hashicorp.waypoint.ConfigVar.Target.global:type_name -> hashicorp.waypoint.Ref.Global - 304, // 678: hashicorp.waypoint.ConfigVar.Target.project:type_name -> hashicorp.waypoint.Ref.Project - 303, // 679: hashicorp.waypoint.ConfigVar.Target.application:type_name -> hashicorp.waypoint.Ref.Application - 305, // 680: hashicorp.waypoint.ConfigVar.Target.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 311, // 681: hashicorp.waypoint.ConfigVar.Target.runner:type_name -> hashicorp.waypoint.Ref.Runner - 455, // 682: hashicorp.waypoint.ExecStreamRequest.Start.pty:type_name -> hashicorp.waypoint.ExecStreamRequest.PTY - 456, // 683: hashicorp.waypoint.ExecStreamRequest.PTY.window_size:type_name -> hashicorp.waypoint.ExecStreamRequest.WindowSize - 22, // 684: hashicorp.waypoint.ExecStreamResponse.Output.channel:type_name -> hashicorp.waypoint.ExecStreamResponse.Output.Channel - 455, // 685: hashicorp.waypoint.EntrypointConfig.Exec.pty:type_name -> hashicorp.waypoint.ExecStreamRequest.PTY - 39, // 686: hashicorp.waypoint.EntrypointConfig.DeploymentInfo.component:type_name -> hashicorp.waypoint.Component - 463, // 687: hashicorp.waypoint.EntrypointConfig.DeploymentInfo.labels:type_name -> hashicorp.waypoint.EntrypointConfig.DeploymentInfo.LabelsEntry - 23, // 688: hashicorp.waypoint.EntrypointExecRequest.Output.channel:type_name -> hashicorp.waypoint.EntrypointExecRequest.Output.Channel - 498, // 689: hashicorp.waypoint.EntrypointExecRequest.Error.error:type_name -> google.rpc.Status - 469, // 690: hashicorp.waypoint.Pipeline.StepsEntry.value:type_name -> hashicorp.waypoint.Pipeline.Step - 470, // 691: hashicorp.waypoint.Pipeline.Step.exec:type_name -> hashicorp.waypoint.Pipeline.Step.Exec - 471, // 692: hashicorp.waypoint.Pipeline.Step.build:type_name -> hashicorp.waypoint.Pipeline.Step.Build - 472, // 693: hashicorp.waypoint.Pipeline.Step.deploy:type_name -> hashicorp.waypoint.Pipeline.Step.Deploy - 473, // 694: hashicorp.waypoint.Pipeline.Step.release:type_name -> hashicorp.waypoint.Pipeline.Step.Release - 474, // 695: hashicorp.waypoint.Pipeline.Step.up:type_name -> hashicorp.waypoint.Pipeline.Step.Up - 475, // 696: hashicorp.waypoint.Pipeline.Step.pipeline:type_name -> hashicorp.waypoint.Pipeline.Step.Pipeline - 305, // 697: hashicorp.waypoint.Pipeline.Step.workspace:type_name -> hashicorp.waypoint.Ref.Workspace - 306, // 698: hashicorp.waypoint.Pipeline.Step.Release.deployment:type_name -> hashicorp.waypoint.Ref.Deployment - 324, // 699: hashicorp.waypoint.Pipeline.Step.Pipeline.ref:type_name -> hashicorp.waypoint.Ref.Pipeline - 25, // 700: hashicorp.waypoint.GetPipelineResponse.Graph.format:type_name -> hashicorp.waypoint.GetPipelineResponse.Graph.Format - 326, // 701: hashicorp.waypoint.RunPipelineResponse.JobMapEntry.value:type_name -> hashicorp.waypoint.Ref.PipelineStep - 324, // 702: hashicorp.waypoint.ConfigSyncPipelineResponse.SyncedPipelinesEntry.value:type_name -> hashicorp.waypoint.Ref.Pipeline - 486, // 703: hashicorp.waypoint.Token.Login.entrypoint:type_name -> hashicorp.waypoint.Token.Entrypoint - 483, // 704: hashicorp.waypoint.Token.Invite.login:type_name -> hashicorp.waypoint.Token.Login - 488, // 705: hashicorp.waypoint.Token.Invite.signup:type_name -> hashicorp.waypoint.Token.Invite.Signup - 32, // 706: hashicorp.waypoint.Snapshot.Header.version:type_name -> hashicorp.waypoint.VersionInfo - 27, // 707: hashicorp.waypoint.Snapshot.Header.format:type_name -> hashicorp.waypoint.Snapshot.Header.Format - 495, // 708: hashicorp.waypoint.Snapshot.BoltChunk.items:type_name -> hashicorp.waypoint.Snapshot.BoltChunk.ItemsEntry - 496, // 709: hashicorp.waypoint.Waypoint.GetVersionInfo:input_type -> google.protobuf.Empty - 496, // 710: hashicorp.waypoint.Waypoint.ListOIDCAuthMethods:input_type -> google.protobuf.Empty - 73, // 711: hashicorp.waypoint.Waypoint.GetOIDCAuthURL:input_type -> hashicorp.waypoint.GetOIDCAuthURLRequest - 75, // 712: hashicorp.waypoint.Waypoint.CompleteOIDCAuth:input_type -> hashicorp.waypoint.CompleteOIDCAuthRequest - 177, // 713: hashicorp.waypoint.Waypoint.NoAuthRunTrigger:input_type -> hashicorp.waypoint.RunTriggerRequest - 58, // 714: hashicorp.waypoint.Waypoint.GetUser:input_type -> hashicorp.waypoint.GetUserRequest - 496, // 715: hashicorp.waypoint.Waypoint.ListUsers:input_type -> google.protobuf.Empty - 61, // 716: hashicorp.waypoint.Waypoint.UpdateUser:input_type -> hashicorp.waypoint.UpdateUserRequest - 63, // 717: hashicorp.waypoint.Waypoint.DeleteUser:input_type -> hashicorp.waypoint.DeleteUserRequest - 66, // 718: hashicorp.waypoint.Waypoint.UpsertAuthMethod:input_type -> hashicorp.waypoint.UpsertAuthMethodRequest - 68, // 719: hashicorp.waypoint.Waypoint.GetAuthMethod:input_type -> hashicorp.waypoint.GetAuthMethodRequest - 496, // 720: hashicorp.waypoint.Waypoint.ListAuthMethods:input_type -> google.protobuf.Empty - 70, // 721: hashicorp.waypoint.Waypoint.DeleteAuthMethod:input_type -> hashicorp.waypoint.DeleteAuthMethodRequest - 113, // 722: hashicorp.waypoint.Waypoint.ListWorkspaces:input_type -> hashicorp.waypoint.ListWorkspacesRequest - 115, // 723: hashicorp.waypoint.Waypoint.GetWorkspace:input_type -> hashicorp.waypoint.GetWorkspaceRequest - 117, // 724: hashicorp.waypoint.Waypoint.UpsertWorkspace:input_type -> hashicorp.waypoint.UpsertWorkspaceRequest - 119, // 725: hashicorp.waypoint.Waypoint.UpsertProject:input_type -> hashicorp.waypoint.UpsertProjectRequest - 121, // 726: hashicorp.waypoint.Waypoint.GetProject:input_type -> hashicorp.waypoint.GetProjectRequest - 123, // 727: hashicorp.waypoint.Waypoint.ListProjects:input_type -> hashicorp.waypoint.ListProjectsRequest - 125, // 728: hashicorp.waypoint.Waypoint.DestroyProject:input_type -> hashicorp.waypoint.DestroyProjectRequest - 126, // 729: hashicorp.waypoint.Waypoint.GetApplication:input_type -> hashicorp.waypoint.GetApplicationRequest - 128, // 730: hashicorp.waypoint.Waypoint.UpsertApplication:input_type -> hashicorp.waypoint.UpsertApplicationRequest - 132, // 731: hashicorp.waypoint.Waypoint.ListBuilds:input_type -> hashicorp.waypoint.ListBuildsRequest - 135, // 732: hashicorp.waypoint.Waypoint.GetBuild:input_type -> hashicorp.waypoint.GetBuildRequest - 134, // 733: hashicorp.waypoint.Waypoint.GetLatestBuild:input_type -> hashicorp.waypoint.GetLatestBuildRequest - 150, // 734: hashicorp.waypoint.Waypoint.ListPushedArtifacts:input_type -> hashicorp.waypoint.ListPushedArtifactsRequest - 149, // 735: hashicorp.waypoint.Waypoint.GetPushedArtifact:input_type -> hashicorp.waypoint.GetPushedArtifactRequest - 148, // 736: hashicorp.waypoint.Waypoint.GetLatestPushedArtifact:input_type -> hashicorp.waypoint.GetLatestPushedArtifactRequest - 156, // 737: hashicorp.waypoint.Waypoint.ListDeployments:input_type -> hashicorp.waypoint.ListDeploymentsRequest - 153, // 738: hashicorp.waypoint.Waypoint.GetDeployment:input_type -> hashicorp.waypoint.GetDeploymentRequest - 160, // 739: hashicorp.waypoint.Waypoint.ListInstances:input_type -> hashicorp.waypoint.ListInstancesRequest - 166, // 740: hashicorp.waypoint.Waypoint.ListReleases:input_type -> hashicorp.waypoint.ListReleasesRequest - 168, // 741: hashicorp.waypoint.Waypoint.GetRelease:input_type -> hashicorp.waypoint.GetReleaseRequest - 165, // 742: hashicorp.waypoint.Waypoint.GetLatestRelease:input_type -> hashicorp.waypoint.GetLatestReleaseRequest - 186, // 743: hashicorp.waypoint.Waypoint.GetStatusReport:input_type -> hashicorp.waypoint.GetStatusReportRequest - 183, // 744: hashicorp.waypoint.Waypoint.GetLatestStatusReport:input_type -> hashicorp.waypoint.GetLatestStatusReportRequest - 184, // 745: hashicorp.waypoint.Waypoint.ListStatusReports:input_type -> hashicorp.waypoint.ListStatusReportsRequest - 187, // 746: hashicorp.waypoint.Waypoint.ExpediteStatusReport:input_type -> hashicorp.waypoint.ExpediteStatusReportRequest - 190, // 747: hashicorp.waypoint.Waypoint.GetLogStream:input_type -> hashicorp.waypoint.GetLogStreamRequest - 201, // 748: hashicorp.waypoint.Waypoint.StartExecStream:input_type -> hashicorp.waypoint.ExecStreamRequest - 193, // 749: hashicorp.waypoint.Waypoint.SetConfig:input_type -> hashicorp.waypoint.ConfigSetRequest - 195, // 750: hashicorp.waypoint.Waypoint.GetConfig:input_type -> hashicorp.waypoint.ConfigGetRequest - 198, // 751: hashicorp.waypoint.Waypoint.SetConfigSource:input_type -> hashicorp.waypoint.SetConfigSourceRequest - 199, // 752: hashicorp.waypoint.Waypoint.GetConfigSource:input_type -> hashicorp.waypoint.GetConfigSourceRequest - 107, // 753: hashicorp.waypoint.Waypoint.CreateHostname:input_type -> hashicorp.waypoint.CreateHostnameRequest - 111, // 754: hashicorp.waypoint.Waypoint.DeleteHostname:input_type -> hashicorp.waypoint.DeleteHostnameRequest - 109, // 755: hashicorp.waypoint.Waypoint.ListHostnames:input_type -> hashicorp.waypoint.ListHostnamesRequest - 77, // 756: hashicorp.waypoint.Waypoint.QueueJob:input_type -> hashicorp.waypoint.QueueJobRequest - 79, // 757: hashicorp.waypoint.Waypoint.CancelJob:input_type -> hashicorp.waypoint.CancelJobRequest - 84, // 758: hashicorp.waypoint.Waypoint.GetJob:input_type -> hashicorp.waypoint.GetJobRequest - 85, // 759: hashicorp.waypoint.Waypoint.ListJobs:input_type -> hashicorp.waypoint.ListJobsRequest - 80, // 760: hashicorp.waypoint.Waypoint.ValidateJob:input_type -> hashicorp.waypoint.ValidateJobRequest - 87, // 761: hashicorp.waypoint.Waypoint.GetJobStream:input_type -> hashicorp.waypoint.GetJobStreamRequest - 99, // 762: hashicorp.waypoint.Waypoint.GetRunner:input_type -> hashicorp.waypoint.GetRunnerRequest - 100, // 763: hashicorp.waypoint.Waypoint.ListRunners:input_type -> hashicorp.waypoint.ListRunnersRequest - 102, // 764: hashicorp.waypoint.Waypoint.AdoptRunner:input_type -> hashicorp.waypoint.AdoptRunnerRequest - 103, // 765: hashicorp.waypoint.Waypoint.ForgetRunner:input_type -> hashicorp.waypoint.ForgetRunnerRequest - 496, // 766: hashicorp.waypoint.Waypoint.GetServerConfig:input_type -> google.protobuf.Empty - 104, // 767: hashicorp.waypoint.Waypoint.SetServerConfig:input_type -> hashicorp.waypoint.SetServerConfigRequest - 496, // 768: hashicorp.waypoint.Waypoint.CreateSnapshot:input_type -> google.protobuf.Empty - 251, // 769: hashicorp.waypoint.Waypoint.RestoreSnapshot:input_type -> hashicorp.waypoint.RestoreSnapshotRequest - 496, // 770: hashicorp.waypoint.Waypoint.BootstrapToken:input_type -> google.protobuf.Empty - 243, // 771: hashicorp.waypoint.Waypoint.DecodeToken:input_type -> hashicorp.waypoint.DecodeTokenRequest - 247, // 772: hashicorp.waypoint.Waypoint.GenerateInviteToken:input_type -> hashicorp.waypoint.InviteTokenRequest - 245, // 773: hashicorp.waypoint.Waypoint.GenerateLoginToken:input_type -> hashicorp.waypoint.LoginTokenRequest - 246, // 774: hashicorp.waypoint.Waypoint.GenerateRunnerToken:input_type -> hashicorp.waypoint.GenerateRunnerTokenRequest - 249, // 775: hashicorp.waypoint.Waypoint.ConvertInviteToken:input_type -> hashicorp.waypoint.ConvertInviteTokenRequest - 90, // 776: hashicorp.waypoint.Waypoint.RunnerToken:input_type -> hashicorp.waypoint.RunnerTokenRequest - 92, // 777: hashicorp.waypoint.Waypoint.RunnerConfig:input_type -> hashicorp.waypoint.RunnerConfigRequest - 95, // 778: hashicorp.waypoint.Waypoint.RunnerJobStream:input_type -> hashicorp.waypoint.RunnerJobStreamRequest - 97, // 779: hashicorp.waypoint.Waypoint.RunnerGetDeploymentConfig:input_type -> hashicorp.waypoint.RunnerGetDeploymentConfigRequest - 203, // 780: hashicorp.waypoint.Waypoint.EntrypointConfig:input_type -> hashicorp.waypoint.EntrypointConfigRequest - 206, // 781: hashicorp.waypoint.Waypoint.EntrypointLogStream:input_type -> hashicorp.waypoint.EntrypointLogBatch - 207, // 782: hashicorp.waypoint.Waypoint.EntrypointExecStream:input_type -> hashicorp.waypoint.EntrypointExecRequest - 254, // 783: hashicorp.waypoint.Waypoint.WaypointHclFmt:input_type -> hashicorp.waypoint.WaypointHclFmtRequest - 139, // 784: hashicorp.waypoint.Waypoint.UpsertOnDemandRunnerConfig:input_type -> hashicorp.waypoint.UpsertOnDemandRunnerConfigRequest - 141, // 785: hashicorp.waypoint.Waypoint.GetOnDemandRunnerConfig:input_type -> hashicorp.waypoint.GetOnDemandRunnerConfigRequest - 496, // 786: hashicorp.waypoint.Waypoint.GetDefaultOnDemandRunnerConfig:input_type -> google.protobuf.Empty - 143, // 787: hashicorp.waypoint.Waypoint.DeleteOnDemandRunnerConfig:input_type -> hashicorp.waypoint.DeleteOnDemandRunnerConfigRequest - 496, // 788: hashicorp.waypoint.Waypoint.ListOnDemandRunnerConfigs:input_type -> google.protobuf.Empty - 130, // 789: hashicorp.waypoint.Waypoint.UpsertBuild:input_type -> hashicorp.waypoint.UpsertBuildRequest - 146, // 790: hashicorp.waypoint.Waypoint.UpsertPushedArtifact:input_type -> hashicorp.waypoint.UpsertPushedArtifactRequest - 154, // 791: hashicorp.waypoint.Waypoint.UpsertDeployment:input_type -> hashicorp.waypoint.UpsertDeploymentRequest - 163, // 792: hashicorp.waypoint.Waypoint.UpsertRelease:input_type -> hashicorp.waypoint.UpsertReleaseRequest - 181, // 793: hashicorp.waypoint.Waypoint.UpsertStatusReport:input_type -> hashicorp.waypoint.UpsertStatusReportRequest - 51, // 794: hashicorp.waypoint.Waypoint.GetTask:input_type -> hashicorp.waypoint.GetTaskRequest - 54, // 795: hashicorp.waypoint.Waypoint.ListTask:input_type -> hashicorp.waypoint.ListTaskRequest - 56, // 796: hashicorp.waypoint.Waypoint.CancelTask:input_type -> hashicorp.waypoint.CancelTaskRequest - 172, // 797: hashicorp.waypoint.Waypoint.UpsertTrigger:input_type -> hashicorp.waypoint.UpsertTriggerRequest - 174, // 798: hashicorp.waypoint.Waypoint.GetTrigger:input_type -> hashicorp.waypoint.GetTriggerRequest - 176, // 799: hashicorp.waypoint.Waypoint.DeleteTrigger:input_type -> hashicorp.waypoint.DeleteTriggerRequest - 179, // 800: hashicorp.waypoint.Waypoint.ListTriggers:input_type -> hashicorp.waypoint.ListTriggerRequest - 177, // 801: hashicorp.waypoint.Waypoint.RunTrigger:input_type -> hashicorp.waypoint.RunTriggerRequest - 211, // 802: hashicorp.waypoint.Waypoint.UpsertPipeline:input_type -> hashicorp.waypoint.UpsertPipelineRequest - 215, // 803: hashicorp.waypoint.Waypoint.RunPipeline:input_type -> hashicorp.waypoint.RunPipelineRequest - 213, // 804: hashicorp.waypoint.Waypoint.GetPipeline:input_type -> hashicorp.waypoint.GetPipelineRequest - 221, // 805: hashicorp.waypoint.Waypoint.GetPipelineRun:input_type -> hashicorp.waypoint.GetPipelineRunRequest - 213, // 806: hashicorp.waypoint.Waypoint.GetLatestPipelineRun:input_type -> hashicorp.waypoint.GetPipelineRequest - 217, // 807: hashicorp.waypoint.Waypoint.ListPipelines:input_type -> hashicorp.waypoint.ListPipelinesRequest - 219, // 808: hashicorp.waypoint.Waypoint.ListPipelineRuns:input_type -> hashicorp.waypoint.ListPipelineRunsRequest - 223, // 809: hashicorp.waypoint.Waypoint.ConfigSyncPipeline:input_type -> hashicorp.waypoint.ConfigSyncPipelineRequest - 229, // 810: hashicorp.waypoint.Waypoint.CreateProjectTemplate:input_type -> hashicorp.waypoint.CreateProjectTemplateRequest - 231, // 811: hashicorp.waypoint.Waypoint.UpdateProjectTemplate:input_type -> hashicorp.waypoint.UpdateProjectTemplateRequest - 225, // 812: hashicorp.waypoint.Waypoint.GetProjectTemplate:input_type -> hashicorp.waypoint.GetProjectTemplateRequest - 233, // 813: hashicorp.waypoint.Waypoint.DeleteProjectTemplate:input_type -> hashicorp.waypoint.DeleteProjectTemplateRequest - 227, // 814: hashicorp.waypoint.Waypoint.ListProjectTemplates:input_type -> hashicorp.waypoint.ListProjectTemplatesRequest - 238, // 815: hashicorp.waypoint.Waypoint.CreateProjectFromTemplate:input_type -> hashicorp.waypoint.CreateProjectFromTemplateRequest - 236, // 816: hashicorp.waypoint.Waypoint.GetTFCRunStatus:input_type -> hashicorp.waypoint.GetTFCRunStatusRequest - 260, // 817: hashicorp.waypoint.Waypoint.UI_ListProjects:input_type -> hashicorp.waypoint.UI.ListProjectsRequest - 263, // 818: hashicorp.waypoint.Waypoint.UI_GetProject:input_type -> hashicorp.waypoint.UI.GetProjectRequest - 265, // 819: hashicorp.waypoint.Waypoint.UI_ListPipelines:input_type -> hashicorp.waypoint.UI.ListPipelinesRequest - 267, // 820: hashicorp.waypoint.Waypoint.UI_ListPipelineRuns:input_type -> hashicorp.waypoint.UI.ListPipelineRunsRequest - 269, // 821: hashicorp.waypoint.Waypoint.UI_GetPipelineRun:input_type -> hashicorp.waypoint.UI.GetPipelineRunRequest - 274, // 822: hashicorp.waypoint.Waypoint.UI_ListDeployments:input_type -> hashicorp.waypoint.UI.ListDeploymentsRequest - 276, // 823: hashicorp.waypoint.Waypoint.UI_GetDeployment:input_type -> hashicorp.waypoint.UI.GetDeploymentRequest - 279, // 824: hashicorp.waypoint.Waypoint.UI_ListReleases:input_type -> hashicorp.waypoint.UI.ListReleasesRequest - 282, // 825: hashicorp.waypoint.Waypoint.UI_ListEvents:input_type -> hashicorp.waypoint.UI.ListEventsRequest - 496, // 826: hashicorp.waypoint.Waypoint.INTERNAL_AdditionalMessages:input_type -> google.protobuf.Empty - 30, // 827: hashicorp.waypoint.Waypoint.GetVersionInfo:output_type -> hashicorp.waypoint.GetVersionInfoResponse - 72, // 828: hashicorp.waypoint.Waypoint.ListOIDCAuthMethods:output_type -> hashicorp.waypoint.ListOIDCAuthMethodsResponse - 74, // 829: hashicorp.waypoint.Waypoint.GetOIDCAuthURL:output_type -> hashicorp.waypoint.GetOIDCAuthURLResponse - 76, // 830: hashicorp.waypoint.Waypoint.CompleteOIDCAuth:output_type -> hashicorp.waypoint.CompleteOIDCAuthResponse - 178, // 831: hashicorp.waypoint.Waypoint.NoAuthRunTrigger:output_type -> hashicorp.waypoint.RunTriggerResponse - 59, // 832: hashicorp.waypoint.Waypoint.GetUser:output_type -> hashicorp.waypoint.GetUserResponse - 60, // 833: hashicorp.waypoint.Waypoint.ListUsers:output_type -> hashicorp.waypoint.ListUsersResponse - 62, // 834: hashicorp.waypoint.Waypoint.UpdateUser:output_type -> hashicorp.waypoint.UpdateUserResponse - 496, // 835: hashicorp.waypoint.Waypoint.DeleteUser:output_type -> google.protobuf.Empty - 67, // 836: hashicorp.waypoint.Waypoint.UpsertAuthMethod:output_type -> hashicorp.waypoint.UpsertAuthMethodResponse - 69, // 837: hashicorp.waypoint.Waypoint.GetAuthMethod:output_type -> hashicorp.waypoint.GetAuthMethodResponse - 71, // 838: hashicorp.waypoint.Waypoint.ListAuthMethods:output_type -> hashicorp.waypoint.ListAuthMethodsResponse - 496, // 839: hashicorp.waypoint.Waypoint.DeleteAuthMethod:output_type -> google.protobuf.Empty - 114, // 840: hashicorp.waypoint.Waypoint.ListWorkspaces:output_type -> hashicorp.waypoint.ListWorkspacesResponse - 116, // 841: hashicorp.waypoint.Waypoint.GetWorkspace:output_type -> hashicorp.waypoint.GetWorkspaceResponse - 118, // 842: hashicorp.waypoint.Waypoint.UpsertWorkspace:output_type -> hashicorp.waypoint.UpsertWorkspaceResponse - 120, // 843: hashicorp.waypoint.Waypoint.UpsertProject:output_type -> hashicorp.waypoint.UpsertProjectResponse - 122, // 844: hashicorp.waypoint.Waypoint.GetProject:output_type -> hashicorp.waypoint.GetProjectResponse - 124, // 845: hashicorp.waypoint.Waypoint.ListProjects:output_type -> hashicorp.waypoint.ListProjectsResponse - 496, // 846: hashicorp.waypoint.Waypoint.DestroyProject:output_type -> google.protobuf.Empty - 127, // 847: hashicorp.waypoint.Waypoint.GetApplication:output_type -> hashicorp.waypoint.GetApplicationResponse - 129, // 848: hashicorp.waypoint.Waypoint.UpsertApplication:output_type -> hashicorp.waypoint.UpsertApplicationResponse - 133, // 849: hashicorp.waypoint.Waypoint.ListBuilds:output_type -> hashicorp.waypoint.ListBuildsResponse - 136, // 850: hashicorp.waypoint.Waypoint.GetBuild:output_type -> hashicorp.waypoint.Build - 136, // 851: hashicorp.waypoint.Waypoint.GetLatestBuild:output_type -> hashicorp.waypoint.Build - 151, // 852: hashicorp.waypoint.Waypoint.ListPushedArtifacts:output_type -> hashicorp.waypoint.ListPushedArtifactsResponse - 152, // 853: hashicorp.waypoint.Waypoint.GetPushedArtifact:output_type -> hashicorp.waypoint.PushedArtifact - 152, // 854: hashicorp.waypoint.Waypoint.GetLatestPushedArtifact:output_type -> hashicorp.waypoint.PushedArtifact - 157, // 855: hashicorp.waypoint.Waypoint.ListDeployments:output_type -> hashicorp.waypoint.ListDeploymentsResponse - 158, // 856: hashicorp.waypoint.Waypoint.GetDeployment:output_type -> hashicorp.waypoint.Deployment - 161, // 857: hashicorp.waypoint.Waypoint.ListInstances:output_type -> hashicorp.waypoint.ListInstancesResponse - 167, // 858: hashicorp.waypoint.Waypoint.ListReleases:output_type -> hashicorp.waypoint.ListReleasesResponse - 169, // 859: hashicorp.waypoint.Waypoint.GetRelease:output_type -> hashicorp.waypoint.Release - 169, // 860: hashicorp.waypoint.Waypoint.GetLatestRelease:output_type -> hashicorp.waypoint.Release - 189, // 861: hashicorp.waypoint.Waypoint.GetStatusReport:output_type -> hashicorp.waypoint.StatusReport - 189, // 862: hashicorp.waypoint.Waypoint.GetLatestStatusReport:output_type -> hashicorp.waypoint.StatusReport - 185, // 863: hashicorp.waypoint.Waypoint.ListStatusReports:output_type -> hashicorp.waypoint.ListStatusReportsResponse - 188, // 864: hashicorp.waypoint.Waypoint.ExpediteStatusReport:output_type -> hashicorp.waypoint.ExpediteStatusReportResponse - 191, // 865: hashicorp.waypoint.Waypoint.GetLogStream:output_type -> hashicorp.waypoint.LogBatch - 202, // 866: hashicorp.waypoint.Waypoint.StartExecStream:output_type -> hashicorp.waypoint.ExecStreamResponse - 194, // 867: hashicorp.waypoint.Waypoint.SetConfig:output_type -> hashicorp.waypoint.ConfigSetResponse - 196, // 868: hashicorp.waypoint.Waypoint.GetConfig:output_type -> hashicorp.waypoint.ConfigGetResponse - 496, // 869: hashicorp.waypoint.Waypoint.SetConfigSource:output_type -> google.protobuf.Empty - 200, // 870: hashicorp.waypoint.Waypoint.GetConfigSource:output_type -> hashicorp.waypoint.GetConfigSourceResponse - 108, // 871: hashicorp.waypoint.Waypoint.CreateHostname:output_type -> hashicorp.waypoint.CreateHostnameResponse - 496, // 872: hashicorp.waypoint.Waypoint.DeleteHostname:output_type -> google.protobuf.Empty - 110, // 873: hashicorp.waypoint.Waypoint.ListHostnames:output_type -> hashicorp.waypoint.ListHostnamesResponse - 78, // 874: hashicorp.waypoint.Waypoint.QueueJob:output_type -> hashicorp.waypoint.QueueJobResponse - 496, // 875: hashicorp.waypoint.Waypoint.CancelJob:output_type -> google.protobuf.Empty - 82, // 876: hashicorp.waypoint.Waypoint.GetJob:output_type -> hashicorp.waypoint.Job - 86, // 877: hashicorp.waypoint.Waypoint.ListJobs:output_type -> hashicorp.waypoint.ListJobsResponse - 81, // 878: hashicorp.waypoint.Waypoint.ValidateJob:output_type -> hashicorp.waypoint.ValidateJobResponse - 88, // 879: hashicorp.waypoint.Waypoint.GetJobStream:output_type -> hashicorp.waypoint.GetJobStreamResponse - 89, // 880: hashicorp.waypoint.Waypoint.GetRunner:output_type -> hashicorp.waypoint.Runner - 101, // 881: hashicorp.waypoint.Waypoint.ListRunners:output_type -> hashicorp.waypoint.ListRunnersResponse - 496, // 882: hashicorp.waypoint.Waypoint.AdoptRunner:output_type -> google.protobuf.Empty - 496, // 883: hashicorp.waypoint.Waypoint.ForgetRunner:output_type -> google.protobuf.Empty - 105, // 884: hashicorp.waypoint.Waypoint.GetServerConfig:output_type -> hashicorp.waypoint.GetServerConfigResponse - 496, // 885: hashicorp.waypoint.Waypoint.SetServerConfig:output_type -> google.protobuf.Empty - 250, // 886: hashicorp.waypoint.Waypoint.CreateSnapshot:output_type -> hashicorp.waypoint.CreateSnapshotResponse - 496, // 887: hashicorp.waypoint.Waypoint.RestoreSnapshot:output_type -> google.protobuf.Empty - 248, // 888: hashicorp.waypoint.Waypoint.BootstrapToken:output_type -> hashicorp.waypoint.NewTokenResponse - 244, // 889: hashicorp.waypoint.Waypoint.DecodeToken:output_type -> hashicorp.waypoint.DecodeTokenResponse - 248, // 890: hashicorp.waypoint.Waypoint.GenerateInviteToken:output_type -> hashicorp.waypoint.NewTokenResponse - 248, // 891: hashicorp.waypoint.Waypoint.GenerateLoginToken:output_type -> hashicorp.waypoint.NewTokenResponse - 248, // 892: hashicorp.waypoint.Waypoint.GenerateRunnerToken:output_type -> hashicorp.waypoint.NewTokenResponse - 248, // 893: hashicorp.waypoint.Waypoint.ConvertInviteToken:output_type -> hashicorp.waypoint.NewTokenResponse - 91, // 894: hashicorp.waypoint.Waypoint.RunnerToken:output_type -> hashicorp.waypoint.RunnerTokenResponse - 93, // 895: hashicorp.waypoint.Waypoint.RunnerConfig:output_type -> hashicorp.waypoint.RunnerConfigResponse - 96, // 896: hashicorp.waypoint.Waypoint.RunnerJobStream:output_type -> hashicorp.waypoint.RunnerJobStreamResponse - 98, // 897: hashicorp.waypoint.Waypoint.RunnerGetDeploymentConfig:output_type -> hashicorp.waypoint.RunnerGetDeploymentConfigResponse - 204, // 898: hashicorp.waypoint.Waypoint.EntrypointConfig:output_type -> hashicorp.waypoint.EntrypointConfigResponse - 496, // 899: hashicorp.waypoint.Waypoint.EntrypointLogStream:output_type -> google.protobuf.Empty - 208, // 900: hashicorp.waypoint.Waypoint.EntrypointExecStream:output_type -> hashicorp.waypoint.EntrypointExecResponse - 255, // 901: hashicorp.waypoint.Waypoint.WaypointHclFmt:output_type -> hashicorp.waypoint.WaypointHclFmtResponse - 140, // 902: hashicorp.waypoint.Waypoint.UpsertOnDemandRunnerConfig:output_type -> hashicorp.waypoint.UpsertOnDemandRunnerConfigResponse - 142, // 903: hashicorp.waypoint.Waypoint.GetOnDemandRunnerConfig:output_type -> hashicorp.waypoint.GetOnDemandRunnerConfigResponse - 142, // 904: hashicorp.waypoint.Waypoint.GetDefaultOnDemandRunnerConfig:output_type -> hashicorp.waypoint.GetOnDemandRunnerConfigResponse - 144, // 905: hashicorp.waypoint.Waypoint.DeleteOnDemandRunnerConfig:output_type -> hashicorp.waypoint.DeleteOnDemandRunnerConfigResponse - 145, // 906: hashicorp.waypoint.Waypoint.ListOnDemandRunnerConfigs:output_type -> hashicorp.waypoint.ListOnDemandRunnerConfigsResponse - 131, // 907: hashicorp.waypoint.Waypoint.UpsertBuild:output_type -> hashicorp.waypoint.UpsertBuildResponse - 147, // 908: hashicorp.waypoint.Waypoint.UpsertPushedArtifact:output_type -> hashicorp.waypoint.UpsertPushedArtifactResponse - 155, // 909: hashicorp.waypoint.Waypoint.UpsertDeployment:output_type -> hashicorp.waypoint.UpsertDeploymentResponse - 164, // 910: hashicorp.waypoint.Waypoint.UpsertRelease:output_type -> hashicorp.waypoint.UpsertReleaseResponse - 182, // 911: hashicorp.waypoint.Waypoint.UpsertStatusReport:output_type -> hashicorp.waypoint.UpsertStatusReportResponse - 52, // 912: hashicorp.waypoint.Waypoint.GetTask:output_type -> hashicorp.waypoint.GetTaskResponse - 55, // 913: hashicorp.waypoint.Waypoint.ListTask:output_type -> hashicorp.waypoint.ListTaskResponse - 496, // 914: hashicorp.waypoint.Waypoint.CancelTask:output_type -> google.protobuf.Empty - 173, // 915: hashicorp.waypoint.Waypoint.UpsertTrigger:output_type -> hashicorp.waypoint.UpsertTriggerResponse - 175, // 916: hashicorp.waypoint.Waypoint.GetTrigger:output_type -> hashicorp.waypoint.GetTriggerResponse - 496, // 917: hashicorp.waypoint.Waypoint.DeleteTrigger:output_type -> google.protobuf.Empty - 180, // 918: hashicorp.waypoint.Waypoint.ListTriggers:output_type -> hashicorp.waypoint.ListTriggerResponse - 178, // 919: hashicorp.waypoint.Waypoint.RunTrigger:output_type -> hashicorp.waypoint.RunTriggerResponse - 212, // 920: hashicorp.waypoint.Waypoint.UpsertPipeline:output_type -> hashicorp.waypoint.UpsertPipelineResponse - 216, // 921: hashicorp.waypoint.Waypoint.RunPipeline:output_type -> hashicorp.waypoint.RunPipelineResponse - 214, // 922: hashicorp.waypoint.Waypoint.GetPipeline:output_type -> hashicorp.waypoint.GetPipelineResponse - 222, // 923: hashicorp.waypoint.Waypoint.GetPipelineRun:output_type -> hashicorp.waypoint.GetPipelineRunResponse - 222, // 924: hashicorp.waypoint.Waypoint.GetLatestPipelineRun:output_type -> hashicorp.waypoint.GetPipelineRunResponse - 218, // 925: hashicorp.waypoint.Waypoint.ListPipelines:output_type -> hashicorp.waypoint.ListPipelinesResponse - 220, // 926: hashicorp.waypoint.Waypoint.ListPipelineRuns:output_type -> hashicorp.waypoint.ListPipelineRunsResponse - 224, // 927: hashicorp.waypoint.Waypoint.ConfigSyncPipeline:output_type -> hashicorp.waypoint.ConfigSyncPipelineResponse - 230, // 928: hashicorp.waypoint.Waypoint.CreateProjectTemplate:output_type -> hashicorp.waypoint.CreateProjectTemplateResponse - 232, // 929: hashicorp.waypoint.Waypoint.UpdateProjectTemplate:output_type -> hashicorp.waypoint.UpdateProjectTemplateResponse - 226, // 930: hashicorp.waypoint.Waypoint.GetProjectTemplate:output_type -> hashicorp.waypoint.GetProjectTemplateResponse - 496, // 931: hashicorp.waypoint.Waypoint.DeleteProjectTemplate:output_type -> google.protobuf.Empty - 228, // 932: hashicorp.waypoint.Waypoint.ListProjectTemplates:output_type -> hashicorp.waypoint.ListProjectTemplatesResponse - 239, // 933: hashicorp.waypoint.Waypoint.CreateProjectFromTemplate:output_type -> hashicorp.waypoint.CreateProjectFromTemplateResponse - 237, // 934: hashicorp.waypoint.Waypoint.GetTFCRunStatus:output_type -> hashicorp.waypoint.GetTFCRunStatusResponse - 261, // 935: hashicorp.waypoint.Waypoint.UI_ListProjects:output_type -> hashicorp.waypoint.UI.ListProjectsResponse - 264, // 936: hashicorp.waypoint.Waypoint.UI_GetProject:output_type -> hashicorp.waypoint.UI.GetProjectResponse - 266, // 937: hashicorp.waypoint.Waypoint.UI_ListPipelines:output_type -> hashicorp.waypoint.UI.ListPipelinesResponse - 268, // 938: hashicorp.waypoint.Waypoint.UI_ListPipelineRuns:output_type -> hashicorp.waypoint.UI.ListPipelineRunsResponse - 270, // 939: hashicorp.waypoint.Waypoint.UI_GetPipelineRun:output_type -> hashicorp.waypoint.UI.GetPipelineRunResponse - 275, // 940: hashicorp.waypoint.Waypoint.UI_ListDeployments:output_type -> hashicorp.waypoint.UI.ListDeploymentsResponse - 277, // 941: hashicorp.waypoint.Waypoint.UI_GetDeployment:output_type -> hashicorp.waypoint.UI.GetDeploymentResponse - 280, // 942: hashicorp.waypoint.Waypoint.UI_ListReleases:output_type -> hashicorp.waypoint.UI.ListReleasesResponse - 283, // 943: hashicorp.waypoint.Waypoint.UI_ListEvents:output_type -> hashicorp.waypoint.UI.ListEventsResponse - 288, // 944: hashicorp.waypoint.Waypoint.INTERNAL_AdditionalMessages:output_type -> hashicorp.waypoint.UI.ListEventSchemasResponse - 827, // [827:945] is the sub-list for method output_type - 709, // [709:827] is the sub-list for method input_type - 709, // [709:709] is the sub-list for extension type_name - 709, // [709:709] is the sub-list for extension extendee - 0, // [0:709] is the sub-list for field type_name + 192, // 352: hashicorp.waypoint.ConfigDeleteRequest.variables:type_name -> hashicorp.waypoint.ConfigVar + 306, // 353: hashicorp.waypoint.ConfigGetRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 307, // 354: hashicorp.waypoint.ConfigGetRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 316, // 355: hashicorp.waypoint.ConfigGetRequest.runner:type_name -> hashicorp.waypoint.Ref.RunnerId + 308, // 356: hashicorp.waypoint.ConfigGetRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 454, // 357: hashicorp.waypoint.ConfigGetRequest.labels:type_name -> hashicorp.waypoint.ConfigGetRequest.LabelsEntry + 192, // 358: hashicorp.waypoint.ConfigGetResponse.variables:type_name -> hashicorp.waypoint.ConfigVar + 305, // 359: hashicorp.waypoint.ConfigSource.global:type_name -> hashicorp.waypoint.Ref.Global + 307, // 360: hashicorp.waypoint.ConfigSource.project:type_name -> hashicorp.waypoint.Ref.Project + 306, // 361: hashicorp.waypoint.ConfigSource.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 362: hashicorp.waypoint.ConfigSource.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 455, // 363: hashicorp.waypoint.ConfigSource.config:type_name -> hashicorp.waypoint.ConfigSource.ConfigEntry + 199, // 364: hashicorp.waypoint.SetConfigSourceRequest.config_source:type_name -> hashicorp.waypoint.ConfigSource + 199, // 365: hashicorp.waypoint.DeleteConfigSourceRequest.config_source:type_name -> hashicorp.waypoint.ConfigSource + 305, // 366: hashicorp.waypoint.GetConfigSourceRequest.global:type_name -> hashicorp.waypoint.Ref.Global + 307, // 367: hashicorp.waypoint.GetConfigSourceRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 306, // 368: hashicorp.waypoint.GetConfigSourceRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 369: hashicorp.waypoint.GetConfigSourceRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 199, // 370: hashicorp.waypoint.GetConfigSourceResponse.config_sources:type_name -> hashicorp.waypoint.ConfigSource + 456, // 371: hashicorp.waypoint.ExecStreamRequest.start:type_name -> hashicorp.waypoint.ExecStreamRequest.Start + 457, // 372: hashicorp.waypoint.ExecStreamRequest.input:type_name -> hashicorp.waypoint.ExecStreamRequest.Input + 459, // 373: hashicorp.waypoint.ExecStreamRequest.winch:type_name -> hashicorp.waypoint.ExecStreamRequest.WindowSize + 499, // 374: hashicorp.waypoint.ExecStreamRequest.input_eof:type_name -> google.protobuf.Empty + 460, // 375: hashicorp.waypoint.ExecStreamResponse.open:type_name -> hashicorp.waypoint.ExecStreamResponse.Open + 462, // 376: hashicorp.waypoint.ExecStreamResponse.output:type_name -> hashicorp.waypoint.ExecStreamResponse.Output + 461, // 377: hashicorp.waypoint.ExecStreamResponse.exit:type_name -> hashicorp.waypoint.ExecStreamResponse.Exit + 18, // 378: hashicorp.waypoint.EntrypointConfigRequest.type:type_name -> hashicorp.waypoint.Instance.Type + 208, // 379: hashicorp.waypoint.EntrypointConfigResponse.config:type_name -> hashicorp.waypoint.EntrypointConfig + 463, // 380: hashicorp.waypoint.EntrypointConfig.exec:type_name -> hashicorp.waypoint.EntrypointConfig.Exec + 192, // 381: hashicorp.waypoint.EntrypointConfig.env_vars:type_name -> hashicorp.waypoint.ConfigVar + 199, // 382: hashicorp.waypoint.EntrypointConfig.config_sources:type_name -> hashicorp.waypoint.ConfigSource + 464, // 383: hashicorp.waypoint.EntrypointConfig.url_service:type_name -> hashicorp.waypoint.EntrypointConfig.URLService + 465, // 384: hashicorp.waypoint.EntrypointConfig.deployment:type_name -> hashicorp.waypoint.EntrypointConfig.DeploymentInfo + 450, // 385: hashicorp.waypoint.EntrypointLogBatch.lines:type_name -> hashicorp.waypoint.LogBatch.Entry + 467, // 386: hashicorp.waypoint.EntrypointExecRequest.open:type_name -> hashicorp.waypoint.EntrypointExecRequest.Open + 468, // 387: hashicorp.waypoint.EntrypointExecRequest.exit:type_name -> hashicorp.waypoint.EntrypointExecRequest.Exit + 469, // 388: hashicorp.waypoint.EntrypointExecRequest.output:type_name -> hashicorp.waypoint.EntrypointExecRequest.Output + 470, // 389: hashicorp.waypoint.EntrypointExecRequest.error:type_name -> hashicorp.waypoint.EntrypointExecRequest.Error + 499, // 390: hashicorp.waypoint.EntrypointExecResponse.input_eof:type_name -> google.protobuf.Empty + 459, // 391: hashicorp.waypoint.EntrypointExecResponse.winch:type_name -> hashicorp.waypoint.ExecStreamRequest.WindowSize + 307, // 392: hashicorp.waypoint.Pipeline.project:type_name -> hashicorp.waypoint.Ref.Project + 471, // 393: hashicorp.waypoint.Pipeline.steps:type_name -> hashicorp.waypoint.Pipeline.StepsEntry + 327, // 394: hashicorp.waypoint.PipelineRun.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline + 325, // 395: hashicorp.waypoint.PipelineRun.jobs:type_name -> hashicorp.waypoint.Ref.Job + 24, // 396: hashicorp.waypoint.PipelineRun.state:type_name -> hashicorp.waypoint.PipelineRun.State + 212, // 397: hashicorp.waypoint.UpsertPipelineRequest.pipeline:type_name -> hashicorp.waypoint.Pipeline + 212, // 398: hashicorp.waypoint.UpsertPipelineResponse.pipeline:type_name -> hashicorp.waypoint.Pipeline + 327, // 399: hashicorp.waypoint.GetPipelineRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline + 212, // 400: hashicorp.waypoint.GetPipelineResponse.pipeline:type_name -> hashicorp.waypoint.Pipeline + 479, // 401: hashicorp.waypoint.GetPipelineResponse.graph:type_name -> hashicorp.waypoint.GetPipelineResponse.Graph + 327, // 402: hashicorp.waypoint.RunPipelineRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline + 82, // 403: hashicorp.waypoint.RunPipelineRequest.job_template:type_name -> hashicorp.waypoint.Job + 480, // 404: hashicorp.waypoint.RunPipelineResponse.job_map:type_name -> hashicorp.waypoint.RunPipelineResponse.JobMapEntry + 307, // 405: hashicorp.waypoint.ListPipelinesRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 212, // 406: hashicorp.waypoint.ListPipelinesResponse.pipelines:type_name -> hashicorp.waypoint.Pipeline + 327, // 407: hashicorp.waypoint.ListPipelineRunsRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline + 213, // 408: hashicorp.waypoint.ListPipelineRunsResponse.pipeline_runs:type_name -> hashicorp.waypoint.PipelineRun + 327, // 409: hashicorp.waypoint.GetPipelineRunRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline + 213, // 410: hashicorp.waypoint.GetPipelineRunResponse.pipeline_run:type_name -> hashicorp.waypoint.PipelineRun + 307, // 411: hashicorp.waypoint.ConfigSyncPipelineRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 481, // 412: hashicorp.waypoint.ConfigSyncPipelineResponse.synced_pipelines:type_name -> hashicorp.waypoint.ConfigSyncPipelineResponse.SyncedPipelinesEntry + 330, // 413: hashicorp.waypoint.GetProjectTemplateRequest.project_template:type_name -> hashicorp.waypoint.Ref.ProjectTemplate + 238, // 414: hashicorp.waypoint.GetProjectTemplateResponse.project_template:type_name -> hashicorp.waypoint.ProjectTemplate + 260, // 415: hashicorp.waypoint.ListProjectTemplatesRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest + 238, // 416: hashicorp.waypoint.ListProjectTemplatesResponse.project_templates:type_name -> hashicorp.waypoint.ProjectTemplate + 261, // 417: hashicorp.waypoint.ListProjectTemplatesResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse + 238, // 418: hashicorp.waypoint.CreateProjectTemplateRequest.project_template:type_name -> hashicorp.waypoint.ProjectTemplate + 238, // 419: hashicorp.waypoint.CreateProjectTemplateResponse.project_template:type_name -> hashicorp.waypoint.ProjectTemplate + 238, // 420: hashicorp.waypoint.UpdateProjectTemplateRequest.project_template:type_name -> hashicorp.waypoint.ProjectTemplate + 238, // 421: hashicorp.waypoint.UpdateProjectTemplateResponse.project_template:type_name -> hashicorp.waypoint.ProjectTemplate + 330, // 422: hashicorp.waypoint.DeleteProjectTemplateRequest.project_template:type_name -> hashicorp.waypoint.Ref.ProjectTemplate + 482, // 423: hashicorp.waypoint.ProjectTemplate.waypoint_project:type_name -> hashicorp.waypoint.ProjectTemplate.WaypointProject + 483, // 424: hashicorp.waypoint.ProjectTemplate.terraform_nocode_module:type_name -> hashicorp.waypoint.ProjectTemplate.TerraformNocodeModule + 307, // 425: hashicorp.waypoint.GetTFCRunStatusRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 26, // 426: hashicorp.waypoint.GetTFCRunStatusResponse.state:type_name -> hashicorp.waypoint.GetTFCRunStatusResponse.State + 330, // 427: hashicorp.waypoint.CreateProjectFromTemplateRequest.project_template:type_name -> hashicorp.waypoint.Ref.ProjectTemplate + 35, // 428: hashicorp.waypoint.CreateProjectFromTemplateResponse.project:type_name -> hashicorp.waypoint.Project + 484, // 429: hashicorp.waypoint.TokenTransport.metadata:type_name -> hashicorp.waypoint.TokenTransport.MetadataEntry + 485, // 430: hashicorp.waypoint.TokenTransport.oauth_creds:type_name -> hashicorp.waypoint.TokenTransport.OAuthCredentials + 500, // 431: hashicorp.waypoint.Token.valid_until:type_name -> google.protobuf.Timestamp + 500, // 432: hashicorp.waypoint.Token.issued_time:type_name -> google.protobuf.Timestamp + 486, // 433: hashicorp.waypoint.Token.login:type_name -> hashicorp.waypoint.Token.Login + 487, // 434: hashicorp.waypoint.Token.runner:type_name -> hashicorp.waypoint.Token.Runner + 488, // 435: hashicorp.waypoint.Token.invite:type_name -> hashicorp.waypoint.Token.Invite + 490, // 436: hashicorp.waypoint.Token.trigger:type_name -> hashicorp.waypoint.Token.Trigger + 489, // 437: hashicorp.waypoint.Token.unused_entrypoint:type_name -> hashicorp.waypoint.Token.Entrypoint + 244, // 438: hashicorp.waypoint.DecodeTokenResponse.token:type_name -> hashicorp.waypoint.Token + 243, // 439: hashicorp.waypoint.DecodeTokenResponse.transport:type_name -> hashicorp.waypoint.TokenTransport + 318, // 440: hashicorp.waypoint.LoginTokenRequest.user:type_name -> hashicorp.waypoint.Ref.User + 492, // 441: hashicorp.waypoint.GenerateRunnerTokenRequest.labels:type_name -> hashicorp.waypoint.GenerateRunnerTokenRequest.LabelsEntry + 486, // 442: hashicorp.waypoint.InviteTokenRequest.login:type_name -> hashicorp.waypoint.Token.Login + 491, // 443: hashicorp.waypoint.InviteTokenRequest.signup:type_name -> hashicorp.waypoint.Token.Invite.Signup + 489, // 444: hashicorp.waypoint.InviteTokenRequest.unused_entrypoint:type_name -> hashicorp.waypoint.Token.Entrypoint + 493, // 445: hashicorp.waypoint.CreateSnapshotResponse.open:type_name -> hashicorp.waypoint.CreateSnapshotResponse.Open + 494, // 446: hashicorp.waypoint.RestoreSnapshotRequest.open:type_name -> hashicorp.waypoint.RestoreSnapshotRequest.Open + 28, // 447: hashicorp.waypoint.Hcl.format:type_name -> hashicorp.waypoint.Hcl.Format + 260, // 448: hashicorp.waypoint.UI.ListProjectsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest + 265, // 449: hashicorp.waypoint.UI.ListProjectsResponse.project_bundles:type_name -> hashicorp.waypoint.UI.ProjectBundle + 261, // 450: hashicorp.waypoint.UI.ListProjectsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse + 35, // 451: hashicorp.waypoint.UI.ProjectBundle.project:type_name -> hashicorp.waypoint.Project + 307, // 452: hashicorp.waypoint.UI.GetProjectRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 35, // 453: hashicorp.waypoint.UI.GetProjectResponse.project:type_name -> hashicorp.waypoint.Project + 82, // 454: hashicorp.waypoint.UI.GetProjectResponse.latest_init_job:type_name -> hashicorp.waypoint.Job + 238, // 455: hashicorp.waypoint.UI.GetProjectResponse.project_template:type_name -> hashicorp.waypoint.ProjectTemplate + 307, // 456: hashicorp.waypoint.UI.ListPipelinesRequest.project:type_name -> hashicorp.waypoint.Ref.Project + 260, // 457: hashicorp.waypoint.UI.ListPipelinesRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest + 274, // 458: hashicorp.waypoint.UI.ListPipelinesResponse.pipelines:type_name -> hashicorp.waypoint.UI.PipelineBundle + 261, // 459: hashicorp.waypoint.UI.ListPipelinesResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse + 327, // 460: hashicorp.waypoint.UI.ListPipelineRunsRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline + 260, // 461: hashicorp.waypoint.UI.ListPipelineRunsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest + 275, // 462: hashicorp.waypoint.UI.ListPipelineRunsResponse.pipeline_run_bundles:type_name -> hashicorp.waypoint.UI.PipelineRunBundle + 261, // 463: hashicorp.waypoint.UI.ListPipelineRunsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse + 327, // 464: hashicorp.waypoint.UI.GetPipelineRunRequest.pipeline:type_name -> hashicorp.waypoint.Ref.Pipeline + 213, // 465: hashicorp.waypoint.UI.GetPipelineRunResponse.pipeline_run:type_name -> hashicorp.waypoint.PipelineRun + 276, // 466: hashicorp.waypoint.UI.GetPipelineRunResponse.root_tree_node:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode + 212, // 467: hashicorp.waypoint.UI.PipelineBundle.pipeline:type_name -> hashicorp.waypoint.Pipeline + 275, // 468: hashicorp.waypoint.UI.PipelineBundle.last_run:type_name -> hashicorp.waypoint.UI.PipelineRunBundle + 213, // 469: hashicorp.waypoint.UI.PipelineRunBundle.pipeline_run:type_name -> hashicorp.waypoint.PipelineRun + 500, // 470: hashicorp.waypoint.UI.PipelineRunBundle.queue_time:type_name -> google.protobuf.Timestamp + 306, // 471: hashicorp.waypoint.UI.PipelineRunBundle.application:type_name -> hashicorp.waypoint.Ref.Application + 389, // 472: hashicorp.waypoint.UI.PipelineRunBundle.data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 472, // 473: hashicorp.waypoint.UI.PipelineRunTreeNode.step:type_name -> hashicorp.waypoint.Pipeline.Step + 1, // 474: hashicorp.waypoint.UI.PipelineRunTreeNode.state:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode.State + 500, // 475: hashicorp.waypoint.UI.PipelineRunTreeNode.start_time:type_name -> google.protobuf.Timestamp + 500, // 476: hashicorp.waypoint.UI.PipelineRunTreeNode.complete_time:type_name -> google.protobuf.Timestamp + 306, // 477: hashicorp.waypoint.UI.PipelineRunTreeNode.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 478: hashicorp.waypoint.UI.PipelineRunTreeNode.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 325, // 479: hashicorp.waypoint.UI.PipelineRunTreeNode.job:type_name -> hashicorp.waypoint.Ref.Job + 341, // 480: hashicorp.waypoint.UI.PipelineRunTreeNode.result:type_name -> hashicorp.waypoint.Job.Result + 189, // 481: hashicorp.waypoint.UI.PipelineRunTreeNode.latest_status_report:type_name -> hashicorp.waypoint.StatusReport + 292, // 482: hashicorp.waypoint.UI.PipelineRunTreeNode.children:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode.Children + 306, // 483: hashicorp.waypoint.UI.ListDeploymentsRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 484: hashicorp.waypoint.UI.ListDeploymentsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 43, // 485: hashicorp.waypoint.UI.ListDeploymentsRequest.order:type_name -> hashicorp.waypoint.OperationOrder + 41, // 486: hashicorp.waypoint.UI.ListDeploymentsRequest.status:type_name -> hashicorp.waypoint.StatusFilter + 9, // 487: hashicorp.waypoint.UI.ListDeploymentsRequest.physical_state:type_name -> hashicorp.waypoint.Operation.PhysicalState + 281, // 488: hashicorp.waypoint.UI.ListDeploymentsResponse.deployments:type_name -> hashicorp.waypoint.UI.DeploymentBundle + 312, // 489: hashicorp.waypoint.UI.GetDeploymentRequest.ref:type_name -> hashicorp.waypoint.Ref.Operation + 17, // 490: hashicorp.waypoint.UI.GetDeploymentRequest.load_details:type_name -> hashicorp.waypoint.Deployment.LoadDetails + 281, // 491: hashicorp.waypoint.UI.GetDeploymentResponse.deployment:type_name -> hashicorp.waypoint.UI.DeploymentBundle + 158, // 492: hashicorp.waypoint.UI.DeploymentBundle.deployment:type_name -> hashicorp.waypoint.Deployment + 152, // 493: hashicorp.waypoint.UI.DeploymentBundle.artifact:type_name -> hashicorp.waypoint.PushedArtifact + 136, // 494: hashicorp.waypoint.UI.DeploymentBundle.build:type_name -> hashicorp.waypoint.Build + 389, // 495: hashicorp.waypoint.UI.DeploymentBundle.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 189, // 496: hashicorp.waypoint.UI.DeploymentBundle.latest_status_report:type_name -> hashicorp.waypoint.StatusReport + 306, // 497: hashicorp.waypoint.UI.ListReleasesRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 498: hashicorp.waypoint.UI.ListReleasesRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 43, // 499: hashicorp.waypoint.UI.ListReleasesRequest.order:type_name -> hashicorp.waypoint.OperationOrder + 41, // 500: hashicorp.waypoint.UI.ListReleasesRequest.status:type_name -> hashicorp.waypoint.StatusFilter + 9, // 501: hashicorp.waypoint.UI.ListReleasesRequest.physical_state:type_name -> hashicorp.waypoint.Operation.PhysicalState + 284, // 502: hashicorp.waypoint.UI.ListReleasesResponse.releases:type_name -> hashicorp.waypoint.UI.ReleaseBundle + 169, // 503: hashicorp.waypoint.UI.ReleaseBundle.release:type_name -> hashicorp.waypoint.Release + 189, // 504: hashicorp.waypoint.UI.ReleaseBundle.latest_status_report:type_name -> hashicorp.waypoint.StatusReport + 306, // 505: hashicorp.waypoint.UI.ListEventsRequest.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 506: hashicorp.waypoint.UI.ListEventsRequest.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 260, // 507: hashicorp.waypoint.UI.ListEventsRequest.pagination:type_name -> hashicorp.waypoint.PaginationRequest + 262, // 508: hashicorp.waypoint.UI.ListEventsRequest.sorting:type_name -> hashicorp.waypoint.SortingRequest + 287, // 509: hashicorp.waypoint.UI.ListEventsResponse.events:type_name -> hashicorp.waypoint.UI.EventBundle + 261, // 510: hashicorp.waypoint.UI.ListEventsResponse.pagination:type_name -> hashicorp.waypoint.PaginationResponse + 500, // 511: hashicorp.waypoint.UI.EventBundle.timestamp:type_name -> google.protobuf.Timestamp + 3, // 512: hashicorp.waypoint.UI.EventBundle.event_type:type_name -> hashicorp.waypoint.UI.EventBundle.EventType + 39, // 513: hashicorp.waypoint.UI.EventBuild.component:type_name -> hashicorp.waypoint.Component + 308, // 514: hashicorp.waypoint.UI.EventBuild.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 40, // 515: hashicorp.waypoint.UI.EventBuild.status:type_name -> hashicorp.waypoint.Status + 39, // 516: hashicorp.waypoint.UI.EventDeployment.component:type_name -> hashicorp.waypoint.Component + 308, // 517: hashicorp.waypoint.UI.EventDeployment.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 40, // 518: hashicorp.waypoint.UI.EventDeployment.status:type_name -> hashicorp.waypoint.Status + 39, // 519: hashicorp.waypoint.UI.EventRelease.component:type_name -> hashicorp.waypoint.Component + 308, // 520: hashicorp.waypoint.UI.EventRelease.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 40, // 521: hashicorp.waypoint.UI.EventRelease.status:type_name -> hashicorp.waypoint.Status + 288, // 522: hashicorp.waypoint.UI.ListEventSchemasResponse.event_build_schema:type_name -> hashicorp.waypoint.UI.EventBuild + 289, // 523: hashicorp.waypoint.UI.ListEventSchemasResponse.event_deployment_schema:type_name -> hashicorp.waypoint.UI.EventDeployment + 290, // 524: hashicorp.waypoint.UI.ListEventSchemasResponse.event_release_schema:type_name -> hashicorp.waypoint.UI.EventRelease + 2, // 525: hashicorp.waypoint.UI.PipelineRunTreeNode.Children.mode:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode.Children.Mode + 276, // 526: hashicorp.waypoint.UI.PipelineRunTreeNode.Children.nodes:type_name -> hashicorp.waypoint.UI.PipelineRunTreeNode + 297, // 527: hashicorp.waypoint.Variable.File.hcl_range:type_name -> hashicorp.waypoint.Variable.HclRange + 297, // 528: hashicorp.waypoint.Variable.VCS.hcl_range:type_name -> hashicorp.waypoint.Variable.HclRange + 296, // 529: hashicorp.waypoint.Variable.HclRange.start:type_name -> hashicorp.waypoint.Variable.HclPos + 296, // 530: hashicorp.waypoint.Variable.HclRange.end:type_name -> hashicorp.waypoint.Variable.HclPos + 5, // 531: hashicorp.waypoint.Variable.FinalValue.source:type_name -> hashicorp.waypoint.Variable.FinalValue.Source + 307, // 532: hashicorp.waypoint.Workspace.Project.project:type_name -> hashicorp.waypoint.Ref.Project + 308, // 533: hashicorp.waypoint.Workspace.Project.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 389, // 534: hashicorp.waypoint.Workspace.Project.data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 500, // 535: hashicorp.waypoint.Workspace.Project.active_time:type_name -> google.protobuf.Timestamp + 302, // 536: hashicorp.waypoint.Workspace.Project.applications:type_name -> hashicorp.waypoint.Workspace.Application + 306, // 537: hashicorp.waypoint.Workspace.Application.application:type_name -> hashicorp.waypoint.Ref.Application + 500, // 538: hashicorp.waypoint.Workspace.Application.active_time:type_name -> google.protobuf.Timestamp + 304, // 539: hashicorp.waypoint.User.Link.oidc:type_name -> hashicorp.waypoint.User.Link.OIDC + 7, // 540: hashicorp.waypoint.Ref.Component.type:type_name -> hashicorp.waypoint.Component.Type + 313, // 541: hashicorp.waypoint.Ref.Operation.sequence:type_name -> hashicorp.waypoint.Ref.OperationSeq + 306, // 542: hashicorp.waypoint.Ref.OperationSeq.application:type_name -> hashicorp.waypoint.Ref.Application + 315, // 543: hashicorp.waypoint.Ref.Runner.any:type_name -> hashicorp.waypoint.Ref.RunnerAny + 316, // 544: hashicorp.waypoint.Ref.Runner.id:type_name -> hashicorp.waypoint.Ref.RunnerId + 317, // 545: hashicorp.waypoint.Ref.Runner.labels:type_name -> hashicorp.waypoint.Ref.RunnerLabels + 331, // 546: hashicorp.waypoint.Ref.RunnerLabels.labels:type_name -> hashicorp.waypoint.Ref.RunnerLabels.LabelsEntry + 319, // 547: hashicorp.waypoint.Ref.User.id:type_name -> hashicorp.waypoint.Ref.UserId + 320, // 548: hashicorp.waypoint.Ref.User.username:type_name -> hashicorp.waypoint.Ref.UserUsername + 328, // 549: hashicorp.waypoint.Ref.Pipeline.owner:type_name -> hashicorp.waypoint.Ref.PipelineOwner + 307, // 550: hashicorp.waypoint.Ref.PipelineOwner.project:type_name -> hashicorp.waypoint.Ref.Project + 8, // 551: hashicorp.waypoint.StatusFilter.Filter.state:type_name -> hashicorp.waypoint.Status.State + 335, // 552: hashicorp.waypoint.AuthMethod.OIDC.claim_mappings:type_name -> hashicorp.waypoint.AuthMethod.OIDC.ClaimMappingsEntry + 336, // 553: hashicorp.waypoint.AuthMethod.OIDC.list_claim_mappings:type_name -> hashicorp.waypoint.AuthMethod.OIDC.ListClaimMappingsEntry + 47, // 554: hashicorp.waypoint.Job.TaskOverride.launch_info:type_name -> hashicorp.waypoint.TaskLaunchInfo + 298, // 555: hashicorp.waypoint.Job.VariableFinalValuesEntry.value:type_name -> hashicorp.waypoint.Variable.FinalValue + 355, // 556: hashicorp.waypoint.Job.Result.build:type_name -> hashicorp.waypoint.Job.BuildResult + 357, // 557: hashicorp.waypoint.Job.Result.push:type_name -> hashicorp.waypoint.Job.PushResult + 359, // 558: hashicorp.waypoint.Job.Result.deploy:type_name -> hashicorp.waypoint.Job.DeployResult + 365, // 559: hashicorp.waypoint.Job.Result.release:type_name -> hashicorp.waypoint.Job.ReleaseResult + 351, // 560: hashicorp.waypoint.Job.Result.validate:type_name -> hashicorp.waypoint.Job.ValidateResult + 353, // 561: hashicorp.waypoint.Job.Result.auth:type_name -> hashicorp.waypoint.Job.AuthResult + 375, // 562: hashicorp.waypoint.Job.Result.docs:type_name -> hashicorp.waypoint.Job.DocsResult + 377, // 563: hashicorp.waypoint.Job.Result.config_sync:type_name -> hashicorp.waypoint.Job.ConfigSyncResult + 349, // 564: hashicorp.waypoint.Job.Result.up:type_name -> hashicorp.waypoint.Job.UpResult + 388, // 565: hashicorp.waypoint.Job.Result.queue_project:type_name -> hashicorp.waypoint.Job.QueueProjectResult + 381, // 566: hashicorp.waypoint.Job.Result.poll:type_name -> hashicorp.waypoint.Job.PollResult + 373, // 567: hashicorp.waypoint.Job.Result.status_report:type_name -> hashicorp.waypoint.Job.StatusReportResult + 368, // 568: hashicorp.waypoint.Job.Result.start_task:type_name -> hashicorp.waypoint.Job.StartTaskResult + 383, // 569: hashicorp.waypoint.Job.Result.init:type_name -> hashicorp.waypoint.Job.InitResult + 371, // 570: hashicorp.waypoint.Job.Result.watch_task:type_name -> hashicorp.waypoint.Job.WatchTaskResult + 386, // 571: hashicorp.waypoint.Job.Result.pipeline_step:type_name -> hashicorp.waypoint.Job.PipelineStepResult + 378, // 572: hashicorp.waypoint.Job.Result.pipeline_config_sync:type_name -> hashicorp.waypoint.Job.PipelineConfigSyncResult + 379, // 573: hashicorp.waypoint.Job.Result.project_destroy:type_name -> hashicorp.waypoint.Job.ProjectDestroyResult + 14, // 574: hashicorp.waypoint.Job.Config.source:type_name -> hashicorp.waypoint.Job.Config.Source + 344, // 575: hashicorp.waypoint.Job.DataSource.local:type_name -> hashicorp.waypoint.Job.Local + 346, // 576: hashicorp.waypoint.Job.DataSource.git:type_name -> hashicorp.waypoint.Job.Git + 345, // 577: hashicorp.waypoint.Job.DataSource.remote:type_name -> hashicorp.waypoint.Job.Remote + 346, // 578: hashicorp.waypoint.Job.Remote.git_remote:type_name -> hashicorp.waypoint.Job.Git + 390, // 579: hashicorp.waypoint.Job.Git.basic:type_name -> hashicorp.waypoint.Job.Git.Basic + 391, // 580: hashicorp.waypoint.Job.Git.ssh:type_name -> hashicorp.waypoint.Job.Git.SSH + 364, // 581: hashicorp.waypoint.Job.UpOp.release:type_name -> hashicorp.waypoint.Job.ReleaseOp + 311, // 582: hashicorp.waypoint.Job.AuthOp.component:type_name -> hashicorp.waypoint.Ref.Component + 393, // 583: hashicorp.waypoint.Job.AuthResult.results:type_name -> hashicorp.waypoint.Job.AuthResult.Result + 136, // 584: hashicorp.waypoint.Job.BuildResult.build:type_name -> hashicorp.waypoint.Build + 152, // 585: hashicorp.waypoint.Job.BuildResult.push:type_name -> hashicorp.waypoint.PushedArtifact + 136, // 586: hashicorp.waypoint.Job.PushOp.build:type_name -> hashicorp.waypoint.Build + 152, // 587: hashicorp.waypoint.Job.PushResult.artifact:type_name -> hashicorp.waypoint.PushedArtifact + 152, // 588: hashicorp.waypoint.Job.DeployOp.artifact:type_name -> hashicorp.waypoint.PushedArtifact + 158, // 589: hashicorp.waypoint.Job.DeployResult.deployment:type_name -> hashicorp.waypoint.Deployment + 158, // 590: hashicorp.waypoint.Job.ExecOp.deployment:type_name -> hashicorp.waypoint.Deployment + 158, // 591: hashicorp.waypoint.Job.LogsOp.deployment:type_name -> hashicorp.waypoint.Deployment + 500, // 592: hashicorp.waypoint.Job.LogsOp.start_time:type_name -> google.protobuf.Timestamp + 499, // 593: hashicorp.waypoint.Job.DestroyOp.workspace:type_name -> google.protobuf.Empty + 158, // 594: hashicorp.waypoint.Job.DestroyOp.deployment:type_name -> hashicorp.waypoint.Deployment + 158, // 595: hashicorp.waypoint.Job.ReleaseOp.deployment:type_name -> hashicorp.waypoint.Deployment + 169, // 596: hashicorp.waypoint.Job.ReleaseResult.release:type_name -> hashicorp.waypoint.Release + 28, // 597: hashicorp.waypoint.Job.TaskPluginParams.hcl_format:type_name -> hashicorp.waypoint.Hcl.Format + 47, // 598: hashicorp.waypoint.Job.StartTaskLaunchOp.info:type_name -> hashicorp.waypoint.TaskLaunchInfo + 366, // 599: hashicorp.waypoint.Job.StartTaskLaunchOp.params:type_name -> hashicorp.waypoint.Job.TaskPluginParams + 502, // 600: hashicorp.waypoint.Job.StartTaskResult.state:type_name -> opaqueany.Any + 366, // 601: hashicorp.waypoint.Job.StopTaskLaunchOp.params:type_name -> hashicorp.waypoint.Job.TaskPluginParams + 502, // 602: hashicorp.waypoint.Job.StopTaskLaunchOp.direct:type_name -> opaqueany.Any + 325, // 603: hashicorp.waypoint.Job.WatchTaskOp.start_job:type_name -> hashicorp.waypoint.Ref.Job + 158, // 604: hashicorp.waypoint.Job.StatusReportOp.deployment:type_name -> hashicorp.waypoint.Deployment + 169, // 605: hashicorp.waypoint.Job.StatusReportOp.release:type_name -> hashicorp.waypoint.Release + 189, // 606: hashicorp.waypoint.Job.StatusReportResult.status_report:type_name -> hashicorp.waypoint.StatusReport + 394, // 607: hashicorp.waypoint.Job.DocsResult.results:type_name -> hashicorp.waypoint.Job.DocsResult.Result + 395, // 608: hashicorp.waypoint.Job.PipelineConfigSyncResult.synced_pipelines:type_name -> hashicorp.waypoint.Job.PipelineConfigSyncResult.SyncedPipelinesEntry + 389, // 609: hashicorp.waypoint.Job.PollResult.old_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 389, // 610: hashicorp.waypoint.Job.PollResult.new_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 472, // 611: hashicorp.waypoint.Job.PipelineStepOp.step:type_name -> hashicorp.waypoint.Pipeline.Step + 307, // 612: hashicorp.waypoint.Job.DestroyProjectOp.project:type_name -> hashicorp.waypoint.Ref.Project + 501, // 613: hashicorp.waypoint.Job.PipelineStepResult.result:type_name -> google.rpc.Status + 82, // 614: hashicorp.waypoint.Job.QueueProjectOp.job_template:type_name -> hashicorp.waypoint.Job + 396, // 615: hashicorp.waypoint.Job.QueueProjectResult.applications:type_name -> hashicorp.waypoint.Job.QueueProjectResult.Application + 499, // 616: hashicorp.waypoint.Job.DataSource.Ref.unknown:type_name -> google.protobuf.Empty + 392, // 617: hashicorp.waypoint.Job.DataSource.Ref.git:type_name -> hashicorp.waypoint.Job.Git.Ref + 500, // 618: hashicorp.waypoint.Job.Git.Ref.timestamp:type_name -> google.protobuf.Timestamp + 39, // 619: hashicorp.waypoint.Job.AuthResult.Result.component:type_name -> hashicorp.waypoint.Component + 501, // 620: hashicorp.waypoint.Job.AuthResult.Result.check_error:type_name -> google.rpc.Status + 501, // 621: hashicorp.waypoint.Job.AuthResult.Result.auth_error:type_name -> google.rpc.Status + 39, // 622: hashicorp.waypoint.Job.DocsResult.Result.component:type_name -> hashicorp.waypoint.Component + 83, // 623: hashicorp.waypoint.Job.DocsResult.Result.docs:type_name -> hashicorp.waypoint.Documentation + 327, // 624: hashicorp.waypoint.Job.PipelineConfigSyncResult.SyncedPipelinesEntry.value:type_name -> hashicorp.waypoint.Ref.Pipeline + 306, // 625: hashicorp.waypoint.Job.QueueProjectResult.Application.application:type_name -> hashicorp.waypoint.Ref.Application + 398, // 626: hashicorp.waypoint.Documentation.FieldsEntry.value:type_name -> hashicorp.waypoint.Documentation.Field + 13, // 627: hashicorp.waypoint.GetJobStreamResponse.State.previous:type_name -> hashicorp.waypoint.Job.State + 13, // 628: hashicorp.waypoint.GetJobStreamResponse.State.current:type_name -> hashicorp.waypoint.Job.State + 82, // 629: hashicorp.waypoint.GetJobStreamResponse.State.job:type_name -> hashicorp.waypoint.Job + 82, // 630: hashicorp.waypoint.GetJobStreamResponse.JobChange.job:type_name -> hashicorp.waypoint.Job + 389, // 631: hashicorp.waypoint.GetJobStreamResponse.Download.data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 407, // 632: hashicorp.waypoint.GetJobStreamResponse.Terminal.events:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event + 501, // 633: hashicorp.waypoint.GetJobStreamResponse.Error.error:type_name -> google.rpc.Status + 501, // 634: hashicorp.waypoint.GetJobStreamResponse.Complete.error:type_name -> google.rpc.Status + 341, // 635: hashicorp.waypoint.GetJobStreamResponse.Complete.result:type_name -> hashicorp.waypoint.Job.Result + 500, // 636: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.timestamp:type_name -> google.protobuf.Timestamp + 409, // 637: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.line:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Line + 408, // 638: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.status:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Status + 412, // 639: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.named_values:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValues + 410, // 640: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.raw:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Raw + 415, // 641: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.table:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Table + 416, // 642: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.step_group:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.StepGroup + 417, // 643: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.step:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Step + 411, // 644: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValues.values:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.NamedValue + 413, // 645: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableRow.entries:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableEntry + 414, // 646: hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.Table.rows:type_name -> hashicorp.waypoint.GetJobStreamResponse.Terminal.Event.TableRow + 89, // 647: hashicorp.waypoint.RunnerConfigRequest.Open.runner:type_name -> hashicorp.waypoint.Runner + 341, // 648: hashicorp.waypoint.RunnerJobStreamRequest.Complete.result:type_name -> hashicorp.waypoint.Job.Result + 501, // 649: hashicorp.waypoint.RunnerJobStreamRequest.Error.error:type_name -> google.rpc.Status + 342, // 650: hashicorp.waypoint.RunnerJobStreamRequest.ConfigLoad.config:type_name -> hashicorp.waypoint.Job.Config + 430, // 651: hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet.final_values:type_name -> hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet.FinalValuesEntry + 298, // 652: hashicorp.waypoint.RunnerJobStreamRequest.VariableValuesSet.FinalValuesEntry.value:type_name -> hashicorp.waypoint.Variable.FinalValue + 82, // 653: hashicorp.waypoint.RunnerJobStreamResponse.JobAssignment.job:type_name -> hashicorp.waypoint.Job + 199, // 654: hashicorp.waypoint.RunnerJobStreamResponse.JobAssignment.config_sources:type_name -> hashicorp.waypoint.ConfigSource + 436, // 655: hashicorp.waypoint.Hostname.Target.application:type_name -> hashicorp.waypoint.Hostname.TargetApp + 306, // 656: hashicorp.waypoint.Hostname.TargetApp.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 657: hashicorp.waypoint.Hostname.TargetApp.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 389, // 658: hashicorp.waypoint.Build.Preload.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 389, // 659: hashicorp.waypoint.PushedArtifact.Preload.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 152, // 660: hashicorp.waypoint.Deployment.Preload.artifact:type_name -> hashicorp.waypoint.PushedArtifact + 136, // 661: hashicorp.waypoint.Deployment.Preload.build:type_name -> hashicorp.waypoint.Build + 389, // 662: hashicorp.waypoint.Deployment.Preload.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 306, // 663: hashicorp.waypoint.ListInstancesRequest.Application.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 664: hashicorp.waypoint.ListInstancesRequest.Application.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 158, // 665: hashicorp.waypoint.Release.Preload.deployment:type_name -> hashicorp.waypoint.Deployment + 152, // 666: hashicorp.waypoint.Release.Preload.artifact:type_name -> hashicorp.waypoint.PushedArtifact + 136, // 667: hashicorp.waypoint.Release.Preload.build:type_name -> hashicorp.waypoint.Build + 389, // 668: hashicorp.waypoint.Release.Preload.job_data_source_ref:type_name -> hashicorp.waypoint.Job.DataSource.Ref + 322, // 669: hashicorp.waypoint.StatusReport.Resource.declared_resource:type_name -> hashicorp.waypoint.Ref.DeclaredResource + 0, // 670: hashicorp.waypoint.StatusReport.Resource.category_display_hint:type_name -> hashicorp.waypoint.ResourceCategoryDisplayHint + 500, // 671: hashicorp.waypoint.StatusReport.Resource.created_time:type_name -> google.protobuf.Timestamp + 20, // 672: hashicorp.waypoint.StatusReport.Resource.health:type_name -> hashicorp.waypoint.StatusReport.Resource.Health + 448, // 673: hashicorp.waypoint.StatusReport.Resource.deprecated_health:type_name -> hashicorp.waypoint.StatusReport.Health + 306, // 674: hashicorp.waypoint.GetLogStreamRequest.Application.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 675: hashicorp.waypoint.GetLogStreamRequest.Application.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 21, // 676: hashicorp.waypoint.LogBatch.Entry.source:type_name -> hashicorp.waypoint.LogBatch.Entry.Source + 500, // 677: hashicorp.waypoint.LogBatch.Entry.timestamp:type_name -> google.protobuf.Timestamp + 453, // 678: hashicorp.waypoint.ConfigVar.DynamicVal.config:type_name -> hashicorp.waypoint.ConfigVar.DynamicVal.ConfigEntry + 305, // 679: hashicorp.waypoint.ConfigVar.Target.global:type_name -> hashicorp.waypoint.Ref.Global + 307, // 680: hashicorp.waypoint.ConfigVar.Target.project:type_name -> hashicorp.waypoint.Ref.Project + 306, // 681: hashicorp.waypoint.ConfigVar.Target.application:type_name -> hashicorp.waypoint.Ref.Application + 308, // 682: hashicorp.waypoint.ConfigVar.Target.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 314, // 683: hashicorp.waypoint.ConfigVar.Target.runner:type_name -> hashicorp.waypoint.Ref.Runner + 458, // 684: hashicorp.waypoint.ExecStreamRequest.Start.pty:type_name -> hashicorp.waypoint.ExecStreamRequest.PTY + 459, // 685: hashicorp.waypoint.ExecStreamRequest.PTY.window_size:type_name -> hashicorp.waypoint.ExecStreamRequest.WindowSize + 22, // 686: hashicorp.waypoint.ExecStreamResponse.Output.channel:type_name -> hashicorp.waypoint.ExecStreamResponse.Output.Channel + 458, // 687: hashicorp.waypoint.EntrypointConfig.Exec.pty:type_name -> hashicorp.waypoint.ExecStreamRequest.PTY + 39, // 688: hashicorp.waypoint.EntrypointConfig.DeploymentInfo.component:type_name -> hashicorp.waypoint.Component + 466, // 689: hashicorp.waypoint.EntrypointConfig.DeploymentInfo.labels:type_name -> hashicorp.waypoint.EntrypointConfig.DeploymentInfo.LabelsEntry + 23, // 690: hashicorp.waypoint.EntrypointExecRequest.Output.channel:type_name -> hashicorp.waypoint.EntrypointExecRequest.Output.Channel + 501, // 691: hashicorp.waypoint.EntrypointExecRequest.Error.error:type_name -> google.rpc.Status + 472, // 692: hashicorp.waypoint.Pipeline.StepsEntry.value:type_name -> hashicorp.waypoint.Pipeline.Step + 473, // 693: hashicorp.waypoint.Pipeline.Step.exec:type_name -> hashicorp.waypoint.Pipeline.Step.Exec + 474, // 694: hashicorp.waypoint.Pipeline.Step.build:type_name -> hashicorp.waypoint.Pipeline.Step.Build + 475, // 695: hashicorp.waypoint.Pipeline.Step.deploy:type_name -> hashicorp.waypoint.Pipeline.Step.Deploy + 476, // 696: hashicorp.waypoint.Pipeline.Step.release:type_name -> hashicorp.waypoint.Pipeline.Step.Release + 477, // 697: hashicorp.waypoint.Pipeline.Step.up:type_name -> hashicorp.waypoint.Pipeline.Step.Up + 478, // 698: hashicorp.waypoint.Pipeline.Step.pipeline:type_name -> hashicorp.waypoint.Pipeline.Step.Pipeline + 308, // 699: hashicorp.waypoint.Pipeline.Step.workspace:type_name -> hashicorp.waypoint.Ref.Workspace + 309, // 700: hashicorp.waypoint.Pipeline.Step.Release.deployment:type_name -> hashicorp.waypoint.Ref.Deployment + 327, // 701: hashicorp.waypoint.Pipeline.Step.Pipeline.ref:type_name -> hashicorp.waypoint.Ref.Pipeline + 25, // 702: hashicorp.waypoint.GetPipelineResponse.Graph.format:type_name -> hashicorp.waypoint.GetPipelineResponse.Graph.Format + 329, // 703: hashicorp.waypoint.RunPipelineResponse.JobMapEntry.value:type_name -> hashicorp.waypoint.Ref.PipelineStep + 327, // 704: hashicorp.waypoint.ConfigSyncPipelineResponse.SyncedPipelinesEntry.value:type_name -> hashicorp.waypoint.Ref.Pipeline + 489, // 705: hashicorp.waypoint.Token.Login.entrypoint:type_name -> hashicorp.waypoint.Token.Entrypoint + 486, // 706: hashicorp.waypoint.Token.Invite.login:type_name -> hashicorp.waypoint.Token.Login + 491, // 707: hashicorp.waypoint.Token.Invite.signup:type_name -> hashicorp.waypoint.Token.Invite.Signup + 32, // 708: hashicorp.waypoint.Snapshot.Header.version:type_name -> hashicorp.waypoint.VersionInfo + 27, // 709: hashicorp.waypoint.Snapshot.Header.format:type_name -> hashicorp.waypoint.Snapshot.Header.Format + 498, // 710: hashicorp.waypoint.Snapshot.BoltChunk.items:type_name -> hashicorp.waypoint.Snapshot.BoltChunk.ItemsEntry + 499, // 711: hashicorp.waypoint.Waypoint.GetVersionInfo:input_type -> google.protobuf.Empty + 499, // 712: hashicorp.waypoint.Waypoint.ListOIDCAuthMethods:input_type -> google.protobuf.Empty + 73, // 713: hashicorp.waypoint.Waypoint.GetOIDCAuthURL:input_type -> hashicorp.waypoint.GetOIDCAuthURLRequest + 75, // 714: hashicorp.waypoint.Waypoint.CompleteOIDCAuth:input_type -> hashicorp.waypoint.CompleteOIDCAuthRequest + 177, // 715: hashicorp.waypoint.Waypoint.NoAuthRunTrigger:input_type -> hashicorp.waypoint.RunTriggerRequest + 58, // 716: hashicorp.waypoint.Waypoint.GetUser:input_type -> hashicorp.waypoint.GetUserRequest + 499, // 717: hashicorp.waypoint.Waypoint.ListUsers:input_type -> google.protobuf.Empty + 61, // 718: hashicorp.waypoint.Waypoint.UpdateUser:input_type -> hashicorp.waypoint.UpdateUserRequest + 63, // 719: hashicorp.waypoint.Waypoint.DeleteUser:input_type -> hashicorp.waypoint.DeleteUserRequest + 66, // 720: hashicorp.waypoint.Waypoint.UpsertAuthMethod:input_type -> hashicorp.waypoint.UpsertAuthMethodRequest + 68, // 721: hashicorp.waypoint.Waypoint.GetAuthMethod:input_type -> hashicorp.waypoint.GetAuthMethodRequest + 499, // 722: hashicorp.waypoint.Waypoint.ListAuthMethods:input_type -> google.protobuf.Empty + 70, // 723: hashicorp.waypoint.Waypoint.DeleteAuthMethod:input_type -> hashicorp.waypoint.DeleteAuthMethodRequest + 113, // 724: hashicorp.waypoint.Waypoint.ListWorkspaces:input_type -> hashicorp.waypoint.ListWorkspacesRequest + 115, // 725: hashicorp.waypoint.Waypoint.GetWorkspace:input_type -> hashicorp.waypoint.GetWorkspaceRequest + 117, // 726: hashicorp.waypoint.Waypoint.UpsertWorkspace:input_type -> hashicorp.waypoint.UpsertWorkspaceRequest + 119, // 727: hashicorp.waypoint.Waypoint.UpsertProject:input_type -> hashicorp.waypoint.UpsertProjectRequest + 121, // 728: hashicorp.waypoint.Waypoint.GetProject:input_type -> hashicorp.waypoint.GetProjectRequest + 123, // 729: hashicorp.waypoint.Waypoint.ListProjects:input_type -> hashicorp.waypoint.ListProjectsRequest + 125, // 730: hashicorp.waypoint.Waypoint.DestroyProject:input_type -> hashicorp.waypoint.DestroyProjectRequest + 126, // 731: hashicorp.waypoint.Waypoint.GetApplication:input_type -> hashicorp.waypoint.GetApplicationRequest + 128, // 732: hashicorp.waypoint.Waypoint.UpsertApplication:input_type -> hashicorp.waypoint.UpsertApplicationRequest + 132, // 733: hashicorp.waypoint.Waypoint.ListBuilds:input_type -> hashicorp.waypoint.ListBuildsRequest + 135, // 734: hashicorp.waypoint.Waypoint.GetBuild:input_type -> hashicorp.waypoint.GetBuildRequest + 134, // 735: hashicorp.waypoint.Waypoint.GetLatestBuild:input_type -> hashicorp.waypoint.GetLatestBuildRequest + 150, // 736: hashicorp.waypoint.Waypoint.ListPushedArtifacts:input_type -> hashicorp.waypoint.ListPushedArtifactsRequest + 149, // 737: hashicorp.waypoint.Waypoint.GetPushedArtifact:input_type -> hashicorp.waypoint.GetPushedArtifactRequest + 148, // 738: hashicorp.waypoint.Waypoint.GetLatestPushedArtifact:input_type -> hashicorp.waypoint.GetLatestPushedArtifactRequest + 156, // 739: hashicorp.waypoint.Waypoint.ListDeployments:input_type -> hashicorp.waypoint.ListDeploymentsRequest + 153, // 740: hashicorp.waypoint.Waypoint.GetDeployment:input_type -> hashicorp.waypoint.GetDeploymentRequest + 160, // 741: hashicorp.waypoint.Waypoint.ListInstances:input_type -> hashicorp.waypoint.ListInstancesRequest + 166, // 742: hashicorp.waypoint.Waypoint.ListReleases:input_type -> hashicorp.waypoint.ListReleasesRequest + 168, // 743: hashicorp.waypoint.Waypoint.GetRelease:input_type -> hashicorp.waypoint.GetReleaseRequest + 165, // 744: hashicorp.waypoint.Waypoint.GetLatestRelease:input_type -> hashicorp.waypoint.GetLatestReleaseRequest + 186, // 745: hashicorp.waypoint.Waypoint.GetStatusReport:input_type -> hashicorp.waypoint.GetStatusReportRequest + 183, // 746: hashicorp.waypoint.Waypoint.GetLatestStatusReport:input_type -> hashicorp.waypoint.GetLatestStatusReportRequest + 184, // 747: hashicorp.waypoint.Waypoint.ListStatusReports:input_type -> hashicorp.waypoint.ListStatusReportsRequest + 187, // 748: hashicorp.waypoint.Waypoint.ExpediteStatusReport:input_type -> hashicorp.waypoint.ExpediteStatusReportRequest + 190, // 749: hashicorp.waypoint.Waypoint.GetLogStream:input_type -> hashicorp.waypoint.GetLogStreamRequest + 204, // 750: hashicorp.waypoint.Waypoint.StartExecStream:input_type -> hashicorp.waypoint.ExecStreamRequest + 193, // 751: hashicorp.waypoint.Waypoint.SetConfig:input_type -> hashicorp.waypoint.ConfigSetRequest + 195, // 752: hashicorp.waypoint.Waypoint.DeleteConfig:input_type -> hashicorp.waypoint.ConfigDeleteRequest + 197, // 753: hashicorp.waypoint.Waypoint.GetConfig:input_type -> hashicorp.waypoint.ConfigGetRequest + 200, // 754: hashicorp.waypoint.Waypoint.SetConfigSource:input_type -> hashicorp.waypoint.SetConfigSourceRequest + 201, // 755: hashicorp.waypoint.Waypoint.DeleteConfigSource:input_type -> hashicorp.waypoint.DeleteConfigSourceRequest + 202, // 756: hashicorp.waypoint.Waypoint.GetConfigSource:input_type -> hashicorp.waypoint.GetConfigSourceRequest + 107, // 757: hashicorp.waypoint.Waypoint.CreateHostname:input_type -> hashicorp.waypoint.CreateHostnameRequest + 111, // 758: hashicorp.waypoint.Waypoint.DeleteHostname:input_type -> hashicorp.waypoint.DeleteHostnameRequest + 109, // 759: hashicorp.waypoint.Waypoint.ListHostnames:input_type -> hashicorp.waypoint.ListHostnamesRequest + 77, // 760: hashicorp.waypoint.Waypoint.QueueJob:input_type -> hashicorp.waypoint.QueueJobRequest + 79, // 761: hashicorp.waypoint.Waypoint.CancelJob:input_type -> hashicorp.waypoint.CancelJobRequest + 84, // 762: hashicorp.waypoint.Waypoint.GetJob:input_type -> hashicorp.waypoint.GetJobRequest + 85, // 763: hashicorp.waypoint.Waypoint.ListJobs:input_type -> hashicorp.waypoint.ListJobsRequest + 80, // 764: hashicorp.waypoint.Waypoint.ValidateJob:input_type -> hashicorp.waypoint.ValidateJobRequest + 87, // 765: hashicorp.waypoint.Waypoint.GetJobStream:input_type -> hashicorp.waypoint.GetJobStreamRequest + 99, // 766: hashicorp.waypoint.Waypoint.GetRunner:input_type -> hashicorp.waypoint.GetRunnerRequest + 100, // 767: hashicorp.waypoint.Waypoint.ListRunners:input_type -> hashicorp.waypoint.ListRunnersRequest + 102, // 768: hashicorp.waypoint.Waypoint.AdoptRunner:input_type -> hashicorp.waypoint.AdoptRunnerRequest + 103, // 769: hashicorp.waypoint.Waypoint.ForgetRunner:input_type -> hashicorp.waypoint.ForgetRunnerRequest + 499, // 770: hashicorp.waypoint.Waypoint.GetServerConfig:input_type -> google.protobuf.Empty + 104, // 771: hashicorp.waypoint.Waypoint.SetServerConfig:input_type -> hashicorp.waypoint.SetServerConfigRequest + 499, // 772: hashicorp.waypoint.Waypoint.CreateSnapshot:input_type -> google.protobuf.Empty + 254, // 773: hashicorp.waypoint.Waypoint.RestoreSnapshot:input_type -> hashicorp.waypoint.RestoreSnapshotRequest + 499, // 774: hashicorp.waypoint.Waypoint.BootstrapToken:input_type -> google.protobuf.Empty + 246, // 775: hashicorp.waypoint.Waypoint.DecodeToken:input_type -> hashicorp.waypoint.DecodeTokenRequest + 250, // 776: hashicorp.waypoint.Waypoint.GenerateInviteToken:input_type -> hashicorp.waypoint.InviteTokenRequest + 248, // 777: hashicorp.waypoint.Waypoint.GenerateLoginToken:input_type -> hashicorp.waypoint.LoginTokenRequest + 249, // 778: hashicorp.waypoint.Waypoint.GenerateRunnerToken:input_type -> hashicorp.waypoint.GenerateRunnerTokenRequest + 252, // 779: hashicorp.waypoint.Waypoint.ConvertInviteToken:input_type -> hashicorp.waypoint.ConvertInviteTokenRequest + 90, // 780: hashicorp.waypoint.Waypoint.RunnerToken:input_type -> hashicorp.waypoint.RunnerTokenRequest + 92, // 781: hashicorp.waypoint.Waypoint.RunnerConfig:input_type -> hashicorp.waypoint.RunnerConfigRequest + 95, // 782: hashicorp.waypoint.Waypoint.RunnerJobStream:input_type -> hashicorp.waypoint.RunnerJobStreamRequest + 97, // 783: hashicorp.waypoint.Waypoint.RunnerGetDeploymentConfig:input_type -> hashicorp.waypoint.RunnerGetDeploymentConfigRequest + 206, // 784: hashicorp.waypoint.Waypoint.EntrypointConfig:input_type -> hashicorp.waypoint.EntrypointConfigRequest + 209, // 785: hashicorp.waypoint.Waypoint.EntrypointLogStream:input_type -> hashicorp.waypoint.EntrypointLogBatch + 210, // 786: hashicorp.waypoint.Waypoint.EntrypointExecStream:input_type -> hashicorp.waypoint.EntrypointExecRequest + 257, // 787: hashicorp.waypoint.Waypoint.WaypointHclFmt:input_type -> hashicorp.waypoint.WaypointHclFmtRequest + 139, // 788: hashicorp.waypoint.Waypoint.UpsertOnDemandRunnerConfig:input_type -> hashicorp.waypoint.UpsertOnDemandRunnerConfigRequest + 141, // 789: hashicorp.waypoint.Waypoint.GetOnDemandRunnerConfig:input_type -> hashicorp.waypoint.GetOnDemandRunnerConfigRequest + 499, // 790: hashicorp.waypoint.Waypoint.GetDefaultOnDemandRunnerConfig:input_type -> google.protobuf.Empty + 143, // 791: hashicorp.waypoint.Waypoint.DeleteOnDemandRunnerConfig:input_type -> hashicorp.waypoint.DeleteOnDemandRunnerConfigRequest + 499, // 792: hashicorp.waypoint.Waypoint.ListOnDemandRunnerConfigs:input_type -> google.protobuf.Empty + 130, // 793: hashicorp.waypoint.Waypoint.UpsertBuild:input_type -> hashicorp.waypoint.UpsertBuildRequest + 146, // 794: hashicorp.waypoint.Waypoint.UpsertPushedArtifact:input_type -> hashicorp.waypoint.UpsertPushedArtifactRequest + 154, // 795: hashicorp.waypoint.Waypoint.UpsertDeployment:input_type -> hashicorp.waypoint.UpsertDeploymentRequest + 163, // 796: hashicorp.waypoint.Waypoint.UpsertRelease:input_type -> hashicorp.waypoint.UpsertReleaseRequest + 181, // 797: hashicorp.waypoint.Waypoint.UpsertStatusReport:input_type -> hashicorp.waypoint.UpsertStatusReportRequest + 51, // 798: hashicorp.waypoint.Waypoint.GetTask:input_type -> hashicorp.waypoint.GetTaskRequest + 54, // 799: hashicorp.waypoint.Waypoint.ListTask:input_type -> hashicorp.waypoint.ListTaskRequest + 56, // 800: hashicorp.waypoint.Waypoint.CancelTask:input_type -> hashicorp.waypoint.CancelTaskRequest + 172, // 801: hashicorp.waypoint.Waypoint.UpsertTrigger:input_type -> hashicorp.waypoint.UpsertTriggerRequest + 174, // 802: hashicorp.waypoint.Waypoint.GetTrigger:input_type -> hashicorp.waypoint.GetTriggerRequest + 176, // 803: hashicorp.waypoint.Waypoint.DeleteTrigger:input_type -> hashicorp.waypoint.DeleteTriggerRequest + 179, // 804: hashicorp.waypoint.Waypoint.ListTriggers:input_type -> hashicorp.waypoint.ListTriggerRequest + 177, // 805: hashicorp.waypoint.Waypoint.RunTrigger:input_type -> hashicorp.waypoint.RunTriggerRequest + 214, // 806: hashicorp.waypoint.Waypoint.UpsertPipeline:input_type -> hashicorp.waypoint.UpsertPipelineRequest + 218, // 807: hashicorp.waypoint.Waypoint.RunPipeline:input_type -> hashicorp.waypoint.RunPipelineRequest + 216, // 808: hashicorp.waypoint.Waypoint.GetPipeline:input_type -> hashicorp.waypoint.GetPipelineRequest + 224, // 809: hashicorp.waypoint.Waypoint.GetPipelineRun:input_type -> hashicorp.waypoint.GetPipelineRunRequest + 216, // 810: hashicorp.waypoint.Waypoint.GetLatestPipelineRun:input_type -> hashicorp.waypoint.GetPipelineRequest + 220, // 811: hashicorp.waypoint.Waypoint.ListPipelines:input_type -> hashicorp.waypoint.ListPipelinesRequest + 222, // 812: hashicorp.waypoint.Waypoint.ListPipelineRuns:input_type -> hashicorp.waypoint.ListPipelineRunsRequest + 226, // 813: hashicorp.waypoint.Waypoint.ConfigSyncPipeline:input_type -> hashicorp.waypoint.ConfigSyncPipelineRequest + 232, // 814: hashicorp.waypoint.Waypoint.CreateProjectTemplate:input_type -> hashicorp.waypoint.CreateProjectTemplateRequest + 234, // 815: hashicorp.waypoint.Waypoint.UpdateProjectTemplate:input_type -> hashicorp.waypoint.UpdateProjectTemplateRequest + 228, // 816: hashicorp.waypoint.Waypoint.GetProjectTemplate:input_type -> hashicorp.waypoint.GetProjectTemplateRequest + 236, // 817: hashicorp.waypoint.Waypoint.DeleteProjectTemplate:input_type -> hashicorp.waypoint.DeleteProjectTemplateRequest + 230, // 818: hashicorp.waypoint.Waypoint.ListProjectTemplates:input_type -> hashicorp.waypoint.ListProjectTemplatesRequest + 241, // 819: hashicorp.waypoint.Waypoint.CreateProjectFromTemplate:input_type -> hashicorp.waypoint.CreateProjectFromTemplateRequest + 239, // 820: hashicorp.waypoint.Waypoint.GetTFCRunStatus:input_type -> hashicorp.waypoint.GetTFCRunStatusRequest + 263, // 821: hashicorp.waypoint.Waypoint.UI_ListProjects:input_type -> hashicorp.waypoint.UI.ListProjectsRequest + 266, // 822: hashicorp.waypoint.Waypoint.UI_GetProject:input_type -> hashicorp.waypoint.UI.GetProjectRequest + 268, // 823: hashicorp.waypoint.Waypoint.UI_ListPipelines:input_type -> hashicorp.waypoint.UI.ListPipelinesRequest + 270, // 824: hashicorp.waypoint.Waypoint.UI_ListPipelineRuns:input_type -> hashicorp.waypoint.UI.ListPipelineRunsRequest + 272, // 825: hashicorp.waypoint.Waypoint.UI_GetPipelineRun:input_type -> hashicorp.waypoint.UI.GetPipelineRunRequest + 277, // 826: hashicorp.waypoint.Waypoint.UI_ListDeployments:input_type -> hashicorp.waypoint.UI.ListDeploymentsRequest + 279, // 827: hashicorp.waypoint.Waypoint.UI_GetDeployment:input_type -> hashicorp.waypoint.UI.GetDeploymentRequest + 282, // 828: hashicorp.waypoint.Waypoint.UI_ListReleases:input_type -> hashicorp.waypoint.UI.ListReleasesRequest + 285, // 829: hashicorp.waypoint.Waypoint.UI_ListEvents:input_type -> hashicorp.waypoint.UI.ListEventsRequest + 499, // 830: hashicorp.waypoint.Waypoint.INTERNAL_AdditionalMessages:input_type -> google.protobuf.Empty + 30, // 831: hashicorp.waypoint.Waypoint.GetVersionInfo:output_type -> hashicorp.waypoint.GetVersionInfoResponse + 72, // 832: hashicorp.waypoint.Waypoint.ListOIDCAuthMethods:output_type -> hashicorp.waypoint.ListOIDCAuthMethodsResponse + 74, // 833: hashicorp.waypoint.Waypoint.GetOIDCAuthURL:output_type -> hashicorp.waypoint.GetOIDCAuthURLResponse + 76, // 834: hashicorp.waypoint.Waypoint.CompleteOIDCAuth:output_type -> hashicorp.waypoint.CompleteOIDCAuthResponse + 178, // 835: hashicorp.waypoint.Waypoint.NoAuthRunTrigger:output_type -> hashicorp.waypoint.RunTriggerResponse + 59, // 836: hashicorp.waypoint.Waypoint.GetUser:output_type -> hashicorp.waypoint.GetUserResponse + 60, // 837: hashicorp.waypoint.Waypoint.ListUsers:output_type -> hashicorp.waypoint.ListUsersResponse + 62, // 838: hashicorp.waypoint.Waypoint.UpdateUser:output_type -> hashicorp.waypoint.UpdateUserResponse + 499, // 839: hashicorp.waypoint.Waypoint.DeleteUser:output_type -> google.protobuf.Empty + 67, // 840: hashicorp.waypoint.Waypoint.UpsertAuthMethod:output_type -> hashicorp.waypoint.UpsertAuthMethodResponse + 69, // 841: hashicorp.waypoint.Waypoint.GetAuthMethod:output_type -> hashicorp.waypoint.GetAuthMethodResponse + 71, // 842: hashicorp.waypoint.Waypoint.ListAuthMethods:output_type -> hashicorp.waypoint.ListAuthMethodsResponse + 499, // 843: hashicorp.waypoint.Waypoint.DeleteAuthMethod:output_type -> google.protobuf.Empty + 114, // 844: hashicorp.waypoint.Waypoint.ListWorkspaces:output_type -> hashicorp.waypoint.ListWorkspacesResponse + 116, // 845: hashicorp.waypoint.Waypoint.GetWorkspace:output_type -> hashicorp.waypoint.GetWorkspaceResponse + 118, // 846: hashicorp.waypoint.Waypoint.UpsertWorkspace:output_type -> hashicorp.waypoint.UpsertWorkspaceResponse + 120, // 847: hashicorp.waypoint.Waypoint.UpsertProject:output_type -> hashicorp.waypoint.UpsertProjectResponse + 122, // 848: hashicorp.waypoint.Waypoint.GetProject:output_type -> hashicorp.waypoint.GetProjectResponse + 124, // 849: hashicorp.waypoint.Waypoint.ListProjects:output_type -> hashicorp.waypoint.ListProjectsResponse + 499, // 850: hashicorp.waypoint.Waypoint.DestroyProject:output_type -> google.protobuf.Empty + 127, // 851: hashicorp.waypoint.Waypoint.GetApplication:output_type -> hashicorp.waypoint.GetApplicationResponse + 129, // 852: hashicorp.waypoint.Waypoint.UpsertApplication:output_type -> hashicorp.waypoint.UpsertApplicationResponse + 133, // 853: hashicorp.waypoint.Waypoint.ListBuilds:output_type -> hashicorp.waypoint.ListBuildsResponse + 136, // 854: hashicorp.waypoint.Waypoint.GetBuild:output_type -> hashicorp.waypoint.Build + 136, // 855: hashicorp.waypoint.Waypoint.GetLatestBuild:output_type -> hashicorp.waypoint.Build + 151, // 856: hashicorp.waypoint.Waypoint.ListPushedArtifacts:output_type -> hashicorp.waypoint.ListPushedArtifactsResponse + 152, // 857: hashicorp.waypoint.Waypoint.GetPushedArtifact:output_type -> hashicorp.waypoint.PushedArtifact + 152, // 858: hashicorp.waypoint.Waypoint.GetLatestPushedArtifact:output_type -> hashicorp.waypoint.PushedArtifact + 157, // 859: hashicorp.waypoint.Waypoint.ListDeployments:output_type -> hashicorp.waypoint.ListDeploymentsResponse + 158, // 860: hashicorp.waypoint.Waypoint.GetDeployment:output_type -> hashicorp.waypoint.Deployment + 161, // 861: hashicorp.waypoint.Waypoint.ListInstances:output_type -> hashicorp.waypoint.ListInstancesResponse + 167, // 862: hashicorp.waypoint.Waypoint.ListReleases:output_type -> hashicorp.waypoint.ListReleasesResponse + 169, // 863: hashicorp.waypoint.Waypoint.GetRelease:output_type -> hashicorp.waypoint.Release + 169, // 864: hashicorp.waypoint.Waypoint.GetLatestRelease:output_type -> hashicorp.waypoint.Release + 189, // 865: hashicorp.waypoint.Waypoint.GetStatusReport:output_type -> hashicorp.waypoint.StatusReport + 189, // 866: hashicorp.waypoint.Waypoint.GetLatestStatusReport:output_type -> hashicorp.waypoint.StatusReport + 185, // 867: hashicorp.waypoint.Waypoint.ListStatusReports:output_type -> hashicorp.waypoint.ListStatusReportsResponse + 188, // 868: hashicorp.waypoint.Waypoint.ExpediteStatusReport:output_type -> hashicorp.waypoint.ExpediteStatusReportResponse + 191, // 869: hashicorp.waypoint.Waypoint.GetLogStream:output_type -> hashicorp.waypoint.LogBatch + 205, // 870: hashicorp.waypoint.Waypoint.StartExecStream:output_type -> hashicorp.waypoint.ExecStreamResponse + 194, // 871: hashicorp.waypoint.Waypoint.SetConfig:output_type -> hashicorp.waypoint.ConfigSetResponse + 196, // 872: hashicorp.waypoint.Waypoint.DeleteConfig:output_type -> hashicorp.waypoint.ConfigDeleteResponse + 198, // 873: hashicorp.waypoint.Waypoint.GetConfig:output_type -> hashicorp.waypoint.ConfigGetResponse + 499, // 874: hashicorp.waypoint.Waypoint.SetConfigSource:output_type -> google.protobuf.Empty + 499, // 875: hashicorp.waypoint.Waypoint.DeleteConfigSource:output_type -> google.protobuf.Empty + 203, // 876: hashicorp.waypoint.Waypoint.GetConfigSource:output_type -> hashicorp.waypoint.GetConfigSourceResponse + 108, // 877: hashicorp.waypoint.Waypoint.CreateHostname:output_type -> hashicorp.waypoint.CreateHostnameResponse + 499, // 878: hashicorp.waypoint.Waypoint.DeleteHostname:output_type -> google.protobuf.Empty + 110, // 879: hashicorp.waypoint.Waypoint.ListHostnames:output_type -> hashicorp.waypoint.ListHostnamesResponse + 78, // 880: hashicorp.waypoint.Waypoint.QueueJob:output_type -> hashicorp.waypoint.QueueJobResponse + 499, // 881: hashicorp.waypoint.Waypoint.CancelJob:output_type -> google.protobuf.Empty + 82, // 882: hashicorp.waypoint.Waypoint.GetJob:output_type -> hashicorp.waypoint.Job + 86, // 883: hashicorp.waypoint.Waypoint.ListJobs:output_type -> hashicorp.waypoint.ListJobsResponse + 81, // 884: hashicorp.waypoint.Waypoint.ValidateJob:output_type -> hashicorp.waypoint.ValidateJobResponse + 88, // 885: hashicorp.waypoint.Waypoint.GetJobStream:output_type -> hashicorp.waypoint.GetJobStreamResponse + 89, // 886: hashicorp.waypoint.Waypoint.GetRunner:output_type -> hashicorp.waypoint.Runner + 101, // 887: hashicorp.waypoint.Waypoint.ListRunners:output_type -> hashicorp.waypoint.ListRunnersResponse + 499, // 888: hashicorp.waypoint.Waypoint.AdoptRunner:output_type -> google.protobuf.Empty + 499, // 889: hashicorp.waypoint.Waypoint.ForgetRunner:output_type -> google.protobuf.Empty + 105, // 890: hashicorp.waypoint.Waypoint.GetServerConfig:output_type -> hashicorp.waypoint.GetServerConfigResponse + 499, // 891: hashicorp.waypoint.Waypoint.SetServerConfig:output_type -> google.protobuf.Empty + 253, // 892: hashicorp.waypoint.Waypoint.CreateSnapshot:output_type -> hashicorp.waypoint.CreateSnapshotResponse + 499, // 893: hashicorp.waypoint.Waypoint.RestoreSnapshot:output_type -> google.protobuf.Empty + 251, // 894: hashicorp.waypoint.Waypoint.BootstrapToken:output_type -> hashicorp.waypoint.NewTokenResponse + 247, // 895: hashicorp.waypoint.Waypoint.DecodeToken:output_type -> hashicorp.waypoint.DecodeTokenResponse + 251, // 896: hashicorp.waypoint.Waypoint.GenerateInviteToken:output_type -> hashicorp.waypoint.NewTokenResponse + 251, // 897: hashicorp.waypoint.Waypoint.GenerateLoginToken:output_type -> hashicorp.waypoint.NewTokenResponse + 251, // 898: hashicorp.waypoint.Waypoint.GenerateRunnerToken:output_type -> hashicorp.waypoint.NewTokenResponse + 251, // 899: hashicorp.waypoint.Waypoint.ConvertInviteToken:output_type -> hashicorp.waypoint.NewTokenResponse + 91, // 900: hashicorp.waypoint.Waypoint.RunnerToken:output_type -> hashicorp.waypoint.RunnerTokenResponse + 93, // 901: hashicorp.waypoint.Waypoint.RunnerConfig:output_type -> hashicorp.waypoint.RunnerConfigResponse + 96, // 902: hashicorp.waypoint.Waypoint.RunnerJobStream:output_type -> hashicorp.waypoint.RunnerJobStreamResponse + 98, // 903: hashicorp.waypoint.Waypoint.RunnerGetDeploymentConfig:output_type -> hashicorp.waypoint.RunnerGetDeploymentConfigResponse + 207, // 904: hashicorp.waypoint.Waypoint.EntrypointConfig:output_type -> hashicorp.waypoint.EntrypointConfigResponse + 499, // 905: hashicorp.waypoint.Waypoint.EntrypointLogStream:output_type -> google.protobuf.Empty + 211, // 906: hashicorp.waypoint.Waypoint.EntrypointExecStream:output_type -> hashicorp.waypoint.EntrypointExecResponse + 258, // 907: hashicorp.waypoint.Waypoint.WaypointHclFmt:output_type -> hashicorp.waypoint.WaypointHclFmtResponse + 140, // 908: hashicorp.waypoint.Waypoint.UpsertOnDemandRunnerConfig:output_type -> hashicorp.waypoint.UpsertOnDemandRunnerConfigResponse + 142, // 909: hashicorp.waypoint.Waypoint.GetOnDemandRunnerConfig:output_type -> hashicorp.waypoint.GetOnDemandRunnerConfigResponse + 142, // 910: hashicorp.waypoint.Waypoint.GetDefaultOnDemandRunnerConfig:output_type -> hashicorp.waypoint.GetOnDemandRunnerConfigResponse + 144, // 911: hashicorp.waypoint.Waypoint.DeleteOnDemandRunnerConfig:output_type -> hashicorp.waypoint.DeleteOnDemandRunnerConfigResponse + 145, // 912: hashicorp.waypoint.Waypoint.ListOnDemandRunnerConfigs:output_type -> hashicorp.waypoint.ListOnDemandRunnerConfigsResponse + 131, // 913: hashicorp.waypoint.Waypoint.UpsertBuild:output_type -> hashicorp.waypoint.UpsertBuildResponse + 147, // 914: hashicorp.waypoint.Waypoint.UpsertPushedArtifact:output_type -> hashicorp.waypoint.UpsertPushedArtifactResponse + 155, // 915: hashicorp.waypoint.Waypoint.UpsertDeployment:output_type -> hashicorp.waypoint.UpsertDeploymentResponse + 164, // 916: hashicorp.waypoint.Waypoint.UpsertRelease:output_type -> hashicorp.waypoint.UpsertReleaseResponse + 182, // 917: hashicorp.waypoint.Waypoint.UpsertStatusReport:output_type -> hashicorp.waypoint.UpsertStatusReportResponse + 52, // 918: hashicorp.waypoint.Waypoint.GetTask:output_type -> hashicorp.waypoint.GetTaskResponse + 55, // 919: hashicorp.waypoint.Waypoint.ListTask:output_type -> hashicorp.waypoint.ListTaskResponse + 499, // 920: hashicorp.waypoint.Waypoint.CancelTask:output_type -> google.protobuf.Empty + 173, // 921: hashicorp.waypoint.Waypoint.UpsertTrigger:output_type -> hashicorp.waypoint.UpsertTriggerResponse + 175, // 922: hashicorp.waypoint.Waypoint.GetTrigger:output_type -> hashicorp.waypoint.GetTriggerResponse + 499, // 923: hashicorp.waypoint.Waypoint.DeleteTrigger:output_type -> google.protobuf.Empty + 180, // 924: hashicorp.waypoint.Waypoint.ListTriggers:output_type -> hashicorp.waypoint.ListTriggerResponse + 178, // 925: hashicorp.waypoint.Waypoint.RunTrigger:output_type -> hashicorp.waypoint.RunTriggerResponse + 215, // 926: hashicorp.waypoint.Waypoint.UpsertPipeline:output_type -> hashicorp.waypoint.UpsertPipelineResponse + 219, // 927: hashicorp.waypoint.Waypoint.RunPipeline:output_type -> hashicorp.waypoint.RunPipelineResponse + 217, // 928: hashicorp.waypoint.Waypoint.GetPipeline:output_type -> hashicorp.waypoint.GetPipelineResponse + 225, // 929: hashicorp.waypoint.Waypoint.GetPipelineRun:output_type -> hashicorp.waypoint.GetPipelineRunResponse + 225, // 930: hashicorp.waypoint.Waypoint.GetLatestPipelineRun:output_type -> hashicorp.waypoint.GetPipelineRunResponse + 221, // 931: hashicorp.waypoint.Waypoint.ListPipelines:output_type -> hashicorp.waypoint.ListPipelinesResponse + 223, // 932: hashicorp.waypoint.Waypoint.ListPipelineRuns:output_type -> hashicorp.waypoint.ListPipelineRunsResponse + 227, // 933: hashicorp.waypoint.Waypoint.ConfigSyncPipeline:output_type -> hashicorp.waypoint.ConfigSyncPipelineResponse + 233, // 934: hashicorp.waypoint.Waypoint.CreateProjectTemplate:output_type -> hashicorp.waypoint.CreateProjectTemplateResponse + 235, // 935: hashicorp.waypoint.Waypoint.UpdateProjectTemplate:output_type -> hashicorp.waypoint.UpdateProjectTemplateResponse + 229, // 936: hashicorp.waypoint.Waypoint.GetProjectTemplate:output_type -> hashicorp.waypoint.GetProjectTemplateResponse + 499, // 937: hashicorp.waypoint.Waypoint.DeleteProjectTemplate:output_type -> google.protobuf.Empty + 231, // 938: hashicorp.waypoint.Waypoint.ListProjectTemplates:output_type -> hashicorp.waypoint.ListProjectTemplatesResponse + 242, // 939: hashicorp.waypoint.Waypoint.CreateProjectFromTemplate:output_type -> hashicorp.waypoint.CreateProjectFromTemplateResponse + 240, // 940: hashicorp.waypoint.Waypoint.GetTFCRunStatus:output_type -> hashicorp.waypoint.GetTFCRunStatusResponse + 264, // 941: hashicorp.waypoint.Waypoint.UI_ListProjects:output_type -> hashicorp.waypoint.UI.ListProjectsResponse + 267, // 942: hashicorp.waypoint.Waypoint.UI_GetProject:output_type -> hashicorp.waypoint.UI.GetProjectResponse + 269, // 943: hashicorp.waypoint.Waypoint.UI_ListPipelines:output_type -> hashicorp.waypoint.UI.ListPipelinesResponse + 271, // 944: hashicorp.waypoint.Waypoint.UI_ListPipelineRuns:output_type -> hashicorp.waypoint.UI.ListPipelineRunsResponse + 273, // 945: hashicorp.waypoint.Waypoint.UI_GetPipelineRun:output_type -> hashicorp.waypoint.UI.GetPipelineRunResponse + 278, // 946: hashicorp.waypoint.Waypoint.UI_ListDeployments:output_type -> hashicorp.waypoint.UI.ListDeploymentsResponse + 280, // 947: hashicorp.waypoint.Waypoint.UI_GetDeployment:output_type -> hashicorp.waypoint.UI.GetDeploymentResponse + 283, // 948: hashicorp.waypoint.Waypoint.UI_ListReleases:output_type -> hashicorp.waypoint.UI.ListReleasesResponse + 286, // 949: hashicorp.waypoint.Waypoint.UI_ListEvents:output_type -> hashicorp.waypoint.UI.ListEventsResponse + 291, // 950: hashicorp.waypoint.Waypoint.INTERNAL_AdditionalMessages:output_type -> hashicorp.waypoint.UI.ListEventSchemasResponse + 831, // [831:951] is the sub-list for method output_type + 711, // [711:831] is the sub-list for method input_type + 711, // [711:711] is the sub-list for extension type_name + 711, // [711:711] is the sub-list for extension extendee + 0, // [0:711] is the sub-list for field type_name } func init() { file_pkg_server_proto_server_proto_init() } @@ -40194,7 +40360,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[166].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfigGetRequest); i { + switch v := v.(*ConfigDeleteRequest); i { case 0: return &v.state case 1: @@ -40206,7 +40372,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[167].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfigGetResponse); i { + switch v := v.(*ConfigDeleteResponse); i { case 0: return &v.state case 1: @@ -40218,7 +40384,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[168].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfigSource); i { + switch v := v.(*ConfigGetRequest); i { case 0: return &v.state case 1: @@ -40230,7 +40396,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[169].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetConfigSourceRequest); i { + switch v := v.(*ConfigGetResponse); i { case 0: return &v.state case 1: @@ -40242,7 +40408,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[170].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetConfigSourceRequest); i { + switch v := v.(*ConfigSource); i { case 0: return &v.state case 1: @@ -40254,7 +40420,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[171].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetConfigSourceResponse); i { + switch v := v.(*SetConfigSourceRequest); i { case 0: return &v.state case 1: @@ -40266,7 +40432,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[172].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ExecStreamRequest); i { + switch v := v.(*DeleteConfigSourceRequest); i { case 0: return &v.state case 1: @@ -40278,7 +40444,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[173].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ExecStreamResponse); i { + switch v := v.(*GetConfigSourceRequest); i { case 0: return &v.state case 1: @@ -40290,7 +40456,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[174].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EntrypointConfigRequest); i { + switch v := v.(*GetConfigSourceResponse); i { case 0: return &v.state case 1: @@ -40302,7 +40468,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[175].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EntrypointConfigResponse); i { + switch v := v.(*ExecStreamRequest); i { case 0: return &v.state case 1: @@ -40314,7 +40480,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[176].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EntrypointConfig); i { + switch v := v.(*ExecStreamResponse); i { case 0: return &v.state case 1: @@ -40326,7 +40492,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[177].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EntrypointLogBatch); i { + switch v := v.(*EntrypointConfigRequest); i { case 0: return &v.state case 1: @@ -40338,7 +40504,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[178].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EntrypointExecRequest); i { + switch v := v.(*EntrypointConfigResponse); i { case 0: return &v.state case 1: @@ -40350,7 +40516,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[179].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EntrypointExecResponse); i { + switch v := v.(*EntrypointConfig); i { case 0: return &v.state case 1: @@ -40362,7 +40528,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[180].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Pipeline); i { + switch v := v.(*EntrypointLogBatch); i { case 0: return &v.state case 1: @@ -40374,7 +40540,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[181].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PipelineRun); i { + switch v := v.(*EntrypointExecRequest); i { case 0: return &v.state case 1: @@ -40386,7 +40552,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[182].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpsertPipelineRequest); i { + switch v := v.(*EntrypointExecResponse); i { case 0: return &v.state case 1: @@ -40398,7 +40564,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[183].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpsertPipelineResponse); i { + switch v := v.(*Pipeline); i { case 0: return &v.state case 1: @@ -40410,7 +40576,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[184].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPipelineRequest); i { + switch v := v.(*PipelineRun); i { case 0: return &v.state case 1: @@ -40422,7 +40588,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[185].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPipelineResponse); i { + switch v := v.(*UpsertPipelineRequest); i { case 0: return &v.state case 1: @@ -40434,7 +40600,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[186].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RunPipelineRequest); i { + switch v := v.(*UpsertPipelineResponse); i { case 0: return &v.state case 1: @@ -40446,7 +40612,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[187].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RunPipelineResponse); i { + switch v := v.(*GetPipelineRequest); i { case 0: return &v.state case 1: @@ -40458,7 +40624,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[188].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListPipelinesRequest); i { + switch v := v.(*GetPipelineResponse); i { case 0: return &v.state case 1: @@ -40470,7 +40636,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[189].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListPipelinesResponse); i { + switch v := v.(*RunPipelineRequest); i { case 0: return &v.state case 1: @@ -40482,7 +40648,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[190].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListPipelineRunsRequest); i { + switch v := v.(*RunPipelineResponse); i { case 0: return &v.state case 1: @@ -40494,7 +40660,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[191].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListPipelineRunsResponse); i { + switch v := v.(*ListPipelinesRequest); i { case 0: return &v.state case 1: @@ -40506,7 +40672,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[192].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPipelineRunRequest); i { + switch v := v.(*ListPipelinesResponse); i { case 0: return &v.state case 1: @@ -40518,7 +40684,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[193].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPipelineRunResponse); i { + switch v := v.(*ListPipelineRunsRequest); i { case 0: return &v.state case 1: @@ -40530,7 +40696,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[194].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfigSyncPipelineRequest); i { + switch v := v.(*ListPipelineRunsResponse); i { case 0: return &v.state case 1: @@ -40542,7 +40708,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[195].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfigSyncPipelineResponse); i { + switch v := v.(*GetPipelineRunRequest); i { case 0: return &v.state case 1: @@ -40554,7 +40720,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[196].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetProjectTemplateRequest); i { + switch v := v.(*GetPipelineRunResponse); i { case 0: return &v.state case 1: @@ -40566,7 +40732,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[197].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetProjectTemplateResponse); i { + switch v := v.(*ConfigSyncPipelineRequest); i { case 0: return &v.state case 1: @@ -40578,7 +40744,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[198].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListProjectTemplatesRequest); i { + switch v := v.(*ConfigSyncPipelineResponse); i { case 0: return &v.state case 1: @@ -40590,7 +40756,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[199].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ListProjectTemplatesResponse); i { + switch v := v.(*GetProjectTemplateRequest); i { case 0: return &v.state case 1: @@ -40602,7 +40768,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[200].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateProjectTemplateRequest); i { + switch v := v.(*GetProjectTemplateResponse); i { case 0: return &v.state case 1: @@ -40614,7 +40780,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[201].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateProjectTemplateResponse); i { + switch v := v.(*ListProjectTemplatesRequest); i { case 0: return &v.state case 1: @@ -40626,7 +40792,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[202].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateProjectTemplateRequest); i { + switch v := v.(*ListProjectTemplatesResponse); i { case 0: return &v.state case 1: @@ -40638,7 +40804,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[203].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateProjectTemplateResponse); i { + switch v := v.(*CreateProjectTemplateRequest); i { case 0: return &v.state case 1: @@ -40650,7 +40816,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[204].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteProjectTemplateRequest); i { + switch v := v.(*CreateProjectTemplateResponse); i { case 0: return &v.state case 1: @@ -40662,7 +40828,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[205].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DeleteProjectTemplateResponse); i { + switch v := v.(*UpdateProjectTemplateRequest); i { case 0: return &v.state case 1: @@ -40674,7 +40840,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[206].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ProjectTemplate); i { + switch v := v.(*UpdateProjectTemplateResponse); i { case 0: return &v.state case 1: @@ -40686,7 +40852,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[207].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetTFCRunStatusRequest); i { + switch v := v.(*DeleteProjectTemplateRequest); i { case 0: return &v.state case 1: @@ -40698,7 +40864,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[208].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetTFCRunStatusResponse); i { + switch v := v.(*DeleteProjectTemplateResponse); i { case 0: return &v.state case 1: @@ -40710,7 +40876,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[209].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateProjectFromTemplateRequest); i { + switch v := v.(*ProjectTemplate); i { case 0: return &v.state case 1: @@ -40722,7 +40888,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[210].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateProjectFromTemplateResponse); i { + switch v := v.(*GetTFCRunStatusRequest); i { case 0: return &v.state case 1: @@ -40734,7 +40900,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[211].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TokenTransport); i { + switch v := v.(*GetTFCRunStatusResponse); i { case 0: return &v.state case 1: @@ -40746,7 +40912,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[212].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Token); i { + switch v := v.(*CreateProjectFromTemplateRequest); i { case 0: return &v.state case 1: @@ -40758,7 +40924,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[213].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HMACKey); i { + switch v := v.(*CreateProjectFromTemplateResponse); i { case 0: return &v.state case 1: @@ -40770,7 +40936,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[214].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DecodeTokenRequest); i { + switch v := v.(*TokenTransport); i { case 0: return &v.state case 1: @@ -40782,7 +40948,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[215].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DecodeTokenResponse); i { + switch v := v.(*Token); i { case 0: return &v.state case 1: @@ -40794,7 +40960,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[216].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*LoginTokenRequest); i { + switch v := v.(*HMACKey); i { case 0: return &v.state case 1: @@ -40806,7 +40972,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[217].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GenerateRunnerTokenRequest); i { + switch v := v.(*DecodeTokenRequest); i { case 0: return &v.state case 1: @@ -40818,7 +40984,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[218].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*InviteTokenRequest); i { + switch v := v.(*DecodeTokenResponse); i { case 0: return &v.state case 1: @@ -40830,7 +40996,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[219].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*NewTokenResponse); i { + switch v := v.(*LoginTokenRequest); i { case 0: return &v.state case 1: @@ -40842,7 +41008,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[220].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConvertInviteTokenRequest); i { + switch v := v.(*GenerateRunnerTokenRequest); i { case 0: return &v.state case 1: @@ -40854,7 +41020,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[221].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateSnapshotResponse); i { + switch v := v.(*InviteTokenRequest); i { case 0: return &v.state case 1: @@ -40866,7 +41032,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[222].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RestoreSnapshotRequest); i { + switch v := v.(*NewTokenResponse); i { case 0: return &v.state case 1: @@ -40878,7 +41044,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[223].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Snapshot); i { + switch v := v.(*ConvertInviteTokenRequest); i { case 0: return &v.state case 1: @@ -40890,7 +41056,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[224].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Hcl); i { + switch v := v.(*CreateSnapshotResponse); i { case 0: return &v.state case 1: @@ -40902,7 +41068,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[225].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WaypointHclFmtRequest); i { + switch v := v.(*RestoreSnapshotRequest); i { case 0: return &v.state case 1: @@ -40914,7 +41080,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[226].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WaypointHclFmtResponse); i { + switch v := v.(*Snapshot); i { case 0: return &v.state case 1: @@ -40926,7 +41092,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[227].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*InlineKeepalive); i { + switch v := v.(*Hcl); i { case 0: return &v.state case 1: @@ -40938,7 +41104,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[228].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PaginationRequest); i { + switch v := v.(*WaypointHclFmtRequest); i { case 0: return &v.state case 1: @@ -40950,7 +41116,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[229].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PaginationResponse); i { + switch v := v.(*WaypointHclFmtResponse); i { case 0: return &v.state case 1: @@ -40962,7 +41128,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[230].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SortingRequest); i { + switch v := v.(*InlineKeepalive); i { case 0: return &v.state case 1: @@ -40974,7 +41140,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[231].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListProjectsRequest); i { + switch v := v.(*PaginationRequest); i { case 0: return &v.state case 1: @@ -40986,7 +41152,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[232].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListProjectsResponse); i { + switch v := v.(*PaginationResponse); i { case 0: return &v.state case 1: @@ -40998,7 +41164,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[233].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ProjectBundle); i { + switch v := v.(*SortingRequest); i { case 0: return &v.state case 1: @@ -41010,7 +41176,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[234].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_GetProjectRequest); i { + switch v := v.(*UI_ListProjectsRequest); i { case 0: return &v.state case 1: @@ -41022,7 +41188,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[235].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_GetProjectResponse); i { + switch v := v.(*UI_ListProjectsResponse); i { case 0: return &v.state case 1: @@ -41034,7 +41200,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[236].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListPipelinesRequest); i { + switch v := v.(*UI_ProjectBundle); i { case 0: return &v.state case 1: @@ -41046,7 +41212,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[237].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListPipelinesResponse); i { + switch v := v.(*UI_GetProjectRequest); i { case 0: return &v.state case 1: @@ -41058,7 +41224,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[238].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListPipelineRunsRequest); i { + switch v := v.(*UI_GetProjectResponse); i { case 0: return &v.state case 1: @@ -41070,7 +41236,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[239].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListPipelineRunsResponse); i { + switch v := v.(*UI_ListPipelinesRequest); i { case 0: return &v.state case 1: @@ -41082,7 +41248,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[240].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_GetPipelineRunRequest); i { + switch v := v.(*UI_ListPipelinesResponse); i { case 0: return &v.state case 1: @@ -41094,7 +41260,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[241].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_GetPipelineRunResponse); i { + switch v := v.(*UI_ListPipelineRunsRequest); i { case 0: return &v.state case 1: @@ -41106,7 +41272,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[242].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_PipelineBundle); i { + switch v := v.(*UI_ListPipelineRunsResponse); i { case 0: return &v.state case 1: @@ -41118,7 +41284,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[243].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_PipelineRunBundle); i { + switch v := v.(*UI_GetPipelineRunRequest); i { case 0: return &v.state case 1: @@ -41130,7 +41296,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[244].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_PipelineRunTreeNode); i { + switch v := v.(*UI_GetPipelineRunResponse); i { case 0: return &v.state case 1: @@ -41142,7 +41308,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[245].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListDeploymentsRequest); i { + switch v := v.(*UI_PipelineBundle); i { case 0: return &v.state case 1: @@ -41154,7 +41320,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[246].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListDeploymentsResponse); i { + switch v := v.(*UI_PipelineRunBundle); i { case 0: return &v.state case 1: @@ -41166,7 +41332,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[247].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_GetDeploymentRequest); i { + switch v := v.(*UI_PipelineRunTreeNode); i { case 0: return &v.state case 1: @@ -41178,7 +41344,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[248].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_GetDeploymentResponse); i { + switch v := v.(*UI_ListDeploymentsRequest); i { case 0: return &v.state case 1: @@ -41190,7 +41356,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[249].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_DeploymentBundle); i { + switch v := v.(*UI_ListDeploymentsResponse); i { case 0: return &v.state case 1: @@ -41202,7 +41368,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[250].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListReleasesRequest); i { + switch v := v.(*UI_GetDeploymentRequest); i { case 0: return &v.state case 1: @@ -41214,7 +41380,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[251].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListReleasesResponse); i { + switch v := v.(*UI_GetDeploymentResponse); i { case 0: return &v.state case 1: @@ -41226,7 +41392,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[252].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ReleaseBundle); i { + switch v := v.(*UI_DeploymentBundle); i { case 0: return &v.state case 1: @@ -41238,7 +41404,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[253].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListEventsRequest); i { + switch v := v.(*UI_ListReleasesRequest); i { case 0: return &v.state case 1: @@ -41250,7 +41416,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[254].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListEventsResponse); i { + switch v := v.(*UI_ListReleasesResponse); i { case 0: return &v.state case 1: @@ -41262,7 +41428,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[255].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_EventBundle); i { + switch v := v.(*UI_ReleaseBundle); i { case 0: return &v.state case 1: @@ -41274,7 +41440,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[256].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_EventBuild); i { + switch v := v.(*UI_ListEventsRequest); i { case 0: return &v.state case 1: @@ -41286,7 +41452,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[257].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_EventDeployment); i { + switch v := v.(*UI_ListEventsResponse); i { case 0: return &v.state case 1: @@ -41298,7 +41464,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[258].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_EventRelease); i { + switch v := v.(*UI_EventBundle); i { case 0: return &v.state case 1: @@ -41310,7 +41476,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[259].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_ListEventSchemasResponse); i { + switch v := v.(*UI_EventBuild); i { case 0: return &v.state case 1: @@ -41322,7 +41488,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[260].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UI_PipelineRunTreeNode_Children); i { + switch v := v.(*UI_EventDeployment); i { case 0: return &v.state case 1: @@ -41334,7 +41500,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[261].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*VersionInfo_ProtocolVersion); i { + switch v := v.(*UI_EventRelease); i { case 0: return &v.state case 1: @@ -41346,7 +41512,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[262].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Variable_File); i { + switch v := v.(*UI_ListEventSchemasResponse); i { case 0: return &v.state case 1: @@ -41358,7 +41524,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[263].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Variable_VCS); i { + switch v := v.(*UI_PipelineRunTreeNode_Children); i { case 0: return &v.state case 1: @@ -41370,7 +41536,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[264].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Variable_HclPos); i { + switch v := v.(*VersionInfo_ProtocolVersion); i { case 0: return &v.state case 1: @@ -41382,7 +41548,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[265].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Variable_HclRange); i { + switch v := v.(*Variable_File); i { case 0: return &v.state case 1: @@ -41394,7 +41560,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[266].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Variable_FinalValue); i { + switch v := v.(*Variable_VCS); i { case 0: return &v.state case 1: @@ -41406,7 +41572,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[267].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_Poll); i { + switch v := v.(*Variable_HclPos); i { case 0: return &v.state case 1: @@ -41418,7 +41584,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[268].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Project_AppStatusPoll); i { + switch v := v.(*Variable_HclRange); i { case 0: return &v.state case 1: @@ -41430,7 +41596,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[269].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Workspace_Project); i { + switch v := v.(*Variable_FinalValue); i { case 0: return &v.state case 1: @@ -41442,7 +41608,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[270].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Workspace_Application); i { + switch v := v.(*Project_Poll); i { case 0: return &v.state case 1: @@ -41454,7 +41620,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[271].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*User_Link); i { + switch v := v.(*Project_AppStatusPoll); i { case 0: return &v.state case 1: @@ -41466,7 +41632,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[272].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*User_Link_OIDC); i { + switch v := v.(*Workspace_Project); i { case 0: return &v.state case 1: @@ -41478,7 +41644,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[273].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Global); i { + switch v := v.(*Workspace_Application); i { case 0: return &v.state case 1: @@ -41490,7 +41656,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[274].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Application); i { + switch v := v.(*User_Link); i { case 0: return &v.state case 1: @@ -41502,7 +41668,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[275].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Project); i { + switch v := v.(*User_Link_OIDC); i { case 0: return &v.state case 1: @@ -41514,7 +41680,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[276].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Workspace); i { + switch v := v.(*Ref_Global); i { case 0: return &v.state case 1: @@ -41526,7 +41692,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[277].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Deployment); i { + switch v := v.(*Ref_Application); i { case 0: return &v.state case 1: @@ -41538,7 +41704,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[278].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Artifact); i { + switch v := v.(*Ref_Project); i { case 0: return &v.state case 1: @@ -41550,7 +41716,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[279].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Component); i { + switch v := v.(*Ref_Workspace); i { case 0: return &v.state case 1: @@ -41562,7 +41728,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[280].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Operation); i { + switch v := v.(*Ref_Deployment); i { case 0: return &v.state case 1: @@ -41574,7 +41740,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[281].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_OperationSeq); i { + switch v := v.(*Ref_Artifact); i { case 0: return &v.state case 1: @@ -41586,7 +41752,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[282].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Runner); i { + switch v := v.(*Ref_Component); i { case 0: return &v.state case 1: @@ -41598,7 +41764,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[283].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_RunnerAny); i { + switch v := v.(*Ref_Operation); i { case 0: return &v.state case 1: @@ -41610,7 +41776,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[284].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_RunnerId); i { + switch v := v.(*Ref_OperationSeq); i { case 0: return &v.state case 1: @@ -41622,7 +41788,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[285].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_RunnerLabels); i { + switch v := v.(*Ref_Runner); i { case 0: return &v.state case 1: @@ -41634,7 +41800,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[286].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_User); i { + switch v := v.(*Ref_RunnerAny); i { case 0: return &v.state case 1: @@ -41646,7 +41812,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[287].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_UserId); i { + switch v := v.(*Ref_RunnerId); i { case 0: return &v.state case 1: @@ -41658,7 +41824,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[288].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_UserUsername); i { + switch v := v.(*Ref_RunnerLabels); i { case 0: return &v.state case 1: @@ -41670,7 +41836,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[289].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_AuthMethod); i { + switch v := v.(*Ref_User); i { case 0: return &v.state case 1: @@ -41682,7 +41848,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[290].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_DeclaredResource); i { + switch v := v.(*Ref_UserId); i { case 0: return &v.state case 1: @@ -41694,7 +41860,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[291].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_OnDemandRunnerConfig); i { + switch v := v.(*Ref_UserUsername); i { case 0: return &v.state case 1: @@ -41706,7 +41872,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[292].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Trigger); i { + switch v := v.(*Ref_AuthMethod); i { case 0: return &v.state case 1: @@ -41718,7 +41884,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[293].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Job); i { + switch v := v.(*Ref_DeclaredResource); i { case 0: return &v.state case 1: @@ -41730,7 +41896,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[294].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Task); i { + switch v := v.(*Ref_OnDemandRunnerConfig); i { case 0: return &v.state case 1: @@ -41742,7 +41908,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[295].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_Pipeline); i { + switch v := v.(*Ref_Trigger); i { case 0: return &v.state case 1: @@ -41754,7 +41920,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[296].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_PipelineOwner); i { + switch v := v.(*Ref_Job); i { case 0: return &v.state case 1: @@ -41766,7 +41932,7 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[297].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_PipelineStep); i { + switch v := v.(*Ref_Task); i { case 0: return &v.state case 1: @@ -41778,7 +41944,19 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[298].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Ref_ProjectTemplate); i { + switch v := v.(*Ref_Pipeline); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_pkg_server_proto_server_proto_msgTypes[299].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Ref_PipelineOwner); i { case 0: return &v.state case 1: @@ -41790,6 +41968,30 @@ func file_pkg_server_proto_server_proto_init() { } } file_pkg_server_proto_server_proto_msgTypes[300].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Ref_PipelineStep); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_pkg_server_proto_server_proto_msgTypes[301].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*Ref_ProjectTemplate); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_pkg_server_proto_server_proto_msgTypes[303].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StatusFilter_Filter); i { case 0: return &v.state @@ -41801,7 +42003,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[302].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[305].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AuthMethod_OIDC); i { case 0: return &v.state @@ -41813,7 +42015,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[305].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[308].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_TaskOverride); i { case 0: return &v.state @@ -41825,7 +42027,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[309].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[312].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Result); i { case 0: return &v.state @@ -41837,7 +42039,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[310].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[313].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Config); i { case 0: return &v.state @@ -41849,7 +42051,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[311].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[314].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DataSource); i { case 0: return &v.state @@ -41861,7 +42063,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[312].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[315].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Local); i { case 0: return &v.state @@ -41873,7 +42075,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[313].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[316].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Remote); i { case 0: return &v.state @@ -41885,7 +42087,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[314].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[317].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Git); i { case 0: return &v.state @@ -41897,7 +42099,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[315].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[318].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Noop); i { case 0: return &v.state @@ -41909,7 +42111,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[316].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[319].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_UpOp); i { case 0: return &v.state @@ -41921,7 +42123,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[317].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[320].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_UpResult); i { case 0: return &v.state @@ -41933,7 +42135,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[318].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[321].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ValidateOp); i { case 0: return &v.state @@ -41945,7 +42147,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[319].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[322].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ValidateResult); i { case 0: return &v.state @@ -41957,7 +42159,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[320].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[323].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_AuthOp); i { case 0: return &v.state @@ -41969,7 +42171,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[321].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[324].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_AuthResult); i { case 0: return &v.state @@ -41981,7 +42183,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[322].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[325].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_BuildOp); i { case 0: return &v.state @@ -41993,7 +42195,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[323].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[326].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_BuildResult); i { case 0: return &v.state @@ -42005,7 +42207,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[324].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[327].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_PushOp); i { case 0: return &v.state @@ -42017,7 +42219,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[325].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[328].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_PushResult); i { case 0: return &v.state @@ -42029,7 +42231,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[326].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[329].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DeployOp); i { case 0: return &v.state @@ -42041,7 +42243,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[327].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[330].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DeployResult); i { case 0: return &v.state @@ -42053,7 +42255,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[328].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[331].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ExecOp); i { case 0: return &v.state @@ -42065,7 +42267,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[329].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[332].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ExecResult); i { case 0: return &v.state @@ -42077,7 +42279,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[330].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[333].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_LogsOp); i { case 0: return &v.state @@ -42089,7 +42291,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[331].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[334].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DestroyOp); i { case 0: return &v.state @@ -42101,7 +42303,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[332].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[335].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ReleaseOp); i { case 0: return &v.state @@ -42113,7 +42315,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[333].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[336].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ReleaseResult); i { case 0: return &v.state @@ -42125,7 +42327,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[334].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[337].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_TaskPluginParams); i { case 0: return &v.state @@ -42137,7 +42339,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[335].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[338].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_StartTaskLaunchOp); i { case 0: return &v.state @@ -42149,7 +42351,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[336].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[339].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_StartTaskResult); i { case 0: return &v.state @@ -42161,7 +42363,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[337].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[340].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_StopTaskLaunchOp); i { case 0: return &v.state @@ -42173,7 +42375,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[338].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[341].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_WatchTaskOp); i { case 0: return &v.state @@ -42185,7 +42387,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[339].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[342].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_WatchTaskResult); i { case 0: return &v.state @@ -42197,7 +42399,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[340].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[343].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_StatusReportOp); i { case 0: return &v.state @@ -42209,7 +42411,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[341].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[344].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_StatusReportResult); i { case 0: return &v.state @@ -42221,7 +42423,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[342].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[345].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DocsOp); i { case 0: return &v.state @@ -42233,7 +42435,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[343].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[346].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DocsResult); i { case 0: return &v.state @@ -42245,7 +42447,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[344].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[347].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ConfigSyncOp); i { case 0: return &v.state @@ -42257,7 +42459,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[345].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[348].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ConfigSyncResult); i { case 0: return &v.state @@ -42269,7 +42471,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[346].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[349].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_PipelineConfigSyncResult); i { case 0: return &v.state @@ -42281,7 +42483,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[347].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[350].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_ProjectDestroyResult); i { case 0: return &v.state @@ -42293,7 +42495,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[348].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[351].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_PollOp); i { case 0: return &v.state @@ -42305,7 +42507,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[349].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[352].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_PollResult); i { case 0: return &v.state @@ -42317,7 +42519,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[350].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[353].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_InitOp); i { case 0: return &v.state @@ -42329,7 +42531,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[351].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[354].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_InitResult); i { case 0: return &v.state @@ -42341,7 +42543,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[352].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[355].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_PipelineStepOp); i { case 0: return &v.state @@ -42353,7 +42555,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[353].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[356].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DestroyProjectOp); i { case 0: return &v.state @@ -42365,7 +42567,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[354].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[357].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_PipelineStepResult); i { case 0: return &v.state @@ -42377,7 +42579,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[355].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[358].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_QueueProjectOp); i { case 0: return &v.state @@ -42389,7 +42591,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[356].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[359].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_QueueProjectResult); i { case 0: return &v.state @@ -42401,7 +42603,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[357].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[360].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DataSource_Ref); i { case 0: return &v.state @@ -42413,7 +42615,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[358].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[361].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Git_Basic); i { case 0: return &v.state @@ -42425,7 +42627,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[359].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[362].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Git_SSH); i { case 0: return &v.state @@ -42437,7 +42639,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[360].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[363].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_Git_Ref); i { case 0: return &v.state @@ -42449,7 +42651,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[361].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[364].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_AuthResult_Result); i { case 0: return &v.state @@ -42461,7 +42663,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[362].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[365].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_DocsResult_Result); i { case 0: return &v.state @@ -42473,7 +42675,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[364].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[367].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Job_QueueProjectResult_Application); i { case 0: return &v.state @@ -42485,7 +42687,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[366].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[369].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Documentation_Field); i { case 0: return &v.state @@ -42497,7 +42699,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[367].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[370].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Documentation_Mapper); i { case 0: return &v.state @@ -42509,7 +42711,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[368].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[371].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Open); i { case 0: return &v.state @@ -42521,7 +42723,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[369].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[372].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_State); i { case 0: return &v.state @@ -42533,7 +42735,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[370].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[373].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_JobChange); i { case 0: return &v.state @@ -42545,7 +42747,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[371].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[374].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Download); i { case 0: return &v.state @@ -42557,7 +42759,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[372].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[375].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal); i { case 0: return &v.state @@ -42569,7 +42771,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[373].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[376].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Error); i { case 0: return &v.state @@ -42581,7 +42783,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[374].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[377].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Complete); i { case 0: return &v.state @@ -42593,7 +42795,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[375].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[378].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event); i { case 0: return &v.state @@ -42605,7 +42807,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[376].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[379].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_Status); i { case 0: return &v.state @@ -42617,7 +42819,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[377].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[380].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_Line); i { case 0: return &v.state @@ -42629,7 +42831,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[378].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[381].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_Raw); i { case 0: return &v.state @@ -42641,7 +42843,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[379].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[382].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_NamedValue); i { case 0: return &v.state @@ -42653,7 +42855,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[380].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[383].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_NamedValues); i { case 0: return &v.state @@ -42665,7 +42867,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[381].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[384].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_TableEntry); i { case 0: return &v.state @@ -42677,7 +42879,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[382].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[385].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_TableRow); i { case 0: return &v.state @@ -42689,7 +42891,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[383].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[386].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_Table); i { case 0: return &v.state @@ -42701,7 +42903,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[384].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[387].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_StepGroup); i { case 0: return &v.state @@ -42713,7 +42915,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[385].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[388].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetJobStreamResponse_Terminal_Event_Step); i { case 0: return &v.state @@ -42725,7 +42927,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[387].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[390].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Runner_ODR); i { case 0: return &v.state @@ -42737,7 +42939,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[388].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[391].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Runner_Local); i { case 0: return &v.state @@ -42749,7 +42951,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[389].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[392].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Runner_Remote); i { case 0: return &v.state @@ -42761,7 +42963,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[390].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[393].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerConfigRequest_Open); i { case 0: return &v.state @@ -42773,7 +42975,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[391].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[394].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamRequest_Request); i { case 0: return &v.state @@ -42785,7 +42987,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[392].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[395].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamRequest_Ack); i { case 0: return &v.state @@ -42797,7 +42999,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[393].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[396].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamRequest_Complete); i { case 0: return &v.state @@ -42809,7 +43011,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[394].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[397].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamRequest_Error); i { case 0: return &v.state @@ -42821,7 +43023,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[395].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[398].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamRequest_Heartbeat); i { case 0: return &v.state @@ -42833,7 +43035,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[396].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[399].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamRequest_ConfigLoad); i { case 0: return &v.state @@ -42845,7 +43047,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[397].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[400].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamRequest_VariableValuesSet); i { case 0: return &v.state @@ -42857,7 +43059,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[399].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[402].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamResponse_JobAssignment); i { case 0: return &v.state @@ -42869,7 +43071,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[400].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[403].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RunnerJobStreamResponse_JobCancel); i { case 0: return &v.state @@ -42881,7 +43083,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[401].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[404].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ServerConfig_AdvertiseAddr); i { case 0: return &v.state @@ -42893,7 +43095,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[403].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[406].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Hostname_Target); i { case 0: return &v.state @@ -42905,7 +43107,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[404].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[407].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Hostname_TargetApp); i { case 0: return &v.state @@ -42917,7 +43119,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[406].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[409].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Build_Preload); i { case 0: return &v.state @@ -42929,7 +43131,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[409].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[412].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PushedArtifact_Preload); i { case 0: return &v.state @@ -42941,7 +43143,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[411].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[414].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Deployment_Preload); i { case 0: return &v.state @@ -42953,7 +43155,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[412].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[415].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ListInstancesRequest_Application); i { case 0: return &v.state @@ -42965,7 +43167,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[414].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[417].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Release_Preload); i { case 0: return &v.state @@ -42977,7 +43179,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[415].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[418].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StatusReport_Resource); i { case 0: return &v.state @@ -42989,7 +43191,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[416].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[419].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StatusReport_Health); i { case 0: return &v.state @@ -43001,7 +43203,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[417].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[420].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetLogStreamRequest_Application); i { case 0: return &v.state @@ -43013,7 +43215,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[418].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[421].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*LogBatch_Entry); i { case 0: return &v.state @@ -43025,7 +43227,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[419].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[422].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigVar_DynamicVal); i { case 0: return &v.state @@ -43037,7 +43239,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[420].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[423].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ConfigVar_Target); i { case 0: return &v.state @@ -43049,7 +43251,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[424].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[427].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExecStreamRequest_Start); i { case 0: return &v.state @@ -43061,7 +43263,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[425].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[428].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExecStreamRequest_Input); i { case 0: return &v.state @@ -43073,7 +43275,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[426].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[429].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExecStreamRequest_PTY); i { case 0: return &v.state @@ -43085,7 +43287,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[427].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[430].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExecStreamRequest_WindowSize); i { case 0: return &v.state @@ -43097,7 +43299,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[428].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[431].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExecStreamResponse_Open); i { case 0: return &v.state @@ -43109,7 +43311,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[429].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[432].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExecStreamResponse_Exit); i { case 0: return &v.state @@ -43121,7 +43323,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[430].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[433].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExecStreamResponse_Output); i { case 0: return &v.state @@ -43133,7 +43335,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[431].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[434].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EntrypointConfig_Exec); i { case 0: return &v.state @@ -43145,7 +43347,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[432].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[435].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EntrypointConfig_URLService); i { case 0: return &v.state @@ -43157,7 +43359,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[433].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[436].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EntrypointConfig_DeploymentInfo); i { case 0: return &v.state @@ -43169,7 +43371,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[435].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[438].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EntrypointExecRequest_Open); i { case 0: return &v.state @@ -43181,7 +43383,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[436].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[439].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EntrypointExecRequest_Exit); i { case 0: return &v.state @@ -43193,7 +43395,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[437].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[440].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EntrypointExecRequest_Output); i { case 0: return &v.state @@ -43205,7 +43407,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[438].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[441].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EntrypointExecRequest_Error); i { case 0: return &v.state @@ -43217,7 +43419,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[440].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[443].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pipeline_Step); i { case 0: return &v.state @@ -43229,7 +43431,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[441].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[444].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pipeline_Step_Exec); i { case 0: return &v.state @@ -43241,7 +43443,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[442].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[445].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pipeline_Step_Build); i { case 0: return &v.state @@ -43253,7 +43455,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[443].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[446].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pipeline_Step_Deploy); i { case 0: return &v.state @@ -43265,7 +43467,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[444].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[447].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pipeline_Step_Release); i { case 0: return &v.state @@ -43277,7 +43479,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[445].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[448].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pipeline_Step_Up); i { case 0: return &v.state @@ -43289,7 +43491,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[446].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[449].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pipeline_Step_Pipeline); i { case 0: return &v.state @@ -43301,7 +43503,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[447].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[450].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetPipelineResponse_Graph); i { case 0: return &v.state @@ -43313,7 +43515,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[450].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[453].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProjectTemplate_WaypointProject); i { case 0: return &v.state @@ -43325,7 +43527,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[451].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[454].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProjectTemplate_TerraformNocodeModule); i { case 0: return &v.state @@ -43337,7 +43539,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[453].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[456].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*TokenTransport_OAuthCredentials); i { case 0: return &v.state @@ -43349,7 +43551,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[454].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[457].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Token_Login); i { case 0: return &v.state @@ -43361,7 +43563,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[455].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[458].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Token_Runner); i { case 0: return &v.state @@ -43373,7 +43575,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[456].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[459].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Token_Invite); i { case 0: return &v.state @@ -43385,7 +43587,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[457].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[460].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Token_Entrypoint); i { case 0: return &v.state @@ -43397,7 +43599,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[458].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[461].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Token_Trigger); i { case 0: return &v.state @@ -43409,7 +43611,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[459].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[462].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Token_Invite_Signup); i { case 0: return &v.state @@ -43421,7 +43623,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[461].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[464].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateSnapshotResponse_Open); i { case 0: return &v.state @@ -43433,7 +43635,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[462].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[465].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RestoreSnapshotRequest_Open); i { case 0: return &v.state @@ -43445,7 +43647,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[463].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[466].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Snapshot_Header); i { case 0: return &v.state @@ -43457,7 +43659,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[464].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[467].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Snapshot_Trailer); i { case 0: return &v.state @@ -43469,7 +43671,7 @@ func file_pkg_server_proto_server_proto_init() { return nil } } - file_pkg_server_proto_server_proto_msgTypes[465].Exporter = func(v interface{}, i int) interface{} { + file_pkg_server_proto_server_proto_msgTypes[468].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Snapshot_BoltChunk); i { case 0: return &v.state @@ -43604,135 +43806,135 @@ func file_pkg_server_proto_server_proto_init() { (*ConfigVar_Project)(nil), (*ConfigVar_Runner)(nil), } - file_pkg_server_proto_server_proto_msgTypes[166].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[168].OneofWrappers = []interface{}{ (*ConfigGetRequest_Application)(nil), (*ConfigGetRequest_Project)(nil), } - file_pkg_server_proto_server_proto_msgTypes[168].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[170].OneofWrappers = []interface{}{ (*ConfigSource_Global)(nil), (*ConfigSource_Project)(nil), (*ConfigSource_Application)(nil), } - file_pkg_server_proto_server_proto_msgTypes[170].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[173].OneofWrappers = []interface{}{ (*GetConfigSourceRequest_Global)(nil), (*GetConfigSourceRequest_Project)(nil), (*GetConfigSourceRequest_Application)(nil), } - file_pkg_server_proto_server_proto_msgTypes[172].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[175].OneofWrappers = []interface{}{ (*ExecStreamRequest_Start_)(nil), (*ExecStreamRequest_Input_)(nil), (*ExecStreamRequest_Winch)(nil), (*ExecStreamRequest_InputEof)(nil), } - file_pkg_server_proto_server_proto_msgTypes[173].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[176].OneofWrappers = []interface{}{ (*ExecStreamResponse_Open_)(nil), (*ExecStreamResponse_Output_)(nil), (*ExecStreamResponse_Exit_)(nil), } - file_pkg_server_proto_server_proto_msgTypes[178].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[181].OneofWrappers = []interface{}{ (*EntrypointExecRequest_Open_)(nil), (*EntrypointExecRequest_Exit_)(nil), (*EntrypointExecRequest_Output_)(nil), (*EntrypointExecRequest_Error_)(nil), } - file_pkg_server_proto_server_proto_msgTypes[179].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[182].OneofWrappers = []interface{}{ (*EntrypointExecResponse_Input)(nil), (*EntrypointExecResponse_InputEof)(nil), (*EntrypointExecResponse_Winch)(nil), (*EntrypointExecResponse_Opened)(nil), } - file_pkg_server_proto_server_proto_msgTypes[180].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[183].OneofWrappers = []interface{}{ (*Pipeline_Project)(nil), } - file_pkg_server_proto_server_proto_msgTypes[211].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[214].OneofWrappers = []interface{}{ (*TokenTransport_OauthCreds)(nil), } - file_pkg_server_proto_server_proto_msgTypes[212].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[215].OneofWrappers = []interface{}{ (*Token_Login_)(nil), (*Token_Runner_)(nil), (*Token_Invite_)(nil), (*Token_Trigger_)(nil), } - file_pkg_server_proto_server_proto_msgTypes[221].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[224].OneofWrappers = []interface{}{ (*CreateSnapshotResponse_Open_)(nil), (*CreateSnapshotResponse_Chunk)(nil), } - file_pkg_server_proto_server_proto_msgTypes[222].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[225].OneofWrappers = []interface{}{ (*RestoreSnapshotRequest_Open_)(nil), (*RestoreSnapshotRequest_Chunk)(nil), } - file_pkg_server_proto_server_proto_msgTypes[266].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[269].OneofWrappers = []interface{}{ (*Variable_FinalValue_Sensitive)(nil), (*Variable_FinalValue_Str)(nil), (*Variable_FinalValue_Bool)(nil), (*Variable_FinalValue_Num)(nil), (*Variable_FinalValue_Hcl)(nil), } - file_pkg_server_proto_server_proto_msgTypes[271].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[274].OneofWrappers = []interface{}{ (*User_Link_Oidc)(nil), } - file_pkg_server_proto_server_proto_msgTypes[277].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[280].OneofWrappers = []interface{}{ (*Ref_Deployment_Latest)(nil), (*Ref_Deployment_Sequence)(nil), } - file_pkg_server_proto_server_proto_msgTypes[278].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[281].OneofWrappers = []interface{}{ (*Ref_Artifact_Latest)(nil), (*Ref_Artifact_Sequence)(nil), } - file_pkg_server_proto_server_proto_msgTypes[280].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[283].OneofWrappers = []interface{}{ (*Ref_Operation_Id)(nil), (*Ref_Operation_Sequence)(nil), } - file_pkg_server_proto_server_proto_msgTypes[282].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[285].OneofWrappers = []interface{}{ (*Ref_Runner_Any)(nil), (*Ref_Runner_Id)(nil), (*Ref_Runner_Labels)(nil), } - file_pkg_server_proto_server_proto_msgTypes[286].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[289].OneofWrappers = []interface{}{ (*Ref_User_Id)(nil), (*Ref_User_Username)(nil), } - file_pkg_server_proto_server_proto_msgTypes[294].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[297].OneofWrappers = []interface{}{ (*Ref_Task_Id)(nil), (*Ref_Task_JobId)(nil), } - file_pkg_server_proto_server_proto_msgTypes[295].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[298].OneofWrappers = []interface{}{ (*Ref_Pipeline_Id)(nil), (*Ref_Pipeline_Owner)(nil), } - file_pkg_server_proto_server_proto_msgTypes[298].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[301].OneofWrappers = []interface{}{ (*Ref_ProjectTemplate_Id)(nil), (*Ref_ProjectTemplate_Name)(nil), } - file_pkg_server_proto_server_proto_msgTypes[300].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[303].OneofWrappers = []interface{}{ (*StatusFilter_Filter_State)(nil), } - file_pkg_server_proto_server_proto_msgTypes[311].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[314].OneofWrappers = []interface{}{ (*Job_DataSource_Local)(nil), (*Job_DataSource_Git)(nil), (*Job_DataSource_Remote)(nil), } - file_pkg_server_proto_server_proto_msgTypes[314].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[317].OneofWrappers = []interface{}{ (*Job_Git_Basic_)(nil), (*Job_Git_Ssh)(nil), } - file_pkg_server_proto_server_proto_msgTypes[331].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[334].OneofWrappers = []interface{}{ (*Job_DestroyOp_Workspace)(nil), (*Job_DestroyOp_Deployment)(nil), } - file_pkg_server_proto_server_proto_msgTypes[337].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[340].OneofWrappers = []interface{}{ (*Job_StopTaskLaunchOp_Direct)(nil), (*Job_StopTaskLaunchOp_StartJobId)(nil), } - file_pkg_server_proto_server_proto_msgTypes[340].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[343].OneofWrappers = []interface{}{ (*Job_StatusReportOp_Deployment)(nil), (*Job_StatusReportOp_Release)(nil), } - file_pkg_server_proto_server_proto_msgTypes[357].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[360].OneofWrappers = []interface{}{ (*Job_DataSource_Ref_Unknown)(nil), (*Job_DataSource_Ref_Git)(nil), } - file_pkg_server_proto_server_proto_msgTypes[375].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[378].OneofWrappers = []interface{}{ (*GetJobStreamResponse_Terminal_Event_Line_)(nil), (*GetJobStreamResponse_Terminal_Event_Status_)(nil), (*GetJobStreamResponse_Terminal_Event_NamedValues_)(nil), @@ -43741,19 +43943,19 @@ func file_pkg_server_proto_server_proto_init() { (*GetJobStreamResponse_Terminal_Event_StepGroup_)(nil), (*GetJobStreamResponse_Terminal_Event_Step_)(nil), } - file_pkg_server_proto_server_proto_msgTypes[403].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[406].OneofWrappers = []interface{}{ (*Hostname_Target_Application)(nil), } - file_pkg_server_proto_server_proto_msgTypes[420].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[423].OneofWrappers = []interface{}{ (*ConfigVar_Target_Global)(nil), (*ConfigVar_Target_Project)(nil), (*ConfigVar_Target_Application)(nil), } - file_pkg_server_proto_server_proto_msgTypes[424].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[427].OneofWrappers = []interface{}{ (*ExecStreamRequest_Start_DeploymentId)(nil), (*ExecStreamRequest_Start_InstanceId)(nil), } - file_pkg_server_proto_server_proto_msgTypes[440].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[443].OneofWrappers = []interface{}{ (*Pipeline_Step_Exec_)(nil), (*Pipeline_Step_Build_)(nil), (*Pipeline_Step_Deploy_)(nil), @@ -43761,7 +43963,7 @@ func file_pkg_server_proto_server_proto_init() { (*Pipeline_Step_Up_)(nil), (*Pipeline_Step_Pipeline_)(nil), } - file_pkg_server_proto_server_proto_msgTypes[464].OneofWrappers = []interface{}{ + file_pkg_server_proto_server_proto_msgTypes[467].OneofWrappers = []interface{}{ (*Snapshot_Trailer_Sha256)(nil), } type x struct{} @@ -43770,7 +43972,7 @@ func file_pkg_server_proto_server_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_pkg_server_proto_server_proto_rawDesc, NumEnums: 29, - NumMessages: 467, + NumMessages: 470, NumExtensions: 0, NumServices: 1, }, diff --git a/pkg/server/gen/server.pb.json.go b/pkg/server/gen/server.pb.json.go index 3411caf3602..b67f4b484b6 100644 --- a/pkg/server/gen/server.pb.json.go +++ b/pkg/server/gen/server.pb.json.go @@ -5431,6 +5431,38 @@ func (msg *ConfigSetResponse) UnmarshalJSON(b []byte) error { }.Unmarshal(b, msg) } +// MarshalJSON implements json.Marshaler +func (msg *ConfigDeleteRequest) MarshalJSON() ([]byte, error) { + return protojson.MarshalOptions{ + UseEnumNumbers: false, + EmitUnpopulated: false, + UseProtoNames: false, + }.Marshal(msg) +} + +// UnmarshalJSON implements json.Unmarshaler +func (msg *ConfigDeleteRequest) UnmarshalJSON(b []byte) error { + return protojson.UnmarshalOptions{ + DiscardUnknown: false, + }.Unmarshal(b, msg) +} + +// MarshalJSON implements json.Marshaler +func (msg *ConfigDeleteResponse) MarshalJSON() ([]byte, error) { + return protojson.MarshalOptions{ + UseEnumNumbers: false, + EmitUnpopulated: false, + UseProtoNames: false, + }.Marshal(msg) +} + +// UnmarshalJSON implements json.Unmarshaler +func (msg *ConfigDeleteResponse) UnmarshalJSON(b []byte) error { + return protojson.UnmarshalOptions{ + DiscardUnknown: false, + }.Unmarshal(b, msg) +} + // MarshalJSON implements json.Marshaler func (msg *ConfigGetRequest) MarshalJSON() ([]byte, error) { return protojson.MarshalOptions{ @@ -5495,6 +5527,22 @@ func (msg *SetConfigSourceRequest) UnmarshalJSON(b []byte) error { }.Unmarshal(b, msg) } +// MarshalJSON implements json.Marshaler +func (msg *DeleteConfigSourceRequest) MarshalJSON() ([]byte, error) { + return protojson.MarshalOptions{ + UseEnumNumbers: false, + EmitUnpopulated: false, + UseProtoNames: false, + }.Marshal(msg) +} + +// UnmarshalJSON implements json.Unmarshaler +func (msg *DeleteConfigSourceRequest) UnmarshalJSON(b []byte) error { + return protojson.UnmarshalOptions{ + DiscardUnknown: false, + }.Unmarshal(b, msg) +} + // MarshalJSON implements json.Marshaler func (msg *GetConfigSourceRequest) MarshalJSON() ([]byte, error) { return protojson.MarshalOptions{ diff --git a/pkg/server/gen/server.swagger.json b/pkg/server/gen/server.swagger.json index 4838bee1bd2..1ca72c960ef 100644 --- a/pkg/server/gen/server.swagger.json +++ b/pkg/server/gen/server.swagger.json @@ -7683,6 +7683,9 @@ "default": "UNKNOWN", "description": "Supported component types, the values here MUST match the enum values\nin the Go sdk/component package exactly. A test in internal/server\nvalidates this." }, + "hashicorp.waypoint.ConfigDeleteResponse": { + "type": "object" + }, "hashicorp.waypoint.ConfigGetResponse": { "type": "object", "properties": { diff --git a/pkg/server/gen/server_grpc.pb.go b/pkg/server/gen/server_grpc.pb.go index fdcea14893a..11d7539a6bc 100644 --- a/pkg/server/gen/server_grpc.pb.go +++ b/pkg/server/gen/server_grpc.pb.go @@ -130,6 +130,8 @@ type WaypointClient interface { StartExecStream(ctx context.Context, opts ...grpc.CallOption) (Waypoint_StartExecStreamClient, error) // Set one or more configuration variables for applications or runners. SetConfig(ctx context.Context, in *ConfigSetRequest, opts ...grpc.CallOption) (*ConfigSetResponse, error) + // Delete one or more configuration variables for applications or runners. + DeleteConfig(ctx context.Context, in *ConfigDeleteRequest, opts ...grpc.CallOption) (*ConfigDeleteResponse, error) // Retrieve merged configuration values for a specific scope. You can determine // where a configuration variable was set by looking at the scope field on // each variable. @@ -137,6 +139,8 @@ type WaypointClient interface { // Set the configuration for a dynamic configuration source. If you're looking // to set application configuration, you probably want SetConfig instead. SetConfigSource(ctx context.Context, in *SetConfigSourceRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) + // Delete the configuration for a dynamic configuration source + DeleteConfigSource(ctx context.Context, in *DeleteConfigSourceRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) // Get the matching configuration source for the request. This will return // the most specific matching config source given the scope in the request. // For example, if you search for an app-specific config source and only @@ -781,6 +785,15 @@ func (c *waypointClient) SetConfig(ctx context.Context, in *ConfigSetRequest, op return out, nil } +func (c *waypointClient) DeleteConfig(ctx context.Context, in *ConfigDeleteRequest, opts ...grpc.CallOption) (*ConfigDeleteResponse, error) { + out := new(ConfigDeleteResponse) + err := c.cc.Invoke(ctx, "/hashicorp.waypoint.Waypoint/DeleteConfig", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *waypointClient) GetConfig(ctx context.Context, in *ConfigGetRequest, opts ...grpc.CallOption) (*ConfigGetResponse, error) { out := new(ConfigGetResponse) err := c.cc.Invoke(ctx, "/hashicorp.waypoint.Waypoint/GetConfig", in, out, opts...) @@ -799,6 +812,15 @@ func (c *waypointClient) SetConfigSource(ctx context.Context, in *SetConfigSourc return out, nil } +func (c *waypointClient) DeleteConfigSource(ctx context.Context, in *DeleteConfigSourceRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { + out := new(emptypb.Empty) + err := c.cc.Invoke(ctx, "/hashicorp.waypoint.Waypoint/DeleteConfigSource", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *waypointClient) GetConfigSource(ctx context.Context, in *GetConfigSourceRequest, opts ...grpc.CallOption) (*GetConfigSourceResponse, error) { out := new(GetConfigSourceResponse) err := c.cc.Invoke(ctx, "/hashicorp.waypoint.Waypoint/GetConfigSource", in, out, opts...) @@ -1770,6 +1792,8 @@ type WaypointServer interface { StartExecStream(Waypoint_StartExecStreamServer) error // Set one or more configuration variables for applications or runners. SetConfig(context.Context, *ConfigSetRequest) (*ConfigSetResponse, error) + // Delete one or more configuration variables for applications or runners. + DeleteConfig(context.Context, *ConfigDeleteRequest) (*ConfigDeleteResponse, error) // Retrieve merged configuration values for a specific scope. You can determine // where a configuration variable was set by looking at the scope field on // each variable. @@ -1777,6 +1801,8 @@ type WaypointServer interface { // Set the configuration for a dynamic configuration source. If you're looking // to set application configuration, you probably want SetConfig instead. SetConfigSource(context.Context, *SetConfigSourceRequest) (*emptypb.Empty, error) + // Delete the configuration for a dynamic configuration source + DeleteConfigSource(context.Context, *DeleteConfigSourceRequest) (*emptypb.Empty, error) // Get the matching configuration source for the request. This will return // the most specific matching config source given the scope in the request. // For example, if you search for an app-specific config source and only @@ -2127,12 +2153,18 @@ func (UnimplementedWaypointServer) StartExecStream(Waypoint_StartExecStreamServe func (UnimplementedWaypointServer) SetConfig(context.Context, *ConfigSetRequest) (*ConfigSetResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method SetConfig not implemented") } +func (UnimplementedWaypointServer) DeleteConfig(context.Context, *ConfigDeleteRequest) (*ConfigDeleteResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method DeleteConfig not implemented") +} func (UnimplementedWaypointServer) GetConfig(context.Context, *ConfigGetRequest) (*ConfigGetResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetConfig not implemented") } func (UnimplementedWaypointServer) SetConfigSource(context.Context, *SetConfigSourceRequest) (*emptypb.Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method SetConfigSource not implemented") } +func (UnimplementedWaypointServer) DeleteConfigSource(context.Context, *DeleteConfigSourceRequest) (*emptypb.Empty, error) { + return nil, status.Errorf(codes.Unimplemented, "method DeleteConfigSource not implemented") +} func (UnimplementedWaypointServer) GetConfigSource(context.Context, *GetConfigSourceRequest) (*GetConfigSourceResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method GetConfigSource not implemented") } @@ -3120,6 +3152,24 @@ func _Waypoint_SetConfig_Handler(srv interface{}, ctx context.Context, dec func( return interceptor(ctx, in, info, handler) } +func _Waypoint_DeleteConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(ConfigDeleteRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(WaypointServer).DeleteConfig(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/hashicorp.waypoint.Waypoint/DeleteConfig", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(WaypointServer).DeleteConfig(ctx, req.(*ConfigDeleteRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _Waypoint_GetConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ConfigGetRequest) if err := dec(in); err != nil { @@ -3156,6 +3206,24 @@ func _Waypoint_SetConfigSource_Handler(srv interface{}, ctx context.Context, dec return interceptor(ctx, in, info, handler) } +func _Waypoint_DeleteConfigSource_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteConfigSourceRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(WaypointServer).DeleteConfigSource(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/hashicorp.waypoint.Waypoint/DeleteConfigSource", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(WaypointServer).DeleteConfigSource(ctx, req.(*DeleteConfigSourceRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _Waypoint_GetConfigSource_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetConfigSourceRequest) if err := dec(in); err != nil { @@ -4718,6 +4786,10 @@ var Waypoint_ServiceDesc = grpc.ServiceDesc{ MethodName: "SetConfig", Handler: _Waypoint_SetConfig_Handler, }, + { + MethodName: "DeleteConfig", + Handler: _Waypoint_DeleteConfig_Handler, + }, { MethodName: "GetConfig", Handler: _Waypoint_GetConfig_Handler, @@ -4726,6 +4798,10 @@ var Waypoint_ServiceDesc = grpc.ServiceDesc{ MethodName: "SetConfigSource", Handler: _Waypoint_SetConfigSource_Handler, }, + { + MethodName: "DeleteConfigSource", + Handler: _Waypoint_DeleteConfigSource_Handler, + }, { MethodName: "GetConfigSource", Handler: _Waypoint_GetConfigSource_Handler, diff --git a/pkg/server/proto/gateway.yml b/pkg/server/proto/gateway.yml index 8a868a7ac88..5ff6f653c2c 100644 --- a/pkg/server/proto/gateway.yml +++ b/pkg/server/proto/gateway.yml @@ -258,10 +258,18 @@ http: put: /project/config body: "*" + - selector: hashicorp.waypoint.Waypoint.DeleteConfig + put: /project/config + body: "*" + - selector: hashicorp.waypoint.Waypoint.SetConfigSource put: /config-source body: "*" + - selector: hashicorp.waypoint.Waypoint.DeleteConfigSource + put: /config-source + body: "*" + - selector: hashicorp.waypoint.Waypoint.GetConfigSource get: /config-source @@ -548,4 +556,4 @@ http: get: /ui/project/{application.project}/application/{application.application}/workspace/{workspace.workspace}/events - selector: hashicorp.waypoint.Waypoint.INTERNAL_AdditionalMessages - get: /ui/events/INTERNAL_AdditionalMessages \ No newline at end of file + get: /ui/events/INTERNAL_AdditionalMessages diff --git a/pkg/server/proto/server.proto b/pkg/server/proto/server.proto index c380aa6c572..1da58cbc0bf 100644 --- a/pkg/server/proto/server.proto +++ b/pkg/server/proto/server.proto @@ -175,6 +175,9 @@ service Waypoint { // Set one or more configuration variables for applications or runners. rpc SetConfig(ConfigSetRequest) returns (ConfigSetResponse); + // Delete one or more configuration variables for applications or runners. + rpc DeleteConfig(ConfigDeleteRequest) returns (ConfigDeleteResponse); + // Retrieve merged configuration values for a specific scope. You can determine // where a configuration variable was set by looking at the scope field on // each variable. @@ -184,6 +187,9 @@ service Waypoint { // to set application configuration, you probably want SetConfig instead. rpc SetConfigSource(SetConfigSourceRequest) returns (google.protobuf.Empty); + // Delete the configuration for a dynamic configuration source + rpc DeleteConfigSource(DeleteConfigSourceRequest) returns (google.protobuf.Empty); + // Get the matching configuration source for the request. This will return // the most specific matching config source given the scope in the request. // For example, if you search for an app-specific config source and only @@ -4656,6 +4662,12 @@ message ConfigSetRequest { message ConfigSetResponse {} +message ConfigDeleteRequest { + repeated ConfigVar variables = 1; +} + +message ConfigDeleteResponse {} + message ConfigGetRequest { // scope is the scoping for this config variable. This describes the // target environment requesting configuration. For runners, this may still @@ -4740,6 +4752,10 @@ message SetConfigSourceRequest { ConfigSource config_source = 1; } +message DeleteConfigSourceRequest { + ConfigSource config_source = 1; +} + message GetConfigSourceRequest { // scope is the scoping for the config source. oneof scope { diff --git a/pkg/server/ptypes/config.go b/pkg/server/ptypes/config.go index b49811eefed..835f8bed880 100644 --- a/pkg/server/ptypes/config.go +++ b/pkg/server/ptypes/config.go @@ -16,16 +16,37 @@ func ValidateSetConfigSourceRequest(v *pb.SetConfigSourceRequest) error { )) } -// ValidateGetConfigRequest -func ValidateGetConfigRequest(v *pb.ConfigGetRequest) error { +// ValidateDeleteConfigSourceRequest +func ValidateDeleteConfigSourceRequest(v *pb.DeleteConfigSourceRequest) error { + return validationext.Error(validation.ValidateStruct(v, + validation.Field(&v.ConfigSource, validation.Required), + )) +} + +// ValidateGetConfigSourceRequest +func ValidateGetConfigSourceRequest(v *pb.GetConfigSourceRequest) error { return validationext.Error(validation.ValidateStruct(v, validation.Field(&v.Scope, validation.Required), )) } // ValidateGetConfigRequest -func ValidateGetConfigSourceRequest(v *pb.GetConfigSourceRequest) error { +func ValidateGetConfigRequest(v *pb.ConfigGetRequest) error { return validationext.Error(validation.ValidateStruct(v, validation.Field(&v.Scope, validation.Required), )) } + +// ValidateSetConfigRequest +func ValidateSetConfigRequest(v *pb.ConfigSetRequest) error { + return validationext.Error(validation.ValidateStruct(v, + validation.Field(&v.Variables, validation.Required), + )) +} + +// ValidateDeleteConfigRequest +func ValidateDeleteConfigRequest(v *pb.ConfigDeleteRequest) error { + return validationext.Error(validation.ValidateStruct(v, + validation.Field(&v.Variables, validation.Required), + )) +} diff --git a/pkg/server/singleprocess/service_config.go b/pkg/server/singleprocess/service_config.go index 2b974257d06..e938cd0d5a5 100644 --- a/pkg/server/singleprocess/service_config.go +++ b/pkg/server/singleprocess/service_config.go @@ -18,6 +18,10 @@ func (s *Service) SetConfig( ctx context.Context, req *pb.ConfigSetRequest, ) (*pb.ConfigSetResponse, error) { + if err := ptypes.ValidateSetConfigRequest(req); err != nil { + return nil, err + } + if err := s.state(ctx).ConfigSet(ctx, req.Variables...); err != nil { return nil, hcerr.Externalize(hclog.FromContext(ctx), err, "failed to set config") } @@ -25,6 +29,21 @@ func (s *Service) SetConfig( return &pb.ConfigSetResponse{}, nil } +func (s *Service) DeleteConfig( + ctx context.Context, + req *pb.ConfigDeleteRequest, +) (*pb.ConfigDeleteResponse, error) { + if err := ptypes.ValidateDeleteConfigRequest(req); err != nil { + return nil, err + } + + if err := s.state(ctx).ConfigDelete(ctx, req.Variables...); err != nil { + return nil, hcerr.Externalize(hclog.FromContext(ctx), err, "failed to delete config") + } + + return &pb.ConfigDeleteResponse{}, nil +} + func (s *Service) GetConfig( ctx context.Context, req *pb.ConfigGetRequest, @@ -60,6 +79,25 @@ func (s *Service) SetConfigSource( return &empty.Empty{}, nil } +func (s *Service) DeleteConfigSource( + ctx context.Context, + req *pb.DeleteConfigSourceRequest, +) (*empty.Empty, error) { + if err := ptypes.ValidateDeleteConfigSourceRequest(req); err != nil { + return nil, err + } + + if err := s.state(ctx).ConfigSourceDelete(ctx, req.ConfigSource); err != nil { + return nil, hcerr.Externalize( + hclog.FromContext(ctx), + err, + "failed to delete config source", + ) + } + + return &empty.Empty{}, nil +} + func (s *Service) GetConfigSource( ctx context.Context, req *pb.GetConfigSourceRequest, diff --git a/pkg/serverhandler/handlertest/test_service_config.go b/pkg/serverhandler/handlertest/test_service_config.go index 03e93896a03..618f76ae55f 100644 --- a/pkg/serverhandler/handlertest/test_service_config.go +++ b/pkg/serverhandler/handlertest/test_service_config.go @@ -45,6 +45,17 @@ func TestServiceConfig(t *testing.T, factory Factory) { Value: &pb.ConfigVar_Static{Static: "postgresql:///"}, } + Var2 := &pb.ConfigVar{ + Target: &pb.ConfigVar_Target{ + Workspace: &pb.Ref_Workspace{ + Workspace: "prod", + }, + }, + + Name: "VAULT_URL", + Value: &pb.ConfigVar_Static{Static: "example.com"}, + } + t.Run("set and get", func(t *testing.T) { require := require.New(t) @@ -71,6 +82,50 @@ func TestServiceConfig(t *testing.T, factory Factory) { require.Equal(Var.Name, grep.Variables[0].Name) require.Equal(Var.Value, grep.Variables[0].Value) }) + + t.Run("delete", func(t *testing.T) { + require := require.New(t) + + // Create, should get an ID back + resp, err := client.SetConfig(ctx, &SReq{Variables: []*pb.ConfigVar{Var, Var2}}) + require.NoError(err) + require.NotNil(resp) + + // Unset via static type with empty string + _, err = client.DeleteConfig(ctx, &pb.ConfigDeleteRequest{ + Variables: []*pb.ConfigVar{{ + Name: "DATABASE_URL", + Value: &pb.ConfigVar_Static{Static: ""}, + }}, + }) + + // It's gone + grep, err := client.GetConfig(ctx, &GReq{ + Scope: &pb.ConfigGetRequest_Application{ + Application: &pb.Ref_Application{ + Application: "foo", + Project: "bar", + }, + }, + }) + require.Error(err) + require.Nil(grep) + + // Unset via Unset protobuf type + _, err = client.DeleteConfig(ctx, &pb.ConfigDeleteRequest{ + Variables: []*pb.ConfigVar{{ + Name: "VAULT_URL", + Value: &pb.ConfigVar_Unset{}, + }}, + }) + + // It's gone + grep, err = client.GetConfig(ctx, &GReq{ + Workspace: &pb.Ref_Workspace{Workspace: "prod"}, + }) + require.Error(err) + require.Nil(grep) + }) } func TestServiceConfigSource(t *testing.T, factory Factory) { diff --git a/pkg/serverstate/serverstate.go b/pkg/serverstate/serverstate.go index 3add5f328e9..0740664eeb7 100644 --- a/pkg/serverstate/serverstate.go +++ b/pkg/serverstate/serverstate.go @@ -76,10 +76,12 @@ type Interface interface { // Config (App, Runner, etc.) ConfigSet(context.Context, ...*pb.ConfigVar) error + ConfigDelete(context.Context, ...*pb.ConfigVar) error ConfigGet(context.Context, *pb.ConfigGetRequest) ([]*pb.ConfigVar, error) ConfigGetWatch(context.Context, *pb.ConfigGetRequest, memdb.WatchSet) ([]*pb.ConfigVar, error) ConfigSourceSet(context.Context, ...*pb.ConfigSource) error + ConfigSourceDelete(context.Context, ...*pb.ConfigSource) error ConfigSourceGet(context.Context, *pb.GetConfigSourceRequest) ([]*pb.ConfigSource, error) ConfigSourceGetWatch(context.Context, *pb.GetConfigSourceRequest, memdb.WatchSet) ([]*pb.ConfigSource, error) diff --git a/pkg/serverstate/statetest/test_config.go b/pkg/serverstate/statetest/test_config.go index 74dcd4d3216..e947f9baa28 100644 --- a/pkg/serverstate/statetest/test_config.go +++ b/pkg/serverstate/statetest/test_config.go @@ -103,6 +103,98 @@ func TestConfig(t *testing.T, factory Factory, restartF RestartFactory) { } }) + t.Run("explicit delete", func(t *testing.T) { + require := require.New(t) + + s := factory(t) + defer s.Close() + + // Create a config + require.NoError(s.ConfigSet(ctx, &pb.ConfigVar{ + UnusedScope: &pb.ConfigVar_Project{ + Project: &pb.Ref_Project{ + Project: "foo", + }, + }, + + Name: "foo", + Value: &pb.ConfigVar_Static{Static: "bar"}, + })) + + require.NoError(s.ConfigSet(ctx, &pb.ConfigVar{ + UnusedScope: &pb.ConfigVar_Project{ + Project: &pb.Ref_Project{ + Project: "foo", + }, + }, + + Name: "barbar", + Value: &pb.ConfigVar_Static{Static: "barbar"}, + })) + + // Create a runner config, we should never get this + require.NoError(s.ConfigSet(ctx, &pb.ConfigVar{ + Target: &pb.ConfigVar_Target{ + AppScope: &pb.ConfigVar_Target_Project{ + Project: &pb.Ref_Project{ + Project: "foo", + }, + }, + + Runner: &pb.Ref_Runner{ + Target: &pb.Ref_Runner_Any{ + Any: &pb.Ref_RunnerAny{}, + }, + }, + }, + + Name: "bar", + Value: &pb.ConfigVar_Static{Static: "bar"}, + })) + + { + // Get it exactly + vs, err := s.ConfigGet(ctx, &pb.ConfigGetRequest{ + Scope: &pb.ConfigGetRequest_Project{ + Project: &pb.Ref_Project{Project: "foo"}, + }, + + Prefix: "foo", + }) + require.NoError(err) + require.Len(vs, 1) + } + + { + // delete it + var vars []*pb.ConfigVar + vars = append(vars, &pb.ConfigVar{ + Target: &pb.ConfigVar_Target{ + AppScope: &pb.ConfigVar_Target_Project{ + Project: &pb.Ref_Project{ + Project: "foo", + }, + }, + }, + + Name: "foo", + }) + err := s.ConfigDelete(ctx, vars...) + require.NoError(err) + + // It's gone + vs, err := s.ConfigGet(ctx, &pb.ConfigGetRequest{ + Scope: &pb.ConfigGetRequest_Project{ + Project: &pb.Ref_Project{Project: "foo"}, + }, + + Prefix: "foo", + }) + require.NoError(err) + require.Len(vs, 0) + } + }) + t.Run("deletes before writes", func(t *testing.T) { require := require.New(t) diff --git a/pkg/serverstate/statetest/test_config_source.go b/pkg/serverstate/statetest/test_config_source.go index bf90e9ebf9f..bd5fc28937f 100644 --- a/pkg/serverstate/statetest/test_config_source.go +++ b/pkg/serverstate/statetest/test_config_source.go @@ -126,6 +126,42 @@ func TestConfigSource(t *testing.T, factory Factory, restartF RestartFactory) { require.NoError(err) require.Len(vs, 0) } + + // Create + require.NoError(s.ConfigSourceSet(ctx, &pb.ConfigSource{ + Scope: &pb.ConfigSource_Global{ + Global: &pb.Ref_Global{}, + }, + + Type: "vault", + Config: map[string]string{}, + })) + + { + // Get it exactly, then explicit delete + vs, err := s.ConfigSourceGet(ctx, &pb.GetConfigSourceRequest{ + Scope: &pb.GetConfigSourceRequest_Global{ + Global: &pb.Ref_Global{}, + }, + + Type: "vault", + }) + require.NoError(err) + require.Len(vs, 1) + + err = s.ConfigSourceDelete(ctx, vs...) + + // Get it exactly again, should be gone + vs, err = s.ConfigSourceGet(ctx, &pb.GetConfigSourceRequest{ + Scope: &pb.GetConfigSourceRequest_Global{ + Global: &pb.Ref_Global{}, + }, + + Type: "vault", + }) + require.NoError(err) + require.Len(vs, 0) + } }) t.Run("hash", func(t *testing.T) { diff --git a/website/content/commands/config-delete.mdx b/website/content/commands/config-delete.mdx new file mode 100644 index 00000000000..701446e2af7 --- /dev/null +++ b/website/content/commands/config-delete.mdx @@ -0,0 +1,35 @@ +--- +layout: commands +page_title: 'Commands: Config delete' +sidebar_title: 'config delete' +description: 'Delete a config variable.' +--- + +# Waypoint Config delete + +Command: `waypoint config delete` + +Delete a config variable. + +@include "commands/config-delete_desc.mdx" + +## Usage + +Usage: `waypoint config delete ...` + +Delete a config variable from the system. This cannot be undone. + +#### Global Options + +- `-plain` - Plain output: no colors, no animation. The default is false. +- `-app=` (`-a`) - App to target. Certain commands require a single app target for Waypoint configurations with multiple apps. If you have a single app, then this can be ignored. +- `-project=` (`-p`) - Project to target. +- `-workspace=` (`-w`) - Workspace to operate in. + +#### Command Options + +- `-scope=` - The scope for this configuration to delete. The configuration will only delete within this scope. This can be one of 'global', 'project', or 'app'. The default is project. +- `-workspace-scope=` - Specify that the configuration is only available within a specific workspace. This configuration will only be deleted for deployments or operations when the workspace matches this. +- `-label-scope=` - If set, configuration will only be deleted if the deployment or operation has a matching label set. + +@include "commands/config-delete_more.mdx" diff --git a/website/content/commands/config-source-delete.mdx b/website/content/commands/config-source-delete.mdx new file mode 100644 index 00000000000..a95c4a0d58a --- /dev/null +++ b/website/content/commands/config-source-delete.mdx @@ -0,0 +1,41 @@ +--- +layout: commands +page_title: 'Commands: Config source-delete' +sidebar_title: 'config source-delete' +description: 'Delete the configuration for a dynamic source plugin' +--- + +# Waypoint Config source-delete + +Command: `waypoint config source-delete` + +Delete the configuration for a dynamic source plugin + +@include "commands/config-source-delete_desc.mdx" + +## Usage + +Usage: `waypoint config source-delete [options]` + +Delete the configuration for a dynamic configuration source plugin. + +To use this command, you should specify a "-type" flag. Please see the +documentation for the config source type you're configuring for details on +what configuration fields are available. + +Configuration for this command is global. The "-app", "-project", and +"-workspace" flags are ignored on this command. + +#### Global Options + +- `-plain` - Plain output: no colors, no animation. The default is false. +- `-app=` (`-a`) - App to target. Certain commands require a single app target for Waypoint configurations with multiple apps. If you have a single app, then this can be ignored. +- `-project=` (`-p`) - Project to target. +- `-workspace=` (`-w`) - Workspace to operate in. + +#### Command Options + +- `-type=` - Dynamic source type to delete, such as 'vault'. +- `-scope=` - The scope for this configuration source. The configuration source will only delete within this scope. This can be one of 'global', 'project', or 'app'. The default is global. + +@include "commands/config-source-delete_more.mdx" diff --git a/website/content/partials/commands/config-delete_desc.mdx b/website/content/partials/commands/config-delete_desc.mdx new file mode 100644 index 00000000000..e69de29bb2d diff --git a/website/content/partials/commands/config-delete_more.mdx b/website/content/partials/commands/config-delete_more.mdx new file mode 100644 index 00000000000..e69de29bb2d diff --git a/website/content/partials/commands/config-source-delete_desc.mdx b/website/content/partials/commands/config-source-delete_desc.mdx new file mode 100644 index 00000000000..e69de29bb2d diff --git a/website/content/partials/commands/config-source-delete_more.mdx b/website/content/partials/commands/config-source-delete_more.mdx new file mode 100644 index 00000000000..e69de29bb2d diff --git a/website/data/commands-nav-data.json b/website/data/commands-nav-data.json index 8630dc18838..69b0eb700b4 100644 --- a/website/data/commands-nav-data.json +++ b/website/data/commands-nav-data.json @@ -86,6 +86,10 @@ "title": "config set", "path": "config-set" }, + { + "title": "config delete", + "path": "config-delete" + }, { "title": "config source-get", "path": "config-source-get" @@ -94,6 +98,10 @@ "title": "config source-set", "path": "config-source-set" }, + { + "title": "config source-delete", + "path": "config-source-delete" + }, { "title": "config sync", "path": "config-sync"