From 2689920067b87336547d3c78b81077828a8b9652 Mon Sep 17 00:00:00 2001 From: sunny299 <62001098+sunny299@users.noreply.github.com> Date: Fri, 28 Oct 2022 10:03:19 +0700 Subject: [PATCH] =?UTF-8?q?[patch]=20=F0=9F=8D=B1=20Publish=20pending=20st?= =?UTF-8?q?atus=20to=20PR=20in=20another=20repository=20(#141)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat: publish pending status to PR in another repsitory * fix: handle error in sending pending status * fix: update mock config * chore: switch condition for more readable * chore: make swag, reuse variable --- api/v1/config_types.go | 8 +- config/crds/env.samsahai.io_configs.yaml | 18 +- docs/docs.go | 8 +- docs/swagger.json | 6 +- docs/swagger.yaml | 8 +- internal/reporter/gitlab/reporter.go | 4 +- internal/reporter/gitlab/reporter_test.go | 16 +- internal/staging/start_testrunner.go | 29 +- internal/util/gitlab/gitlab.go | 4 +- pkg/samsahai/rpc/service.pb.go | 329 ++++++++++---------- pkg/samsahai/rpc/service.proto | 3 +- pkg/samsahai/rpc/service.twirp.go | 203 ++++++------ test/data/crds/env.samsahai.io_configs.yaml | 18 +- 13 files changed, 347 insertions(+), 307 deletions(-) diff --git a/api/v1/config_types.go b/api/v1/config_types.go index 1eea2431..b41097df 100644 --- a/api/v1/config_types.go +++ b/api/v1/config_types.go @@ -548,10 +548,14 @@ type PullRequestBundle struct { // Dependencies defines a list of components which are required to be deployed together with the main component // +optional Dependencies []string `json:"dependencies,omitempty"` - // GitRepository represents a string of git "/" e.g., agoda-com/samsahai + // GitRepository represents a string of git repository "/" e.g., agoda-com/samsahai // used for publishing commit status // +optional - GitRepository string `json:"gitRepository,omitempty"` + GitRepository string `json:"gitRepository,omitempty"` + // GitProjectID represents a git repository project id + // used for publishing test runner status to Gitlab + // +optional + GitProjectID string `json:"gitProjectID,omitempty"` PullRequestExtraConfig `json:",inline"` } diff --git a/config/crds/env.samsahai.io_configs.yaml b/config/crds/env.samsahai.io_configs.yaml index dcda79fd..80c0754f 100644 --- a/config/crds/env.samsahai.io_configs.yaml +++ b/config/crds/env.samsahai.io_configs.yaml @@ -419,9 +419,14 @@ spec: environment type: string type: object + gitProjectID: + description: GitProjectID represents a git repository project + id used for publishing test runner status to Gitlab + type: string gitRepository: - description: GitRepository represents a string of git "/" - e.g., agoda-com/samsahai used for publishing commit status + description: GitRepository represents a string of git repository + "/" e.g., agoda-com/samsahai used for + publishing commit status type: string maxRetry: description: MaxRetry defines max retry counts of pull request @@ -1346,10 +1351,15 @@ spec: deploying environment type: string type: object + gitProjectID: + description: GitProjectID represents a git repository + project id used for publishing test runner status + to Gitlab + type: string gitRepository: description: GitRepository represents a string of git - "/" e.g., agoda-com/samsahai used - for publishing commit status + repository "/" e.g., agoda-com/samsahai + used for publishing commit status type: string maxRetry: description: MaxRetry defines max retry counts of pull diff --git a/docs/docs.go b/docs/docs.go index d445592a..dacb64b5 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -1,6 +1,6 @@ // GENERATED BY THE COMMAND ABOVE; DO NOT EDIT // This file was generated by swaggo/swag at -// 2022-10-19 11:09:44.83837 +0700 +07 m=+0.333853050 +// 2022-10-27 17:25:07.465703 +0700 +07 m=+0.264431515 package docs @@ -1744,8 +1744,12 @@ var doc = `{ "type": "object", "$ref": "#/definitions/v1.ConfigDeploy" }, + "gitProjectID": { + "description": "GitProjectID represents a git repository project id\nused for publishing test runner status to Gitlab\n+optional", + "type": "string" + }, "gitRepository": { - "description": "GitRepository represents a string of git \"\u003cowner\u003e/\u003crepository\u003e\" e.g., agoda-com/samsahai\nused for publishing commit status\n+optional", + "description": "GitRepository represents a string of git repository \"\u003cowner\u003e/\u003crepository\u003e\" e.g., agoda-com/samsahai\nused for publishing commit status\n+optional", "type": "string" }, "maxRetry": { diff --git a/docs/swagger.json b/docs/swagger.json index b8884be8..e96a5a63 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -1723,8 +1723,12 @@ "type": "object", "$ref": "#/definitions/v1.ConfigDeploy" }, + "gitProjectID": { + "description": "GitProjectID represents a git repository project id\nused for publishing test runner status to Gitlab\n+optional", + "type": "string" + }, "gitRepository": { - "description": "GitRepository represents a string of git \"\u003cowner\u003e/\u003crepository\u003e\" e.g., agoda-com/samsahai\nused for publishing commit status\n+optional", + "description": "GitRepository represents a string of git repository \"\u003cowner\u003e/\u003crepository\u003e\" e.g., agoda-com/samsahai\nused for publishing commit status\n+optional", "type": "string" }, "maxRetry": { diff --git a/docs/swagger.yaml b/docs/swagger.yaml index 0f4644d9..18bf68ca 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -753,9 +753,15 @@ definitions: Deployment represents configuration about deploy +optional type: object + gitProjectID: + description: |- + GitProjectID represents a git repository project id + used for publishing test runner status to Gitlab + +optional + type: string gitRepository: description: |- - GitRepository represents a string of git "/" e.g., agoda-com/samsahai + GitRepository represents a string of git repository "/" e.g., agoda-com/samsahai used for publishing commit status +optional type: string diff --git a/internal/reporter/gitlab/reporter.go b/internal/reporter/gitlab/reporter.go index 2f4c27dc..b57a16fc 100644 --- a/internal/reporter/gitlab/reporter.go +++ b/internal/reporter/gitlab/reporter.go @@ -274,8 +274,8 @@ func (r *reporter) getGitlabProjectID(configCtrl internal.ConfigController, team projectID := "" for _, b := range conf.Status.Used.PullRequest.Bundles { - if b.Name == bundleName && b.Deployment != nil { - projectID = b.Deployment.TestRunner.Gitlab.ProjectID + if b.Name == bundleName { + projectID = b.GitProjectID break } } diff --git a/internal/reporter/gitlab/reporter_test.go b/internal/reporter/gitlab/reporter_test.go index 9144ba23..884ebb14 100644 --- a/internal/reporter/gitlab/reporter_test.go +++ b/internal/reporter/gitlab/reporter_test.go @@ -175,13 +175,7 @@ func (c *mockConfigCtrl) Get(configName string) (*s2hv1.Config, error) { { Name: "bundle-1", GitRepository: "error", - Deployment: &s2hv1.ConfigDeploy{ - TestRunner: &s2hv1.ConfigTestRunner{ - Gitlab: &s2hv1.ConfigGitlab{ - ProjectID: "error", - }, - }, - }, + GitProjectID: "error", }, }, }, @@ -206,13 +200,7 @@ func (c *mockConfigCtrl) Get(configName string) (*s2hv1.Config, error) { {}, }, GitRepository: "samsahai/samsahai", - Deployment: &s2hv1.ConfigDeploy{ - TestRunner: &s2hv1.ConfigTestRunner{ - Gitlab: &s2hv1.ConfigGitlab{ - ProjectID: "12345", - }, - }, - }, + GitProjectID: "12345", }, }, }, diff --git a/internal/staging/start_testrunner.go b/internal/staging/start_testrunner.go index 235811ba..6d27b1b1 100644 --- a/internal/staging/start_testrunner.go +++ b/internal/staging/start_testrunner.go @@ -342,13 +342,13 @@ func (c *controller) sendTestPendingResult(queue *s2hv1.Queue) error { } for retry := 0; retry <= sendTestPendingRetry; retry++ { - if _, err := c.s2hClient.RunPostPullRequestQueueTestRunnerTrigger(ctx, &samsahairpc.TeamWithPullRequest{ + if _, err = c.s2hClient.RunPostPullRequestQueueTestRunnerTrigger(ctx, &samsahairpc.TeamWithPullRequest{ TeamName: c.teamName, Namespace: internal.GenStagingNamespace(c.teamName), BundleName: internal.GenPullRequestBundleName(queue.Spec.Name, queue.Spec.PRNumber), }); err != nil { logger.Error(err, - "cannot send pull request test runner pending status report, team: %s, component: %s, prNumber: %s", + "cannot send pull request test runner pending status report,", "team", c.teamName, "component", queue.Spec.Name, "pr number", queue.Spec.PRNumber) // set state, cannot send test pending status queue.Status.SetCondition( @@ -358,19 +358,20 @@ func (c *controller) sendTestPendingResult(queue *s2hv1.Queue) error { if err := c.updateQueue(queue); err != nil { logger.Error(err, "cannot update queue", "name", queue.Name) } + continue + } + logger.Info("sent pull request test runner pending status successfully", + "team", c.teamName, "component", queue.Spec.Name, "pr number", queue.Spec.PRNumber) + // set state, test pending status has been sent + queue.Status.SetCondition( + s2hv1.QueueTestPendingStatusSent, + v1.ConditionTrue, + "queue test pending status has been sent") + if err = c.updateQueue(queue); err != nil { + logger.Error(err, "cannot update queue", "name", queue.Name) return err } + break } - logger.Info("sent pull request test runner pending status successfully", - "team", c.teamName, "component", queue.Spec.Name, "pr number", queue.Spec.PRNumber) - // set state, test pending status has been sent - queue.Status.SetCondition( - s2hv1.QueueTestPendingStatusSent, - v1.ConditionTrue, - "queue test pending status has been sent") - if err := c.updateQueue(queue); err != nil { - logger.Error(err, "cannot update queue", "name", queue.Name) - return err - } - return nil + return err } diff --git a/internal/util/gitlab/gitlab.go b/internal/util/gitlab/gitlab.go index 5177ebd6..40fe694c 100644 --- a/internal/util/gitlab/gitlab.go +++ b/internal/util/gitlab/gitlab.go @@ -127,11 +127,11 @@ func (c *Client) PublishCommitStatus(repository, commitSHA, labelName, targetURL return s2herrors.ErrRequestTimeout case err := <-errCh: logger.Error(err, "cannot publish commit status", - "repository", repository, "commitSHA", commitSHA) + "repository", repository, "commitSHA", commitSHA, "status", status) return err case <-resCh: logger.Info("commit status successfully published to gitlab", - "repository", repository, "commitSHA", commitSHA) + "repository", repository, "commitSHA", commitSHA, "status", status) return nil } } diff --git a/pkg/samsahai/rpc/service.pb.go b/pkg/samsahai/rpc/service.pb.go index 08a31668..233dad95 100644 --- a/pkg/samsahai/rpc/service.pb.go +++ b/pkg/samsahai/rpc/service.pb.go @@ -1161,7 +1161,8 @@ type PullRequestConfig struct { MaxHistoryDays int32 `protobuf:"varint,3,opt,name=maxHistoryDays,proto3" json:"maxHistoryDays,omitempty"` Trigger *PullRequestTriggerConfig `protobuf:"bytes,4,opt,name=trigger,proto3" json:"trigger,omitempty"` GitRepository string `protobuf:"bytes,5,opt,name=gitRepository,proto3" json:"gitRepository,omitempty"` - TearDownDuration *PullRequestTearDownDuration `protobuf:"bytes,6,opt,name=tearDownDuration,proto3" json:"tearDownDuration,omitempty"` + GitProjectID string `protobuf:"bytes,6,opt,name=gitProjectID,proto3" json:"gitProjectID,omitempty"` + TearDownDuration *PullRequestTearDownDuration `protobuf:"bytes,7,opt,name=tearDownDuration,proto3" json:"tearDownDuration,omitempty"` } func (x *PullRequestConfig) Reset() { @@ -1231,6 +1232,13 @@ func (x *PullRequestConfig) GetGitRepository() string { return "" } +func (x *PullRequestConfig) GetGitProjectID() string { + if x != nil { + return x.GitProjectID + } + return "" +} + func (x *PullRequestConfig) GetTearDownDuration() *PullRequestTearDownDuration { if x != nil { return x.TearDownDuration @@ -1757,7 +1765,7 @@ var file_pkg_samsahai_rpc_service_proto_rawDesc = []byte{ 0x69, 0x73, 0x74, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x10, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x4d, 0x69, 0x73, - 0x73, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xca, 0x02, 0x0a, 0x11, 0x50, 0x75, 0x6c, + 0x73, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xee, 0x02, 0x0a, 0x11, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, @@ -1772,172 +1780,175 @@ var file_pkg_samsahai_rpc_service_proto_rawDesc = []byte{ 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x07, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x67, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x67, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6f, - 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x5d, 0x0a, 0x10, 0x74, 0x65, 0x61, 0x72, 0x44, 0x6f, - 0x77, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x31, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, - 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x54, 0x65, 0x61, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x74, 0x65, 0x61, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x44, 0x75, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x58, 0x0a, 0x18, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x74, 0x72, 0x79, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x08, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x74, 0x72, 0x79, 0x12, 0x20, 0x0a, - 0x0b, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0b, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x22, - 0x68, 0x0a, 0x13, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x51, 0x0a, 0x10, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, - 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x25, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, - 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, - 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x10, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, - 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x22, 0x9c, 0x01, 0x0a, 0x0f, 0x43, 0x6f, - 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x24, 0x0a, - 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x4e, - 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, - 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, - 0x74, 0x74, 0x65, 0x72, 0x6e, 0x12, 0x31, 0x0a, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, - 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x49, 0x6d, 0x61, 0x67, - 0x65, 0x52, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x22, 0x2c, 0x0a, 0x10, 0x43, 0x6f, 0x6d, 0x70, - 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, - 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xc3, 0x01, 0x0a, 0x12, 0x50, 0x75, 0x6c, 0x6c, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x12, 0x0a, - 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, - 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, - 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x61, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x08, 0x74, 0x65, 0x61, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, - 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x12, 0x47, 0x0a, 0x10, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x4d, 0x69, 0x73, 0x73, - 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, - 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, - 0x61, 0x68, 0x61, 0x69, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x10, 0x69, 0x6d, 0x61, 0x67, - 0x65, 0x4d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xf2, 0x01, 0x0a, - 0x1b, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x65, 0x61, 0x72, - 0x44, 0x6f, 0x77, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, - 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, - 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x0a, 0x08, 0x63, 0x72, 0x69, 0x74, - 0x65, 0x72, 0x69, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x73, 0x61, 0x6d, - 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, - 0x69, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x65, 0x61, - 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x72, - 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x08, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, - 0x22, 0x5f, 0x0a, 0x08, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x12, 0x14, 0x0a, 0x10, - 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, - 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x5f, 0x42, - 0x4f, 0x54, 0x48, 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, - 0x61, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x55, 0x52, 0x45, 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x43, - 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x5f, 0x53, 0x55, 0x43, 0x43, 0x45, 0x53, 0x53, 0x10, - 0x03, 0x32, 0x8f, 0x0d, 0x0a, 0x03, 0x52, 0x50, 0x43, 0x12, 0x61, 0x0a, 0x16, 0x47, 0x65, 0x74, - 0x54, 0x65, 0x61, 0x6d, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, - 0x61, 0x63, 0x65, 0x12, 0x1e, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, - 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x4e, - 0x61, 0x6d, 0x65, 0x1a, 0x27, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, - 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, - 0x69, 0x74, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x5e, 0x0a, 0x17, - 0x52, 0x75, 0x6e, 0x50, 0x6f, 0x73, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, - 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x12, 0x26, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, - 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, - 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x1a, - 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, - 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x5e, 0x0a, 0x17, - 0x52, 0x75, 0x6e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, 0x65, 0x12, 0x26, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, - 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, - 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x1a, - 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, - 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x62, 0x0a, 0x19, - 0x52, 0x75, 0x6e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x28, 0x2e, 0x73, 0x61, 0x6d, 0x73, - 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, - 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x72, 0x69, 0x67, - 0x67, 0x65, 0x72, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, - 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, - 0x12, 0x72, 0x0a, 0x28, 0x52, 0x75, 0x6e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, 0x65, 0x54, 0x65, 0x73, 0x74, 0x52, - 0x75, 0x6e, 0x6e, 0x65, 0x72, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x73, - 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, - 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x50, 0x75, 0x6c, 0x6c, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, - 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, - 0x6d, 0x70, 0x74, 0x79, 0x12, 0x65, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x4d, 0x69, 0x73, 0x73, 0x69, - 0x6e, 0x67, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2e, 0x2e, 0x73, 0x61, 0x6d, - 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, - 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, - 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x1a, 0x1f, 0x2e, 0x73, 0x61, 0x6d, - 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, - 0x69, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x61, 0x0a, 0x1a, 0x53, - 0x65, 0x6e, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x51, 0x75, - 0x65, 0x75, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x12, 0x26, 0x2e, 0x73, 0x61, 0x6d, 0x73, - 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, - 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, - 0x65, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, - 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x5b, - 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, - 0x28, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, - 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x42, - 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x20, 0x2e, 0x73, 0x61, 0x6d, 0x73, - 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, - 0x2e, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x59, 0x0a, 0x11, 0x47, - 0x65, 0x74, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x51, 0x75, 0x65, 0x75, 0x65, 0x73, - 0x12, 0x1e, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, - 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x4e, 0x61, 0x6d, 0x65, - 0x1a, 0x24, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, - 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, - 0x51, 0x75, 0x65, 0x75, 0x65, 0x73, 0x12, 0x7b, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x50, 0x75, 0x6c, - 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x44, 0x65, - 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x12, 0x28, 0x2e, 0x73, 0x61, 0x6d, - 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, - 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x2d, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x67, 0x69, 0x74, 0x50, 0x72, 0x6f, + 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x67, 0x69, + 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x12, 0x5d, 0x0a, 0x10, 0x74, 0x65, + 0x61, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x50, 0x75, 0x6c, 0x6c, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, - 0x69, 0x65, 0x73, 0x12, 0x69, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x28, 0x2e, 0x73, 0x61, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x65, 0x61, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x44, + 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x74, 0x65, 0x61, 0x72, 0x44, 0x6f, 0x77, + 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x58, 0x0a, 0x18, 0x50, 0x75, 0x6c, + 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x74, 0x72, + 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6d, 0x61, 0x78, 0x52, 0x65, 0x74, 0x72, + 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x54, + 0x69, 0x6d, 0x65, 0x22, 0x68, 0x0a, 0x13, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, + 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x51, 0x0a, 0x10, 0x43, 0x6f, + 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x01, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, + 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x10, 0x43, 0x6f, 0x6d, + 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x22, 0x9c, 0x01, + 0x0a, 0x0f, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x4e, 0x61, + 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, + 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, + 0x18, 0x0a, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x12, 0x31, 0x0a, 0x05, 0x69, 0x6d, 0x61, + 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, + 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x22, 0x2c, 0x0a, 0x10, + 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xc3, 0x01, 0x0a, 0x12, 0x50, + 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, + 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, + 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, + 0x61, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x61, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x65, 0x61, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, + 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x47, 0x0a, 0x10, 0x69, 0x6d, 0x61, 0x67, 0x65, + 0x4d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, + 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x10, + 0x69, 0x6d, 0x61, 0x67, 0x65, 0x4d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, + 0x22, 0xf2, 0x01, 0x0a, 0x1b, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x54, 0x65, 0x61, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x03, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x0a, 0x08, + 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, + 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, + 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x54, 0x65, 0x61, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x52, 0x08, 0x63, 0x72, 0x69, 0x74, + 0x65, 0x72, 0x69, 0x61, 0x22, 0x5f, 0x0a, 0x08, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, + 0x12, 0x14, 0x0a, 0x10, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x5f, 0x55, 0x4e, 0x4b, + 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, + 0x69, 0x61, 0x5f, 0x42, 0x4f, 0x54, 0x48, 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x43, 0x72, 0x69, + 0x74, 0x65, 0x72, 0x69, 0x61, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x55, 0x52, 0x45, 0x10, 0x02, 0x12, + 0x14, 0x0a, 0x10, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x5f, 0x53, 0x55, 0x43, 0x43, + 0x45, 0x53, 0x53, 0x10, 0x03, 0x32, 0x8f, 0x0d, 0x0a, 0x03, 0x52, 0x50, 0x43, 0x12, 0x61, 0x0a, + 0x16, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4e, 0x61, + 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x1e, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, + 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, + 0x65, 0x61, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x27, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, + 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, + 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, + 0x12, 0x5e, 0x0a, 0x17, 0x52, 0x75, 0x6e, 0x50, 0x6f, 0x73, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6f, + 0x6e, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x12, 0x26, 0x2e, 0x73, 0x61, + 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, + 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x67, 0x72, + 0x61, 0x64, 0x65, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, + 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, + 0x12, 0x5e, 0x0a, 0x17, 0x52, 0x75, 0x6e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, 0x65, 0x12, 0x26, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, - 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x42, 0x75, 0x6e, 0x64, 0x6c, - 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x27, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, - 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x50, 0x75, 0x6c, - 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x76, - 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x67, 0x72, + 0x61, 0x64, 0x65, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, + 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, + 0x12, 0x62, 0x0a, 0x19, 0x52, 0x75, 0x6e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x28, 0x2e, + 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, + 0x61, 0x68, 0x61, 0x69, 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, + 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, + 0x6d, 0x70, 0x74, 0x79, 0x12, 0x72, 0x0a, 0x28, 0x52, 0x75, 0x6e, 0x50, 0x6f, 0x73, 0x74, 0x50, + 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x51, 0x75, 0x65, 0x75, 0x65, 0x54, + 0x65, 0x73, 0x74, 0x52, 0x75, 0x6e, 0x6e, 0x65, 0x72, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, - 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x73, 0x61, + 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, - 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x64, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6d, - 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, + 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x65, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x4d, + 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2e, + 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, + 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x43, 0x75, + 0x72, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x1a, 0x1f, + 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, + 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, + 0x61, 0x0a, 0x1a, 0x53, 0x65, 0x6e, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, + 0x74, 0x65, 0x51, 0x75, 0x65, 0x75, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x12, 0x26, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, - 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x1a, 0x26, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, - 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, - 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x76, 0x0a, 0x2e, - 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x53, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x49, 0x6e, 0x74, 0x6f, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x27, + 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x55, 0x70, + 0x67, 0x72, 0x61, 0x64, 0x65, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, + 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, + 0x74, 0x79, 0x12, 0x5b, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x4e, + 0x61, 0x6d, 0x65, 0x12, 0x28, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, + 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, + 0x69, 0x74, 0x68, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x20, 0x2e, + 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, + 0x61, 0x68, 0x61, 0x69, 0x2e, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, + 0x59, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x51, 0x75, + 0x65, 0x75, 0x65, 0x73, 0x12, 0x1e, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, + 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x24, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x50, 0x72, 0x69, 0x6f, + 0x72, 0x69, 0x74, 0x79, 0x51, 0x75, 0x65, 0x75, 0x65, 0x73, 0x12, 0x7b, 0x0a, 0x20, 0x47, 0x65, + 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x42, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x44, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x12, 0x28, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, - 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x61, - 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, - 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, - 0x6d, 0x70, 0x74, 0x79, 0x12, 0x66, 0x0a, 0x1c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x75, - 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, - 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x29, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x42, 0x75, + 0x6e, 0x64, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x2d, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, + 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x65, 0x6e, + 0x64, 0x65, 0x6e, 0x63, 0x69, 0x65, 0x73, 0x12, 0x69, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x75, + 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, + 0x28, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, + 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x42, + 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x27, 0x2e, 0x73, 0x61, 0x6d, 0x73, + 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, + 0x2e, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x12, 0x76, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x53, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x12, 0x29, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, - 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x65, 0x0a, 0x1d, - 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x27, 0x2e, - 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, - 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x61, 0x6d, - 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, - 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, - 0x70, 0x74, 0x79, 0x42, 0x12, 0x5a, 0x10, 0x70, 0x6b, 0x67, 0x2f, 0x73, 0x61, 0x6d, 0x73, 0x61, - 0x68, 0x61, 0x69, 0x2f, 0x72, 0x70, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x29, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, + 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, + 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x64, 0x0a, 0x13, 0x47, 0x65, + 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x12, 0x25, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, + 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, + 0x6e, 0x74, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x1a, 0x26, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, + 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x12, 0x76, 0x0a, 0x2e, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, + 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x49, 0x6e, 0x74, 0x6f, 0x50, 0x75, 0x6c, 0x6c, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, + 0x6e, 0x74, 0x12, 0x27, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, + 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, + 0x74, 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x1a, 0x1b, 0x2e, 0x73, 0x61, + 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, + 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x66, 0x0a, 0x1c, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x6e, 0x76, + 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x29, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, + 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, + 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, 0x68, 0x50, 0x75, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, + 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, + 0x12, 0x65, 0x0a, 0x1d, 0x44, 0x65, 0x73, 0x74, 0x72, 0x6f, 0x79, 0x50, 0x75, 0x6c, 0x6c, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, + 0x74, 0x12, 0x27, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, + 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x57, 0x69, 0x74, + 0x68, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x1a, 0x1b, 0x2e, 0x73, 0x61, 0x6d, + 0x73, 0x61, 0x68, 0x61, 0x69, 0x2e, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, + 0x69, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x42, 0x12, 0x5a, 0x10, 0x70, 0x6b, 0x67, 0x2f, 0x73, + 0x61, 0x6d, 0x73, 0x61, 0x68, 0x61, 0x69, 0x2f, 0x72, 0x70, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/pkg/samsahai/rpc/service.proto b/pkg/samsahai/rpc/service.proto index cf6d6744..b2ff3247 100644 --- a/pkg/samsahai/rpc/service.proto +++ b/pkg/samsahai/rpc/service.proto @@ -132,7 +132,8 @@ message PullRequestConfig { int32 maxHistoryDays = 3; PullRequestTriggerConfig trigger = 4; string gitRepository = 5; - PullRequestTearDownDuration tearDownDuration = 6; + string gitProjectID = 6; + PullRequestTearDownDuration tearDownDuration = 7; } message PullRequestTriggerConfig { diff --git a/pkg/samsahai/rpc/service.twirp.go b/pkg/samsahai/rpc/service.twirp.go index 05e74231..142634d8 100644 --- a/pkg/samsahai/rpc/service.twirp.go +++ b/pkg/samsahai/rpc/service.twirp.go @@ -5270,105 +5270,106 @@ func callClientError(ctx context.Context, h *twirp.ClientHooks, err twirp.Error) } var twirpFileDescriptor0 = []byte{ - // 1589 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x5b, 0x53, 0xdb, 0x46, - 0x14, 0x8e, 0x0c, 0x06, 0x7c, 0x08, 0x20, 0x36, 0x84, 0x28, 0x26, 0x25, 0x1e, 0x0d, 0x49, 0x9c, - 0x4e, 0xeb, 0x34, 0x4e, 0x5f, 0x7a, 0x99, 0x69, 0xc1, 0x76, 0x8c, 0xa7, 0x60, 0xc8, 0xda, 0x90, - 0x5e, 0x26, 0x61, 0x84, 0xbd, 0x38, 0x3b, 0xb5, 0x25, 0x65, 0xb5, 0x22, 0xf1, 0xb4, 0xaf, 0xed, - 0x6b, 0x5f, 0xfb, 0xd0, 0xdf, 0xd1, 0x3f, 0xd0, 0xb7, 0xbe, 0xf6, 0x9f, 0xf4, 0x17, 0x74, 0xb4, - 0xba, 0xcb, 0xf2, 0x25, 0x2d, 0x7d, 0xf2, 0xee, 0xd9, 0xb3, 0xdf, 0x39, 0x7b, 0xee, 0x16, 0x6c, - 0x9b, 0xdf, 0xf7, 0x1e, 0x59, 0xda, 0xc0, 0xd2, 0x5e, 0x69, 0xf4, 0x11, 0x33, 0x3b, 0x8f, 0x2c, - 0xc2, 0x2e, 0x69, 0x87, 0x94, 0x4c, 0x66, 0x70, 0x03, 0x6d, 0xf8, 0x67, 0x25, 0x6a, 0x94, 0xfc, - 0xb5, 0xba, 0x08, 0xd9, 0xda, 0xc0, 0xe4, 0x43, 0xf5, 0x18, 0x50, 0x9b, 0x68, 0x83, 0xe7, 0x94, - 0xbf, 0xda, 0xb3, 0xf5, 0x6e, 0x9f, 0x34, 0xb5, 0x01, 0x41, 0x79, 0x58, 0xe2, 0x44, 0x1b, 0x38, - 0x6b, 0x45, 0x2a, 0x48, 0xc5, 0x1c, 0x0e, 0xf6, 0x68, 0x1b, 0xe0, 0x3c, 0xe0, 0x54, 0x32, 0xe2, - 0x34, 0x42, 0x51, 0x0b, 0x00, 0x11, 0x24, 0x04, 0xf3, 0x7a, 0x88, 0x22, 0xd6, 0xea, 0x36, 0x2c, - 0xb5, 0x7d, 0xb4, 0xb4, 0xf3, 0x22, 0xac, 0x1e, 0x33, 0x6a, 0x30, 0xca, 0x87, 0xcf, 0x6c, 0x62, - 0x13, 0x0b, 0x6d, 0xc2, 0xc2, 0x6b, 0xb1, 0x52, 0xa4, 0xc2, 0x5c, 0x31, 0x87, 0xbd, 0x9d, 0xfa, - 0x12, 0x6e, 0x1d, 0xdb, 0xfd, 0x3e, 0x26, 0xaf, 0x6d, 0x62, 0xf1, 0x2a, 0x31, 0x89, 0xde, 0x25, - 0x7a, 0x87, 0x12, 0x0b, 0x55, 0xe0, 0x7a, 0x37, 0xb2, 0x17, 0x17, 0x97, 0xcb, 0x77, 0x4b, 0x69, - 0xe6, 0x28, 0x55, 0x8c, 0x81, 0x69, 0xe8, 0x44, 0xe7, 0x38, 0x76, 0x49, 0xfd, 0x2b, 0x07, 0x72, - 0x70, 0x76, 0x62, 0xf6, 0x98, 0xd6, 0x25, 0xe8, 0x00, 0x16, 0x2c, 0xae, 0x71, 0xdb, 0x12, 0x4a, - 0xaf, 0x96, 0x3f, 0x9e, 0x82, 0xe9, 0xdd, 0x2b, 0x79, 0xbf, 0x2d, 0x71, 0x17, 0x7b, 0x18, 0x81, - 0x01, 0x32, 0xa1, 0x01, 0x62, 0xe6, 0x9f, 0x4b, 0x98, 0xff, 0x0b, 0x80, 0x8e, 0x8f, 0x6c, 0x29, - 0xf3, 0xb3, 0xbd, 0x2a, 0x72, 0x05, 0x35, 0x21, 0x47, 0x2d, 0xcb, 0x26, 0xed, 0xa1, 0x49, 0x94, - 0xac, 0x78, 0xc1, 0x47, 0x33, 0xbe, 0xa0, 0xe1, 0xdf, 0xc3, 0x21, 0x04, 0x7a, 0x1f, 0x64, 0xe1, - 0x8d, 0x7d, 0x6a, 0x71, 0x83, 0x0d, 0x85, 0xd2, 0x0b, 0x42, 0xe9, 0x11, 0x3a, 0xaa, 0x83, 0x4c, - 0x07, 0x5a, 0x8f, 0x1c, 0x52, 0xcb, 0xa2, 0x7a, 0xef, 0x80, 0x5a, 0x5c, 0x59, 0x14, 0x4f, 0xd8, - 0x4a, 0x57, 0xa1, 0xe1, 0x70, 0xe3, 0x91, 0x4b, 0xe8, 0x0e, 0xe4, 0x1c, 0x4b, 0x59, 0xa6, 0xd6, - 0x21, 0xca, 0x92, 0x90, 0x16, 0x12, 0x50, 0x11, 0xd6, 0x38, 0xb1, 0xf8, 0x9e, 0x4d, 0xfb, 0x5d, - 0x47, 0xc7, 0x46, 0x55, 0xc9, 0x09, 0x9e, 0x24, 0xd9, 0xb1, 0x3e, 0xb3, 0x75, 0x4b, 0x81, 0x82, - 0x54, 0xcc, 0x62, 0xb1, 0x76, 0x02, 0x9c, 0x5a, 0x98, 0x5c, 0x12, 0x46, 0x2f, 0x86, 0xca, 0x72, - 0x41, 0x2a, 0x2e, 0xe1, 0x08, 0x05, 0x19, 0xb0, 0xc1, 0xdc, 0x35, 0xed, 0x68, 0x9c, 0x1a, 0xba, - 0xeb, 0x51, 0xe5, 0xba, 0xb0, 0xe5, 0x67, 0x33, 0xda, 0x12, 0xa7, 0x40, 0xe0, 0x54, 0x60, 0xf4, - 0x0c, 0xe4, 0x2e, 0x31, 0xfb, 0xc6, 0x70, 0x40, 0x74, 0x2e, 0x7c, 0x60, 0x29, 0x2b, 0xc2, 0x6a, - 0xf7, 0xd2, 0x85, 0x55, 0xe3, 0xdc, 0x78, 0xe4, 0x3a, 0x7a, 0x01, 0x1b, 0x66, 0x98, 0x38, 0x81, - 0x72, 0xca, 0x6a, 0x41, 0x2a, 0x2e, 0x97, 0x1f, 0xa6, 0xc3, 0xfa, 0x85, 0x22, 0x92, 0x72, 0x38, - 0x15, 0x06, 0x95, 0x63, 0xf0, 0xcd, 0xc0, 0x53, 0x6b, 0xc2, 0x0b, 0xa9, 0x67, 0xaa, 0x06, 0x2b, - 0xb1, 0x0c, 0x41, 0xb7, 0xe1, 0x66, 0x8c, 0x70, 0xf6, 0x74, 0xb7, 0x71, 0x70, 0x82, 0x6b, 0xf2, - 0xb5, 0xd1, 0xa3, 0xd6, 0x49, 0xa5, 0x52, 0x6b, 0xb5, 0x64, 0x09, 0xe5, 0x61, 0x33, 0x7e, 0x54, - 0xd9, 0x6d, 0x56, 0x6a, 0x07, 0xb5, 0xaa, 0x9c, 0x51, 0x7f, 0x96, 0x20, 0x17, 0xc4, 0x30, 0xba, - 0x09, 0xeb, 0xc1, 0xe6, 0xec, 0xa4, 0xf9, 0x55, 0xf3, 0xe8, 0x79, 0x53, 0xbe, 0x86, 0x76, 0xa0, - 0x10, 0x92, 0xab, 0xb5, 0x56, 0x03, 0xd7, 0xaa, 0x67, 0xa7, 0x35, 0xdc, 0x6a, 0x1c, 0x35, 0x85, - 0x0a, 0xb5, 0xaa, 0x2c, 0xa1, 0x2d, 0xb8, 0x15, 0x72, 0x35, 0x0e, 0x77, 0xeb, 0xb5, 0xb3, 0xc3, - 0x46, 0xab, 0xd5, 0x68, 0xd6, 0xe5, 0x0c, 0xba, 0x0b, 0x5b, 0xe1, 0x61, 0xad, 0x79, 0xda, 0xc0, - 0x47, 0xcd, 0xc3, 0x5a, 0xb3, 0x7d, 0xd6, 0x68, 0xb5, 0x4e, 0x6a, 0xf2, 0x9c, 0xfa, 0x23, 0x6c, - 0xa4, 0xf9, 0x1f, 0x15, 0xe0, 0x4e, 0x1a, 0x3d, 0xa2, 0xdd, 0x38, 0x0e, 0xdf, 0x36, 0xd2, 0x58, - 0x0e, 0xdf, 0x44, 0x19, 0x15, 0x43, 0x2e, 0x74, 0x55, 0x4a, 0x01, 0x46, 0x8f, 0x21, 0x2b, 0x32, - 0x4e, 0x14, 0xa5, 0x29, 0xb9, 0xe9, 0x72, 0xaa, 0x9f, 0x40, 0x56, 0xec, 0x9d, 0xec, 0x61, 0xc4, - 0x34, 0x2c, 0xea, 0x24, 0xbd, 0x87, 0x1a, 0xa1, 0x20, 0x19, 0xe6, 0xb8, 0xd6, 0xf3, 0xca, 0x9d, - 0xb3, 0x54, 0xbf, 0x84, 0x9c, 0xb8, 0x2a, 0x12, 0xfb, 0x09, 0x2c, 0x08, 0x40, 0xbf, 0x60, 0x4f, - 0x94, 0xed, 0xb1, 0xaa, 0x6f, 0x40, 0xf1, 0x63, 0xb3, 0x62, 0x33, 0x46, 0xf4, 0x48, 0x28, 0x4e, - 0x6a, 0x65, 0xf1, 0x5a, 0x9a, 0x79, 0xe7, 0x5a, 0xaa, 0xfe, 0x24, 0xc1, 0x5a, 0x22, 0xd9, 0x9c, - 0xd2, 0x14, 0xd6, 0x57, 0x57, 0x62, 0xa4, 0x5a, 0xb6, 0x61, 0xfd, 0x42, 0xa3, 0x7d, 0x9b, 0x91, - 0x4a, 0x52, 0xf2, 0xfd, 0x74, 0xc9, 0x4f, 0x13, 0xec, 0x78, 0x14, 0x40, 0xfd, 0x5d, 0x02, 0x39, - 0xc9, 0x87, 0x76, 0x60, 0x25, 0x50, 0x35, 0xf2, 0xfc, 0x38, 0x11, 0x7d, 0x0e, 0xb7, 0x2f, 0x28, - 0xb3, 0x78, 0x70, 0x5d, 0xe7, 0x1a, 0xd5, 0x09, 0x8b, 0x74, 0xf7, 0xf1, 0x0c, 0x48, 0x85, 0xeb, - 0x8c, 0x58, 0x5c, 0x63, 0xbc, 0x62, 0xd8, 0x3a, 0x17, 0xdd, 0x2a, 0x8b, 0x63, 0x34, 0xc7, 0x03, - 0xba, 0xd1, 0x75, 0xc7, 0x85, 0x79, 0xd7, 0x03, 0xfe, 0x5e, 0x3d, 0x84, 0x75, 0xdf, 0x73, 0x41, - 0x25, 0x98, 0xe8, 0xb2, 0x58, 0xe1, 0xcf, 0x24, 0x0a, 0xbf, 0xfa, 0x6b, 0x06, 0x6e, 0xa4, 0x54, - 0xa9, 0xff, 0x32, 0xcf, 0x38, 0x77, 0x8f, 0x71, 0xd3, 0x1e, 0x9c, 0x13, 0xe6, 0x37, 0x63, 0x7f, - 0xef, 0x68, 0xd3, 0x31, 0x06, 0x03, 0xca, 0x5b, 0xfb, 0xbb, 0xde, 0xdb, 0x42, 0x42, 0x5c, 0xd7, - 0x6c, 0xb2, 0x49, 0xed, 0xc0, 0xca, 0x40, 0x7b, 0x8b, 0x09, 0x67, 0xee, 0x94, 0x23, 0x9a, 0x66, - 0x16, 0xc7, 0x89, 0x57, 0xd6, 0x31, 0xd5, 0x3f, 0x33, 0xb0, 0x7e, 0x1c, 0xad, 0xd5, 0xfa, 0x05, - 0xed, 0x39, 0xfe, 0xeb, 0x18, 0x7a, 0x47, 0x24, 0x4d, 0x87, 0xb8, 0x13, 0x4d, 0x16, 0xc7, 0x68, - 0x8e, 0x01, 0x7c, 0x9d, 0x84, 0x79, 0xb2, 0x38, 0xd8, 0xa3, 0xfb, 0xb0, 0x3a, 0xd0, 0xde, 0x7a, - 0x2d, 0xbe, 0xaa, 0x0d, 0x2d, 0x2f, 0x02, 0x12, 0x54, 0xb4, 0x0f, 0x8b, 0x9c, 0xd1, 0x5e, 0x8f, - 0x30, 0x61, 0xa6, 0xe5, 0x72, 0x29, 0x5d, 0xfb, 0x88, 0x86, 0x6d, 0x97, 0xdf, 0x55, 0x14, 0xfb, - 0xd7, 0x1d, 0xb3, 0xf5, 0x28, 0xc7, 0x61, 0x89, 0x71, 0x0d, 0x1b, 0x27, 0xa2, 0x17, 0x20, 0x73, - 0xa2, 0xb1, 0xaa, 0xf1, 0x46, 0xaf, 0xda, 0x4c, 0x94, 0x41, 0x61, 0xdf, 0xe5, 0xf2, 0xe3, 0xe9, - 0x82, 0x13, 0x17, 0xf1, 0x08, 0x94, 0xfa, 0x35, 0x28, 0xe3, 0x34, 0x8d, 0x99, 0x4b, 0x4a, 0x98, - 0xab, 0x00, 0xcb, 0xa6, 0xd1, 0xef, 0x53, 0xbd, 0xd7, 0xa6, 0x41, 0xb0, 0x45, 0x49, 0xea, 0x2b, - 0xb8, 0x11, 0x64, 0x70, 0xcb, 0xb0, 0x59, 0xc7, 0x2d, 0x8b, 0xcf, 0x22, 0x73, 0xa8, 0x4b, 0xf6, - 0x0b, 0xe4, 0xbd, 0x29, 0xf5, 0xca, 0xe5, 0xc6, 0x23, 0xd7, 0xd5, 0xdf, 0x24, 0x58, 0x4b, 0x10, - 0x67, 0x2c, 0x19, 0x9b, 0xb0, 0x60, 0x09, 0x7e, 0xef, 0x01, 0xde, 0x0e, 0x29, 0xb0, 0x68, 0x6a, - 0x9c, 0x13, 0xa6, 0x7b, 0x89, 0xe2, 0x6f, 0xc3, 0x86, 0x32, 0x3f, 0x73, 0x43, 0xf9, 0x20, 0xf2, - 0xe2, 0x53, 0xc2, 0x2c, 0x6a, 0xe8, 0x8e, 0x80, 0x4b, 0x77, 0xe9, 0x29, 0xe6, 0x6f, 0xd5, 0x3f, - 0x24, 0x40, 0xa3, 0x1e, 0x49, 0x6d, 0x6e, 0x13, 0x2b, 0xc8, 0xc4, 0xd1, 0x7b, 0x13, 0x16, 0x18, - 0xb1, 0xec, 0x3e, 0xf7, 0x52, 0xdd, 0xdb, 0xa5, 0xe6, 0x68, 0xf6, 0xdf, 0xe4, 0xe8, 0xdf, 0x12, - 0x6c, 0x4d, 0x08, 0x44, 0x47, 0xb9, 0xae, 0x1f, 0xcd, 0xce, 0x93, 0xe6, 0x70, 0xb0, 0x47, 0xa7, - 0xb0, 0xd4, 0x61, 0x94, 0x13, 0x46, 0x35, 0xf1, 0xaa, 0xd5, 0xf2, 0xa7, 0xef, 0x1c, 0xe9, 0xa5, - 0x8a, 0x87, 0x80, 0x03, 0x2c, 0xf5, 0x0c, 0x96, 0x7c, 0x2a, 0xda, 0x00, 0xd9, 0x5f, 0x47, 0x46, - 0x92, 0x75, 0x58, 0x09, 0xa8, 0x7b, 0x47, 0xed, 0x7d, 0x59, 0x8a, 0x31, 0xfa, 0x93, 0x49, 0x26, - 0x46, 0xf5, 0xa7, 0x91, 0xb9, 0xf2, 0x2f, 0x2b, 0x30, 0x87, 0x8f, 0x2b, 0x48, 0x83, 0xcd, 0x3a, - 0x71, 0x54, 0x1a, 0xec, 0x76, 0x38, 0xbd, 0x24, 0x61, 0x3f, 0xd8, 0x1e, 0x3f, 0x8e, 0x3a, 0x4c, - 0xf9, 0x07, 0x93, 0xc7, 0xd5, 0x10, 0xe8, 0x25, 0xdc, 0xc2, 0xb6, 0x7e, 0x6c, 0x44, 0x46, 0x55, - 0xff, 0x4f, 0xdd, 0xfd, 0xd9, 0xc6, 0xf6, 0xfc, 0x18, 0x8f, 0x8a, 0x3f, 0xd3, 0x11, 0xfc, 0x88, - 0x91, 0xdd, 0x3a, 0x7e, 0x25, 0xf8, 0xe7, 0x70, 0x7b, 0x14, 0xdf, 0x8f, 0xf5, 0xe2, 0xac, 0x15, - 0x75, 0xb2, 0x0c, 0x06, 0xc5, 0x31, 0x6f, 0x68, 0x3b, 0xf3, 0xbe, 0xad, 0xeb, 0x84, 0xf9, 0x22, - 0x67, 0xff, 0x9f, 0x30, 0x59, 0x26, 0x01, 0x54, 0x27, 0xdc, 0xcb, 0x04, 0x2f, 0xd9, 0x2d, 0x54, - 0x9a, 0x8c, 0x9e, 0x9c, 0xf4, 0xf2, 0x77, 0x27, 0x24, 0x9b, 0x28, 0xa2, 0x1a, 0xe4, 0x5b, 0x44, - 0xef, 0x9e, 0x98, 0x5d, 0x8d, 0x8b, 0x7f, 0x07, 0x44, 0xbc, 0xeb, 0x90, 0x70, 0x46, 0x3b, 0x57, - 0xe3, 0xa1, 0xef, 0x60, 0xa5, 0x4e, 0x78, 0xe4, 0xfb, 0x47, 0x71, 0xf2, 0x23, 0x42, 0xce, 0x7c, - 0x21, 0x9d, 0x33, 0x82, 0xf5, 0x0d, 0xac, 0xd7, 0x09, 0x4f, 0x7c, 0x1a, 0x99, 0x96, 0x1c, 0x3b, - 0x63, 0xc2, 0x22, 0x8e, 0xf2, 0x03, 0x14, 0x1c, 0xe8, 0xd0, 0x61, 0xae, 0xd8, 0xd8, 0x17, 0x95, - 0xd9, 0x9f, 0xf2, 0xe1, 0xd4, 0x50, 0x8c, 0x01, 0x53, 0xd8, 0x88, 0x0b, 0xf7, 0x3a, 0xe9, 0xec, - 0x02, 0x1f, 0x4c, 0x15, 0xe8, 0x41, 0x5e, 0xc2, 0x76, 0x52, 0x54, 0xbc, 0x2d, 0xbe, 0x4b, 0x4c, - 0x3f, 0x9c, 0xa9, 0xf5, 0x8a, 0xd0, 0xeb, 0xc2, 0x8d, 0x3a, 0xe1, 0x23, 0x0d, 0x6d, 0xb6, 0xe6, - 0x9d, 0x9f, 0x16, 0x9a, 0x3e, 0xdc, 0x25, 0x78, 0x7f, 0xfd, 0xdd, 0x0a, 0xda, 0x72, 0x3f, 0x04, - 0x5a, 0x0d, 0x9d, 0x1b, 0x11, 0xbd, 0x6b, 0xfa, 0x25, 0x65, 0x86, 0xee, 0xfc, 0x63, 0x41, 0xb3, - 0x96, 0xce, 0xc9, 0x51, 0x7f, 0x01, 0x77, 0x2a, 0x8c, 0x68, 0x9c, 0x8c, 0x91, 0x72, 0x75, 0x75, - 0xe2, 0xbd, 0x2a, 0xb1, 0x38, 0x33, 0x86, 0xff, 0xe7, 0x73, 0xf6, 0xd0, 0xb7, 0x72, 0xf2, 0xa3, - 0xea, 0xf9, 0x82, 0xf8, 0x9a, 0xfa, 0xe4, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4a, 0x75, 0x4f, - 0x49, 0x6f, 0x15, 0x00, 0x00, + // 1607 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xdd, 0x52, 0xdb, 0xc6, + 0x17, 0x8f, 0x0c, 0x06, 0x7c, 0x08, 0x20, 0x36, 0x84, 0x28, 0x26, 0x7f, 0xe2, 0xd1, 0x90, 0xc4, + 0xf9, 0x4f, 0xeb, 0x34, 0xa4, 0x37, 0xfd, 0x98, 0x69, 0xc1, 0x76, 0x8c, 0xa7, 0x60, 0x9c, 0xb5, + 0x21, 0xfd, 0x98, 0x84, 0x11, 0xf6, 0xe2, 0x6c, 0x6b, 0x4b, 0xca, 0x6a, 0x45, 0xe2, 0x69, 0x6f, + 0xdb, 0xdb, 0xde, 0xf6, 0xa2, 0xcf, 0xd1, 0x17, 0xe8, 0x23, 0xf4, 0x3d, 0x7a, 0xd1, 0x27, 0xe8, + 0x68, 0xf5, 0x2d, 0xcb, 0x1f, 0x69, 0xe9, 0x95, 0x77, 0xcf, 0x9e, 0x3d, 0xdf, 0xe7, 0x77, 0xd6, + 0x82, 0x6d, 0xf3, 0xbb, 0xde, 0x23, 0x4b, 0x1b, 0x58, 0xda, 0x2b, 0x8d, 0x3e, 0x62, 0x66, 0xe7, + 0x91, 0x45, 0xd8, 0x25, 0xed, 0x90, 0x92, 0xc9, 0x0c, 0x6e, 0xa0, 0x0d, 0xff, 0xac, 0x44, 0x8d, + 0x92, 0xbf, 0x56, 0x17, 0x21, 0x5b, 0x1d, 0x98, 0x7c, 0xa8, 0x36, 0x01, 0xb5, 0x89, 0x36, 0x78, + 0x4e, 0xf9, 0xab, 0x7d, 0x5b, 0xef, 0xf6, 0x49, 0x43, 0x1b, 0x10, 0x94, 0x87, 0x25, 0x4e, 0xb4, + 0x81, 0xb3, 0x56, 0xa4, 0x82, 0x54, 0xcc, 0xe1, 0x60, 0x8f, 0xb6, 0x01, 0xce, 0x03, 0x4e, 0x25, + 0x23, 0x4e, 0x23, 0x14, 0xb5, 0x00, 0x10, 0x91, 0x84, 0x60, 0x5e, 0x0f, 0xa5, 0x88, 0xb5, 0xba, + 0x0d, 0x4b, 0x6d, 0x5f, 0x5a, 0xda, 0x79, 0x11, 0x56, 0x9b, 0x8c, 0x1a, 0x8c, 0xf2, 0xe1, 0x33, + 0x9b, 0xd8, 0xc4, 0x42, 0x9b, 0xb0, 0xf0, 0x5a, 0xac, 0x14, 0xa9, 0x30, 0x57, 0xcc, 0x61, 0x6f, + 0xa7, 0xbe, 0x84, 0x5b, 0x4d, 0xbb, 0xdf, 0xc7, 0xe4, 0xb5, 0x4d, 0x2c, 0x5e, 0x21, 0x26, 0xd1, + 0xbb, 0x44, 0xef, 0x50, 0x62, 0xa1, 0x32, 0x5c, 0xef, 0x46, 0xf6, 0xe2, 0xe2, 0xf2, 0xee, 0xdd, + 0x52, 0x5a, 0x38, 0x4a, 0x65, 0x63, 0x60, 0x1a, 0x3a, 0xd1, 0x39, 0x8e, 0x5d, 0x52, 0xff, 0xc8, + 0x81, 0x1c, 0x9c, 0x9d, 0x98, 0x3d, 0xa6, 0x75, 0x09, 0x3a, 0x84, 0x05, 0x8b, 0x6b, 0xdc, 0xb6, + 0x84, 0xd1, 0xab, 0xbb, 0x1f, 0x4e, 0x91, 0xe9, 0xdd, 0x2b, 0x79, 0xbf, 0x2d, 0x71, 0x17, 0x7b, + 0x32, 0x82, 0x00, 0x64, 0xc2, 0x00, 0xc4, 0xc2, 0x3f, 0x97, 0x08, 0xff, 0x67, 0x00, 0x1d, 0x5f, + 0xb2, 0xa5, 0xcc, 0xcf, 0xe6, 0x55, 0xe4, 0x0a, 0x6a, 0x40, 0x8e, 0x5a, 0x96, 0x4d, 0xda, 0x43, + 0x93, 0x28, 0x59, 0xe1, 0xc1, 0x07, 0x33, 0x7a, 0x50, 0xf7, 0xef, 0xe1, 0x50, 0x04, 0xfa, 0x3f, + 0xc8, 0x22, 0x1b, 0x07, 0xd4, 0xe2, 0x06, 0x1b, 0x0a, 0xa3, 0x17, 0x84, 0xd1, 0x23, 0x74, 0x54, + 0x03, 0x99, 0x0e, 0xb4, 0x1e, 0x39, 0xa2, 0x96, 0x45, 0xf5, 0xde, 0x21, 0xb5, 0xb8, 0xb2, 0x28, + 0x5c, 0xd8, 0x4a, 0x37, 0xa1, 0xee, 0x70, 0xe3, 0x91, 0x4b, 0xe8, 0x0e, 0xe4, 0x9c, 0x48, 0x59, + 0xa6, 0xd6, 0x21, 0xca, 0x92, 0xd0, 0x16, 0x12, 0x50, 0x11, 0xd6, 0x38, 0xb1, 0xf8, 0xbe, 0x4d, + 0xfb, 0x5d, 0xc7, 0xc6, 0x7a, 0x45, 0xc9, 0x09, 0x9e, 0x24, 0xd9, 0x89, 0x3e, 0xb3, 0x75, 0x4b, + 0x81, 0x82, 0x54, 0xcc, 0x62, 0xb1, 0x76, 0x0a, 0x9c, 0x5a, 0x98, 0x5c, 0x12, 0x46, 0x2f, 0x86, + 0xca, 0x72, 0x41, 0x2a, 0x2e, 0xe1, 0x08, 0x05, 0x19, 0xb0, 0xc1, 0xdc, 0x35, 0xed, 0x68, 0x9c, + 0x1a, 0xba, 0x9b, 0x51, 0xe5, 0xba, 0x88, 0xe5, 0x27, 0x33, 0xc6, 0x12, 0xa7, 0x88, 0xc0, 0xa9, + 0x82, 0xd1, 0x33, 0x90, 0xbb, 0xc4, 0xec, 0x1b, 0xc3, 0x01, 0xd1, 0xb9, 0xc8, 0x81, 0xa5, 0xac, + 0x88, 0xa8, 0xdd, 0x4b, 0x57, 0x56, 0x89, 0x73, 0xe3, 0x91, 0xeb, 0xe8, 0x05, 0x6c, 0x98, 0x61, + 0xe3, 0x04, 0xc6, 0x29, 0xab, 0x05, 0xa9, 0xb8, 0xbc, 0xfb, 0x30, 0x5d, 0xac, 0x0f, 0x14, 0x91, + 0x96, 0xc3, 0xa9, 0x62, 0xd0, 0x6e, 0x4c, 0x7c, 0x23, 0xc8, 0xd4, 0x9a, 0xc8, 0x42, 0xea, 0x99, + 0xaa, 0xc1, 0x4a, 0xac, 0x43, 0xd0, 0x6d, 0xb8, 0x19, 0x23, 0x9c, 0x3d, 0xdd, 0xab, 0x1f, 0x9e, + 0xe0, 0xaa, 0x7c, 0x6d, 0xf4, 0xa8, 0x75, 0x52, 0x2e, 0x57, 0x5b, 0x2d, 0x59, 0x42, 0x79, 0xd8, + 0x8c, 0x1f, 0x95, 0xf7, 0x1a, 0xe5, 0xea, 0x61, 0xb5, 0x22, 0x67, 0xd4, 0x9f, 0x24, 0xc8, 0x05, + 0x35, 0x8c, 0x6e, 0xc2, 0x7a, 0xb0, 0x39, 0x3b, 0x69, 0x7c, 0xd1, 0x38, 0x7e, 0xde, 0x90, 0xaf, + 0xa1, 0x1d, 0x28, 0x84, 0xe4, 0x4a, 0xb5, 0x55, 0xc7, 0xd5, 0xca, 0xd9, 0x69, 0x15, 0xb7, 0xea, + 0xc7, 0x0d, 0x61, 0x42, 0xb5, 0x22, 0x4b, 0x68, 0x0b, 0x6e, 0x85, 0x5c, 0xf5, 0xa3, 0xbd, 0x5a, + 0xf5, 0xec, 0xa8, 0xde, 0x6a, 0xd5, 0x1b, 0x35, 0x39, 0x83, 0xee, 0xc2, 0x56, 0x78, 0x58, 0x6d, + 0x9c, 0xd6, 0xf1, 0x71, 0xe3, 0xa8, 0xda, 0x68, 0x9f, 0xd5, 0x5b, 0xad, 0x93, 0xaa, 0x3c, 0xa7, + 0xfe, 0x00, 0x1b, 0x69, 0xf9, 0x47, 0x05, 0xb8, 0x93, 0x46, 0x8f, 0x58, 0x37, 0x8e, 0xc3, 0x8f, + 0x8d, 0x34, 0x96, 0xc3, 0x0f, 0x51, 0x46, 0xc5, 0x90, 0x0b, 0x53, 0x95, 0x02, 0xc0, 0xe8, 0x31, + 0x64, 0x45, 0xc7, 0x09, 0x50, 0x9a, 0xd2, 0x9b, 0x2e, 0xa7, 0xfa, 0x11, 0x64, 0xc5, 0xde, 0xe9, + 0x1e, 0x46, 0x4c, 0xc3, 0xa2, 0x4e, 0xd3, 0x7b, 0x52, 0x23, 0x14, 0x24, 0xc3, 0x1c, 0xd7, 0x7a, + 0x1e, 0xdc, 0x39, 0x4b, 0xf5, 0x73, 0xc8, 0x89, 0xab, 0xa2, 0xb1, 0x9f, 0xc0, 0x82, 0x10, 0xe8, + 0x03, 0xf6, 0x44, 0xdd, 0x1e, 0xab, 0xfa, 0x06, 0x14, 0xbf, 0x36, 0xcb, 0x36, 0x63, 0x44, 0x8f, + 0x94, 0xe2, 0xa4, 0x51, 0x16, 0xc7, 0xd2, 0xcc, 0x3b, 0x63, 0xa9, 0xfa, 0xa3, 0x04, 0x6b, 0x89, + 0x66, 0x73, 0xa0, 0x29, 0xc4, 0x57, 0x57, 0x63, 0x04, 0x2d, 0xdb, 0xb0, 0x7e, 0xa1, 0xd1, 0xbe, + 0xcd, 0x48, 0x39, 0xa9, 0xf9, 0x7e, 0xba, 0xe6, 0xa7, 0x09, 0x76, 0x3c, 0x2a, 0x40, 0xfd, 0x4d, + 0x02, 0x39, 0xc9, 0x87, 0x76, 0x60, 0x25, 0x30, 0x35, 0xe2, 0x7e, 0x9c, 0x88, 0x3e, 0x85, 0xdb, + 0x17, 0x94, 0x59, 0x3c, 0xb8, 0xae, 0x73, 0x8d, 0xea, 0x84, 0x45, 0xa6, 0xfb, 0x78, 0x06, 0xa4, + 0xc2, 0x75, 0x46, 0x2c, 0xae, 0x31, 0x5e, 0x36, 0x6c, 0x9d, 0x8b, 0x69, 0x95, 0xc5, 0x31, 0x9a, + 0x93, 0x01, 0xdd, 0xe8, 0xba, 0xcf, 0x85, 0x79, 0x37, 0x03, 0xfe, 0x5e, 0x3d, 0x82, 0x75, 0x3f, + 0x73, 0x01, 0x12, 0x4c, 0x4c, 0x59, 0x0c, 0xf8, 0x33, 0x09, 0xe0, 0x57, 0x7f, 0xc9, 0xc0, 0x8d, + 0x14, 0x94, 0xfa, 0x37, 0xef, 0x19, 0xe7, 0x6e, 0x13, 0x37, 0xec, 0xc1, 0x39, 0x61, 0xfe, 0x30, + 0xf6, 0xf7, 0x8e, 0x35, 0x1d, 0x63, 0x30, 0xa0, 0xbc, 0x75, 0xb0, 0xe7, 0xf9, 0x16, 0x12, 0xe2, + 0xb6, 0x66, 0x93, 0x43, 0x6a, 0x07, 0x56, 0x06, 0xda, 0x5b, 0x4c, 0x38, 0x73, 0x5f, 0x39, 0x62, + 0x68, 0x66, 0x71, 0x9c, 0x78, 0x65, 0x13, 0x53, 0xfd, 0x33, 0x03, 0xeb, 0xcd, 0x28, 0x56, 0xeb, + 0x17, 0xb4, 0xe7, 0xe4, 0xaf, 0x63, 0xe8, 0x1d, 0xd1, 0x34, 0x1d, 0xe2, 0xbe, 0x68, 0xb2, 0x38, + 0x46, 0x73, 0x02, 0xe0, 0xdb, 0x24, 0xc2, 0x93, 0xc5, 0xc1, 0x1e, 0xdd, 0x87, 0xd5, 0x81, 0xf6, + 0xd6, 0x1b, 0xf1, 0x15, 0x6d, 0x68, 0x79, 0x15, 0x90, 0xa0, 0xa2, 0x03, 0x58, 0xe4, 0x8c, 0xf6, + 0x7a, 0x84, 0x89, 0x30, 0x2d, 0xef, 0x96, 0xd2, 0xad, 0x8f, 0x58, 0xd8, 0x76, 0xf9, 0x5d, 0x43, + 0xb1, 0x7f, 0xdd, 0x09, 0x5b, 0x8f, 0x72, 0x1c, 0x42, 0x8c, 0x1b, 0xd8, 0x38, 0xd1, 0xf1, 0xab, + 0x47, 0x79, 0x93, 0x19, 0xdf, 0x92, 0x0e, 0xaf, 0x57, 0xbc, 0x07, 0x49, 0x8c, 0x86, 0x5e, 0x80, + 0xcc, 0x89, 0xc6, 0x2a, 0xc6, 0x1b, 0xbd, 0x62, 0x33, 0x01, 0x95, 0xca, 0xa2, 0x30, 0xee, 0xf1, + 0x74, 0xe3, 0x12, 0x17, 0xf1, 0x88, 0x28, 0xf5, 0x4b, 0x50, 0xc6, 0x79, 0x13, 0x0b, 0xa9, 0x94, + 0x08, 0x69, 0x01, 0x96, 0x4d, 0xa3, 0xdf, 0xa7, 0x7a, 0xaf, 0x4d, 0x83, 0x82, 0x8c, 0x92, 0xd4, + 0x57, 0x70, 0x23, 0xe8, 0xf2, 0x96, 0x61, 0xb3, 0x8e, 0x0b, 0x9d, 0xcf, 0x22, 0x6f, 0x55, 0x97, + 0xec, 0x83, 0xe8, 0xbd, 0x29, 0x98, 0xe6, 0x72, 0xe3, 0x91, 0xeb, 0xea, 0xaf, 0x12, 0xac, 0x25, + 0x88, 0x33, 0xc2, 0xca, 0x26, 0x2c, 0x58, 0x82, 0xdf, 0x73, 0xc0, 0xdb, 0x21, 0x05, 0x16, 0x4d, + 0x8d, 0x73, 0xc2, 0x74, 0xaf, 0x99, 0xfc, 0x6d, 0x38, 0x74, 0xe6, 0x67, 0x1e, 0x3a, 0xef, 0x45, + 0x3c, 0x3e, 0x25, 0xcc, 0xa2, 0x86, 0xee, 0x28, 0xb8, 0x74, 0x97, 0x9e, 0x61, 0xfe, 0x56, 0xfd, + 0x5d, 0x02, 0x34, 0x9a, 0x91, 0xd4, 0x01, 0x38, 0x11, 0x65, 0x26, 0x3e, 0xcf, 0x37, 0x61, 0x81, + 0x11, 0xcb, 0xee, 0x73, 0x0f, 0x0e, 0xbc, 0x5d, 0x6a, 0x1f, 0x67, 0xff, 0x49, 0x1f, 0xff, 0x25, + 0xc1, 0xd6, 0x84, 0x42, 0x74, 0x8c, 0xeb, 0xfa, 0xd5, 0xec, 0xb8, 0x34, 0x87, 0x83, 0x3d, 0x3a, + 0x85, 0xa5, 0x0e, 0xa3, 0x9c, 0x30, 0xaa, 0x09, 0xaf, 0x56, 0x77, 0x3f, 0x7e, 0xe7, 0x4a, 0x2f, + 0x95, 0x3d, 0x09, 0x38, 0x90, 0xa5, 0x9e, 0xc1, 0x92, 0x4f, 0x45, 0x1b, 0x20, 0xfb, 0xeb, 0xc8, + 0xb3, 0x65, 0x1d, 0x56, 0x02, 0xea, 0xfe, 0x71, 0xfb, 0x40, 0x96, 0x62, 0x8c, 0xfe, 0xeb, 0x25, + 0x13, 0xa3, 0xfa, 0x2f, 0x96, 0xb9, 0xdd, 0x9f, 0x57, 0x60, 0x0e, 0x37, 0xcb, 0x48, 0x83, 0xcd, + 0x1a, 0x71, 0x4c, 0x1a, 0xec, 0x75, 0x38, 0xbd, 0x24, 0xe1, 0xcc, 0xd8, 0x1e, 0xff, 0x64, 0x75, + 0x98, 0xf2, 0x0f, 0x26, 0x3f, 0x69, 0x43, 0x41, 0x2f, 0xe1, 0x16, 0xb6, 0xf5, 0xa6, 0x11, 0x79, + 0xce, 0xfa, 0x7f, 0xfc, 0xee, 0xcf, 0xf6, 0xb4, 0xcf, 0x8f, 0xc9, 0xa8, 0xf8, 0xc3, 0x1d, 0x91, + 0x1f, 0x09, 0xb2, 0x8b, 0xf5, 0x57, 0x22, 0xff, 0x1c, 0x6e, 0x8f, 0xca, 0xf7, 0x6b, 0xbd, 0x38, + 0x2b, 0xea, 0x4e, 0xd6, 0xc1, 0xa0, 0x38, 0xc6, 0x87, 0xb6, 0xf3, 0x9f, 0xc0, 0xd6, 0x75, 0xc2, + 0x7c, 0x95, 0xb3, 0xff, 0x97, 0x98, 0xac, 0x93, 0x00, 0xaa, 0x11, 0xee, 0x75, 0x82, 0xd7, 0xec, + 0x16, 0x2a, 0x4d, 0x96, 0x9e, 0x7c, 0x0d, 0xe6, 0xef, 0x4e, 0x68, 0x36, 0x01, 0xa2, 0x1a, 0xe4, + 0x5b, 0x44, 0xef, 0x9e, 0x98, 0x5d, 0x8d, 0x8b, 0x7f, 0x10, 0x44, 0xf8, 0x75, 0x44, 0x38, 0xa3, + 0x9d, 0xab, 0xc9, 0xd0, 0x37, 0xb0, 0x52, 0x23, 0x3c, 0xf2, 0x8d, 0xa4, 0x38, 0xd9, 0x89, 0x90, + 0x33, 0x5f, 0x48, 0xe7, 0x8c, 0xc8, 0xfa, 0x0a, 0xd6, 0x6b, 0x84, 0x27, 0x3e, 0x9f, 0x4c, 0x6b, + 0x8e, 0x9d, 0x31, 0x65, 0x11, 0x97, 0xf2, 0x3d, 0x14, 0x1c, 0xd1, 0x61, 0xc2, 0x5c, 0xb5, 0xb1, + 0xaf, 0x2e, 0xb3, 0xbb, 0xf2, 0xfe, 0xd4, 0x52, 0x8c, 0x09, 0xa6, 0xb0, 0x11, 0x57, 0xee, 0x4d, + 0xd2, 0xd9, 0x15, 0x3e, 0x98, 0xaa, 0xd0, 0x13, 0x79, 0x09, 0xdb, 0x49, 0x55, 0xf1, 0xb1, 0xf8, + 0x2e, 0x35, 0xfd, 0x70, 0xa6, 0xd1, 0x2b, 0x4a, 0xaf, 0x0b, 0x37, 0x6a, 0x84, 0x8f, 0x0c, 0xb4, + 0xd9, 0x86, 0x77, 0x7e, 0x5a, 0x69, 0xfa, 0xe2, 0x2e, 0xc1, 0xfb, 0x3c, 0xe0, 0x22, 0x68, 0xcb, + 0xfd, 0x58, 0x68, 0xd5, 0x75, 0x6e, 0x44, 0xec, 0xae, 0xea, 0x97, 0x94, 0x19, 0xba, 0xf3, 0xaf, + 0x06, 0xcd, 0x0a, 0x9d, 0x93, 0xab, 0xfe, 0x02, 0xee, 0x94, 0x19, 0xd1, 0x38, 0x19, 0xa3, 0xe5, + 0xea, 0x70, 0xe2, 0x7f, 0x15, 0x62, 0x71, 0x66, 0x0c, 0xff, 0x4b, 0x77, 0xf6, 0xd1, 0xd7, 0x72, + 0xf2, 0xc3, 0xeb, 0xf9, 0x82, 0xf8, 0xe2, 0xfa, 0xe4, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc6, + 0x3a, 0x64, 0x07, 0x93, 0x15, 0x00, 0x00, } diff --git a/test/data/crds/env.samsahai.io_configs.yaml b/test/data/crds/env.samsahai.io_configs.yaml index 868d4667..fa3871e6 100644 --- a/test/data/crds/env.samsahai.io_configs.yaml +++ b/test/data/crds/env.samsahai.io_configs.yaml @@ -412,9 +412,14 @@ spec: environment type: string type: object + gitProjectID: + description: GitProjectID represents a git repository project + id used for publishing test runner status to Gitlab + type: string gitRepository: - description: GitRepository represents a string of git "/" - e.g., agoda-com/samsahai used for publishing commit status + description: GitRepository represents a string of git repository + "/" e.g., agoda-com/samsahai used for + publishing commit status type: string maxRetry: description: MaxRetry defines max retry counts of pull request @@ -1332,10 +1337,15 @@ spec: deploying environment type: string type: object + gitProjectID: + description: GitProjectID represents a git repository + project id used for publishing test runner status to + Gitlab + type: string gitRepository: description: GitRepository represents a string of git - "/" e.g., agoda-com/samsahai used - for publishing commit status + repository "/" e.g., agoda-com/samsahai + used for publishing commit status type: string maxRetry: description: MaxRetry defines max retry counts of pull